/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    
}

body {
    font-family: 'Funnel Display', sans-serif;
    background-color: #eefcff;
    color: #112A46;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    position: fixed;
    top: 5px;
    left: 15%;
    right: 15%;
    z-index: 1000;
    background: rgba(174, 231, 241, 0);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(89, 230, 255, 0);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #112A46;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #59E6FF;
}

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

.nav-links a {
    text-decoration: none;
    color: #112A46;
    font-weight: 400;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #59E6FF;
    transform: translateY(-2px);
}

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

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

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: #112A46;
    cursor: pointer;
    z-index: 1000;
    margin-left: auto;
}
@media (max-width: 768px) {
    .logo {
    font-size: 1.1rem;
    font-weight: 400;
    }
    .nav-container {
        padding: 0 1rem;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(217, 249, 255, 0.98);
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(89, 230, 255, 0.2);
        border-radius: 0 0 10px 10px;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}


/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin-top: 80px;
}
/* Background Image with Overlay */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('backghome.jpg') center/cover no-repeat;
            z-index: -2;
        }

        /* Additional overlay for better text readability */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid; /* Changed from single column */
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch; /* Make columns equal height */
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}
.home-topic {
    text-align: left;
    background: #f0fdff62;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0 10px 30px rgba(17, 42, 70, 0.1);
}

.hero-title4 {
            font-size: 3rem;
            font-weight: 700;
            color: linear-gradient(45deg, #112A46, hsl(189, 95%, 68%));
            line-height: 1.2;
            margin-bottom: 1.5rem;
            
        
        }

        .highlight {
            color: linear-gradient(45deg, #112A46, hsl(189, 95%, 68%));
        }

        .typewriter-container {
            display: inline-block;
            position: relative;
        }

        .typewriter-text {
            color: #3fb8e0;
        }

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #112A46;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;

}

.btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Funnel Display', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, #59e6ff3d, #112A46);
    color: white;
    box-shadow: 0 8px 25px rgba(89, 230, 255, 0.305);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(89, 230, 255, 0.6);
}

.btn-primary1 {
    background: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(89, 230, 255, 0);
    border-radius: 40px;
    border: 1px solid white;
}

.btn-primary1:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(89, 230, 255, 0);
}
.btn-secondary {
    background: transparent;
    color: #112A46;
    border: 1px solid #112A46; 
}

