
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0b2b4e;
    --primary-dark: #071d38;
    --primary-light: #1a3d68;
    --secondary: #2E86AB;
    --accent: #FF9E1C;
    --accent-dark: #E5890C;
    --text-dark: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #FF6B6B 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #4A6FA5 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-neon: linear-gradient(45deg, #00f5ff, #ff00ff, #00ff00, #ffff00);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(46, 134, 171, 0.3);
    --shadow-neon: 0 0 20px rgba(255, 158, 28, 0.5);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 134, 171, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 158, 28, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(11, 43, 78, 0.02) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 43, 78, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0.5;
    z-index: -1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.logo-icon {
    background: var(--gradient-primary);
    padding: 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    opacity: 0;
}

.logo-icon:hover::before {
    animation: shimmer 0.6s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

            .logo-icon i {
                font-size: 1.2rem;
                color: #fff;
            }

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

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

            .nav-links a:hover {
                color: rgba(243, 243, 243, 0.95);
            }

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

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

            /* .cta-button {
                background: linear-gradient(135deg, #007bff, #0056b3);
                color: #fff;
                padding: 0.75rem 1.5rem;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s ease;
                border: 2px solid transparent;
            } */

            .cta-button:hover {
                background: whitesmoke;
                border-color: #dbdbdb;
                color: #dfdfdf;
                transform: translateY(-2px);
            }

            /* Mobile Menu Toggle Button */
            .menu-toggle {
                display: none;
                background: none;
                border: none;
                color: #fff;
                font-size: 1.5rem;
                cursor: pointer;
                padding: 0.5rem;
                border-radius: 4px;
                transition: background-color 0.3s ease;
            }

            .menu-toggle:hover {
                background: rgba(255, 255, 255, 0.1);
            }

            .menu-toggle i {
                display: block;
            }

            /* Offcanvas Menu Styles */
            .offcanvas-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 150px;
                height: 100vh;
                background: #0b2b4e;
                z-index: 1100;
                transition: right 0.3s ease;
                padding: 0;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .offcanvas-menu.active {
                right: 0;
            }

            .offcanvas-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 2rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                color: #fff;
                font-size: 1.2rem;
                font-weight: 600;
            }

            .offcanvas-close {
                display: none;
                background: none;
                border: none;
                color: #fff;
                font-size: 1.5rem;
                cursor: pointer;
                padding: 0.5rem;
                border-radius: 4px;
                transition: background-color 0.3s ease;
            }

            .offcanvas-close:hover {
                background: rgba(255, 255, 255, 0.1);
            }

            .offcanvas-menu ul {
                list-style: none;
                /* padding: 2rem 0; */
                margin: 0;
            }

            .offcanvas-menu ul li {
                margin: 0;
            }

            .offcanvas-menu ul li a {
                display: block;
                color: #fff;
                text-decoration: none;
                /* padding: 1rem 2rem; */
                font-weight: 500;
                transition: all 0.3s ease;
                border-left: 3px solid transparent;
            }

            .offcanvas-menu ul li a:hover {
                background: rgba(255, 255, 255, 0.05);
                border-left-color: #007bff;
                color: #007bff;
            }

            .offcanvas-btn {
                margin: 1rem 2rem;
                background: linear-gradient(135deg, #007bff, #0056b3);
                border-radius: 25px;
                text-align: center;
            }

            .offcanvas-btn:hover {
                background: transparent;
                border: 2px solid #007bff;
                margin: calc(1rem - 2px) calc(2rem - 2px);
            }

            .offcanvas-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 1050;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .offcanvas-backdrop.active {
                opacity: 1;
                visibility: visible;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .nav-container {
                    padding: 1rem;
                }
                
                .nav-links {
                    display: none;
                }
                
                .cta-button {
                    display: none;
                }
                
                .menu-toggle {
                    display: block;
                }
                
                .logo {
                    font-size: 1.3rem;
                }
                
                .logo-icon {
                    padding: 0.4rem;
                }
                
                .logo-icon i {
                    font-size: 1rem;
                }
            }

            @media (max-width: 480px) {
                .nav-container {
                    padding: 0.75rem;
                }
                
                .offcanvas-menu {
                    width: 180px;
                }
                
                .logo {
                    font-size: 1.2rem;
                }
                
                .offcanvas-header {
                    padding: 1rem 1.5rem;
                }
                
                .offcanvas-menu ul li a {
                    padding: 0.875rem 1.5rem;
                }
                
                .offcanvas-btn {
                    margin: 1rem 1.5rem;
                }
            }

            @media (max-width: 360px) {
                .offcanvas-menu {
                    width: 100%;
                }
            }



            .navbar.scrolled {
                background: rgba(11, 43, 78, 0.98);
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            }

         @media (max-width: 991px) {
            .offcanvas-menu {
                
                flex-direction: column;
                position: fixed;
                top: 0;
                right: 0;
                width: 270px;
                height: 100vh;
                background-color: #0b2b4e;
                box-shadow: -2px 0 20px rgba(0,0,0,0.15);
                z-index: 1102;
                padding: 2rem 1.5rem 1.5rem 1.5rem;
                transition: transform 0.3s ease;
                transform: translateX(100%);
            }
            .offcanvas-menu.active {
                transform: translateX(0);
            }
            .offcanvas-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 2rem;
                color: #fff;
                font-size: 1.3rem;
                font-weight: bold;
            }
            .offcanvas-close {
                display: none;
                background: none;
                border: none;
                color: #fff;
                font-size: 2rem;
                cursor: pointer;
            }
            .offcanvas-menu ul {
                list-style: none;
                padding: 0;
                margin: 0;
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }
            .offcanvas-menu ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 1.1rem;
                font-weight: 500;
                transition: color 0.2s;
                padding: 10px 0;
                border-radius: 8px;
            }
            .offcanvas-menu ul li a:hover,
            .offcanvas-menu ul li a.offcanvas-btn:hover {
                background: #274c7b;
                color: #ffd700;
            }
            .offcanvas-btn {
                background: #fff;
                color: #0b2b4e !important;
                border-radius: 25px;
                padding: 12px 24px;
                font-weight: 600;
                margin-top: 1rem;
                display: inline-block;
                text-align: center;
                border: none;
                transition: background 0.2s, color 0.2s;
            }
            .offcanvas-btn:hover {
                background: #ffd700;
                color: #0b2b4e !important;
            }
            .offcanvas-backdrop {
                display: none;
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                background: rgba(0,0,0,0.3);
                z-index: 1100;
                transition: opacity 0.3s;
            }
            .offcanvas-backdrop.active{
                display: block;
                opacity: 1;
            }
        }
        /* Offcanvas menu styles are already present in your code */

        /* Responsive styles for navbar */
        @media (max-width: 991px) {
            .nav-links,
            .cta-button {
            display: none;
            }
            .menu-toggle {
            display: block;
            }
            .nav-container {
            padding: 10px 4vw;
            }
        }
        @media (max-width: 600px) {
            .nav-container {
            padding: 8px 2vw;
            }
            .logo {
            font-size: 1.2rem;
            }
            .logo-icon {
            width: 36px;
            height: 36px;
            font-size: 1.1rem;
            }
        }
        /* Add padding to body to prevent content hiding behind navbar */
        body {
            padding-top: 64px;
        }
        @media (max-width: 600px) {
            body {
            padding-top: 54px;
            }
        }

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: var(--bg-light);
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 134, 171, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 158, 28, 0.1) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

