* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: #F7F7F8;
            color: #333;
        }
        
        .navbar {
            background-color: #ffffff;
            padding: 0.6rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 42px;
            width: auto;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #86BC25 !important;
        }

        .navbar-nav .nav-link.active {
            color: #86BC25 !important;
        }

        .dropdown-menu {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            max-height: 500p;
            z-index: 1001;
        }

        .dropdown-item {
            color: #333;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: #86BC25 ;
            color: white;
        }
        
        .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

        
        .btn-get-started:hover {
    background: #86BC25;
}


        .hero {
            height: 100vh;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-color: transparent;
            background-image:linear-gradient(180deg, rgba(247,247,248,0.9) 0%, rgba(247,247,248,0.5) 100%);
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            background-repeat: no-repeat;
            width: 100%;
            margin-top: 0;
            
        }
        
       
        

        .hero-shapes {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.85;
        }

        .hero-shape-left {
            width: 520px;
            height: 520px;
            left: -120px;
            bottom: -140px;
            background: radial-gradient(circle at 40% 40%, rgba(207, 232, 160, 0.65), rgba(207, 232, 160, 0.65));
        }

        .hero-shape-right {
            width: 420px;
            height: 420px;
            right: -120px;
            top: -120px;
            background: radial-gradient(circle at 65% 35%, rgba(207, 232, 160, 0.65), rgba(207, 232, 160, 0.65));
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(247, 247, 248, 0.2) 0%, rgba(247, 247, 248, 0.35) 60%, rgba(247, 247, 248, 0.45) 100%);
            mix-blend-mode: normal;
            z-index: 0;
        }

        .hero .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .blue-gradient-text {
            color:#86BC25
        }
        
        .hero p {
            color:#555;
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-icon {
            width: 180px;
            height: 180px;
            margin: 0 auto 1rem;
            border-radius: 24px;
            overflow: hidden;
            background: white;
            box-shadow: 0 20px 35px rgba(15, 23, 42, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .service-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
            position: relative;
        }

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

        .service-layer {
            margin-bottom: 6rem;
        }

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

        .layer-tag {
            display: inline-block;
            background: linear-gradient(135deg, #86BC25 0%, #86BC25 100%);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
        }

        .service-layer:nth-child(1) .layer-tag {
            background-color: #86BC25;
        }

        .service-layer:nth-child(2) .layer-tag {
            background-color: #86BC25; 
        }

        .timeline-header .layer-tag {
            font-size: 0.9rem;
            padding: 0.5rem 2.5rem;
           background-color: #86BC25;
            color: white;
        }

        .layer-title {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .layer-subtitle {
            font-size: 1rem;
            color: #555;
            font-weight: 500;
            line-height: 1.8;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .core-capabilities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .technologies-section {
            padding: 5rem 2rem 3rem;
            background-color: #F7F7F8;
        }

        .technologies-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .technologies-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .technologies-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .technologies-header h2 span {
            background: linear-gradient(135deg, #86BC25 0%, #86BC25 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .technologies-header p {
            max-width: 750px;
            margin: 0 auto;
            color: #555;
            font-size: 1rem;
            line-height: 1.8;
        }

        .technologies-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            /* row-gap: 3rem;
            column-gap: 0.0rem; */
             gap: 4.5rem 0.1rem; 
            justify-items: center;
        }

        .technology-card {
            width: 150px;
            height: 150px;
            border-radius: 16px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 0.4rem;
            font-weight: 700;
            color: #000;
               border:4px solid #86BC25;      /* ✅ border added */
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
        }

        .technology-card img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .technology-card span {
            font-size: 0.95rem;
        }

        @media (max-width: 1200px) {
            .technologies-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 992px) {
            .technologies-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .technologies-grid {
                gap: 1rem;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .technology-card {
                width: 130px;
                height: 130px;
            }

            .hero {
                overflow: hidden;
            }

            .hero-shape-left {
                width: 200px;
                height: 200px;
                left: -60px;
                bottom: -60px;
            }

            .hero-shape-right {
                width: 160px;
                height: 160px;
                right: -50px;
                top: -50px;
            }
        }

        .service-card {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .service-card:hover {
            background: white;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
            border-color: rgba(0, 0, 0, 0.08);
        }

        .service-card:hover h3 {
            color: #86BC25;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .service-subtitle {
            color: #86BC25;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

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

        .service-features li {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .service-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #86BC25;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .timeline-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #F7F7F8 0%, #F7F7F8 100%);
            position: relative;
        }

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 3rem;
            background-color: #F9FAFB;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

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

        .timeline-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .timeline-header p {
            color: #555;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .timeline-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            position: relative;
        }

        .timeline-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            transform-origin: center;
            will-change: transform;
        }

        .timeline-card:hover {
            transform: scale(1.06);
            box-shadow: 0 25px 45px rgba(134, 188, 37, 0.3);
        }

        .timeline-item {
            text-align: center;
            padding: 2rem;
        }

        .timeline-step {
            font-size: 3rem;
            font-weight: 700;
            color: #86BC25;
            margin-bottom: 1rem;
        }

        .timeline-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .timeline-item p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .timeline-delivery {
            background: #f0f7ff;
            color: #86BC25;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-top: 1rem;
        }

        /* ✅ JOIN US / CTA SECTION (CSS) */
        .cta-join {
            padding: 20px 12px;
            /* min-height: 160px; */
            border-radius: 0;
              background: #86BC25;
            margin: 0;
            width: 100%;
            max-width: none;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .cta-join__inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 22px;
            flex-wrap: wrap;
            text-align: center;
        }

        .cta-join__title {
            margin: 0;
            font-size: clamp(28px, 4vw, 54px);
            font-weight: 800;
            
            letter-spacing: 0.5px;
            line-height: 1.1;
        }

        .cta-join__btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 34px;
            border-radius: 8px;
            background:#000;
            color: #86BC25;
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: transform 0.18s ease, background 0.18s ease;
        }

        .cta-join__btn:hover {
            transform: translateY(-1px);
            background: rgba(17, 24, 39, 0.7);
        }

        .cta-join__arrow {
            font-size: 18px;
            line-height: 1;
        }

        /* Responsive tweaks */
        @media (max-width: 600px) {
            
            .cta-join__btn {
                width: 100%;
                max-width: 340px;
            }
        }

        .cta-join + footer {
            margin-top: 0 !important;
        }

        .why-choose-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
            position: relative;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .why-choose-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .why-choose-header p {
            color: #555;
            font-size: 1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #86BC25;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #555;
            font-weight: 500;
        }



        footer {
            background-color: #111313;
            border-top: 1px solid #e5e7eb;
            padding: 3rem 0;
        }

        footer h6 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #000;
        }

        footer a {
            color: #666;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        footer a:hover {
            color: #86BC25 !important;
        }

        footer .text-muted {
            color: #666 !important;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
        }

        .theme-toggle svg {
            width: 24px;
            height: 24px;
            stroke: #333;
            stroke-width: 2;
            fill: none;
            transition: all 0.3s ease;
        }

        .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px #0003;
            z-index: 999;
            animation: pulse 1.5s infinite;
        }

        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

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

        .powers-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .powers-container {
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            padding: 3rem;
            background-color: #F9FAFB;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        .powers-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .powers-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1rem;
        }

        .powers-subtitle {
            color: #666;
            font-size: 1rem;
            margin: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .values-badge {
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #e3f2fd;
            border-radius: 9999px;
            border: 1px solid #dbeafe;
            color: #86BC25;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .powers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .power-card {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .power-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }

        .power-card:hover .power-title {
            color: #86BC25;
        }

        .power-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            background-color: #86BC25 !important;
            color: #000 !important;
        }

        .power-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .power-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
        }
        body.dark-mode {
            background-color: #1a1a1a;
            color: #ccc;
            }

        body.dark-mode .power-icon,
        body.dark-mode .timeline-icon {
            background-color: #86BC25 !important;
            color: #000 !important;
        }

        body.dark-mode .powers-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .powers-container {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .powers-title {
            color: #fff;
        }

        body.dark-mode .powers-subtitle {
            color: #ccc;
        }

        body.dark-mode .power-card {
            background-color: #1a1a1a;
        }

        body.dark-mode .power-title {
            color: #fff;
        }

        body.dark-mode .power-description {
            color: #ccc;
        }

        body.dark-mode .values-badge {
            background-color: #1a3a52;
            border-color: #2a5a82;
        }

        body.dark-mode .values-badge span {
            color: #60a5fa;
        }

        body.dark-mode .values-badge svg {
            stroke: #60a5fa;
        }

        body.dark-mode .technologies-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .technologies-container {
            border-color: transparent;
        }

        body.dark-mode .technologies-header h2 {
            color: #ffffff;
        }

        body.dark-mode .technologies-header p {
            color: #cbd5f5;
        }

        body.dark-mode .technology-card {
            background: #000;
            border-color: #555;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            color: #f8fafc;
            border-radius: 16px;;
             border:4px solid #86BC25;      /* ✅ border added */
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
        }
        

        body.dark-mode .technology-card span {
            color: #e0e7ff;
        }

        body.dark-mode .technology-card.android-card img,
        body.dark-mode .technology-card.aws-card img {
            filter: brightness(0) invert(1);
        }

        body.dark-mode {
            background-color: #1a1a1a;
            color: #ccc;
        }

        body.dark-mode .navbar {
            background-color: #2a2a2a;
            box-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        body.dark-mode .navbar-nav .nav-link {
            color: #e0e0e0 !important;
        }

        body.dark-mode .navbar-nav .nav-link:hover {
            color: #0066FF !important;
        }

        body.dark-mode .dropdown-menu {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .dropdown-item {
            color: #e0e0e0;
        }

        body.dark-mode .dropdown-item:hover {
            background-color: #1a3a52;
            color: #4a9eff;
        }

        body.dark-mode .theme-toggle svg {
            stroke: #e0e0e0;
        }

        body.dark-mode .hero {
            background-image: none;
            background-color: #1a1a1a;
            background-blend-mode: normal;
            background-size: cover;
            background-position: center;
        }

        body.dark-mode .hero::before {
            background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.25) 100%);
            mix-blend-mode: multiply;
        }

        body.dark-mode .hero h1 {
            color: #ffffff;
            text-shadow: 0 6px 24px rgba(0,0,0,0.85);
        }

        body.dark-mode .hero p {
            color: rgba(255,255,255,0.9);
            text-shadow: 0 4px 18px rgba(0,0,0,0.75);
        }

        body.dark-mode .service-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .service-card {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .service-card:hover {
            background-color: #333333;
            border-color: #555;
        }

        body.dark-mode .service-card h3 {
            color: #ffffff;
        }

        body.dark-mode .service-features li {
            color: #b0b0b0;
        }

        body.dark-mode .layer-title {
            color: #ffffff;
        }

        body.dark-mode .layer-subtitle {
            color: #b0b0b0;
        }

        body.dark-mode .service-subtitle {
            color: #4a9eff;
        }

        .timeline-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            background-color: #86BC25;
            color: #000;
        }

        .timeline-icon i {
            color: inherit;
        }

        body.dark-mode .timeline-section {
            background: #1a1a1a;
        }

        body.dark-mode .timeline-container {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .timeline-header h2 {
            color: #ffffff;
        }

        body.dark-mode .timeline-header p {
            color: #b0b0b0;
        }

        body.dark-mode .timeline-item h4 {
            color: #ffffff;
        }

        body.dark-mode .timeline-item p {
            color: #b0b0b0;
        }

        body.dark-mode .timeline-step {
            color: #4a9eff;
        }

        body.dark-mode .timeline-delivery {
            background: #1a3a52;
            color: #4a9eff;
        }

        body.dark-mode .timeline-grid > div {
            background: #2a2a2a !important;
            border-color: #444 !important;
        }

        body.dark-mode .timeline-grid > div > div[style*="color: #86BC25"] {
            color: #86BC25 !important;
        }

        body.dark-mode .timeline-grid > div h4 {
            color: #ffffff !important;
        }

        body.dark-mode .timeline-grid > div p {
            color: #b0b0b0 !important;
        }

        body.dark-mode .timeline-grid > div > div:last-child {
            background: #1a3a52 !important;
            color: #86BC25 !important;
        }

        body.dark-mode .cta-join__title {
            color: #000 !important;
        }

        body.dark-mode .why-choose-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .why-choose-header h2 {
            color: #ffffff;
        }

        body.dark-mode .why-choose-header p {
            color: #b0b0b0;
        }

        body.dark-mode .stat-label {
            color: #b0b0b0;
        }

        body.dark-mode .stat-number {
            color: #4a9eff;
        }

        body.dark-mode footer,
        body.dark-mode footer.bg-light {
            background-color: #1a1a1a !important;
            border-top: 1px solid #333;
        }

        body.dark-mode footer h6 {
            color: #ffffff;
        }

        body.dark-mode footer a {
            color: #b0b0b0;
        }

        body.dark-mode footer a:hover {
            color: #d3d3d8 !important;
        }

        body.dark-mode footer .text-muted {
            color: #888 !important;
        }

        body.dark-mode footer .text-dark {
            color: #ffffff !important;
        }

        body.dark-mode footer hr {
            border-color: #333 !important;
        }

        body.dark-mode footer svg {
            stroke: #b0b0b0;
        }

        body.dark-mode footer a:hover svg {
            stroke: #4a9eff;
        }

        @media (max-width: 1024px) {
            .navbar {
                padding: 0.8rem 0;
            }

            .navbar-brand img {
                height: 45px;
            }

            .navbar-nav .nav-link {
                font-size: 0.95rem;
                margin-left: 0.75rem;
            }

            .dropdown-menu {
                font-size: 0.95rem;
            }

            .dropdown-item {
                padding: 0.7rem 1rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .hero {
                height: 80vh;
                padding: 2rem 1.5rem;
            }

            .hero > div {
                margin-top: -3rem !important;
            }

            .hero h1 {
                font-size: 3rem;
                margin-bottom: 1.25rem;
            }

            .hero p {
                font-size: 0.95rem;
                max-width: 650px;
                line-height: 1.7;
                text-align: left;
            }

            .powers-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .powers-container {
                padding: 2.5rem 2rem;
            }

            .timeline-container {
                padding: 2.5rem;
            }

            .timeline-grid {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 1.75rem !important;
            }

            .timeline-item {
                padding: 1.75rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.7rem 0;
            }

            .navbar-brand img {
                height: 42px;
            }

            /* .navbar-nav {
                text-align: center;
                margin-left: 0 !important;
            } */

            .navbar-nav .nav-link {
                font-size: 0.9rem;
                margin-left: 0;
                padding: 0.6rem 0;
            }

            .dropdown-menu {
                min-width: 200px;
                font-size: 0.9rem;
                text-align: left;
            }

            .dropdown-item {
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .hero {
                height: auto;
                min-height: 70vh;
                padding: 2rem 1.5rem;
            }

            .hero > div {
                margin-top: -2rem !important;
            }

            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                max-width: 600px;
                line-height: 1.7;
                text-align: left;
            }

            .layer-title {
                font-size: 1.8rem;
            }

            .service-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .timeline-section {
                padding: 3rem 1.5rem;
            }

            .timeline-container {
                padding: 2rem;
                border-radius: 12px;
            }

            .timeline-header {
                margin-bottom: 2.5rem;
            }

            .timeline-header h2 {
                font-size: 1.8rem;
                margin-bottom: 0.75rem;
            }

            .timeline-header p {
                font-size: 0.95rem;
                max-width: 100%;
            }

            .timeline-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 1.5rem !important;
            }

            .timeline-item {
                padding: 1.5rem;
            }

            .timeline-step {
                font-size: 2.5rem;
                margin-bottom: 0.75rem;
            }

            .timeline-item h4 {
                font-size: 1rem;
                margin-bottom: 0.4rem;
            }

            .timeline-item p {
                font-size: 0.9rem;
            }

            .timeline-delivery {
                font-size: 0.8rem;
                padding: 0.4rem 0.9rem;
                margin-top: 0.75rem;
            }

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

            .cta-section h2 {
                font-size: 1.8rem;
            }

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

            .powers-title {
                font-size: 1.8rem;
            }

            .powers-container {
                padding: 2rem 1.5rem;
            }

            .power-card {
                padding: 2rem;
            }

            .values-badge {
                display: flex !important;
                margin-left: 0 !important;
                margin-top: 0.5rem;
                padding: 0.5rem 1.5rem;
            }

            .powers-header h2 {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.5rem;
            }

            footer {
                padding: 2rem 1rem !important;
            }

            footer .row {
                display: flex !important;
                flex-direction: column !important;
                gap: 1.5rem !important;
                justify-content: flex-start !important;
            }

            footer .row > div {
                flex: none !important;
                width: 100% !important;
                min-width: auto !important;
            }

            footer img {
                max-width: 120px !important;
            }

            footer h6 {
                font-size: 0.95rem;
                margin-bottom: 1rem !important;
            }

            footer ul {
                padding-left: 0;
            }

            footer li {
                margin-bottom: 0.75rem !important;
            }

            footer small {
                font-size: 0.8rem;
            }

            footer svg {
                width: 16px !important;
                height: 16px !important;
            }

            .row.align-items-center {
                flex-direction: column !important;
                text-align: center !important;
                gap: 1rem !important;
            }

            .row.align-items-center .col-md-4 {
                width: 100% !important;
                text-align: center !important;
            }

            footer hr {
                margin: 1rem 0 !important;
            }
        }

        @media (max-width: 640px) {
            .navbar {
                padding: 0.6rem 0;
            }

            .navbar-brand img {
                height: 38px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.85rem;
                padding: 0.5rem 0;
            }

            .dropdown-menu {
                min-width: 180px;
                font-size: 0.85rem;
            }

            .dropdown-item {
                font-size: 0.85rem;
                padding: 0.65rem 0.9rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .hero {
                height: auto;
                min-height: 60vh;
                padding: 2rem 1rem;
            }

            .hero > div {
                margin-top: -1rem !important;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 0.9rem;
                line-height: 1.3;
            }

            .hero p {
                font-size: 0.9rem;
                margin-bottom: 1.25rem;
                max-width: 100%;
                line-height: 1.6;
                text-align: left;
            }

            .timeline-section {
                padding: 2.5rem 1rem;
            }

            .timeline-container {
                padding: 1.5rem;
                border-radius: 10px;
            }

            .timeline-header {
                margin-bottom: 2rem;
            }

            .timeline-header h2 {
                font-size: 1.6rem;
                margin-bottom: 0.75rem;
            }

            .timeline-header p {
                font-size: 0.9rem;
            }

            .timeline-grid {
                grid-template-columns: 1fr !important;
                gap: 1.25rem !important;
            }

            .timeline-item {
                padding: 1.25rem;
            }

            .timeline-step {
                font-size: 2.2rem;
                margin-bottom: 0.65rem;
            }

            .timeline-item h4 {
                font-size: 0.95rem;
                margin-bottom: 0.35rem;
            }

            .timeline-item p {
                font-size: 0.85rem;
            }

            .timeline-delivery {
                font-size: 0.75rem;
                padding: 0.35rem 0.8rem;
                margin-top: 0.65rem;
            }

            footer {
                padding: 1.5rem 1rem !important;
            }

            footer img {
                max-width: 100px !important;
                margin-bottom: 0.75rem !important;
            }

            footer h6 {
                font-size: 0.9rem;
                margin-bottom: 0.75rem !important;
            }

            footer .mb-4 {
                margin-bottom: 0.75rem !important;
            }

            footer li {
                margin-bottom: 0.5rem !important;
            }

            footer small {
                font-size: 0.75rem;
            }

            footer .text-muted.small {
                margin-bottom: 0.5rem !important;
            }

            footer p {
                margin-bottom: 0.5rem !important;
            }

            footer svg {
                width: 14px !important;
                height: 14px !important;
                margin-right: 0.4rem !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.75rem;
            }

            footer hr {
                margin: 0.75rem 0 !important;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0.5rem 0;
            }

            .navbar-brand img {
                height: 35px;
            }

            .navbar-nav {
                margin-left: 0 !important;
            }

            .navbar-nav .nav-link {
                font-size: 0.8rem;
                margin-left: 0;
                padding: 0.4rem 0;
            }

            .dropdown-menu {
                min-width: 160px;
                font-size: 0.8rem;
            }

            .dropdown-item {
                font-size: 0.8rem;
                padding: 0.6rem 0.8rem;
            }

            .btn-get-started {
    background: #86BC25;
    color: #555 !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    display: inline-block;
}


            .hero {
                height: auto;
                min-height: 55vh;
                padding: 1.5rem 0.75rem;
            }

            .hero > div {
                margin-top: 0 !important;
            }

            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
                line-height: 1.25;
            }

            .hero p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
                max-width: 100%;
                line-height: 1.6;
                text-align: left;
            }

            .timeline-section {
                padding: 2rem 0.75rem;
            }

            .timeline-container {
                padding: 1.25rem;
                border-radius: 8px;
            }

            .timeline-header {
                margin-bottom: 1.75rem;
            }

            .timeline-header h2 {
                font-size: 1.4rem;
                margin-bottom: 0.65rem;
            }

            .timeline-header p {
                font-size: 0.85rem;
            }

            .timeline-grid {
                grid-template-columns: 1fr !important;
                gap: 1rem !important;
            }

            .timeline-item {
                padding: 1rem;
            }

            .timeline-step {
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }

            .timeline-item h4 {
                font-size: 0.9rem;
                margin-bottom: 0.3rem;
            }

            .timeline-item p {
                font-size: 0.8rem;
            }

            .timeline-delivery {
                font-size: 0.7rem;
                padding: 0.3rem 0.7rem;
                margin-top: 0.55rem;
            }

            footer {
                padding: 1rem !important;
            }

            footer img {
                max-width: 80px !important;
                margin-bottom: 0.5rem !important;
            }

            footer h6 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem !important;
            }

            footer li {
                margin-bottom: 0.35rem !important;
            }

            footer small {
                font-size: 0.7rem;
            }

            footer svg {
                width: 12px !important;
                height: 12px !important;
                margin-right: 0.3rem !important;
            }

            footer hr {
                margin: 0.5rem 0 !important;
            }
        }
.timeline-grid::before {
                        content: '';
                        position: absolute;
                        top: 60px;
                        left: 12.5%;
                        right: 12.5%;
                        height: 2px;
                        background-color:#86BC25;
                        z-index: 0;
                    }
                    

    