.btn-secondary:hover {
    background: #e7feff;
    color: #112A46;
    transform: translateY(-3px);
    backdrop-filter: blur(10px);
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.hero-gif {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(45deg, #59E6FF, #112A46);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(89, 230, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}
.animated-text-container {
            text-align: center;
            margin: 50px 0;
        }

        .animated-text {
            font-size: 1.9rem;
            font-weight: 700;
            text-align: center;
            color: #3fb8e0;
            display: inline-block;
            position: relative;
            height: 80px;
            line-height: 80px;
        }

        .word {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            opacity: 0;
            animation: fadeInOut 12s infinite;
            white-space: nowrap;
        }

        .word:nth-child(1) {
            animation-delay: 0s;
        }

        .word:nth-child(2) {
            animation-delay: 3s;
        }

        .word:nth-child(3) {
            animation-delay: 6s;
        }

        .word:nth-child(4) {
            animation-delay: 9s;
        }

        @keyframes fadeInOut {
            0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
            12.5% { opacity: 1; transform: translateX(-50%) translateY(0px); }
            25% { opacity: 1; transform: translateX(-50%) translateY(0px); }
            37.5% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
            100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
        }
        .scroll-arrow {
            width: 40px;
            height: 80px;
            margin-left: 0%;
            margin-top: 1%;
            position: relative;
            animation: float 3s ease-in-out infinite;
            cursor: pointer;
            display: flex;
            bottom: 2rem;
            justify-content: center;
            align-items: center;
        }

        .scroll-arrow::before {
            content: '◁SCROLL';
            position: absolute;
            font-size: 1rem;
            background: linear-gradient(90deg, #000000, #112A46, #000000);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientMove 3s linear infinite;
            left: 50%;
            top: 50%;
            writing-mode:sideways-lr;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .home-topic {
                margin: 0 auto;
                align-items: center;
                padding-left: 20px;
                padding-right: 20px;
                padding-top: 20px;
            }

            .hero-title4 {
                font-size: 2rem;
            }
            .hero-container {
                padding-top: 2rem; /* Add some space at the top on mobile */
            }
            .animated-text {
                font-size: 1.5rem;
            }
            .hero-subtitle {
                font-size: 1rem;
            }
            .scroll-arrow {
                margin-left: 40%;
                margin-top: 10%;
                display: none; /* Hide scroll arrow on mobile to make space */
            }
            
        }


/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 2rem;
    background: rgba(89, 230, 255, 0.1);
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #112A46;
}

.section-subtitle2 {
    font-size: 1.2rem;
    color: #112A46;
    opacity: 0.8;
    margin-bottom: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-card {
    background: transparent;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #59E6FF;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card i {
    font-size: 3rem;
    color: #59E6FF;
    margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
            padding: 5rem 2rem;
            background-color: #eefcff;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #112A46;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #112A46;
            opacity: 0.8;
            margin-bottom: 2rem;
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(89, 230, 255, 0.2);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: left;
            max-height: 660px;

        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(89, 230, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: #112A46;
        }

        .service-card:hover::before {
            transform: translateX(100%);
        }

        .service-icon {
            font-size: 3rem;
            color: #59E6FF;
            margin-bottom: 1rem;
            text-align: center;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #112A46;
            text-align: center;
        }

        .service-description {
            margin-bottom: 1.5rem;
            color: #112A46;
            opacity: 0.8;
            text-align: center;
        }

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

        .service-features li {
            padding: 0.5rem 0;
            color: #112A46;
            opacity: 0.9;
            position: relative;
            padding-left: 1.5rem;
        }

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

        .learn-more-btn {
            background: transparent;
            color: #112A46;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-family: 'Funnel Display', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 0 auto;
            display: block;
            width: fit-content;
            margin: 1.5rem auto 0;
            font-size: 1rem;
        }

        .learn-more-btn a {
            color: #112A46; 
            text-decoration: none; 
            transition: all 0.3s ease;
        }

        .learn-more-btn::after {
            content: '→';
            transition: all 0.3s ease;
            display: inline-block;
        }

        .learn-more-btn:hover::after {
            transform: translateX(5px);
            color: #59E6FF;
        }

        .learn-more-btn:hover {
            transform: scale(1.05);
        }

        .learn-more-btn:hover,
        .learn-more-btn:hover a {
            color: #59E6FF;
            
        }

/* ===== NEWS & UPDATES IN HERO SECTION ===== */
.news-updates-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(17, 42, 70, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInRight 1s ease-out; 
    display: flex;
    flex-direction: column;
    max-height: 390px;
}

.news-header {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.2rem; /* Reduced gap */
    border-bottom: 1px solid rgba(89, 230, 255, 0.5);
    padding-bottom: 0.2rem;    
    position: relative;
}

.news-header i {
    font-size: 1.5rem;
    color: #112A46;
}

.news-title-wrapper {
    flex-grow: 1;
}


.news-header h2 {
    font-size: 1.3rem; /* Reduced heading size */
    font-weight: 500;
    color: #112A46;
    margin: 0;
}
.min-title {
    font-size: 1.2rem; /* Reduced heading size */
    font-weight: 500;
    color: #112A46;
    margin: 8px 0 0 0;
    display: none;
}


.news-header .min-title {
    display: none;
}

.news-toggle-btn {
    background: transparent;
    border: none;
    color: #112A46;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.news-toggle-btn:hover {
    transform: scale(1.2);
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* Reduced gap */
    flex-grow: 1; /* Allow content to grow and fill space */
    overflow-y: auto;
    padding-right: 15px; /* For scrollbar */
}

/* Custom Scrollbar */
.news-content::-webkit-scrollbar {
    width: 6px;
}
.news-content::-webkit-scrollbar-track {
    background: rgba(89, 230, 255, 0.2);
    border-radius: 10px;
}
.news-content::-webkit-scrollbar-thumb {
    background: rgba(17, 42, 70, 0.5);
    border-radius: 10px;
}
.news-content::-webkit-scrollbar-thumb:hover {
    background: #112A46;
}

.news-updates-container.minimized .news-content {
    display: none;
}

.news-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(89, 230, 255, 0.4);
}

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

.news-item h4 {
    font-size: 1.05rem; /* Reduced heading size */
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #112A46;
}

.news-item p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem; /* Reduced text size */
    line-height: 1.5;
}

.news-item .news-date {
    font-size: 0.75rem; /* Reduced date size */
    color: #334b68;
    font-style: italic;
    display: block;
    text-align: right;
    margin-top: 0.5rem;
}
/* Minimized State */
.news-updates-container.minimized {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    height: 50px;
    width: 220px;
    padding: 0 1rem;
    cursor: pointer;
    justify-content: center;
}
.news-updates-container.minimized .news-header {
    border-bottom: none;
    margin-bottom: 0;
}
.news-updates-container.minimized .full-title { display: none; }
.news-updates-container.minimized .min-title { display: block; }

@media (max-width: 768px) {
    .news-updates-container {
        /* display: none; <-- This is removed to show on mobile */
        margin-top: 2rem; /* Add space between hero content and news on mobile */
    }
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 5rem 2rem;
    background: rgba(89, 230, 255, 0.1);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: transparent;
    padding: 2.5rem 2rem 2rem;
    border-radius: 20px;
    border: 2px solid #59E6FF;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #59E6FF 0%, #112A46 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    color: white;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover .step-icon i,
.process-step:hover h3 {
    color: white;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #59E6FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #112A46;
    margin: 1rem 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 2rem;
    background-color: #eefcff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form1 {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(89, 230, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #112A46;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(89, 230, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Funnel Display', sans-serif;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn0 {
            width: 130px;
            height: 130px;
            border-radius: 65px;
            background: transparent;
            border: 1px solid rgb(0, 0, 0);
            color: rgb(15, 33, 54);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            font-family: 'Funnel Display', sans-serif;
            position: relative;
            overflow: hidden;
            left: 80%;
        }

        .submit-btn0:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, #59E6FF 0%, #112A46 100%);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            border: none;
            color: white;
        }

        .submit-btn0:active {
            transform: scale(0.95);
        }

        .submit-btn0 i {
            transition: transform 0.3s ease;
        }

        .submit-btn:hover i {
            transform: translateX(2px);
        }

/* ===== FOOTER ===== */
.footer {
    background: #112A46;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #72e0f4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #87e2f0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #347580;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(89, 230, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 101, 0.308);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInOut {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .animated-text {
        font-size: 1.8rem;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    left: 30px;
    width: 45px;
    height: 45px;
    bottom: 30px;
    background: transparent;
    color: #112A46;
    border: 2px solid #59E6FF;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 2s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(89, 230, 255, 0.187);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(89, 230, 255, 0.4);
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero, .about, .services, .process, .contact {
        padding-left: 1rem;
        padding-right: 1rem;
        
    }


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

    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* ===== SERVICE DETAILS ===== */
.service-details-container {
    font-family: 'Funnel Display', sans-serif;
    background-color: #D9F9FF;
    color: #112A46;
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 2rem;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: #112A46;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Funnel Display', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1000;
}

.service-details-content-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(89, 230, 255, 0.2);
    margin-top: 40px;
}

.contact-us-button {
    display: inline-block;
    margin-top: 2rem;
    text-decoration: none;
}

.service-detail-content {
    font-family: 'Funnel Display', sans-serif;
    color: #112A46;
}
.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #112A46;
    text-align: center;
}
.service-detail-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #112A46;
}
.service-overview {
    background: rgba(89, 230, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}
.service-features ul {
    list-style: none;
    padding: 0;
}
.service-features > ul > li {
    margin-bottom: 1.5rem;
}
.service-features ul ul {
    margin: 0.5rem 0 0 1.5rem;
}
.service-features ul ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.service-features ul ul li:before {
    content: "•";
    color: #59E6FF;
    position: absolute;
    left: 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(89, 230, 255, 0.2);
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
}
.benefit-item i {
    font-size: 2rem;
    color: #59E6FF;
    margin-bottom: 1rem;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.timeline-item {
    text-align: center;
    position: relative;
}
.timeline-item .step {
    width: 40px;
    height: 40px;
    background: #59E6FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}
.service-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(89, 230, 255, 0.1), rgba(17, 42, 70, 0.1));
    border-radius: 15px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
@media (max-width: 768px) {
    .benefits-grid, .process-timeline {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.success {
    background: #4CAF50;
}

.notification.error {
    background: #f44336;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content i {
    margin-right: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}
/* Map Location Section */
        .map-location {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .map-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: flex-start;
        }

        .location-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 10px;
        }

        .location-item:last-child {
            margin-bottom: 0;
        }

        .location-icon {
            color: #2563eb;
            font-size: 1.2rem;
            margin-top: 0.2rem;
            min-width: 20px;
        }

        .location-details h4 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .location-details p {
            color: #64748b;
            line-height: 1.5;
        }

        .map-frame {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 517px;
        }
        @media
        (max-width: 768px) {
            .map-content {
                grid-template-columns: 1fr;
            }
            .map-frame {
                height: 400px;
                display: none;
            }
        }
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .map-placeholder h3 {
            margin-bottom: 0.5rem;
        }

        .directions-btn {
            background: white;
            color: #2563eb;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: transform 0.3s ease;
        }

        .directions-btn:hover {
            transform: translateY(-2px);
        }

        .contact {
            padding: 5rem 0;
            background: white;
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-form {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #1e293b;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            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: #2563eb;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            background: #2563eb;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #1d4ed8;
        }

        .about {
            padding: 5rem 0;
            background: #f8fafc;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }

        .about-card i {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 1rem;
        }

        .about-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .about-card p {
            color: #64748b;
        }

        .footer {
            background: #1e293b;
            color: white;
            padding: 3rem 0 1rem;
        }

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

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #2563eb;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #2563eb;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            background: #2563eb;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #334155;
            color: #cbd5e1;
            font-size: 14px;
            font-weight: 100;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ===== PACKAGES SECTION ===== */
.packages {
    padding: 80px 0;
    background: #eefcff;
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2359E6FF" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #112A46;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #59E6FF, #112A46);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #112A46;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.packages-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header1 {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title1 {
            font-size: 2.6rem;
            font-weight: 700;
            color: #112A46;
            margin-bottom: 20px;
        }

        .section-subtitle1 {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            max-height: 590px;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border-color: #59E6FF;
        }

        .package-price1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #112A46;
            margin-bottom: 15px;
            text-align: center;
            
        }

        .package-description {
            text-align: center;
            font-size: 1rem;
            color: #666;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .package-features {
            list-style: none;
            margin-bottom: 40px;
        }

        .package-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(89, 230, 255, 0.2);
            position: relative;
            padding-left: 1.5rem;
            font-size: 15px;
            color: #112A46;
            font-weight: 350;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            color: #59E6FF;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .packages-section {
                padding: 60px 15px;
            }

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

            .packages-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .package-card {
                padding: 30px 25px;
            }

            .package-price {
                font-size: 2.2rem;
            }

            .package-features li {
                font-size: 0.95rem;
                padding: 10px 0;
                padding-left: 1.5rem;
            }
            .package-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            color: #59E6FF;
            font-weight: bold;
            font-size: 1.2rem;
            display: none;
        }

        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 2rem;
            }

            .package-price {
                font-size: 2rem;
            }

            .package-card {
                padding: 25px 20px;
            }

            .learn-more-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
/* ===== TAGLINE SECTION STYLES ===== */
.tagline-section {
    background: #edfafd;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    height: 700px;
}
.tagline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tagline-text {
    font-size: 3.8rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin: 0;
    animation: fadeInUp 1s ease-out;
    font-family: 'Lato', sans-serif;
}

.highlight{
    color: #999999;
    font-weight: 500;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tagline-section {
        padding: 40px 0;
        height: 300px;
    }
    
    .tagline-text {
        font-size: 2rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 1.3rem;
    }
}

        