.slide {
    display: none;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateY(40px) scale(0.98);
}

.slide.active {
    display: flex;
    opacity: 1;
    position: relative;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    z-index: 1;
    animation: heroFadeIn 0.7s cubic-bezier(.4,0,.2,1);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.slide-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 4rem;
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-content-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInLeft 0.7s;
    padding-right: 2rem;
}

.slide-content-text h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-align: left;
}

.slide-content-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.slide-content-text ul {
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.slide-content-text ul li {
    margin-bottom: 0.75rem;
    list-style-type: none;
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.slide-content-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.slide-content.slide-image {
    max-width: 600px;
    width: 100%;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.7s;
}

.slide-content.slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow-xl); */
    background: #f6f8fc;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.slide.active .slide-content.slide-image img {
    animation: imgPop 0.7s;
}

@keyframes imgPop {
    from { transform: scale(0.96) translateY(30px); opacity: 0.7; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    opacity: 0.9;
    transition: var(--transition);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* WhatsApp Icon */
.whats_app_icon {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1200;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    transition: var(--transition);
    text-decoration: none;
}

.whats_app_icon i {
    font-size: 28px;
}

.whats_app_icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
    animation: none;
}

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

.whatsapp-text {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.whats_app_icon:hover .whatsapp-text {
    opacity: 1;
    right: 75px;
}

.slide-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* gap: 40px; */
    width: 100%;
    padding-left: 70px;
    min-height: 340px;
}

.slide-content-text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInLeft 0.7s;
}

