/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        a {
            text-decoration: none !important;
            color: #0056b3;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #0056b3;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #003d7a;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Header Styles */
        header {
            background-color: #dadcd8;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #0056b3;
        }

        .logo-img {
            height: 50px;
            width: auto;
        }
        
        
        .logo span {
            color: #333;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #0056b3;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, #0056b3, #00a0e9);
            color: white;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        
        .hero p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #0056b3;
            margin-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            width: 90px;
            height: 4px;
            background: linear-gradient(135deg, #0056b3, #00a0e9);
            display: block;
            margin: 0 auto;
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background-color: #e9ecef;
        }
        
        .service-icon {
            font-size: 48px;
            color: #0056b3;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background: radial-gradient(circle at top left, rgba(0, 97, 204, 0.12), transparent 35%), #f8f9fa;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .about-text {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .about-text::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(0, 204, 102, 0.18), transparent 60%);
            pointer-events: none;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: #003366;
            margin-top: 0;
            margin-bottom: 18px;
        }
        
        .about-text p {
            color: #555;
            line-height: 1.85;
            margin-bottom: 22px;
        }
        
        .about-image {
            position: relative;
            min-height: 420px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
            background: linear-gradient(135deg, rgba(0, 84, 176, 0.95), rgba(0, 204, 102, 0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .stat-container {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            width: 100%;
        }
        
        .stat-box {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            color: white;
            transition: transform 0.3s ease;
        }
        
        .stat-box:hover {
            transform: translateY(-6px);
        }
        
        .stat-box h4 {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        
        .stat-box p {
            margin: 0;
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.95rem;
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #e8f2ff 100%);
        }
        
        .portfolio .section-title h2 {
            color: #003366;
        }
        
        .portfolio .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .portfolio-card {
            background: white;
            border-radius: 24px;
            padding: 35px;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            background: rgba(0, 204, 102, 0.12);
            border-radius: 50%;
        }
        
        .portfolio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        }
        
        .portfolio-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            border-radius: 22px;
            background: linear-gradient(135deg, #0056b3, #00a0e9);
            color: white;
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .portfolio-card h3 {
            color: #00264d;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .portfolio-card p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .portfolio-card small {
            color: #7a7a7a;
            font-style: italic;
        }
        
        /* Team Section */
        .team {
            padding: 80px 0;
            background-color: #dadcd8;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            align-items: stretch;
            grid-auto-rows: 1fr;
        }
        
        .team-member {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-5px);
        }

        .team-member:hover .team-photo {
            border-color: #0056b3;
        }
        
        .team-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid #f8f9fa;
        }
        
        .team-member h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }
        
        .team-member p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .social-links a {
            display: inline-block;
            margin: 0 5px;
            color: #0056b3;
            font-size: 18px;
        }
        
        /* Blog Section */
        .blog {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-photo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .client-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .client-details p {
            color: #666;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: white;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .contact-icon {
            font-size: 24px;
            color: #0056b3;
        }
        
        .contact-form {
            background: linear-gradient(135deg, #0056b3, #00a0e9);
            color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-form h3 {
            color: white;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: white;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            font-size: 16px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        textarea.form-control {
            height: 150px;
            resize: vertical;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }

        textarea.form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .form-message {
            margin-bottom: 20px;
            padding: 10px;
            border-radius: 4px;
            background-color: #d4edda;
            color: #155724;
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #0056b3;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ddd;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #ddd;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                min-height: 320px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                gap: 15px;
            }

            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                right: 0;
                left: 0;
                background: white;
                flex-direction: column;
                gap: 0;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
                padding: 16px 20px 22px;
                border-top: 1px solid rgba(0, 0, 0, 0.08);
                z-index: 1050;
            }

            nav ul li {
                margin: 0;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
                padding: 10px 0;
            }

            nav ul li:last-child {
                border-bottom: none;
            }

            nav ul li a {
                display: block;
                color: #333;
                padding: 6px 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            #back-to-top {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                background: #0056b3;
                color: white;
                width: 48px;
                height: 48px;
                border-radius: 10px;
                border: none;
                cursor: pointer;
                transition: background 0.3s ease;
            }

            .mobile-menu-btn:hover {
                background: #003d7a;
            }

            #about {
                padding: 30px !important;
            }
        }

        @media (max-width: 420px) {
            .about {
                padding: 60px 0;
            }

            .about-text {
                padding: 24px;
            }

            .about-text h3 {
                font-size: 1.6rem;
            }

            .about-image {
                min-height: 260px;
                padding: 20px;
            }

            .stat-container {
                gap: 14px;
            }

            .stat-box {
                padding: 22px;
                border-radius: 20px;
            }

            .stat-box h4 {
                font-size: 2.2rem;
            }

            .stat-box p {
                font-size: 0.92rem;
            }
        }

        
        #about p {
            text-align: justify !important;
        }

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Back to top button */
#back-to-top {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #003366 0%, #00cc66 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top.show {
    display: flex;
    opacity: 1;
}

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

#whatsapp-chat {
    position: fixed;
    bottom: 95px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    text-decoration: none;
}

#whatsapp-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
    background: #1ebe57;
}

@media (max-width: 768px) {
    #whatsapp-chat {
        bottom: 85px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
