  *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blue: #1c63b8;
            --dark-blue: #0d2852;
            --black: #111111;
            --white: #ffffff;
            --light-gray: #f4f4f4;
            --nav-bg: #ffffff;
        }




html{
         scroll-behavior: smooth;
}


        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
       
            
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ─── HEADER TOP BAR ─── */
        .header-top {
            display: flex;
            align-items: stretch;
            height: 90px;
            background-color: var(--black);
            position: relative;
        }

        .header-logo-section {
            width: 32%;
            background-color: var(--black);
            display: flex;
            align-items: center;
            padding: 0 2rem 0 2.5rem;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .header-logo-section .logo-text {
            display: flex;
            flex-direction: column;
        }

        .header-logo-section .logo-text span.brand {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .header-logo-section .logo-text span.tagline {
            font-size: 0.72rem;
            font-weight: 300;
            color: rgba(255,255,255,0.65);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .header-cta {
            flex: 1;
            background-color: var(--blue);
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 0 3rem 0 4rem;
            position: relative;
            clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .cta-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--white);
        }

        .cta-icon {
            width: 44px;
            height: 44px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cta-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .cta-item .label {
            font-size: 0.75rem;
            font-weight: 400;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cta-item .value {
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
        }

        .cta-item .value a {
            color: var(--white);
        }

        /* ─── NAVBAR ─── */
        .navbar {
            display: flex;
            align-items: stretch;
            height: 60px;
            background-color: var(--nav-bg);
            border-bottom: 1px solid #e8e8e8;
            position: relative;
        }

        .navbar-indent {
            width: 32%;
            background-color: var(--nav-bg);
            flex-shrink: 0;
        }

        .navbar-links {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-list {
            list-style: none;
            display: flex;
            gap: 0.25rem;
        }

        .nav-list li a {
            display: block;
            padding: 0.5rem 1.1rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #333;
            transition: color 0.2s;
            position: relative;
        }

        .nav-list li a:hover,
        .nav-list li.active a {
            color: var(--blue);
        }

        .nav-list li.active a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1.1rem;
            right: 1.1rem;
            height: 2px;
            background-color: var(--blue);
        }

        .navbar-cta {
            background-color: var(--dark-blue);
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0 2rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
            cursor: pointer;
            transition: background-color 0.2s;
            clip-path: polygon(16px 0%, 100% 0%, 100% 100%, 0% 100%);
            padding-left: 2.5rem;
        }

        .navbar-cta:hover {
            background-color: var(--blue);
        }

        .navbar-cta svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ─── HAMBURGER MENU ─── */
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 1rem;
            position: relative;
            width: 50px;
            height: 50px;
        }

        .hamburger-icon {
            display: flex;
            flex-direction: column;
            gap: 5px;
            transition: opacity 0.3s ease;
        }

        .hamburger-icon span {
            width: 24px;
            height: 2.5px;
            background-color: var(--dark-blue);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .close-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            color: var(--dark-blue);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hamburger-menu.active .hamburger-icon {
            opacity: 0;
            pointer-events: none;
        }

        .hamburger-menu.active .close-icon {
            opacity: 1;
        }

        /* ─── MOBILE MENU ─── */
        .navbar.mobile-open {
            flex-direction: column;
            height: auto;
        }

        .navbar.mobile-open .navbar-links {
            display: flex !important;
            flex-direction: column;
            width: 100%;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            animation: slideDown 0.3s ease forwards;
        }

        @keyframes slideDown {
            to {
                max-height: 400px;
            }
        }

        .navbar.mobile-open .nav-list {
            flex-direction: column;
            width: 100%;
            gap: 0;
            padding: 0;
        }

        .navbar.mobile-open .nav-list li a {
            display: block;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e8e8e8;
        }

        .navbar.mobile-open .navbar-cta {
            clip-path: none;
            width: 100%;
            padding: 1rem 1.5rem;
            justify-content: center;
            border-bottom: none;
        }
        .hero {
            position: relative;
            height: calc(100vh - 150px);
            min-height: 500px;
            background-color: #0a0a0a;
            overflow: hidden;
        }

        /* ─── SLIDES ─── */
        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.9s ease;
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.1) 100%);
        }

        /* Slide-specific backgrounds */


  .slide-00 .slide-bg {
           /*   background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%), url('hero-2.jpg') center/cover; */ 


           background-image: url('ekco-mockup.jpg');
            
            
            }






            .slide-0 .slide-bg {
           /*   background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%), url('hero-2.jpg') center/cover; */ 


           background-image: url('ekco\ mockup\ 2.jpg');
            
            
            }




        .slide-1 .slide-bg {
           /*   background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%), url('hero-2.jpg') center/cover; */ 


           background-image: url('a.png');
            
            
            }
        .slide-2 .slide-bg { background: linear-gradient(135deg, #0a1628 0%, #0d2852 40%, #1c3a6b 100%);
        
        
          background-image: url('c.png');
          background-size: cover;
          background-position: bottom;
        }
        .slide-3 .slide-bg { background: linear-gradient(135deg, #0d1f0d 0%, #163a1e 40%, #1b5e30 100%);
        
        
           background-image: url('d.png');
          background-size: cover;
          background-position: center;
        
        }
        .slide-4 .slide-bg { background: linear-gradient(135deg, #1a0d00 0%, #3d1f00 40%, #5e3600 100%);
        
           background-image: url('hero-2.jpg');
          background-size: cover;
          background-position: center;
        
        }
        .slide-5 .slide-bg { background: linear-gradient(135deg, #1a001a 0%, #2e0a3d 40%, #4a1260 100%);
        
                 background-image: url('b.png');
          background-size: cover;
          background-position: center;
        }
        .slide-6 .slide-bg { background: linear-gradient(135deg, #001a1a 0%, #0a2e2e 40%, #104040 100%);
        
           background-image: url('next-lock-bg.jpg');
          background-size: cover;
          background-position: center;
        }

        /* Hero content card */
        .hero-content {
            position: absolute;
            inset: 0;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0 6rem 0 0;
        }

        .hero-card {
            background-color: rgba(10, 10, 18, 0.82);
            border-top: 5px solid var(--blue);
            padding: 2.5rem 2.75rem;
            max-width: 420px;
            width: 100%;
        }

        .hero-card .eyebrow {
            font-size: 0.85rem;
            font-weight: 400;
            color: rgba(255,255,255,0.75);
            margin-bottom: 0.5rem;
            letter-spacing: 0.3px;
        }

        .hero-card h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        .hero-card p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.65;
            margin-bottom: 2rem;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 0;
        }

        .hero-btn .btn-label {
            background-color: var(--white);
            color: var(--dark-blue);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 0.8rem 1.75rem;
            display: block;
            transition: background-color 0.2s, color 0.2s;
        }

        .hero-btn .btn-arrow {
            background-color: var(--blue);
            color: var(--white);
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .hero-btn .btn-arrow svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: white;
            stroke-width: 2.5;
        }

        .hero-btn:hover .btn-label {
            background-color: var(--blue);
            color: white;
        }

        .hero-btn:hover .btn-arrow {
            background-color: var(--dark-blue);
        }

        /* Slider arrows */
        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 44px;
            height: 44px;
            background-color: rgba(255,255,255,0.15);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .hero-arrow:hover { background-color: rgba(255,255,255,0.3); }
        .hero-arrow.prev { left: 0; }
        .hero-arrow.next { right: 0; }

        .hero-arrow svg {
            width: 20px;
            height: 20px;
            stroke: white;
            stroke-width: 2.5;
            fill: none;
        }

        /* Dots */
        .hero-dots {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.35);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s, transform 0.3s;
        }

        .hero-dot.active {
            background: var(--white);
            transform: scale(1.2);
        }

        /* ─── ABOUT SECTION ─── */
        .about-section {
            position: relative;
            padding: 6rem 0;
            background-color: #f8f9fa;
            overflow: hidden;
        }

        .about-bg-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
        }

        .tracker-icon,
        .signal-icon {
            position: absolute;
            width: 120px;
            height: 120px;
            color: var(--blue);
            opacity: 0.08;
        }

        .tracker-1 { top: 5%; right: 5%; animation: float 8s ease-in-out infinite; }
        .tracker-2 { bottom: 15%; left: 3%; animation: float 10s ease-in-out infinite 2s; width: 150px; height: 150px; }
        .tracker-3 { top: 40%; right: 10%; animation: float 12s ease-in-out infinite 1s; width: 100px; height: 100px; }
        .signal-1 { top: 25%; left: 8%; animation: float 9s ease-in-out infinite 1.5s; }
        .signal-2 { bottom: 20%; right: 8%; animation: float 11s ease-in-out infinite 0.5s; width: 140px; height: 140px; }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .about-section .container {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .about-image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image-placeholder {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 5;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(28, 99, 184, 0.15);
            border: 3px solid var(--blue);
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .about-text-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .about-text-content {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .about-tag {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2px;
            width: fit-content;
            padding: 0.5rem 1rem;
            background-color: rgba(28, 99, 184, 0.1);
            border-radius: 25px;
        }

        .about-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            line-height: 1.2;
        }

        .about-paragraph {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin: 0;
        }

        .about-paragraph + .about-paragraph { margin-top: 1rem; }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2rem 0;
            padding: 2rem 0;
            border-top: 2px solid #e0e0e0;
            border-bottom: 2px solid #e0e0e0;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .feature-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue);
        }

        .feature-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        .button {
            display: inline-flex;
            align-items: center;
            padding: 0.85rem 2rem;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: background-color 0.2s, color 0.2s;
            width: fit-content;
        }

        .button-secondary {
            background-color: var(--dark-blue);
            color: var(--white);
        }

        .button-secondary:hover {
            background-color: var(--blue);
        }




 /* ─── PRICING SECTION ─── */
        .pricing-section {
            background-color: var(--dark-blue);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Decorative grid lines */
        .pricing-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Glowing orb top-right */
        .pricing-section::after {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(28,99,184,0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        .pricing-container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-tag {
            display: inline-block;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            padding: 0.4rem 1.1rem;
            border: 1px solid rgba(28,99,184,0.4);
            margin-bottom: 1rem;
        }

        .pricing-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 1rem;
        }

        .pricing-subtitle {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.55);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Toggle */
        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.75rem;
        }

        .toggle-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.6);
            transition: color 0.2s;
        }

        .toggle-label.active { color: var(--white); }

        .toggle-switch {
            position: relative;
            width: 52px;
            height: 28px;
            background: rgba(255,255,255,0.1);
            border-radius: 14px;
            cursor: pointer;
            border: none;
            transition: background 0.3s;
        }

        .toggle-switch.on { background: var(--blue); }

        .toggle-knob {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .toggle-switch.on .toggle-knob { transform: translateX(24px); }

        .toggle-badge {
            font-size: 0.7rem;
            font-weight: 700;
            background: #22c55e;
            color: white;
            padding: 0.15rem 0.5rem;
            border-radius: 20px;
            letter-spacing: 0.5px;
        }

        /* Cards grid */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            align-items: start;
        }

        .pricing-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 2.5rem 2rem;
            position: relative;
            transition: transform 0.3s, border-color 0.3s, background 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            border-color: rgba(28,99,184,0.5);
            background: rgba(255,255,255,0.07);
        }

        /* Featured card */
        .pricing-card.featured {
            background: var(--blue);
            border-color: var(--blue);
            transform: translateY(-12px);
        }

        .pricing-card.featured:hover {
            transform: translateY(-18px);
            border-color: #3a7fd4;
            background: #2271cc;
        }

        .featured-badge {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: #22c55e;
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 0.3rem 1rem;
            white-space: nowrap;
        }

        .plan-name {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 1.25rem;
        }

        .pricing-card.featured .plan-name { color: rgba(255,255,255,0.8); }

        .plan-price {
            display: flex;
            align-items: flex-start;
            gap: 0.2rem;
            margin-bottom: 0.4rem;
        }

        .price-currency {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            margin-top: 0.5rem;
            line-height: 1;
        }

        .price-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .price-period {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
            align-self: flex-end;
            margin-bottom: 0.6rem;
        }

        .pricing-card.featured .price-period { color: rgba(255,255,255,0.7); }

        .plan-description {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .pricing-card.featured .plan-description {
            color: rgba(255,255,255,0.75);
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .plan-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            margin-bottom: 2rem;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.7);
        }

        .pricing-card.featured .plan-features li { color: rgba(255,255,255,0.9); }

        .plan-features li.disabled { color: rgba(255,255,255,0.25); }
        .pricing-card.featured .plan-features li.disabled { color: rgba(255,255,255,0.35); }

        .feature-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(28,99,184,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pricing-card.featured .feature-check { background: rgba(255,255,255,0.2); }

        .plan-features li.disabled .feature-check {
            background: rgba(255,255,255,0.05);
        }

        .feature-check svg {
            width: 10px;
            height: 10px;
            stroke: #1c63b8;
            stroke-width: 2.5;
            fill: none;
        }

        .pricing-card.featured .feature-check svg { stroke: white; }
        .plan-features li.disabled .feature-check svg { stroke: rgba(255,255,255,0.2); }

        .plan-cta {
            display: block;
            width: 100%;
            padding: 0.9rem;
            text-align: center;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 2px solid rgba(255,255,255,0.2);
            color: var(--white);
            background: transparent;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
            text-decoration: none;
        }

        .plan-cta:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.4);
        }

        .pricing-card.featured .plan-cta {
            background: var(--white);
            border-color: var(--white);
            color: var(--blue);
        }

        .pricing-card.featured .plan-cta:hover {
            background: var(--dark-blue);
            border-color: var(--dark-blue);
            color: var(--white);
        }

        /* Pricing footer note */
        .pricing-note {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.35);
        }

        .pricing-note a {
            color: rgba(28,99,184,0.9);
            text-decoration: underline;
        }

        @media (max-width: 1100px) {
            .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }
            .pricing-card.featured { transform: translateY(0); }
            .pricing-card.featured:hover { transform: translateY(-6px); }
        }

        @media (max-width: 900px) {
            .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
            .pricing-title { font-size: 2rem; }
        }

        /* ─── FEATURES SECTION ─── */
        .features-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f2f5 100%);
            padding: 8rem 0;
            position: relative;
            overflow: hidden;





        }

    .features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("./features-bg.jpg") center/cover no-repeat;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.85; /* adjust for readability */
}

        .features-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(28, 99, 184, 0.06) 0%, transparent 30%);
            pointer-events: none;
            border-radius: 50%;
        }

        .features-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .features-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .features-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 2.5px;
            padding: 0.4rem 1rem;
            background-color: rgba(28, 99, 184, 0.1);
            border-radius: 25px;
            margin-bottom: 1rem;
        }

        .features-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark-blue);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .features-subtitle {
            font-size: 1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.75rem;
            align-items: start;
        }

        .feature-card {
            position: relative;
            background: white;
            border-radius: 16px;
            padding: 1.75rem;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            opacity: 0;
            animation: featureFadeIn 0.6s ease forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.05s; }
        .feature-card:nth-child(2) { animation-delay: 0.1s; }
        .feature-card:nth-child(3) { animation-delay: 0.15s; }
        .feature-card:nth-child(4) { animation-delay: 0.2s; }
        .feature-card:nth-child(5) { animation-delay: 0.25s; }
        .feature-card:nth-child(6) { animation-delay: 0.3s; }
        .feature-card:nth-child(7) { animation-delay: 0.35s; }
        .feature-card:nth-child(8) { animation-delay: 0.4s; }

        @keyframes featureFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(28, 99, 184, 0.05) 0%, rgba(28, 99, 184, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            border-color: var(--blue);
            box-shadow: 0 20px 50px rgba(28, 99, 184, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon-wrapper {
            position: relative;
            z-index: 2;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--blue) 0%, #2271cc 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 20px rgba(28, 99, 184, 0.2);
        }

        .feature-card:hover .feature-icon-wrapper {
            transform: rotate(8deg) scale(1.1);
            box-shadow: 0 12px 30px rgba(28, 99, 184, 0.35);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            color: white;
             display: flex;
            justify-self: center;
            align-self: center;
            align-items:center;
            text-align: center;
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: white;
            
           
           
        }

        .feature-content {
            position: relative;
            z-index: 2;
        }

        .feature-card-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 0.75rem;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-card-title {
            color: var(--blue);
        }

        .feature-card-description {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }

        .feature-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--blue);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .feature-card-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-card-link {
            gap: 0.75rem;
        }

        .feature-card:hover .feature-card-link::after {
            transform: translateX(4px);
        }



  .t-section {
    background: var(--dark-blue);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
  }
  .t-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .t-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(28,99,184,0.25) 0%, transparent 70%);
    pointer-events: none;
  }
  .t-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
  .t-header { text-align: center; margin-bottom: 3.5rem; }
  .t-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    color: var(--blue); text-transform: uppercase; letter-spacing: 2.5px;
    padding: 0.35rem 1rem; border: 1px solid rgba(28,99,184,0.45); margin-bottom: 1rem;
  }
  .t-title { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 0.75rem; }
  .t-sub { font-size: 0.9rem; color: rgba(255,255,255,0.5); max-width: 440px; margin: 0 auto; line-height: 1.7; }
  .t-stage { position: relative; overflow: hidden; padding-bottom: 0.5rem; }
  .t-track { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
  .t-card {
    flex: 0 0 calc(33.333% - 1rem); margin: 0 0.5rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--blue); padding: 2rem 1.75rem;
    display: flex; flex-direction: column; gap: 1.25rem; box-sizing: border-box;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
  }
  .t-card:hover { border-color: rgba(28,99,184,0.8); background: rgba(255,255,255,0.08); transform: translateY(-6px); }
  .t-stars { display: flex; gap: 4px; }
  .t-star { color: #f59e0b; font-size: 16px; line-height: 1; }
  .t-quote {
    font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.75;
    flex: 1; position: relative; padding-top: 0.5rem;
  }
  .t-quote::before {
    content: '\201C'; position: absolute; top: -0.5rem; left: -0.25rem;
    font-size: 3rem; color: var(--blue); font-family: Georgia, serif; line-height: 1; opacity: 0.7;
  }
  .t-author {
    display: flex; align-items: center; gap: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem;
  }
  .t-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0; color: #fff;
  }
  .t-name { font-size: 0.875rem; font-weight: 700; color: #fff; line-height: 1.2; }
  .t-role { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
  .t-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; margin-top: 2.5rem; }
  .t-btn {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.15s; flex-shrink: 0;
  }
  .t-btn:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.08); }
  .t-btn svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.5; fill: none; }
  .t-dots { display: flex; gap: 8px; align-items: center; }
  .t-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.2); border: none; cursor: pointer; padding: 0;
    transition: background 0.3s, width 0.3s, border-radius 0.3s;
  }
  .t-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }



        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
            .features-title { font-size: 2.2rem; }
            .features-section { padding: 6rem 0; }
        }

        @media (max-width: 768px) {


  .hero {
            position: relative;
            height: calc(120vh - 150px);
            min-height: 120vh;
            background-color: #0a0a0a;
            overflow: hidden;
        }


     .slide-bg {
            position: absolute;
            inset: 0;
            background-size: auto 100%;
            background-position: top;
        }


            .features-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
            .features-title { font-size: 1.8rem; }
            .feature-card { padding: 2rem; }
            /* Mobile browsers often ignore/break background-attachment: fixed (can render as "missing") */
            .features-section::before {
                background-attachment: scroll;
              
                width: 100%;
                height: 200%;
                top: -20%;
                right: 0%;
        ;
                 opacity: 2; /* adjust for readability */
                  background: url("./features-bg.jpg") center/cover no-repeat;
                  background-size: cover;
   
            }




            .features-section::after { width: 350px; height: 350px; bottom: -20%; left: -5%; }
        }

        @media (max-width: 640px) {
            .features-grid { grid-template-columns: 1fr; }
            .features-title { font-size: 1.5rem; }
            .features-container { padding: 0 1rem; }
            .feature-card { padding: 1.75rem; }
            .features-section { padding: 4rem 0; }
        }

        /* Extra safety: disable fixed backgrounds on touch devices (iOS/Android) */
        @media (hover: none), (pointer: coarse) {
            .features-section::before { background-attachment: scroll; }
        }










        /* ─── RESPONSIVE ─── */
        @media (max-width: 900px) {
            .header-logo-section { width: 40%; }
            .navbar-indent { width: 40%; }
            .header-cta { gap: 1.5rem; padding: 0 1.5rem 0 2.5rem; }
            .hero-content { justify-content: center; padding: 0 1.5rem; align-items: flex-end; }
            .hero-card { max-width: 100%; padding: 1.75rem 2rem; }
            .slide-bg { background-position: top !important; }
            .about-content { grid-template-columns: 1fr; gap: 3rem; }
            .about-heading { font-size: 2rem; }
        }

        @media (max-width: 640px) {
            .header-top { flex-direction: column; height: auto; }
            .header-logo-section { width: 100%; padding: 1rem 1.5rem; }
            .header-cta { clip-path: none; flex-direction: column; gap: 1rem; padding: 1.25rem 1.5rem; align-items: flex-start; }
            
            /* Mobile Navbar */
            .navbar { 
                flex-direction: row;
                height: 60px;
                justify-content: space-between;
                align-items: center;
                padding: 0 1rem;
            }
            .navbar-indent { display: none; }
            .navbar-links { 
                display: none !important;
                padding: 0;
                overflow-x: auto;
            }
            .nav-list { gap: 0; }
            .navbar-cta { 
                display: none !important;
                clip-path: none;
                width: 100%;
                padding: 1rem 1.5rem;
                justify-content: center;
            }
            .hamburger-menu {
                display: flex;
            }
            
            .slide-bg { background-position: top !important; }
            .hero-card { max-width: 100%; padding: 1.25rem 1.5rem; margin-bottom: 1rem; }
            .hero-card h1 { font-size: 1.85rem; }
            .hero-card p { font-size: 0.8rem; margin-bottom: 1.25rem; }
            .hero-content { padding: 0 1rem; align-items: flex-end; padding-bottom: 2rem; }
            .hero-btn .btn-label { padding: 0.65rem 1.25rem; font-size: 0.7rem; }
            .about-features { grid-template-columns: 1fr; gap: 1.5rem; margin: 1.5rem 0; padding: 1.5rem 0; }
            .about-section { padding: 4rem 0; }

            
        }

        /* ─── CONTACT SECTION ─── */
        .contact-section {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #1a4d8f 100%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .contact-content p {
            font-size: 1rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-info-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .contact-info-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--blue);
            font-size: 1.2rem;
        }

        .contact-info-text {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .contact-info-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .contact-info-value {
            font-size: 1rem;
            color: var(--white);
            font-weight: 500;
        }

        .contact-info-value a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-info-value a:hover {
            color: rgba(255,255,255,0.8);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255,255,255,0.8);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.85rem 1rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 6px;
            background: rgba(255,255,255,0.05);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.2s, background 0.2s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--blue);
            background: rgba(255,255,255,0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form-btn {
            background: var(--blue);
            color: var(--white);
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 0.5rem;
        }

        .contact-form-btn:hover {
            background: var(--white);
            color: var(--blue);
        }

        /* ─── FOOTER ─── */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 3rem 0 1rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-column h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--white);
        }

        .footer-column p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-column ul li a {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-column ul li a:hover {
            color: var(--blue);
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-brand-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
        }

        .footer-socials {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(28,99,184,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            text-decoration: none;
            transition: background 0.2s, color 0.2s;
            font-size: 0.9rem;
        }

        .social-link:hover {
            background: var(--blue);
            color: var(--white);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-bottom-links a:hover {
            color: var(--blue);
        }

        @media (max-width: 900px) {
            .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
            .contact-content h2 { font-size: 2rem; }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 640px) {
            .contact-wrapper { gap: 1.5rem; }
            .contact-content h2 { font-size: 1.75rem; }
            .footer-content { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
        }

        /* ─── FLOATING WHATSAPP BUTTON ─── */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 999;
            text-decoration: none;
            color: white;
            font-size: 1.8rem;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float:active {
            transform: scale(0.95);
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 80px;
            bottom: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        @media (max-width: 640px) {
            .whatsapp-float {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
            }
            .whatsapp-tooltip {
                display: none;
            }
        }
 