.slide-content-text h1 {
    font-size: 2.2rem; 
    color: rgba(11, 43, 78, 0.95);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
     text-align: left;
}

.slide-content-text p {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.slide-content.slide-image {
    max-width: 700px;
    width: 100%;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.7s;
    /* padding-top: 50px; */
}

.slide-content.slide-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    /* border-radius: 18px;
    box-shadow: 0 4px 24px rgba(102,126,234,0.10); */
    background: #f6f8fc;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.slide.active .slide-content.slide-image img {
    animation: imgPop 0.7s;
}

@keyframes imgPop {
    from { transform: scale(0.96) translateY(30px); opacity: 0.7;}
    to   { transform: scale(1) translateY(0); opacity: 1;}
}

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

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background:rgba(11, 43, 78, 0.95);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(11,43,78,0.12);
    opacity: 0.85;
    transition: background 0.2s, transform 0.2s;
}
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 18px; }
.slider-arrow:hover {
    background: #274c7b;
    /* transform: scale(1.1); */
}

/* Slider dots */
.slider-nav {
    position: absolute;
    left: 0; right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 11;
}
.slider-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dbeafe;
    border: 2px solid #0b2b4e;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 1px 4px rgba(11,43,78,0.08);
}
.slider-dot.active {
    background: #0b2b4e;
    transform: scale(1.18);
    border-color: #274c7b;
}

/* Responsive styles */
@media (max-width: 900px) {
    .slide-inner {
        flex-direction: column-reverse;
        gap: 24px;
        padding: 32px 18px;
        min-height: 320px;
    }
    .slide-content.slide-image img {
        max-width: 260px;
    }
    .slider-arrow.prev { left: 8px;}
    .slider-arrow.next { right: 8px;}
}
@media (max-width: 600px) {
    .hero-slider {
        border-radius: 0;
        box-shadow: none;
        min-height: 320px;
        /* margin: 20px; */
    }
    .slide-inner {
        /* padding: 18px 4vw; */
        min-height: 220px;
        margin: 20px;
    }
    .slide-content-text h1 {
        font-size: 1.5rem;
    }
    /* .slide-content.slide-image img {
        max-width: 500px;
        width: 100%;
        border-radius: 10px;
    } */
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    .slider-nav {
        bottom: 8px;
    }
}

/* Animation for smooth transitions */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

         .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1101;
        }
        .offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0b2b4e;
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
}
.offcanvas-menu.active {
    right: 0;
}

      .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}
       .offcanvas-close {
        display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.offcanvas-menu ul {
    list-style: none;
    /* padding: 2rem 0; */
    margin: 0;
    flex: 1;
}
      .offcanvas-menu ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.offcanvas-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #007bff;
}
      .offcanvas-btn {
    margin: 1rem 1.5rem;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 25px;
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
    color: #fff;
    display: block;
}

.offcanvas-btn:hover {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.offcanvas-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .nav-links,
    .cta-button {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    .offcanvas-menu {
        width: 100%;
    }
}
    
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            transition: color 0.3s ease;
        }
        
        .logo-icon {
            width: 45px;
            height: 45px;
            background-color: #0b2b4e;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

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

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #f0f0f0;
        } */

