* {
            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;
        }

        .navbar-nav .dropdown-toggle.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: 500px;
            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: #000 !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 {
            min-height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #F7F7F8 0%, #F7F7F8 50%, rgba(245, 158, 11, 0.08) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background-color: rgba(175, 205, 126, 0.3);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background-color: rgba(175, 205, 126, 0.3);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            z-index: 0;
        }

        .hero-container {
            max-width: 1300px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            justify-items: center;
            position: relative;
            z-index: 1;
            min-height: 100%;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
            padding-left: 2rem;
            padding-right: 2rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #000;
            margin-bottom: 1.5rem;
            line-height: 1.15;
            word-wrap: break-word;
        }

        .hero h1 .highlight {
            color: #86BC25;
        }
        
        .hero p {
            color: #666;
            font-size: 1.05rem;
            margin-bottom: 3rem;
            line-height: 1.8;
            text-align: left;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-btn-primary {
            background-color:#86BC25 ;
            color: #000;
            padding: 0.85rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            display: inline-block;
            white-space: nowrap;
        }

        .hero-btn-primary:hover {
            background-color: #86BC25;
            transform: translateY(-3px);
           
            color: #000;
        }

        .hero-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

        .hero-image {
            width: 100%;
            max-width: 650px;
            height: auto;
            max-height: 600px;
            border-radius: 20px;
            object-fit: contain;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 1200px) {
            .hero-container {
                gap: 3rem;
            }
        }

        @media (max-width: 1024px) {
            .hero {
                min-height: auto;
                padding: 5rem 2rem;
            }

            .hero::before {
                width: 350px;
                height: 350px;
            }

            .hero::after {
                width: 300px;
                height: 300px;
            }

            .hero-container {
                gap: 3rem;
            }

            .hero-content {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-image-wrapper {
                min-height: 320px;
            }

            .hero-image {
                max-width: 320px;
                max-height: 370px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 4rem 1.5rem;
            }

            .hero::before {
                width: 250px;
                height: 250px;
                bottom: -100px;
                left: -100px;
            }

            .hero::after {
                width: 200px;
                height: 200px;
                top: -80px;
                right: -80px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                min-height: auto;
            }

            .hero-content {
                padding-left: 0;
                padding-right: 0;
                width: 100%;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 1.2rem;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                max-width: 100%;
            }

            .hero-image-wrapper {
                min-height: 280px;
                width: 100%;
            }

            .hero-image {
                max-width: 85%;
                max-height: 320px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-btn-primary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 3rem 1rem;
            }

            .hero::before {
                width: 200px;
                height: 200px;
                bottom: -80px;
                left: -80px;
            }

            .hero::after {
                width: 150px;
                height: 150px;
                top: -60px;
                right: -60px;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .hero-image-wrapper {
                min-height: 250px;
            }

            .hero-image {
                max-width: 80%;
                max-height: 280px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0.75rem;
                min-height: auto;
            }

            .hero::before {
                width: 150px;
                height: 150px;
                bottom: -50px;
                left: -50px;
            }

            .hero::after {
                width: 120px;
                height: 120px;
                top: -40px;
                right: -40px;
            }

            .hero h1 {
                font-size: 1.5rem;
                margin-bottom: 0.8rem;
                line-height: 1.1;
            }

            .hero p {
                font-size: 0.85rem;
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .hero-image-wrapper {
                min-height: 220px;
            }

            .hero-image {
                max-width: 75%;
                max-height: 250px;
            }

            .hero-btn-primary {
                padding: 0.65rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
            }
        }

        .about-cards-section {
            padding: 4rem 2rem;
            background-color: #F7F7F8;
        }

        .about-cards-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .about-card {
            background-color: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .about-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        .about-card-icon {
            width: 80px;
            height: 80px;
            background-color: #E6F0FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }

        .about-card:nth-child(1) .about-card-icon {
            background-color: #E8D5F2;
            color: #7C3AED;
        }

        .about-card:nth-child(1) .about-card-icon i {
            color: #7C3AED;
        }

        .about-card:nth-child(2) .about-card-icon {
            background-color: #D0F0FF;
            color: #0EA5E9;
        }

        .about-card:nth-child(2) .about-card-icon i {
            color: #0EA5E9;
        }

        .about-card:nth-child(3) .about-card-icon {
            background-color: #FED7AA;
            color: #EA580C;
        }

        .about-card:nth-child(3) .about-card-icon i {
            color: #EA580C;
        }

        .about-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
           
        }

        .about-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        @media (max-width: 768px) {
            .about-cards-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .about-card {
                padding: 2rem;
            }

            .about-card h3 {
                font-size: 1.1rem;
            }

            .about-card p {
                font-size: 0.9rem;
            }
        }

        body.dark-mode .about-cards-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .about-card {
            background-color: #2a2a2a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .about-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }

        body.dark-mode .about-card h3 {
            color: #fff;
        }

        body.dark-mode .about-card p {
            color: #b0b0b0;
        }

        body.dark-mode .about-card-icon {
            background-color: rgba(220, 38, 38, 0.2);
        }

        .capabilities-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
        }

        .capabilities-section-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            background-color: white;
            border-radius: 16px;
            padding: 3rem;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
        }

        .capabilities-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .capabilities-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .capabilities-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
        }

        .capabilities-header h2 .highlight {
            color: #86BC25;
        }

        .capabilities-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background-color: #b1e5ed;
            border-radius: 9999px;
            border: 1px solid #86BC25;
            color: #86BC25;
            font-size: 0.875rem;
            font-weight: 500;
            margin-left: 1rem;
            vertical-align: middle;
        }

        .capabilities-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .business-support-grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 3rem;
            max-width: 1100px;
            margin: 0 auto !important;
        }

        .capability-card {
            background-color: #f9f9f9;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            text-align: center;
        }

        .capability-card:hover {
            background: white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
            border-color: rgba(220, 38, 38, 0.1);
        }

        .capability-card-icon {
            width: 80px;
            height: 80px;
            font-size: 2.5rem;
            color: #000;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #86BC25;
            border-radius: 50%;
        }

        .capability-card:nth-child(1) .capability-card-icon {
            color: #000;
        }

        .capability-card:nth-child(2) .capability-card-icon {
            color: #000;
        }

        .capability-card:nth-child(3) .capability-card-icon {
            color: #000;
        }

        .capabilities-section:nth-of-type(2) .capability-card:nth-child(1) .capability-card-icon {
            color: #000;
        }

        .capabilities-section:nth-of-type(2) .capability-card:nth-child(2) .capability-card-icon {
            color: #000;
        }

        .capabilities-section:nth-of-type(2) .capability-card:nth-child(3) .capability-card-icon {
            color: #000;
        }

        .capabilities-section:nth-of-type(2) .capability-card:nth-child(4) .capability-card-icon {
            color: #000;
        }

        .capability-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .capability-card p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .capabilities-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .capabilities-section {
                padding: 3.5rem 1.5rem;
            }

            .capabilities-header h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .capabilities-header p {
                font-size: 1rem;
            }

            .capabilities-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .capability-card {
                padding: 2rem;
            }

            .capability-card h3 {
                font-size: 1.1rem;
            }

            .capability-card p {
                font-size: 0.9rem;
            }
        }

        body.dark-mode .capabilities-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .capabilities-header h2 {
            color: #fff;
        }

        body.dark-mode .capabilities-header p {
            color: #aaa;
        }

        body.dark-mode .capability-card {
            background-color: #2a2a2a;
            border-color: #444;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        body.dark-mode .capability-card:hover {
            background-color: #333;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border-color: rgba(220, 38, 38, 0.3);
        }

        body.dark-mode .capability-card h3 {
            color: #fff;
        }

        body.dark-mode .capability-card p {
            color: #aaa;
        }

        .why-choose-tech-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
        }

        .why-choose-tech-wrapper {
            max-width: 1400px;
            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);
        }

        .why-choose-tech-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .why-choose-tech-header .tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            background-color: #E6F0FF;
            color: #86BC25;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 500;
            text-transform: capitalize;
            letter-spacing: 0.3px;
            margin-bottom: 1.5rem;
        }

        .why-choose-tech-header .tech-badge svg {
            width: 22px;
            height: 22px;
            stroke-width: 2.2;
        }

        .why-choose-tech-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: start;
            max-width: 900px;
            margin: 0 auto;
        }

        .why-choose-left {
            padding-right: 2rem;
            text-align: center;
        }

        .why-choose-left h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .why-choose-left h2 .highlight {
            color: #86BC25;
        }

        .why-choose-left > p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .why-choose-benefits {
            list-style: none;
            margin: 0 auto;
            padding: 0;
            display: inline-block;
        }

        .why-choose-benefits li {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.5rem;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
            text-align: left;
        }

        .why-choose-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #86BC25;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .tech-stack-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
        }

        .tech-stack-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-stack-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .tech-stack-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
        }

        .tech-stack-header h2 .highlight {
            color: #86BC25;
        }

        .tech-stack-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .tech-stack-accordion-header {
            background-color: #86BC25;
            color: #000;
            padding: 1.2rem 2rem;
            border-radius: 8px 8px 0 0;
            margin-bottom: 0;
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.8rem;
            transition: all 0.3s ease;
        }

        .tech-stack-accordion-icon {
            font-size: 1.4rem;
            transition: transform 0.3s ease;
        }

        .tech-stack-accordion {
            background-color: #ffffff;
            border: 1px solid #e5e7eb;
            border-top: none;
            margin-bottom: 1rem;
            border-radius: 0 0 8px 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .tech-stack-accordion.collapsed {
            border-radius: 8px;
            background-color: transparent;
            border: none;
        }

        .tech-stack-accordion.collapsed .tech-stack-accordion-header {
            background-color: #f5f5f5;
            color: #86BC25;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
        }

        .tech-stack-accordion-content {
            padding: 2rem;
            display: none;
            animation: slideDown 0.3s ease;
        }

        .tech-stack-accordion.active .tech-stack-accordion-content {
            display: block;
        }

        .tech-stack-accordion.collapsed .tech-stack-accordion-content {
            display: none;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                max-height: 0;
            }
            to {
                opacity: 1;
                max-height: 500px;
            }
        }

        .tech-stack-accordion-content p {
            font-size: 0.95rem;
            color: #666;
            margin: 0 0 1.5rem 0;
            line-height: 1.6;
        }

        .tech-stack-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 0;
        }

        .tech-stack-accordion-header:hover {
            background-color: #86BC25;
            cursor: pointer;
        }

        .tech-stack-accordion.collapsed .tech-stack-accordion-header:hover {
            background-color: #efefef;
            color: #86BC25;
        }

        .tech-stack-accordion-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .tech-stack-accordion-content .tech-tag {
            display: inline-block;
            background-color: #86BC25;
            color: #000;
            padding: 0.45rem 1rem;
            border-radius: 24px;
            font-size: 0.8rem;
            font-weight: 600;
            border: none;
        }

        @media (max-width: 768px) {
            .tech-stack-section {
                padding: 3.5rem 1.5rem;
            }

            .tech-stack-header h2 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .tech-stack-header p {
                font-size: 1rem;
            }

            .tech-stack-accordion-header {
                font-size: 1.1rem;
                padding: 1rem 1.5rem;
            }

            .tech-stack-accordion-content {
                padding: 1.5rem;
            }

            .tech-stack-accordion-content p {
                font-size: 0.9rem;
            }
        }

        body.dark-mode .tech-stack-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .tech-stack-header h2 {
            color: #fff;
        }

        body.dark-mode .tech-stack-header p {
            color: #aaa;
        }

        body.dark-mode .tech-stack-accordion {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .tech-stack-accordion.collapsed .tech-stack-accordion-header {
            background-color: #1f1f1f;
            color: #86BC25;
            border-color: #444;
        }

        body.dark-mode .tech-stack-accordion-header {
            background-color: #86BC25;
            color: #000;
        }

        body.dark-mode .tech-stack-accordion-content {
            background-color: #2a2a2a;
            color: #fff;
        }

        body.dark-mode .tech-stack-accordion-content p {
            color: #aaa;
        }

        body.dark-mode .tech-stack-accordion-content .tech-tag {
            background-color: #86BC25;
            color: #000;
        }

        @media (max-width: 1024px) {
            .why-choose-tech-container {
                gap: 3rem;
            }

            .why-choose-left {
                padding-right: 0;
            }

            .why-choose-left h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .why-choose-tech-section {
                padding: 3.5rem 1.5rem;
            }

            .why-choose-tech-wrapper {
                padding: 2rem 1.5rem;
            }

            .why-choose-tech-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .why-choose-left h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .why-choose-left > p {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }

            .why-choose-benefits li {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
                padding-left: 1.8rem;
            }
        }

        body.dark-mode .why-choose-tech-section {
            background-color: #1a1a1a;
        }

        body.dark-mode .why-choose-tech-wrapper {
            background-color: #2a2a2a;
            border-color: #444;
        }

        body.dark-mode .why-choose-tech-header .tech-badge {
            background-color: rgba(220, 38, 38, 0.15);
            color: #4a9eff;
        }

        body.dark-mode .why-choose-left h2 {
            color: #fff;
        }

        body.dark-mode .why-choose-left > p {
            color: #aaa;
        }

        body.dark-mode .why-choose-benefits li {
            color: #bbb;
        }



        .industry-section {
            padding: 5rem 2rem;
            background-color: #F7F7F8;
            position: relative;
        }

        .industry-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .industry-layer {
            margin-bottom: 6rem;
        }

        .layer-header {
            margin-bottom: 4rem;
            text-align: center;
        }

        .layer-tag {
            display: inline-block;
            background: linear-gradient(135deg, #F59E0B 0%, #991B1B 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;
        }

        .industry-layer:nth-child(1) .layer-tag {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        }

        .industry-layer:nth-child(2) .layer-tag {
            background: linear-gradient(135deg, #60a5fa 0%, #1e3a8a 100%);
        }

        .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;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .industry-card {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }

        .industry-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);
        }

        .industry-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .industry-subtitle {
            color: #F59E0B;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .industry-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .industry-features li {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .industry-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #F59E0B;
            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;
        }

        .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-item {
            text-align: center;
            padding: 2rem;
        }

        .timeline-step {
            font-size: 3rem;
            font-weight: 700;
            color: #F59E0B;
            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: #FEE2E2;
            color: #F59E0B;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-top: 1rem;
        }

        .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: #F59E0B;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #555;
            font-weight: 500;
        }

        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #F59E0B 0%, #991B1B 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.8;
        }

        .cta-button {
            background: white;
            color: #F59E0B;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        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;
        }

        .moon-icon {
            stroke: #333;
            stroke-width: 2;
        }

        .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);
            }
        }

        /* Dark Mode Styles */
        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.3); }
        body.dark-mode .navbar-nav .nav-link { color: #ccc !important; }
        body.dark-mode .navbar-nav .nav-link:hover { color: #0066FF !important; }
        body.dark-mode .navbar-nav .nav-link.active { color: #0066FF !important; }
        body.dark-mode .navbar-nav .dropdown-toggle.active { color: #0066FF !important; }
        body.dark-mode .dropdown-menu { background-color: #2a2a2a; border-color: #444; }
        body.dark-mode .dropdown-item { color: #ccc; }
        body.dark-mode .dropdown-item:hover { background-color: #333; color: #86BC25; }
        body.dark-mode .hero { background: linear-gradient(135deg, #141414 0%, #191919 55%, rgba(158, 221, 228, 0.08) 100%); }
        body.dark-mode .hero::before {   background-color: rgba(175, 205, 126, 0.3); }
        body.dark-mode .hero::after {   background-color: rgba(175, 205, 126, 0.3); }
        body.dark-mode .hero h1 { color: #f4f6fb; }
        body.dark-mode .hero h1 .highlight { color:#86BC25; }
        body.dark-mode .hero p { color: #cbd5f5; }
        body.dark-mode .hero-btn-primary { background-color: #86BC25; }
        body.dark-mode .hero-btn-primary:hover { background-color: #86BC25; }
        body.dark-mode .hero-image { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); }
        body.dark-mode .about-cards-section { background-color: #1a1a1a; }
        body.dark-mode .about-card { background: #2a2a2a; border-color: #444; }
        body.dark-mode .about-card:hover { background: #333; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); }
        body.dark-mode .about-card h3 { color: #fff; }
        body.dark-mode .about-card p { color: #aaa; }
        body.dark-mode .capabilities-section { background-color: #1a1a1a; }
        body.dark-mode .capabilities-section-wrapper { background-color: #2a2a2a; border-color: #444; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); }
        body.dark-mode .capabilities-header h2 { color: #fff; }
        body.dark-mode .capabilities-header p { color: #aaa; }
        body.dark-mode .capabilities-badge { background-color: #333; color: #86BC25; border-color: #444; }
        body.dark-mode .capability-card { background: #2a2a2a; border-color: #444; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
        body.dark-mode .capability-card:hover { background: #333; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); border-color: #86BC25 ; }
        body.dark-mode .capability-card h3 { color: #fff; }
        body.dark-mode .capability-card p { color: #aaa; }
        body.dark-mode .why-choose-tech-section { background-color: #1a1a1a; }
        body.dark-mode .why-choose-tech-wrapper { background-color: #2a2a2a; border-color: #444; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
        body.dark-mode .why-choose-tech-header .tech-badge { background-color: #333; color: #86BC25; border-color: #444; }
        body.dark-mode .why-choose-left h2 { color: #fff; }
        body.dark-mode .why-choose-left h2 .highlight { color:#86BC25; }
        body.dark-mode .why-choose-left > p { color: #aaa; }
        body.dark-mode .why-choose-benefits li { color: #aaa; }
        body.dark-mode .why-choose-benefits li::before { color:#86BC25; }
        body.dark-mode .tech-stack-section { background-color: #1a1a1a; }
        body.dark-mode .tech-stack-header h2 { color: #fff; }
        body.dark-mode .tech-stack-header h2 .highlight { color: #86BC25; }
        body.dark-mode .tech-stack-header p { color: #aaa; }
        body.dark-mode .tech-stack-item { background: #2a2a2a; border-color: #444; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
        body.dark-mode .tech-stack-item:hover { background: #333; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); border-color: #F59E0B; }
        body.dark-mode .tech-stack-item h3 { color: #fff; }
        body.dark-mode .industry-section { background-color: #1a1a1a; }
        body.dark-mode .layer-tag { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
        body.dark-mode .layer-title { color: #fff; }
        body.dark-mode .layer-subtitle { color: #aaa; }
        body.dark-mode .industry-card { background: #2a2a2a; border-color: #444; }
        body.dark-mode .industry-card:hover { background: #333; border-color: #555; }
        body.dark-mode .industry-card h3 { color: #fff; }
        body.dark-mode .industry-subtitle { color: #F59E0B; }
        body.dark-mode .industry-features li { color: #aaa; }
        body.dark-mode .industry-features li::before { color: #F59E0B; }
        body.dark-mode .timeline-section { background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 100%); }
        body.dark-mode .timeline-header h2 { color: #fff; }
        body.dark-mode .timeline-header p { color: #aaa; }
        body.dark-mode .timeline-step { color: #F59E0B; }
        body.dark-mode .timeline-item h4 { color: #fff; }
        body.dark-mode .timeline-item p { color: #aaa; }
        body.dark-mode .timeline-delivery { background: #F59E0B; color: white; }
        body.dark-mode .why-choose-section { background-color: #1a1a1a; }
        body.dark-mode .why-choose-header h2 { color: #fff; }
        body.dark-mode .why-choose-header p { color: #aaa; }
        body.dark-mode .stat-number { color: #F59E0B; }
        body.dark-mode .stat-label { color: #aaa; }
        body.dark-mode .cta-section { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
        body.dark-mode .cta-section h2 { color: white; }
        body.dark-mode .cta-section p { color: rgba(255, 255, 255, 0.95); }
        body.dark-mode .cta-button { background: #1a1a1a; color: #F59E0B; }
        body.dark-mode .cta-button:hover { background: #2a2a2a; color: #F59E0B; }
        body.dark-mode .theme-toggle svg { stroke: #fff; }
        body.dark-mode .moon-icon { stroke: #fff; }
        body.dark-mode footer { background-color: #111313; border-top-color: #444; }
        body.dark-mode footer h6 { color: #fff; }
        body.dark-mode footer a { color: #aaa; }
        body.dark-mode footer a:hover { color: #d3d3d8 !important; }
        body.dark-mode footer .text-dark { color: #ffffff !important; }
        body.dark-mode footer .text-muted { color: #aaa !important; }
        body.dark-mode footer hr { border-color: #333 !important; }
        body.dark-mode .text-muted { color: #999 !important; }
        body.dark-mode .bg-light { background-color: #2a2a2a !important; }

        @media (max-width: 1024px) {
            .hero {
                min-height: auto;
                padding: 5rem 2rem;
            }

            .hero-container {
                gap: 3rem;
            }

            .hero-content {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-image-wrapper {
                min-height: 320px;
            }

            .hero-image {
                max-width: 320px;
                max-height: 370px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding: 4rem 1.5rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                min-height: auto;
            }

            .hero-content {
                padding-left: 0;
                padding-right: 0;
                width: 100%;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
                margin-bottom: 1.2rem;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                max-width: 100%;
            }

            .hero-image-wrapper {
                min-height: 280px;
                width: 100%;
            }

            .hero-image {
                max-width: 85%;
                max-height: 320px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-btn-primary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 3rem 1rem;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
            }

            .hero p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }

            .hero-image-wrapper {
                min-height: 260px;
            }

            .hero-image {
                max-width: 80%;
                max-height: 280px;
            }

            .hero-btn-primary {
                padding: 0.7rem 1.8rem;
                font-size: 0.9rem;
            }

            .layer-title {
                font-size: 1.8rem;
            }

            .industry-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .timeline-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            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) {
            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) {
            footer {
                padding: 1rem !important;
            }

            footer .mb-5 {
                margin-bottom: 1rem !important;
            }

            footer .row {
                gap: 1rem !important;
            }

            footer img {
                max-width: 90px !important;
                margin-bottom: 0.5rem !important;
            }

            footer h6 {
                font-size: 0.85rem;
                margin-bottom: 0.5rem !important;
            }

            footer ul.list-unstyled {
                margin-bottom: 0;
            }

            footer li {
                margin-bottom: 0.35rem !important;
            }

            footer small {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            footer .text-muted {
                font-size: 0.7rem !important;
            }

            footer svg {
                width: 12px !important;
                height: 12px !important;
                margin-right: 0.3rem !important;
            }

            footer a {
                font-size: 0.7rem;
            }

            footer hr {
                margin: 0.5rem 0 !important;
            }

            .row.align-items-center .col-md-4 p {
                font-size: 0.7rem;
            }
        }
