* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sea-blue: #006994;
    --light-blue: #0088cc;
    --deep-blue: #004d6b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}


header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #006994 0%, #0099cc 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 30s linear infinite;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero .tagline {
    font-size: 1.5em;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.95;
}

.hero .hero-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

/* Intro Section */
.intro {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.intro h2 {
    font-size: 2.5em;
    color: #006994;
    margin-bottom: 25px;
    font-weight: 600;
}

.intro p {
    font-size: 1.2em;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
/* Services Section */
        .services {
            padding: 80px 0;
            background: #f8fafc;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #1e293b;
            margin-bottom: 60px;
            font-weight: 700;
        }

        .service-card {
            background: #ffffff;
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: inline-block;
            
            color: #0077b6;
            background: linear-gradient(135deg, #0077b6, #00b4d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card h3 {
            font-size: 2rem;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-intro {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .service-details h4 {
            font-size: 1.3rem;
            color: #0077b6;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-details ul {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-details ul li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            color: #475569;
            font-size: 1rem;
        }

        .service-details ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: #0077b6;
            font-weight: bold;
        }

        .service-details ul li strong {
            color: #1e293b;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .benefit {
            padding: 12px;
            background: #f1f5f9;
            border-radius: 8px;
            color: #475569;
            font-size: 0.95rem;
            border-left: 3px solid #0077b6;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 80px 0;
            background: #ffffff;
        }

        .why-choose h2 {
            text-align: center;
            font-size: 2.8rem;
            color: #1e293b;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .intro-text {
            text-align: center;
            font-size: 1.2rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .feature {
            background: #f8fafc;
            padding: 35px 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .feature .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
         
            color: #0077b6;
            background: linear-gradient(135deg, #0077b6, #00b4d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature h3 {
            font-size: 1.4rem;
            color: #1e293b;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .feature p {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.6;
        }

        /* Commitment Section */
        .commitment {
            padding: 80px 0;
            background: linear-gradient(135deg, #0077b6, #00b4d8);
            color: #ffffff;
            text-align: center;
        }

        .commitment h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .commitment p {
            font-size: 1.2rem;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title,
            .why-choose h2 {
                font-size: 2rem;
            }

            .service-card {
                padding: 30px 20px;
            }

            .service-card h3 {
                font-size: 1.5rem;
            }

            .service-intro {
                font-size: 1rem;
            }

            .benefits {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .commitment h2 {
                font-size: 1.8rem;
            }

            .commitment p {
                font-size: 1rem;
            }
        }



/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0099cc 0%, #00bfff 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: #006994;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}






/* ==================== FOOTER ==================== */
.footer {
    background: rgb(0, 64, 154);
    color: var(--white);
    padding: 80px 8% 30px 8%;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.05"/></svg>');
    pointer-events: none;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-about,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1 1 220px;
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: wheat;
    font-weight: 600;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: wheat;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--sea-blue);
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social .social-icons a img,
.footer-social .social-icons a svg {
    width: 20px;
    height: 20px;
}

.footer-social .social-icons a:hover {
    background: var(--sea-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .motto {
        font-size: 1.2rem;
    } 
  }

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .services-container {
        padding: 2rem 1rem;
    }

    .service-card {
        margin-bottom: 3rem;
    }

    .service-content {
        padding: 1rem;
    }
}