.cta-button {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}
        .offcanvas-btn{
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            color: #0b2b4e;
            border: 2px solid white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
            border: 2px solid transparent;
        }
        /* .navbar.scrolled .cta-button {
            background: white;
            color: #0b2b4e;
            border: 2px solid white;
        } */

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-neon), 0 10px 25px rgba(255, 158, 28, 0.3);
    text-shadow: 0 0 10px rgba(11, 43, 78, 0.3);
}

        

        .btn-primary {
            background: white;
            color: #0b2b4e;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover, .btn-secondary:hover {
            transform: translateY(-2px);
        }

     

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%); */
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(1deg); }
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: rgba(11, 43, 78, 0.95);
        }

        .section-header p {
            font-size: 1.1rem;
            /* color: rgba(255, 255, 255, 0.9); */
            max-width: 600px;
            margin: 0 auto;
        }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 43, 78, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 134, 171, 0.05), transparent);
    transition: left 0.7s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(46, 134, 171, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--gradient-accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-highlights li {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-highlights li i {
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 158, 28, 0.15);
    color: var(--accent-dark);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 158, 28, 0.2);
}

/* Advanced Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

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

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Neon glow effect */
.neon-glow {
    box-shadow: 
        0 0 5px var(--accent),
        0 0 10px var(--accent),
        0 0 15px var(--accent),
        0 0 20px var(--accent);
}

