* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0f172a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #f0f0f0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-container {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 300;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #f0f0f0;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #0f172a;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.service-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #333;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}


/* Service Detail Pages */
.service-detail-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.service-detail-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.service-detail-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-detail-section {
    padding: 6rem 0;
    background: #f8f9fa;
    text-align: center;
}

.service-detail-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-detail-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .service-detail-hero h1 {
        font-size: 2rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
}

/* Service Detail Text Styling */
.service-detail-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.detail-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: #666;
    line-height: 1.6;
    position: relative;
}

.detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.detail-list li strong {
    color: #333;
}

.cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .service-detail-text h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-text h3 {
        font-size: 1.3rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}


/* Service Detail Text Styling */
.service-detail-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.service-detail-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.detail-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: #666;
    line-height: 1.6;
    position: relative;
}

.detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.detail-list li strong {
    color: #333;
}

.cta-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-box h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .service-detail-text h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-text h3 {
        font-size: 1.3rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
}



/* About Logo */
.about-logo-container {
    text-align: center;
    margin-bottom: 3rem;
}

.about-logo {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .about-logo {
        max-width: 200px;
    }
}



/* FAQ Page Styling */
.faq-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-category h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #000;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }
    
    .faq-category h2 {
        font-size: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
}



/* Blog Section Styling */
.blog-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-card h2 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: #000;
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.blog-article h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-article h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.blog-article h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    color: #444;
}

.blog-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.blog-article ul, .blog-article ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-article h1 {
        font-size: 2rem;
    }
}

