
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Kumbh+Sans:wght@100..900&family=Lexend:wght@100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nata+Sans:wght@100..900&display=swap');



/* CSS Reset and Base Styles */
        :root {
            --color-gray-50: #F9FAFB;
            --color-gray-100: #F3F4F6;
            --color-gray-200: #E5E7EB;
            --color-gray-300: #D1D5DB;
            --color-gray-400: #9CA3AF;
            --color-gray-500: #6B7280;
            --color-gray-600: #4B5563;
            --color-gray-700: #374151;
            --color-gray-800: #1F2937;
            --color-gray-900: #111827;
            --color-yellow-50: #FFFBEB;
            --color-yellow-100: #FEF3C7;
            --color-yellow-200: #FDE68A;
            --color-yellow-400: #FACC15;
            --color-yellow-700: #B45309;
            --color-yellow-800: #92400E;
            --color-green-500: #22C55E;
            --color-orange-200: #FFEDD5;
            --color-blue-600: #2563EB;
            --color-stone-300: #D6D3D1;
            --color-purple-200: #E9D5FF;
            --color-white: #FFFFFF;
            --color-black: #000000;
        }

        html {
            scroll-behavior: smooth;
        }
        a {
  text-decoration: none; /* Removes the underline */
  color: inherit;       /* Inherits the text color from the parent element */
}

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: #F8F8F8;
            color: var(--color-gray-900);
            margin: 0;
                letter-spacing: -0.8px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        .container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        /* Custom styles from original file */
        h1 {
            font-size:3rem;
            font-weight:700;
        } 
        .cta-button {
            transition: all 0.3s ease;
        }
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .case-study-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
            z-index: 1;
        }
        .case-study-content {
            position: relative;
            z-index: 2;
        }
        .slider-container {
            overflow: hidden;
        }
        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .faq-gradient {
            background: linear-gradient(105deg, #F3E8FF 0%, #FFFFFF 70%);
        }
        .keyword-tag {
            padding: 0.4rem 1rem;
            border-radius: 0px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        .growth-diagram {
            position: relative;
            height: 120px;
            margin-bottom: 1rem;
        }
        .growth-diagram .tag {
            position: absolute;
            padding: 2px 8px;
            border-radius: 0px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }
        .problem-card {
            transition: all 0.3s ease;
            border: 1px solid #E5E7EB;
            background-color: var(--color-white);
            padding: 2rem;
        }
        .problem-card:hover {
            background-color: #f04b27;
            color: white;
        }
        .problem-card:hover .why-btn {
            background-color: white;
            color: #cd6e2d;
        }
        .problem-card:hover .arrow-icon {
            color: white;
        }
        .problem-card .arrow-icon {
             color: #111827;
        }
        
        /* Header Section */
        header {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
        }
        .header-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-gray-900);
            letter-spacing: -0.05em;
            text-decoration: none;
        }
        .header-logo span {
            color: var(--color-yellow-400);
        }
        .header-nav {
            display: none;
        }
        .header-nav a {
            color: var(--color-gray-600);
            transition: color 0.3s ease;
            font-weight: 500;
            text-decoration: none;
        }
        .header-nav a:hover {
            color: var(--color-gray-900);
        }
        .header-nav-connect {
            display: none;
            background-color: #000;
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            border-radius: 0rem;
            text-decoration: none;
        }
        .header-nav-connect:hover {
            background-color: #000;
        }
        #mobile-menu-button {
            background: none;
            border: none;
            cursor: pointer;
        }
        #mobile-menu {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            padding-bottom: 1rem;
            border-top: 1px solid var(--color-gray-200);
        }
        #mobile-menu a {
            display: block;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            color: var(--color-gray-600);
            text-decoration: none;
        }
        #mobile-menu a:hover {
            color: var(--color-gray-900);
        }
        #mobile-menu .cta-button {
            margin-top: 0.5rem;
            background-color: var(--color-gray-900);
            color: white;
            text-align: center;
            width: 100%;
        }
        #mobile-menu .cta-button:hover {
            background-color: var(--color-gray-800);
        }

        /* Hero Section */
        .hero-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            background-color: var(--color-white);
            filter: brightness(1.2);
        }
        .hero-diagram {
            position: relative;
            height: 16rem;
            margin-bottom: 0rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-tag {
            display: inline-block;
            background-color: var(--color-yellow-200);
            color: var(--color-yellow-800);
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 0.375rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
        }
        .hero-content {
            text-align: center;
            max-width: 56rem;
            margin-left: auto;
            margin-right: auto;
        }
        .hero-content h1 {
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            margin-top: 1rem;
            letter-spacing: -2px;
        }
        .hero-content p {
            font-size: 1.125rem;
            color: var(--color-gray-600);
            margin-bottom: 2rem;
            font-weight: 600;
            letter-spacing: -1px;
        }
        .hero-cta {
            background-color: var(--color-gray-900);
            color: var(--color-white);
            font-weight: 700;
            padding: 0.75rem 1.75rem;
            border-radius: 0rem;
            font-size: 1rem;
            text-decoration: none;
        }
        .hero-cta:hover {
            background-color: var(--color-gray-800);
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
        .team-panel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-panel-arkblu {
            background-color: var(--color-blue-600);
            position: relative;
            color: var(--color-white);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .team-panel-arkblu h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 1rem;
        }

        /* About Us Section */
        .about-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            background-color: var(--color-white);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .about-grid h2 {
            font-size: 1.125rem;
            font-weight: 600;
        }
        .about-grid p:first-of-type {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.3;
            color: var(--color-gray-800);
            margin-bottom: 2rem;
        }
        .about-grid p:last-of-type {
            font-weight: 700;
        }

        /* Client Problems Section */
        .client-problems-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .problems-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .problem-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        .why-btn {
            border: 1px solid var(--color-gray-300);
            border-radius: 9999px;
            padding: 0.25rem 0.75rem;
            font-size: 0.875rem;
        }
        .problem-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .problem-card p {
            margin-bottom: 1rem;
        }

        /* Growth Tactics Section */
        .growth-tactics-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            background-color: var(--color-white);
        }
        .growth-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .growth-header-text {
            max-width: 48rem;
        }
        .growth-header-text h2 {
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .growth-header-text p {
            font-size: 1.125rem;
            color: var(--color-gray-600);
        }
        .growth-header .cta-button {
            display: none;
            background-color: var(--color-gray-900);
            color: var(--color-white);
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0rem;
            font-size: 0.875rem;
            white-space: nowrap;
            text-decoration: none;
        }
        .growth-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem 2rem;
            margin-top: 5rem;
        }
        .growth-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .growth-item h3 span {
            color: var(--color-gray-400);
            margin-right: 0.5rem;
        }
        .growth-item p {
            color: var(--color-gray-600);
        }
        .growth-footer {
            text-align: center;
            margin-top: 7rem;
        }
        .growth-footer-map {
            position: relative;
            max-width: 56rem;
            margin-left: auto;
            margin-right: auto;
        }
        .growth-footer-map img {
            width: 100%;
            height: auto;
            opacity: 0.3;
        }
        .growth-footer p {
            font-size: 1.125rem;
            font-weight: 500;
            margin-top: 2rem;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
        }

        /* Success Stories Section */
        .success-stories-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            background-color: var(--color-yellow-50);
        }
        .success-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .success-grid h2 {
            font-size: 1.125rem;
            font-weight: 600;
        }
        .success-grid p {
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--color-gray-900);
        }

        /* Case Studies Section */
        .case-study-item {
            position: relative;
            min-height: 70vh;
            background-size: cover;
            background-position: center;
            color: var(--color-white);
        }
        .case-study-content {
            padding: 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            min-height: 70vh;
        }
        .case-study-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .case-study-header p:last-child {
            max-width: 20rem;
            text-align: right;
        }
        .case-study-footer {
            margin-top: auto;
        }
        .case-study-footer h3 {
            font-size: 3.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .case-study-footer a {
            font-size: 1.125rem;
            border-bottom: 2px solid var(--color-white);
            padding-bottom: 0.25rem;
            transition: border-color 0.3s ease;
            text-decoration: none;
            color: var(--color-white);
        }
        .case-study-footer a:hover {
            border-color: var(--color-yellow-400);
        }
        .case-study-tag {
            position: absolute;
            font-weight: 600;
        }
        .case-study-1-tag {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .case-study-2-tag {
            bottom: 33.33%;
            right: 3rem;
            text-align: right;
        }

        /* Services Slider Section */
        .services-slider-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            background-color: var(--color-white);
        }
        .services-slider-header {
            display: grid;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
        }
        .services-slider-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
        }
        .services-slider-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        #service-slider-counter {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-gray-400);
        }
        .slider-btn {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            border: 1px solid var(--color-gray-300);
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .slider-btn:hover {
            background-color: var(--color-gray-100);
        }
        .service-slide {
            padding: 0rem 2rem;
        }
        .service-slide h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .service-slide-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .service-slide img {
            border-radius: 0.5rem;
            width: 100%;
        }
        .service-slide h4 {
            font-weight: 700;
            font-size: 1.5rem;
        }
        .service-slide p {
            margin-bottom: 1rem;
        }
        .service-slide a {
            font-weight: 700;
            border-bottom: 2px solid var(--color-black);
            padding-bottom: 0.25rem;
            text-decoration: none;
            color: var(--color-black);
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            background-color: var(--color-white);
        }
        .testimonials-section h2 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 3rem;
        }
        .testimonial-slide-content {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .testimonial-slide-content img {
            border-radius: 9999px;
            width: 3rem;
            height: 3rem;
        }
        .testimonial-author p:first-child {
            font-weight: 700;
        }
        .testimonial-author p:last-child {
            font-size: 0.875rem;
            color: var(--color-gray-500);
        }
        .testimonial-quote {
            font-size: 1.5rem;
            font-weight: 500;
            margin-top: 1.5rem;
        }
        .testimonial-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 3rem;
        }
        
        /* Who For Section */
        .who-for-section {
            background-color: var(--color-white);
        }
        .who-for-section > img {
            width: 100%;
            height: 30rem;
            object-fit: cover;
        }
        .who-for-content {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .who-for-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .who-for-grid h2 {
            font-size: 1.125rem;
            font-weight: 600;
        }
        .who-for-grid h3 {
            font-size: 1.875rem;
            font-weight: 500;
            line-height: 1.3;
            color: var(--color-gray-800);
            margin-bottom: 2rem;
        }
        .who-for-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .who-for-list li {
            display: flex;
            align-items: center;
            font-size: 1.125rem;
        }
        .who-for-list svg {
            color: var(--color-green-500);
            margin-right: 0.75rem;
        }
        .client-logos {
            margin-top: 5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 3rem 1.5rem;
        }
        .client-logos img {
            height: 2rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .faq-header {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 3rem;
        }
        .faq-header h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }
        .faq-header-right {
            width: 100%;
        }
        .faq-header-right p {
            margin-bottom: 1rem;
        }
        .faq-header-right a {
            background-color: var(--color-gray-900);
            color: var(--color-white);
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0rem;
            font-size: 0.875rem;
            text-decoration: none;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem 2.5rem;
            border-top: 1px solid var(--color-gray-200);
            padding-top: 3rem;
        }
        .faq-item h3 {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }
        .faq-item p {
            color: var(--color-gray-600);
                font-size: 0.9rem;
        }

        /* Footer Section */
        footer {
            background-color: var(--color-black);
            color: var(--color-white);
        }
        .footer-content {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .footer-cta h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 3rem;
        }
        .footer-cta a {
                font-weight: 600;
    border: 2px solid var(--color-white);
    padding-bottom: 0.25rem;
    text-decoration: none;
    color: var(--color-white);
    padding: 1rem;
        }
        .footer-links h3 {
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
            color: var(--color-gray-400);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .footer-links ul a {
            color: var(--color-gray-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links ul a:hover {
            color: var(--color-white);
        }
        .footer-newsletter p {
            color: var(--color-gray-400);
            margin-bottom: 1rem;
        }
        .footer-newsletter form {
            display: flex;
        }
        .footer-newsletter input {
            background-color: var(--color-gray-800);
            color: var(--color-white);
            padding: 0.5rem 1rem;
            border-top-left-radius: 0.375rem;
            border-bottom-left-radius: 0.375rem;
            border: none;
            outline: none;
            width: 100%;
        }
        .footer-newsletter button {
            background-color: var(--color-white);
            color: var(--color-black);
            font-weight: 700;
            padding: 0.5rem 1rem;
            border-top-right-radius: 0.375rem;
            border-bottom-right-radius: 0.375rem;
            border: none;
            cursor: pointer;
        }
        .footer-socials {
            margin-top: 2rem;
        }
        .footer-keywords {
            margin-top: 5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        .kw-green { background-color: #4ade80; color: #000; }
        .kw-blue1 { background-color: #93c5fd; color: #000; }
        .kw-yellow1 { background-color: #facc15; color: #000; }
        .kw-purple1 { background-color: #c4b5fd; color: #000; }
        .kw-blue2 { background-color: #3b82f6; color: #fff; }
        .kw-yellow2 { background-color: #fde68a; color: #000; }
        .kw-green2 { background-color: #86efac; color: #000; }
        .kw-blue3 { background-color: #bfdbfe; color: #000; }
        .kw-purple2 { background-color: #e9d5ff; color: #000; }
        .kw-gray { background-color: #d1d5db; color: #000; }
        .kw-red { background-color: #f87171; color: #fff; }

        .hidden {
            display: none;
        }
        
        /* Responsive Styles */
        @media (min-width: 768px) {
            .container {
                padding-left: 5rem;
                padding-right: 5rem;
            }

            .header-nav {
                display: flex;
                align-items: center;
                gap: 2rem;
            }
            .header-nav-connect {
                display: block;
            }
            #mobile-menu-button, #mobile-menu {
                display: none;
            }

            .hero-section {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
            .hero-content h1 {
                font-size: 4rem;
            }
            .hero-content p {
                font-size: 1.25rem;
            }
            
            .team-grid {
                grid-template-columns: repeat(5, 1fr);
            }
            
            .about-section, .client-problems-section, .growth-tactics-section,
            .success-stories-section, .services-slider-section, .testimonials-section,
            .who-for-content, .faq-section {
                padding-top: 5rem;
                padding-bottom:5rem;
            }
            
            .about-grid {
                grid-template-columns: 1fr 2fr;
            }
            .about-grid p:first-of-type {
                font-size: 1.875rem;
            }
            
            .problems-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .growth-header .cta-button {
                display: inline-block;
            }
            .growth-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .growth-header-text h2 {
                font-size: 3rem;
            }
            
            .success-grid {
                grid-template-columns: 1fr 2fr;
            }
            .success-grid p {
                font-size: 3rem;
            }

            .case-study-content {
                padding: 3rem;
            }
            
            .services-slider-header h2 {
                font-size: 3rem;
            }
            .service-slide-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonial-quote {
                font-size: 1.875rem;
            }

            .who-for-grid {
                grid-template-columns: 1fr 2fr;
            }
            .who-for-grid h3 {
                font-size: 2.25rem;
            }

            .faq-header {
                flex-direction: row;
                margin-bottom: 3rem;
            }
            .faq-header h2 {
                margin-bottom: 0;
                font-size: 3rem;
            }
            .faq-header-right {
                width: 50%;
                text-align: right;
            }
            .faq-header-right p {
                max-width: 24rem;
                margin-left: auto;
            }
            .faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (min-width: 1024px) {
            .growth-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .footer-cta {
                grid-column: span 2 / span 2;
            }
        }



        /* ---------------------------ABOUT ------------------------------------------------------------------------------------------------- */

        /* About Hero Section */
        .about-hero-section { background-color: var(--color-white); padding: 4rem 0; text-align: center; }
        .about-hero-section h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; max-width: 48rem; margin: 0 auto 1.5rem; }
        .about-hero-section p { font-size: 1.25rem; color: var(--color-gray-600); max-width: 56rem; margin: 0 auto 2.5rem; }
        .about-hero-image { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: 0rem; margin: 0 auto; }

        /* Mission Section */
        .mission-section { padding: 5rem 0; }
        .mission-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
        .mission-image { width: 100%; border-radius: 0rem; object-fit: cover; }
        .mission-content h2 { font-weight: 600; color: var(--color-blue-600); margin-bottom: 1rem; }
        .mission-content p { font-size: 1.875rem; font-weight: 500; line-height: 1.4; color: var(--color-gray-800); }
        .mission-content .founder-quote { margin-top: 2rem; padding-left: 1.5rem; border-left: 3px solid var(--color-yellow-400); }
        .founder-quote p { font-size: 1rem; color: var(--color-gray-600); }
        .founder-quote span { font-weight: 700; color: var(--color-gray-900); display: block; margin-top: 0.5rem; }

        /* Journey Section */
        .journey-section { padding: 5rem 0; background-color: var(--color-white); }
        .journey-header { text-align: center; margin-bottom: 4rem; }
        .journey-header h2 { font-size: 2.25rem; font-weight: 800; }
        .timeline { position: relative; max-width: 48rem; margin: 0 auto; }
        .timeline::after { content: ''; position: absolute; width: 3px; background-color: var(--color-gray-200); top: 0; bottom: 0; left: 50%; margin-left: -1.5px; }
        .timeline-item { padding: 1rem 2.5rem; position: relative; width: 50%; }
        .timeline-item::after { content: ''; position: absolute; width: 20px; height: 20px; background-color: white; border: 4px solid var(--color-yellow-400); top: 15px; border-radius: 50%; z-index: 1; }
        .timeline-left { left: 0; }
        .timeline-right { left: 50%; }
        .timeline-left::after { right: -10px; }
        .timeline-right::after { left: -10px; }
        .timeline-content { padding: 1rem; background-color: var(--color-gray-50); border-radius: 0.5rem; }
        .timeline-content h3 { margin: 0 0 0.5rem; font-size: 1.5rem; font-weight: 700; }
        .timeline-content p { margin: 0; color: var(--color-gray-600); }

        /* Final CTA Section */
        .final-cta-section { padding: 5rem 0; background-color: var(--color-blue-100); }
        .final-cta-content { text-align: center; max-width: 48rem; margin: 0 auto; }
        .final-cta-content h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; }
        .final-cta-content p { font-size: 1.125rem; color: var(--color-gray-600); margin-bottom: 2rem; }
        .final-cta-button { display: inline-block; background-color: var(--color-gray-900); color: var(--color-white); font-weight: 700; padding: 0.75rem 1.75rem; border-radius: 0rem; font-size: 1rem; }

        /* === RESPONSIVE STYLES === */
        @media (min-width: 768px) {
            .about-hero-section { padding: 6rem 0; }
            .about-hero-section h1 { font-size: 3.75rem; }
            .mission-grid { grid-template-columns: 1fr 1fr; }
            .journey-header h2, .team-header h2, .final-cta-content h2 { font-size: 3rem; }
        }

        @media (max-width: 767px) {
            .timeline::after { left: 20px; }
            .timeline-item { width: 100%; padding-left: 50px; padding-right: 1rem; }
            .timeline-right { left: 0%; }
            .timeline-left::after, .timeline-right::after { left: 10px; }
        }
        




 /* === ----------------------------------------SERVICES ===--------------------------------------- */


.services-container {
max-width: 1280px;
    margin: 0 auto;
    padding: 0 5rem;
}


.service-item {
display: grid;
grid-template-columns: 150px 1fr;
gap: 2rem;
padding: 6rem 0;
border-bottom: 1px solid var(--color-gray-200);
align-items: start;
}
.service-item:last-child {
border-bottom: none;
}

.service-number {
font-size: 10rem;
font-weight: 600;
line-height: 0.8;
text-align: center;
color: var(--color-gray-900);
}

.service-details {
padding-top: 1rem;
}

.service-category {
font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    display: block;
    font-weight: 700;
}

.service-headline {
font-size: 2rem;
font-weight: 700;
line-height: 1.2;
margin: 0 0 2rem 0;
max-width: 25ch; /* Limit line length for readability */
color: var(--color-gray-600);
}

.service-image img{
height: 10rem;
width: auto;
padding: 1rem 0;
}

/* Accordion Styling */
.service-accordion details {
border-top: 1px solid var(--color-gray-200);
}
.service-accordion details:last-of-type {
border-bottom: 1px solid var(--color-gray-200);
}

.service-accordion summary {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.25rem 0;
font-size: 1.25rem;
font-weight: 600;
cursor: pointer;
list-style: none; /* Remove default marker */
}
.service-accordion summary::-webkit-details-marker {
display: none; /* Chrome */
}

.service-accordion .icon {
font-style: normal;
font-weight: 400;
font-size: 1.5rem;
line-height: 1;
transition: transform 0.2s ease-in-out;
}

details[open] > summary .icon {
transform: rotate(45deg);
}

.accordion-content {
padding: 0 0 1.5rem 0;
color: var(--color-gray-600);
line-height: 1.7;
}

.accordion-content ul {
list-style-type: disc;
padding-left: 1.5rem;
margin: 0 0 1rem 0;
}

.accordion-summary-item {
margin-top: 1rem;
font-weight: 500;
color: var(--color-gray-900);
}

/* Responsive Styles */
@media (max-width: 900px) {
.service-headline { font-size: 2.5rem; }
.service-item { grid-template-columns: 100px 1fr; }
.service-number { font-size: 8rem; }
}

@media (max-width: 640px) {
.service-item {
grid-template-columns: 1fr;
gap: 1rem;
padding: 4rem 0;
}
.service-number {
font-size: 6rem;
text-align: left;
line-height: 1;
margin-bottom: 1rem;
}
.service-details { padding-top: 0; }
.service-headline { font-size: 2rem; }
.service-accordion summary { font-size: 1.125rem; }
}



/* ===000000000000000000000000000000000000000000000000 STYLES FOR RESOURCES PAGE ===00000000000000000000000000000000000000000000000 */

        .resources-hero-section {  padding: 4rem 0; text-align: center; }
        .resources-hero-section h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; max-width: 48rem; margin: 0 auto 1.5rem; }
        .resources-hero-section p { font-size: 1.4rem; color: var(--color-gray-600); max-width: 56rem; margin: 0 auto 2.5rem; }
        .resources-hero-image { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: 0rem; margin: 0 auto; }


.resources-header {
text-align: center;
margin-bottom: 3rem;
}
.resources-header h1 {
font-size: 2.5rem;
font-weight: 700;
margin: 0 0 0.5rem 0;
}
.resources-header p {
font-size: 1.125rem;
color: var(--color-text-secondary);
max-width: 45ch;
margin: 0 auto;
}

/* Filters */
.resources-filters {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.75rem;
margin-bottom: 3rem;
}
.filter-btn {
font-family: 'DM Sans', sans-serif;
font-size: 0.9rem;
font-weight: 600;
padding: 0.5rem 1.25rem;
border-radius: 9999px;
border: 1px solid var(--color-border);
background-color: var(--color-white);
color: var(--color-text-primary);
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.filter-btn:hover {
border-color: var(--color-brand-teal);
color: var(--color-brand-teal);
}
.filter-btn.active {
background-color: var(--color-brand-teal);
border-color: var(--color-brand-teal);
color: var(--color-white);
}

/* Resources Grid */
.resources-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
padding: 1rem;
}

.resource-card {
background-color: var(--color-white);
border: 1px solid var(--color-border);
border-radius: 0rem;
overflow: hidden;
text-decoration: none;
color: var(--color-text-primary);
transition: all 0.2s ease-in-out;
}
.resource-card:hover {
transform: translateY(-5px);
box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
border-color: var(--color-brand-teal);
}
.resourcescard-image {
display: flex;
align-items: center;
justify-content: center;
height: 180px;
background-color: #F8FAFC;
border-bottom: 1px solid var(--color-border);
color: var(--color-text-secondary);
font-size: 1rem;
}
.resourcescard-content {
padding: 1rem;
}
.resourcescard-tag {
display: inline-block;
font-size: 0.75rem;
font-weight: 600;
padding: 0.2rem 0.6rem;
border-radius: 0.25rem;
background-color: #E0F2F1; /* Light teal */
color: #0D7377; /* Darker teal */
margin-bottom: 0.5rem;
}
.resourcescard-title {
font-size: 1rem;
font-weight: 600;
line-height: 1.4;
margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
.resources-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.resources-header h1 {
    font-size: 2rem;
}
.resources-grid {
    grid-template-columns: 1fr;
}
}
 @media (min-width: 768px) {
    .resources-hero-section h1 {
        font-size: 3.75rem;
    }
}





/* === 000000000000000000000000000000000000000000000000000000000STYLES FOR CONTACT PAGE === */
.contact-section {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 3rem 1.5rem;
}
.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1100px;
width: 100%;
align-items: center;
}

/* Info Column */
.contact-info h1 {
font-size: 2.5rem;
font-weight: 700;
color: var(--color-heading);
margin: 0 0 1rem 0;
}
.contact-info p {
font-size: 1.125rem;
color: var(--color-text-secondary);
margin: 0 0 2.5rem 0;
max-width: 45ch;
}
.contact-details {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.contact-detail-item {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.contact-detail-item .icon {
flex-shrink: 0;
margin-top: 4px;
color: var(--color-brand-blue);
}
.contact-detail-item h3 {
font-size: 1rem;
font-weight: 700;
margin: 0 0 0.25rem 0;
color: var(--color-heading);
}
.contact-detail-item a {
color: var(--color-text-secondary);
text-decoration: none;
transition: color 0.2s;
}
.contact-detail-item a:hover {
color: var(--color-brand-blue);
}

/* Map Column */
.map-container {
width: 100%;
height: 450px;
border-radius: 1rem;
overflow: hidden;
border: 1px solid var(--color-border);
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -1px rgba(0,0,0,0.03);
}
.map-iframe {
width: 100%;
height: 100%;
border: 0;
filter: grayscale(1);
}

/* Responsive Styles */
@media (max-width: 900px) {
.contact-container {
grid-template-columns: 1fr;
gap: 3rem;
text-align: center;
}
.contact-info p {
margin-left: auto;
margin-right: auto;
}
.contact-detail-item {
justify-content: center;
text-align: left;
}
}
@media (max-width: 600px) {
.contact-section {
min-height: auto;
padding: 4rem 1rem;
}
.contact-info h1 {
font-size: 2rem;
}
}



/* === 00000000000000000000000000000000000000000000000000000000000STYLES FOR TERMS OF SERVICE PAGE === */
.tos-container {
max-width: 1000px;
margin: 0 auto;
padding: 2rem 3rem;
}

.tos-header h1 {
font-size: 2.25rem;
font-weight: 700;
color: var(--color-heading);
margin: 0 0 0.5rem 0;
}

.tos-header p {
font-size: 0.9rem;
color: var(--color-text-secondary);
margin: 0;
}

.tos-content {
margin-top: 2rem;
font-size: 1rem;
color: var(--color-text-secondary);
}

.tos-content h2 {
font-size: 1.25rem;
font-weight: 700;
color: var(--color-heading);
margin-top: 2rem;
margin-bottom: 0.75rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--color-border);
}

.tos-content h3 {
font-size: 1rem;
font-weight: 700;
color: var(--color-heading);
margin-top: 1.5rem;
margin-bottom: 0.5rem;
}

.tos-content p, .tos-content ul {
margin-bottom: 1rem;
}

.tos-content ul {
padding-left: 1.5rem;
}

.tos-content a {
color: #2563EB;
text-decoration: none;
}
.tos-content a:hover {
text-decoration: underline;
}

.disclaimer-box {
background-color: var(--color-disclaimer-bg);
border: 1px solid var(--color-disclaimer-border);
border-radius: 0.5rem;
padding: 1rem 1.5rem;
margin: 2rem 0;
font-size: 0.9rem;
}
.disclaimer-box strong {
color: #CA8A04;
}

@media (max-width: 600px) {
.tos-container {
padding: 1.5rem;
}
.tos-header h1 {
font-size: 1.75rem;
}
}


/* === ------------------------------------------------------------------STYLES FOR LEGAL PAGES === */
        .legal-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 3rem;
        }

        .legal-header h1 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--color-heading);
            margin: 0 0 0.5rem 0;
        }

        .legal-header p {
            font-size: 0.9rem;
            color: var(--color-text-secondary);
            margin: 0;
        }

        .legal-content {
            margin-top: 2rem;
            font-size: 1rem;
            color: var(--color-text-secondary);
        }

        .legal-content h2 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-heading);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--color-border);
        }

        .legal-content h3 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-heading);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .legal-content p, .legal-content ul {
            margin-bottom: 1rem;
        }

        .legal-content ul {
            padding-left: 1.5rem;
        }
        
        .legal-content a {
            color: var(--color-link);
            text-decoration: none;
        }
        .legal-content a:hover {
            text-decoration: underline;
        }
        
        .disclaimer-box {
            background-color: var(--color-disclaimer-bg);
            border: 1px solid var(--color-disclaimer-border);
            border-radius: 0.5rem;
            padding: 1rem 1.5rem;
            margin: 2rem 0;
            font-size: 0.9rem;
        }
        .disclaimer-box strong {
            color: #CA8A04;
        }

        @media (max-width: 600px) {
           
            .legal-container {
                padding: 1.5rem;
            }
            .legal-header h1 {
                font-size: 1.75rem;
            }
        }





        /* === 0000000000000000000000000000000000000000000000000000000000000000000STYLES FOR PORTFOLIO PAGE === */

        
        .portfolio-hero-section {  padding: 4rem 0; text-align: center; }
        .portfolio-hero-section h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; max-width: 48rem; margin: 0 auto 1.5rem; }
        .portfolio-hero-section p { font-size: 1.4rem; color: var(--color-gray-600); max-width: 56rem; margin: 0 auto 2.5rem; }
        .portfolio-hero-image { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: 0rem; margin: 0 auto; }


        .portfolio-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 5rem 1.5rem;
        }

        /* Header */
        .portfolio-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .portfolio-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-heading);
            margin: 0 0 0.5rem 0;
        }
        .portfolio-header p {
            font-size: 1.125rem;
            color: var(--color-text-secondary);
            max-width: 50ch;
            margin: 0 auto;
        }

        /* Case Study Grid */
        .portfolio-grid {
                display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    max-width: 1280px;
    padding: 0 0rem;
    margin: 0 auto;
        }

        .case-study-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 0rem;
            background-color: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius:0rem;
            overflow: hidden;
        }
        
        /* Alternating Layout */
        .case-study-card:nth-child(even) .card-image {
            order: 2;
        }
        .case-study-card:nth-child(even) .card-content {
            order: 1;
        }

        .card-image {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .card-content {
            padding: 2.5rem;
        }
        .card-client {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--color-brand-teal);
            margin: 0 0 0.5rem 0;
            text-transform: uppercase;
        }
        .card-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-heading);
            margin: 0 0 1rem 0;
            line-height: 1.3;
        }
        .card-description {
            color: var(--color-text-secondary);
            margin: 0 0 1.5rem 0;
        }
        .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }
        .card-tag {
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            background-color: #F1F5F9;
            color: var(--color-text-secondary);
        }
        .card-link {
            font-weight: 600;
            color: var(--color-brand-teal);
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .card-link:hover {
            opacity: 0.8;
        }

        /* Responsive Styles */
        @media (max-width: 900px) {
            .case-study-card,
            .case-study-card:nth-child(even) {
                grid-template-columns: 1fr;
            }
            .case-study-card:nth-child(even) .card-image,
            .case-study-card:nth-child(even) .card-content {
                order: 0; /* Reset order */
            }
            .card-image {
                height: 250px;
            }
            .card-content {
                padding: 2rem;
            }
        }
        @media (max-width: 600px) {
            .portfolio-container {
                padding: 4rem 1rem;
            }
            .portfolio-header h1 {
                font-size: 2rem;
            }
            .card-title {
                font-size: 1.5rem;
            }
        }
        @media (min-width: 768px) {
    .portfolio-hero-section h1 {
        font-size: 3.75rem;
    }
}
@media (min-width: 768px) {
    .portfolio-grid {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}