        @font-face {
            font-family: "GeneralSans";
            src: url("GeneralSans_Complete/Fonts/OTF/GeneralSans-Regular.otf") format("woff2");
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: "GeneralSans";
            src: url("GeneralSans_Complete/Fonts/OTF/GeneralSans-Semibold.otf") format("woff2");
            font-weight: 500;
            font-style: normal;
        }

        @font-face {
            font-family: "GeneralSans";
            src: url("GeneralSans_Complete/Fonts/OTF/GeneralSans-Bold.otf") format("woff2");
            font-weight: 700;
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "GeneralSans", sans-serif;
        }

        :root {
            --color-primary: #FF5722;
            --color-dark: #1A1A1A;
            --color-darker: #0D0D0D;
            --color-text-light: #bcbcc2;
            --color-text-primary: #000000;
            --color-text-secondary: #ffffff;
            --color-border: #2A2A2A;
            --color-surface: #131315;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 1.5rem;
            --spacing-lg: 2rem;
            --spacing-xl: 3rem;
            --spacing-2xl: 4rem;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --primary-grad: linear-gradient(180deg, rgb(255, 146, 104) 0%, rgb(249, 92, 31) 100%)
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "GeneralSans", sans-serif;
            color: var(--color-text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(1.8rem, 5vw, 3.5rem);
            letter-spacing: -0.01em;
        }

        h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
        }

        h3 {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
        }

        p {
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            color: var(--color-text-secondary);
            line-height: 1.7;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        header {
            top: 0;
            z-index: 100;
            transition: var(--transition-smooth);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: var(--spacing-sm) var(--spacing-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--color-primary);
            display: flex;
            align-items: center;
            gap: 0.2rem;
        }

        /*.logo::before {*/
        /*    content: "+";*/
        /*    font-size: 1.4rem;*/
        /*}*/

        .nav-links {
            display: none;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            font-size: 1rem;
            color: var(--color-text-black);
            transition: var(--transition-smooth);
            position: relative;
            font-weight: 500;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--color-primary);
        }

        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
            min-width: 40px;
        }

        .hamburger span {
            width: 20px;
            height: 2px;
            background: var(--color-text-primary);
            transition: 0.3s ease;
        }

        /* OPEN STATE */

        .hamburger.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            flex-direction: column;
            top: 60px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            padding: var(--spacing-md);
            padding-top: 0;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu a {
            display: block;
            padding: var(--spacing-sm) 0;
            color: var(--color-text-primary);
            transition: var(--transition-smooth);
            font-size: 1rem;
            font-weight: bold;
        }

        .mobile-menu a:hover {
            color: var(--color-primary);
            padding-left: var(--spacing-sm);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--spacing-xs);
            padding: 0.7rem 1.8rem;
            background: var(--color-primary);
            color: var(--color-darker);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .btn:hover {
            background: #ff6b3d;
            transform: translateY(-2px);
        }

        /* Sections */
        section {
            padding: 3rem 0;
        }

        /* Hero */
        .hero {
            padding: 0;
            position: relative;
            overflow: hidden;
        }


        .hero .container,.contact .container {
            background-color: var(--color-surface);
            align-items: center;
            border-radius: 40px;
            display: flex;
            flex: none;
            flex-direction: column;
            flex-wrap: nowrap;
            gap: 64px;
            height: min-content;
            justify-content: center;
            overflow: visible;
            padding: 6.25rem 1.5rem 1.5rem 1.5rem;
            position: relative;
            width: 95%;
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        .hero-content h1 {
            color: var(--color-text-secondary);
        }

        .hero-content>p {
            max-width: 550px;
            margin: 0 auto;
            font-size: 0.95rem;
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            color: var(--color-text-secondary);
            font-size: 1.22rem;
            font-weight: bold;
            padding: .75rem 1.5rem;
            background: linear-gradient(180deg, rgb(255, 146, 104) 0%, rgb(249, 92, 31) 100%);
            border-radius: 3rem;
            text-decoration: none;
            position: relative;
            display: flex;
            justify-content: center;
            gap: .25rem;
        }

        .btn-primary span.text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }

        .btn-primary:hover span.text {
            color: var(--color-primary);
            transition: var(--transition-smooth);
            z-index: 1;
        }

        .btn-primary span.icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: .75rem;
            height: .75rem;
            font-size: .9rem;
            padding: 1.25rem;
            color: var(--color-primary);
            z-index: 1;

            transition: var(--transition-smooth);
        }

        .btn-primary::before {
            position: absolute;
            /* right: 1.8rem; */
            right: 1.5rem;
            z-index: 0;
            content: '';
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;

            background: var(--color-text-secondary);
            transition: var(--transition-smooth);

        }


        .btn-primary:hover {
            transform: translate(0.5rem);
        }

        .btn-primary:hover::before {
            right: 7.5%;
            width: calc(85%);
            height: 2.5rem;
            border-radius: 1.25rem;
        }

        .btn-primary span.icon i {
            z-index: 1;
        }

        .hero-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .hero-card {
            background: linear-gradient(135deg, #333333 0%, #242424 100%);
            border-radius: 2rem;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition-smooth);
            aspect-ratio: 3/2;
            position: relative;
            width: 100%;
            height: auto;
        }


        .hero-card-content {
            position: relative;
            width: 100%;
            height:100%;
            z-index: 1;
            display: flex;
            flex-direction:column;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 1.5rem 1.75rem;
            background-color:rgb(1,1,1,0.5);

        }

        .hero-card-title {
            color: var(--color-text-secondary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-align: left;
            margin: 0;
        }

        .hero-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            object-position: center;
            object-fit: fill;
            image-rendering: auto;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-cta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            color: var(--color-text-secondary);
            font-size: 1rem;
            padding: .5rem .7rem;
            background: var(--color-text-secondary);
            border-radius: 1.25rem;
            text-decoration: none;
            position: relative;
            display: flex;
            justify-content: center;
            gap: .25rem;
            width: 2.5rem;
            height: 2.5rem;
            transition: var(--transition-smooth);

        }

        .btn-secondary span.text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            word-break: keep-all;
            text-wrap: nowrap;
        }

        .btn-secondary:hover {
            width: 10rem;
            color: var(--color-text-secondary);
        }

        .btn-secondary:hover span.icon {
            color: var(--color-text-secondary);
        }

        .btn-secondary span.icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: .75rem;
            height: .75rem;
            font-size: .9rem;
            padding: 1.25rem;
            color: var(--color-primary);
            z-index: 1;
            transition: var(--transition-smooth);
        }


        /* About Section */

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            text-align: center;
            margin: 2rem;
        }

        .about-left {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            align-content: center;
            justify-content: center;
        }

        .about-heading {
            font-size: 0.9rem;
            font-weight: 300;
            letter-spacing: 0.5rem;
            color: var(--color-text-light);
        }

        .about-left .profile-image-wrapper img {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: 50%;
            object-fit: cover;
            background-position: center;
            overflow: hidden;
            margin: 0 auto;
        }

        .about-text {
            /* width: 80%; */
            margin: 0 auto;
            color: var(--color-text-light);
            font-size: 1.8rem;
            color: var(--color-text-black);
            font-weight: 500;
            text-align: left;
            letter-spacing: .9;
            line-height: 2.5rem;
        }

        /* Services Section */

        .services-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            width: 100%;
        }

        .services-content h2 {
            text-align: center;
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--color-text-light);
            letter-spacing: 0.2rem;
        }

        .service-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 500;
            color: var(--color-text-secondary);
            text-transform: uppercase;
        }

        .service img {
            display: none;
        }

        /* project card */

        .project-carousel {
            width: 100%;
        }

        .project-card {
            display: flex;
            flex-direction: column;
            justify-content: end;
            position: relative;
            width: 100%;
            max-width: 1400px;
            min-height: 500px;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        .project-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.4) 0%,
                    rgba(0, 0, 0, 0.7) 100%);
        }

        .project-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 25px;
            color: var(--color-text-light);
        }

        .project-number {
            font-size: 14px;
            letter-spacing: 2px;
            font-weight: 300;
            opacity: 0.8;
        }

        .project-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 40px;
        }

        .project-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .detail-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .detail-label {
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0.6;
            font-weight: 400;
        }

        .detail-content {
            font-size: 16px;
            font-weight: 500;
            line-height: 1.3;
            max-width: 250px;
            color: var(--color-text-secondary);
        }

        .detail-content.type {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .arrow-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
            align-self: flex-end;
        }

        .arrow-button:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .arrow-button::after {
            content: "→";
            font-size: 22px;
            color: #ff6b35;
            font-weight: bold;
        }


        /* Owl Carousel dots */

        .owl-dots {
            text-align: center;
        }

        .owl-dots .owl-dot {
            display: inline-block;
            margin: 0 2px;
        }

        .owl-dots .owl-dot span {
            width: 6px;
            height: 6px;
            background: #d6d6d6;
            display: block;
            border-radius: 50%;
            transition: opacity 0.3s ease;
        }

        .owl-dots .owl-dot.active span {
            background: #869791;
        }

        /* <!-- Testimonial Section --> */
        .testimonial-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px;
            background: white;
            border-radius: 12px;
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
        }

        .section-label {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #999;
            font-weight: 400;
        }

        .navigation-arrows {
            display: flex;
            gap: 12px;
        }

        .arrow-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: none;
            background: #e5e5e5;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 18px;
            color: #666;
        }

        .arrow-btn:hover {
            background: #d0d0d0;
            transform: scale(1.05);
        }

        .arrow-btn:active {
            transform: scale(0.95);
        }

        .arrow-btn.prev::before {
            content: '‹';
        }

        .arrow-btn.next::before {
            content: '›';
        }

        .testimonial-content {
            margin-bottom: 40px;
        }

        .testimonial-quote {
            font-size: 32px;
            line-height: 1.5;
            color: #1a1a1a;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            background: #ddd;
        }

        .author-info {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }

        .author-name {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .author-title {
            font-size: 14px;
            color: #666;
            font-weight: 400;
        }

        .clients-section {
            max-width: 1200px;
            margin: 3rem auto;
        }

        .section-header {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            text-align: center;
            color: #999;
            margin-bottom: 40px;
            font-weight: 400;
        }

        /* Mobile First - Base Styles */
        .client-item {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 2rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .client-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .client-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .client-number {
            font-size: 14px;
            color: #ccc;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .client-image {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .client-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .client-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .client-name {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -1px;
            color: #d0d0d0;
            text-transform: uppercase;
        }

        .client-description {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
        }

        /* ============================================
           CTA SECTION - MOBILE FIRST
           ============================================ */

        .cta-wrapper {
            margin-top: 5rem;
            padding: 0%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .cta-container {
            width: 100%;
            max-width: 1400px;
            background: var(--color-darker);
            border-radius: 20px 20px 0 0;
            padding: 60px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 40px;
        }

        .cta-heading {
            font-size: 36px;
            font-weight: 600;
            color: white;
            line-height: 1.2;
            text-align: center;

        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        .arrow-icon {
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .cta-button:hover .arrow-icon {
            background: rgba(255, 255, 255, 0.5);
            transform: translateX(3px);
        }

        /* ============================================
           FOOTER SECTION - MOBILE FIRST
           ============================================ */

        .footer {
            background: var(--color-darker);
            color: white;
            padding: 60px 20px 40px;
            text-align: center;

        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding-bottom: 40px;
            border-top: 1px solid #333;
            padding-top: 60px;
            margin-bottom: 30px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            padding: 5px;
        }

        .footer-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .footer-tagline {
            font-size: 20px;
            font-weight: 500;
            color: #e0e0e0;
            line-height: 1.4;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-column-title {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .footer-column a {
            color: #999;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #ff6b35;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
        }

        .footer-copyright {
            font-size: 14px;
            color: #666;
        }

        @media (min-width: 480px) {
            .cta-container {
                padding: 80px 40px;
            }

            .cta-heading {
                font-size: 48px;
            }

            .cta-button {
                padding: 18px 36px;
                font-size: 17px;
            }

            .footer {
                padding: 80px 30px 40px;
            }

            .footer-avatar {
                width: 140px;
                height: 140px;
            }

            .footer-tagline {
                font-size: 22px;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        /* Responsive */
        @media (min-width: 640px) {

            .hero-cards {
                grid-template-columns: 1fr 1fr;
            }

            section {
                padding: 4rem 0;
            }
        }

        @media (min-width: 768px) {

            .about-content .about-left .profile-image-wrapper img {
                width: 25%;
            }

            .about-text {
                width: 70%;
            }

            .services-content {
                gap: 1rem;
            }

            .service-title {
                text-align: center;
                font-size: 4rem;
                font-weight: 500;
            }


            .project-card {
                height: 500px;
            }

            .project-content {
                padding: 30px;
            }

            .project-info {
                flex-direction: column;
                gap: 40px;
            }

            .project-details {
                flex-direction: column;
                gap: 30px;
            }

            .detail-content {
                font-size: 18px;
            }

            .arrow-button {
                width: 50px;
                height: 50px;
            }

            .section-header {
                margin-bottom: 60px;
            }

            .client-item {
                gap: 40px;
                margin-bottom: 80px;
                padding-bottom: 80px;
            }

            .client-image {
                height: 250px;
            }

            .client-name {
                font-size: 36px;
            }

            .client-description {
                font-size: 16px;
            }

            .cta-wrapper {
                padding: 0;
            }

            .cta-container {
                padding: 100px 60px;
                gap: 50px;
            }

            .cta-heading {
                font-size: 64px;
            }

            .cta-button {
                padding: 20px 40px;
                font-size: 18px;
                gap: 15px;
            }

            .arrow-icon {
                width: 28px;
                height: 28px;
                font-size: 20px;
            }

            .footer {
                padding: 100px 40px 50px;
            }

            .footer-top {
                flex-direction: row;
                justify-content: space-between;
                gap: 60px;
                padding-top: 80px;
                padding-bottom: 60px;
                margin-bottom: 40px;
            }

            .footer-brand {
                max-width: 350px;
                align-items: start;
                text-align: start;
            }

            .footer-avatar {
                width: 160px;
                height: 160px;
            }

            .footer-tagline {
                font-size: 24px;
            }

            .footer-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 50px;
                flex: 1;
            }

            .footer-bottom {
                text-align: left;
            }


        }

        @media (min-width: 1024px) {
            nav {
                justify-content: center;
            }

            .nav-links {
                display: flex;
            }

            .hamburger {
                display: none;
            }

            .mobile-menu {
                display: none !important;
            }

            .mob_logo {
                display: none;
            }


            .container {
                padding: 0 var(--spacing-lg);
            }

            .about-content {
                flex-direction: row;
                align-items: start;
                justify-content: space-between;
                text-align: left;
                gap: 4rem;
            }

            .about-right {
                width: 60%;
            }

            .about-content .about-left .profile-image-wrapper img {
                width: 300px;
            }

            .about-text {
                width: 100%;
            }

            .service {
                display: flex;
                align-content: center;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
            }

            .service img {
                display: block;
                width: 0rem;
                aspect-ratio: 1/1;
                border-radius: 0.25rem;

            }

            .service-title:hover .service img {
                width: 4rem;
            }

            .project-card {
                height: 90vh;
            }

            .project-content {
                padding: 1.5rem;
            }

            .project-info {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-end;
            }

            .project-details {
                flex-direction: row;
                gap: 80px;
            }

            .detail-content {
                font-size: 1.5rem;
            }

            .arrow-button {
                width: 60px;
                height: 60px;
            }

            .client-item {
                flex-direction: row;
                align-items: center;
                gap: 60px;
            }

            .client-left {
                flex-direction: row;
                align-items: top;
                gap: 40px;
                flex-shrink: 0;
            }

            .client-image {
                width: 380px;
                height: 280px;
            }

            .client-right {
                flex: 1;
            }

            .client-name {
                font-size: 48px;
            }

            .client-description {
                max-width: 600px;
            }

            .cta-container {
                padding: 120px 80px;
                gap: 60px;
            }

            .cta-heading {
                font-size: 80px;
            }

            .cta-button {
                padding: 22px 44px;
                font-size: 19px;
            }

            .footer {
                padding: 120px 60px 60px;
            }

            .footer-avatar {
                width: 180px;
                height: 180px;
            }

            .footer-tagline {
                font-size: 26px;
            }

            .footer-column-title {
                font-size: 20px;
            }

            .footer-column a {
                font-size: 17px;
            }
        }

        @media (min-width: 1280px) {
            /* .hero-content {
                text-align: left;
                max-width: 500px;
                margin-left: 0;
            } */

            /* .hero-cards {
                position: absolute;
                right: 2rem;
                bottom: -1rem;
                width: 450px;
                height: auto;
                margin: 0;
            } */

            .hero {
                min-height: 90vh;
                margin-bottom:4rem;
            }
            .hero.single{
            min-height: unset !important;
        }
        }

        @media (min-width: 1440px) {
            .cta-container {
                padding: 150px 100px;
            }

            .cta-heading {
                font-size: 96px;
            }

            .cta-button {
                padding: 24px 48px;
                font-size: 20px;
            }

            .arrow-icon {
                width: 32px;
                height: 32px;
                font-size: 22px;
            }

            .footer {
                padding: 140px 80px 70px;
            }

            .footer-links {
                gap: 80px;
            }
        }

        :root {
            --primary-blue: #1e40af;
            --light-gray: #f5f5f5;
            --dark-gray: #333333;
            --border-color: #e0e0e0;
            --text-light: #666666;
            --transition: all 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .experience {
            padding: 30px 0;
        }

        .experience-header {
            display: flex;
            align-items: flex-start;
            gap: 0;
            margin-bottom: 30px;
            flex-direction: column;
        }

        .experience-title {
            color: var(--dark-gray);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            display: inline-block;
            border-radius: 2px;
            margin-bottom: 20px;
        }

        .experience-intro {
            flex: 1;
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            min-width: auto;
        }

        .timeline {
            position: relative;
            padding: 0;
        }

        .timeline-item {
            display: flex;
            flex-direction: column;
            gap: 0;
            align-items: flex-start;
            padding: 20px 0;
            padding-left: 50px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            transition: var(--transition);
        }

        .timeline-item:hover {
            background-color: transparent;
        }

        .timeline-item:last-child {
            border-bottom: none;
        }

        .timeline-date {
            text-align: left;
            font-size: 12px;
            letter-spacing: 1px;
            color: var(--text-light);
            font-weight: 600;
            padding-bottom: 6px;
        }

        .timeline-marker {
            display: flex;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 0;
        }

        .timeline-marker::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary-blue);
            border-radius: 50%;
            box-shadow: 0 0 0 2px rgba(30, 64, 175, 0.1);
            transition: var(--transition);
        }

        .timeline-item:hover .timeline-marker::before {
            width: 12px;
            height: 12px;
            box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.15);
        }

        .timeline-marker::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--border-color);
            top: 50%;
            left: 16px;
            z-index: -1;
        }

        .timeline-item:last-child .timeline-marker::after {
            display: none;
        }

        .timeline-company {
            text-align: left;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-gray);
            letter-spacing: 0.5px;
        }

        .timeline-position {
            text-align: left;
            font-size: 12px;
            color: var(--text-light);
            margin-top: 2px;
            font-weight: 400;
        }
        /* .contact .container{
           
        } */
        section.contact {
            padding-top: 0;
            padding-bottom: 0;
            margin-bottom: 4rem;
         }
        
         .contact .contact-label{
            color: var(--color-text-secondary);
            letter-spacing: .5rem;
         }
        .contact .contact-section{
            display: flex;
            flex-direction: column;
        }
        .contact .contact-section .contact-profile{
            display: none;
        }
        .contact  .contact-form-wrapper {
            order: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
 
        .contact .form-header {
            text-align: center;
        }
 
        .contact .form-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.2;
            color: var(--color-text-secondary);
        }
 
        .contact .form-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
        }
 
        .contact .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
 
        .contact .form-group label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            text-transform: capitalize;
        }
 
        .contact .form-input,
        .contact .form-textarea {
            width: 100%;
            padding: 14px 16px;
            border: none;
            border-radius: 8px;
            background-color: var(--color-text-secondary);
            color: var(--input-text);
            font-family: inherit;
            font-size: 14px;
            transition: var(--transition);
            margin-bottom: 16px;
        }
 
        .contact .form-input::placeholder,
        .contact .form-textarea::placeholder {
            color: #999999;
        }
 
        .contact .form-input:focus,
        .form-textarea:focus {
            outline: none;
            background-color: #f0f0f0;
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
 
        .contact .form-textarea {
            resize: vertical;
            font-size: 14px;
        }
 
        .contact .submit-btn {
            width: 100%;
            padding: 16px;
            background-color: var(--color-primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: capitalize;
            margin-top: 10px;
        }
 
        .contact.submit-btn:hover {
            background-color: #ff5722;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
        }
 
        .contact .submit-btn:active {
            transform: translateY(0);
        }
        
 

        /* Tablet Responsive */
        @media (min-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .experience {
                padding: 40px 0;
            }

            .experience-header {
                gap: 20px;
                flex-direction: row;
                flex-wrap: wrap;
                margin-bottom: 40px;
            }

            .experience-title {
                font-size: 12px;
                letter-spacing: 1.5px;
            }

            .experience-intro {
                font-size: 15px;
                line-height: 1.7;
                color: var(--text-light);
            }

            .timeline-item {
                padding: 25px 0;
                padding-left: 60px;
                flex-direction: column;
            }

            .timeline-item:hover {
                background-color: var(--light-gray);
                padding: 25px 15px;
                margin: 0 -15px;
                border-radius: 4px;
            }

            .timeline-date {
                font-size: 13px;
                padding-bottom: 8px;
            }

            .timeline-company {
                font-size: 15px;
            }

            .timeline-position {
                font-size: 13px;
            }

            .timeline-marker::before {
                width: 10px;
                height: 10px;
                box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
            }

            .timeline-item:hover .timeline-marker::before {
                width: 14px;
                height: 14px;
                box-shadow: 0 0 0 5px rgba(30, 64, 175, 0.2);
            }

            .timeline-marker::after {
                left: 20px;
            }
        }

        /* Desktop Responsive */
        @media (min-width: 1024px) {
            .experience {
                padding: 60px 0;
            }

            .experience-header {
                gap: 40px;
                margin-bottom: 60px;
            }

            .experience-intro {
                font-size: 16px;
                line-height: 1.8;
            }

            .timeline-item {
                display: grid;
                grid-template-columns: 1fr 200px 1fr;
                gap: 40px;
                align-items: center;
                padding: 40px 0;
                padding-left: 0;
            }

            .timeline-item:hover {
                background-color: var(--light-gray);
                padding: 40px 20px;
                margin: 0 -20px;
                border-radius: 4px;
            }

            .timeline-date {
                text-align: right;
                font-size: 14px;
                letter-spacing: 1px;
                padding-bottom: 0;
                padding-right: 0;
            }

            .timeline-marker {
                position: relative;
                left: auto;
                top: auto;
                justify-content: center;
            }

            .timeline-marker::before {
                width: 12px;
                height: 12px;
                box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
            }

            .timeline-item:hover .timeline-marker::before {
                width: 16px;
                height: 16px;
                box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.2);
            }

            .timeline-marker::after {
                width: 2px;
                height: calc(100% + 80px);
                top: 50%;
                left: 50%;
                transform: translateX(-50%);
            }

            .timeline-company {
                text-align: left;
                font-size: 16px;
            }

            .timeline-position {
                font-size: 14px;
            }
            .contact .contact-section{
            flex-direction: row;
            gap: 2rem;
        }
         .contact .container{
            padding-inline: 4rem;
         }
        .contact .contact-section .contact-profile{
            display: flex;
            flex-direction: column;
            width: 50%;
            justify-content: space-between;
        }
        .contact .contact-section .contact-profile .profile-image img{
           border-radius: 50%;
           width: 50%;
        }
        }

        /* Animation on load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .timeline-item {
            animation: fadeInUp 0.6s ease forwards;
        }

        .timeline-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .timeline-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .timeline-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .timeline-item:nth-child(4) {
            animation-delay: 0.4s;
        }
        