 @import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

        :root {
            --primary-color: #fd983f;
            --secondary-color: #0c0a5d;
            --text-dark: #030712;
            --text-light: #4b5563;
            --extra-light: #f5f6f8;
            --white: #ffffff;
            --max-width: 1200px;
        }

        * {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Poppins", sans-serif;
            scroll-behavior: smooth;
        }

        .section__container {
            max-width: var(--max-width);
            margin: auto;
            padding: 5rem 1rem;
        }

        .section__subheader {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--primary-color);
            text-align: center;
        }

        .section__header {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-align: center;
        }

        .btn {
            padding: 0.625rem 1.5rem;
            outline: none;
            border: none;
            font-size: 1rem;
            color: var(--white);
            background-color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 5rem;
            transition: 0.3s;
            cursor: pointer;
        }

        .btn:hover {
            color: var(--secondary-color);
            background-color: transparent;
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
        }

        img {
            display: flex;
            width: 100%;
        }

        a {
            text-decoration: none;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        /* Navigation Styles - FIXED FOR NO GAPS */
        nav {
            position: fixed;
            isolation: isolate;
            width: 100%;
            z-index: 9;
            top: 0;
            left: 0;
            padding: 0;
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav__header {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            width: 100%;
        }

        .nav__logo a {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
        }

        .nav__menu__btn {
            font-size: 1.5rem;
            color: var(--secondary-color);
            cursor: pointer;
            display: none;
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav__links a {
            font-weight: 500;
            color: var(--secondary-color);
            text-decoration: none;
            transition: 0.3s;
        }

        .nav__links a:hover {
            color: var(--primary-color);
        }

        .nav__btns {
            display: flex;
        }

        /* Header Styles */
        header {
            display: flex;
            height: 70vh;
            padding-top: 70px;
            background-color: #d9d9d9;
        }

        .header__left {
            width: 50%;
            display: flex;
        }

        .header__content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .header__content h2 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .header__content h1 {
            margin-bottom: 1rem;
            font-size: 4rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1.1;
        }

        .header__content h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .header__content p {
            margin-bottom: 2rem;
            color: var(--text-light);
            line-height: 1.75rem;
            max-width: 400px;
        }

        .header__btns {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .header__btns .btn:nth-child(2) {
            color: var(--secondary-color);
            background-color: transparent;
        }

        .header__image {
            width: 50%;
            background-image: url('./assets/vishnuview.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        /* About Section Styles */
        .intro__container {
            display: grid;
            gap: 2rem;
            overflow: hidden;
        }

        .intro__image {
            position: relative;
            isolation: isolate;
            max-width: 350px;
            margin-inline: auto;
            padding: 4px;
            overflow: hidden;
        }

        .intro__image::before {
            position: absolute;
            content: "";
            height: 200%;
            width: 10rem;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-35deg);
            transform-origin: center center;
            background-color: var(--primary-color);
            z-index: -1;
        }

        .intro__image img {
            background-color: var(--white);
        }

        .intro__content :is(.section__subheader, .section__header) {
            text-align: left;
        }

        .intro__description {
            margin-block: 1rem 2rem;
            color: var(--text-light);
            line-height: 1.75rem;
        }

        .intro__grid {
            margin-bottom: 2rem;
            display: grid;
            grid-template-columns: max-content max-content 1fr;
            gap: 0.5rem 1rem;
        }

        .intro__grid h5 {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .intro__grid h5 span {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .intro__grid > span {
            color: var(--text-dark);
        }

        .intro__grid p {
            color: var(--text-light);
        }

        .intro__content h4 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .intro__flex {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem 2rem;
            flex-wrap: wrap;
        }

        .intro__flex div {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--secondary-color);
        }

        .intro__flex span {
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        /* Skills Section Styles */
        .choose {
            background-color: var(--extra-light);
        }

        .choose__grid {
            max-width: 900px;
            margin-inline: auto;
            margin-top: 4rem;
            display: grid;
            gap: 1rem 2rem;
        }

        .choose__card div {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .choose__card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .choose__progress {
            position: relative;
            isolation: isolate;
            height: 10px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 1rem;
            overflow: hidden;
        }

        .choose__progress::before {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            height: 100%;
            background-color: var(--primary-color);
            animation: progress-fill 2s forwards;
        }

        @keyframes progress-fill {
            0% {
                width: 0;
            }
            100% {
                width: var(--progress);
            }
        }

        /* Journey Section Styles */
        .journey__grid {
            max-width: 900px;
            margin-inline: auto;
            margin-top: 4rem;
            display: grid;
            gap: 2rem;
        }

        .journey__grid > div {
            display: grid;
            gap: 1rem;
        }

        .journey__grid__header {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .journey__card {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .journey__card > span {
            position: relative;
            isolation: isolate;
            padding-inline: 2px;
            height: 100%;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .journey__card > span::before {
            position: absolute;
            content: "";
            height: 100%;
            width: 2px;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--primary-color);
        }

        .journey__card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .journey__card h5 {
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .journey__card p {
            color: var(--text-light);
        }

        /* Services Section Styles */
        .service__grid {
            margin-top: 4rem;
            display: grid;
            gap: 4rem 1rem;
        }

        .service__card {
            padding-block: 0 1.5rem;
            padding-inline: 1.5rem;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-top-right-radius: 3rem;
            transition: 0.3s;
        }

        .service__card:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }

        .service__card span {
            display: inline-block;
            padding: 6px 14px;
            font-size: 2rem;
            color: var(--white);
            background-color: var(--primary-color);
            transform: translateY(-50%);
            border-radius: 5px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .service__card:hover span {
            color: var(--primary-color);
            background-color: var(--white);
        }

        .service__card h4 {
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
            transition: 0.3s;
        }

        .service__card p {
            color: var(--text-light);
            line-height: 1.75rem;
            transition: 0.3s;
        }

        .service__card:hover :is(h4, p) {
            color: var(--white);
        }

        /* Banner Section Styles */
        .banner__container {
            display: grid;
            gap: 2rem;
            background: url("assets/banner-bg.png"), var(--primary-color);
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .banner__content {
            padding-block: 5rem 0;
            padding-inline: 1rem;
        }

        .banner__content .section__header {
            margin-bottom: 1rem;
            color: var(--white);
        }

        .banner__content p {
            margin-bottom: 1rem;
            color: var(--white);
            line-height: 1.75rem;
            text-align: center;
        }

        .banner__btn {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner__btn .btn {
            color: var(--primary-color);
            background-color: var(--white);
        }

        .banner__image {
            position: relative;
            isolation: isolate;
            height: 100%;
        }

        /* Testimonials Styles */
        .swiper {
            padding-block: 4rem;
            width: 100%;
        }

        .swiper-slide {
            min-width: 400px;
        }

        .swiper-pagination-bullet {
            height: 10px;
            width: 10px;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--primary-color);
        }

        .client__header {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .client__details {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .client__details img {
            max-width: 80px;
            border-radius: 100%;
            border: 2px solid var(--primary-color);
        }

        .client__details h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        .client__details h5 {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .client__ratings span {
            font-size: 1.2rem;
            color: goldenrod;
        }

        .client__card p {
            color: var(--text-light);
            line-height: 1.75rem;
        }

        /* Blog Section Styles */
        .blog {
            background-color: var(--extra-light);
        }

        .blog__grid {
            margin-top: 4rem;
            display: grid;
            gap: 2rem 1rem;
        }

        .blog__card {
            transition: 0.3s;
        }

        .blog__card:hover {
            background-color: var(--white);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .blog__card div {
            padding: 1rem;
        }

        .blog__card p {
            font-weight: 500;
            color: var(--text-light);
        }

        .blog__card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
        }

        /* Footer Styles */
        .footer__container {
            text-align: center;
        }

        .footer__container h4 {
            margin-bottom: 1rem;
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .footer__socials {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer__socials a {
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        .footer__socials a:hover {
            color: var(--primary-color);
        }

        .footer__bar {
            padding: 1rem;
            font-size: 1rem;
            color: var(--text-light);
            text-align: center;
        }

        /* Mobile Navigation - COMPLETELY FIXED */
        @media (max-width: 768px) {
            .nav__menu__btn {
                display: block;
            }

            .nav__links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                margin: 0;
                padding: 0;
                gap: 0;
            }

            .nav__links.open {
                display: flex;
            }

            .nav__links li {
                width: 100%;
                border-bottom: 1px solid var(--extra-light);
            }

            .nav__links li:last-child {
                border-bottom: none;
            }

            .nav__links a {
                display: block;
                width: 100%;
                padding: 1rem;
                text-align: left;
                margin: 0;
            }

            .nav__btns {
                display: none;
            }

            header {
                flex-direction: column;
                margin-top: 80px;
                height: auto;
            }

            .header__left,
            .header__image {
                width: 100%;
            }

            .header__image {
                height: 300px;
                order: -1;
            }

            .header__content {
                padding: 3rem 1rem;
            }

            .header__content h1 {
                font-size: 2.5rem;
            }

            .header__btns {
                flex-direction: column;
                width: 100%;
            }

            .header__btns .btn {
                width: 200px;
            }

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

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

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

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

        @media (max-width: 480px) {
            .nav__header {
                padding: 0.75rem 1rem;
            }

            .nav__logo a {
                font-size: 1.25rem;
            }

            .nav__menu__btn {
                font-size: 1.25rem;
            }

            .header__content h1 {
                font-size: 2rem;
            }

            .header__content {
                padding: 2rem 1rem;
            }
        }

        @media (width > 540px) {
            .choose__grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

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

        @media (width > 768px) {
            .choose__grid {
                gap: 1rem 4rem;
            }

            .journey__grid {
                gap: 2rem 4rem;
            }

            .service__grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .banner__container {
                grid-template-columns:
                    minmax(0, 1fr)
                    minmax(0, calc(var(--max-width) / 2))
                    minmax(0, calc(var(--max-width) / 2))
                    minmax(0, 1fr);
                align-items: center;
            }

            .banner__content {
                padding-block: 5rem;
                grid-column: 2/3;
            }

            .banner__content :is(.section__header, p) {
                text-align: left;
            }

            .banner__btn {
                justify-content: flex-start;
            }

            .banner__image {
                grid-column: 3/5;
                overflow: hidden;
            }

            .banner__image img {
                position: absolute;
                bottom: 0;
                left: 0;
                width: unset;
                height: 100%;
            }

            .blog__grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .intro__container {
                grid-template-columns: repeat(2, 1fr);
                align-items: center;
            }

            .intro__grid {
                gap: 0.5rem 2rem;
            }
        }

        @media (width > 1024px) {
            .service__grid {
                gap: 4rem 1.5rem;
            }

            .blog__grid {
                gap: 1.5rem;
            }
        }