/* Hover lift effect */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Gradient text effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

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

        .difference-section{
            background: white;
            padding: 60px 20px;
        }
        .difference-section h1 {
            text-align: center;
            margin-bottom: 15px;
            font-size: 2.5rem;
            color: rgba(11, 43, 78, 0.95);
        }
        .difference-section .intro,
        .difference-section .closing-caption{
            text-align: center;
            max-width: 700px;
            margin: 10px auto 30px;
            color: #444;
        }
        .row {
            display: table-row;
           
        }
        .col{
            display: table-cell;
            padding: 15px;
            border: 1px solid #ddd;
            text-align: center;
            vertical-align: middle;
            font-size: 0.95;
            text-align: left;
        }
        /* .col-1{
            display: flex;
            align-items: flex-start;
        } */
        .comparison-table {
            display: table;
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto 30px;
            max-width: 1000px;
        }
        .header .col {
            font-weight: bold;
            background-color: #0b2b4e;
            color: #fff;
        }
        .highlight {
            background: #e6f2ff;
            font-weight: bold;
            color: #003366;
        }
        
        /* About Us Section */
        .about {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: rgba(11, 43, 78, 0.95);
        }

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

        .about-image {
            background: linear-gradient(45deg, #f0f2f5, #e8ecf1);
            border-radius: 15px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        }
       
        .whats_app_icon {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1200;
            background: #25d366;
            color: white;
            padding: 15px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
            cursor: pointer;
            animation: floatLeaf 6s ease-in-out infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
        }
        .whats_app_icon i {
            font-size: 28px;
        }
        .whats_app_icon:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
        }

        @keyframes floatLeaf {
            0%, 100% { transform: translateY(0) rotate(0); }
            25% { transform: translateY(-6px) rotate(2deg); }
            50% { transform: translateY(-12px) rotate(-2deg); }
            75% { transform: translateY(-6px) rotate(1deg); }
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background:white;
        }

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

        .contact-content h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            color: rgba(11, 43, 78, 0.95);
        }

        .contact-content p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            color: #666;
        }

        .contact-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        #openModalBtn{
           background-color: #0b2b4e;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
        }
        #openModalBtn.scrolled a{
            color: #0b2b4e;
            background: white;
        }
        .btn-demo:hover {
            transform: translateY(-2px);
            color: white;
        }

        .contact-divider {
            margin: 2rem 0;
            position: relative;
        }

        .contact-divider span {
            background: #f8f9fa;
            padding: 0 1rem;
            color: #666;
            font-weight: 500;
        }

        .contact-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #ddd;
            z-index: -1;
        }
        /* Open button */
        .open-btn {
        padding: 12px 20px;
        background: #0b2b4e;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 16px;
        transition: 0.3s;
        }
        .open-btn:hover {
       background: #0b2b4e;
        }

        /* Modal */
       .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            padding: 40px 20px; 
            animation: fadeIn 0.4s;
        }

        .modal-content {
            background: #fff;
            margin: auto;
            padding: 25px;
            border-radius: 16px;
            width: 90%;
            max-width: 600px;
            animation: scaleUp 0.4s ease-out;
            box-shadow: 0px 10px 40px rgba(0,0,0,0.3);
            max-height: 90vh;  
            overflow-y: auto;  
            scrollbar-width: none;
        }


        @keyframes scaleUp {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
        }

        /* Close button */
        .close-btn {
        color: #555;
        float: right;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        }
        /* .close-btn:hover {
        color: red;
        } */


        #demoForm {
            max-width: 500px;
            margin: 30px auto;
            /* padding: 25px; */
            background: #ffffff;
            border-radius: 12px;
            /* box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); */
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }


        .form-group {
            margin-bottom: 18px;
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 6px;
            color: #333;
            font-size: 14px;
            display: flex;
            text-align: start;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px 14px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }


        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #007bff;
            outline: none;
            background: #fff;
            box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.3);
        }


        .error-msg {
            font-size: 12px;
            color: #e74c3c;
            margin-top: 4px;
            display: none; 
        }


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


        .modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 20px;
        }

        .submit-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            background: #007bff;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            /* transition: background 0.3s ease, transform 0.2s ease; */
        }
        .submit-btn:hover {
            background: #0056b3;
            /* transform: translateY(-2px); */
        }
        .submit-btn:active {
            transform: translateY(0px);
        }


        .close-btn {
            padding: 10px 20px;
            border: 1px solid #ccc;
            border-radius: 8px;
            background: #f5f5f5;
            color: #333;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .close-btn:hover {
            background: #e0e0e0;
        }


        /* Error message */
        .error-msg {
        color: red;
        font-size: 13px;
        height: 14px;
        }

        /* Footer buttons */
        .modal-footer {
        margin-top: 15px;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        }
        .submit-btn {
        padding: 10px 18px;
        background: #28a745;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
        }
        .submit-btn:hover {
        background: #218838;
        }
        .close-btn:not(span) {
        padding: 10px 18px;
        background: #dc3545;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
        }
        .close-btn:not(span):hover {
        background: #c82333;
        }

        /* Animations */
        /* @keyframes fadeIn {
        from {opacity: 0;} to {opacity: 1;}
        }
        @keyframes slideDown {
        from {transform: translateY(-100px); opacity: 0;}
        to {transform: translateY(0); opacity: 1;}
        } */

        .btn-whatsapp {
            background: #25d366;
            color: white;
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            color: white;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: grid;
            
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #70b5ff;
          
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.6;
        }

        /* .footer-section a:hover {
            color: #667eea;
        } */

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #555;
            color: #ccc;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            

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

           
            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-buttons {
                flex-direction: column;
            }
        }

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

        .feature-card, .pricing-card {
            animation: fadeInUp 0.6s ease forwards;
        }
         @media (max-width: 991px) {
       
        .row .header{
            display: none;
        }
    
    }
    @media (max-width: 768px) {
    .comparison-table {
        display: block;
    }
    .comparison-table .row {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 1rem;
        background: #f9f9f9;
    }
    .comparison-table .header{
        display: none;
    }
    .comparison-table .col {
        display: block;
        padding: 8px 0;
        border: none;
    }
    .comparison-table .col:first-child {
        font-weight: bold;
        color: #0b2b4e;
        margin-bottom: 0.5rem;
    }
    }

/* Modal form full width on small screens */
@media (max-width: 600px) {
  #demoForm {
    width: 100%;
    padding: 15px;
  }
  .form-group input,
  .form-group textarea {
    font-size: 14px;
    padding: 10px;
  }
  
}

