* {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
          text-decoration: none;
          scroll-behavior: smooth;
          font-family: "Poppins", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif; /* ✅ SOLUTION: Added fallbacks */
     }   
        :root {
          --bg-color: #080808;
          --second-bg-color: #101010;
          --text-color: white;
          --main-color: #05de8b;
        }
        html {
          font-size: 60%;
          overflow-x: hidden;
        }
        body {
            background-color: var(--bg-color);
            color: var(--text-color);
        }
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            padding: 4rem 15%;
            background-color: rgb(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }
        #menu-icon {
            font-size: 3.5rem;
            color: var(--main-color);
            display: none;
        }
        .logo {
            font-size: 3rem;
            color: var(--text-color);
            font-weight: 800;
            cursor: pointer;
            transition: 0.3s ease-in-out;
        }
        .logo:hover {
            transform: scale(1.1);
        }
        span {
            background: linear-gradient(
                270deg,
                #02d483 10%,
                #037449 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .navbar a {
            font-size: 1.8rem;
            color: var(--text-color);
            margin-left: 4rem;
            font-weight: 500;
            transition: 0.3s ease-in-out;
            border-bottom: 3px solid transparent;
        }
        .navbar a:hover {
            color: var(--main-color);
            border-bottom: 3px solid var(--main-color);
        }
        section {
            min-height: 100vh;
            padding: 10rem 15%;
        }
        .home {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15rem;
        }
        .home-content {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-align: right;
        }
        .home-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-top: 1.5rem;
            line-height: 1;
        }
        .home-content h3 {
            margin: 1rem 0;
            font-size: 2.5rem;
        }
        .home-content p {
            font-size: 1.5rem;
            font-weight: 500;
            line-height: 1.8;
        }
        .home-img img{
            width: 25vw;
            height: 25vw;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 0 25px var(--main-color);
            transition: 0.3s ease-in-out;
        }
        .home-img img:hover {
            box-shadow: 0 0 25px var(--main-color),
                        0 0 50px var(--main-color),
                        0 0 100px var(--main-color);
        }
        .social-icons a{
            display: inline-flex;
            justify-content: center;
            align-items: center;
            font-size: 3rem;
            padding: 1rem;
            background: transparent;
            border: 2px solid var(--main-color);
            border-radius: 50%;
            color: var(--main-color);
            margin: 2rem 0.5rem;
            transition: 0.3s ease-in-out;
        }
        .social-icons a:hover{
            color: var(--text-color);
            background: var(--main-color);
            transform: scale(1.2)translateY(-5px);
            box-shadow: 0 0 25px var(--main-color);
        }
        .btn-group {
            display: flex;
            gap: 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 1rem 3rem;
            background-color: var(--main-color);
            box-shadow: 0 0 25px var(--main-color);
            border-radius: 3rem;
            font-size: 1.8rem;
            color: black;
            border: 2px solid transparent;
            font-weight: 600;
            transition: 0.3s ease-in-out;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--main-color),
                        0 0 50px var(--main-color);
        }
        .btn-group a:nth-of-type(2) {
            background-color: black;
            color: var(--main-color);
            border: 2px solid var(--main-color);
            box-shadow: 0 0 25px transparent;
        }
        .btn-group a:nth-of-type(2):hover {
            background-color: var(--main-color);
            color: black;
            box-shadow: 0 0 25px var(--main-color);
        }
        .about {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10rem;
            background-color: var(--second-bg-color);
        }
        .about-img img{
            width: 25vw;
            height: 25vw;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 0 25px var(--main-color);
            transition: 0.3s ease-in-out;
        }
        .about-img img:hover {
            box-shadow: 0 0 25px var(--main-color),
                        0 0 50px var(--main-color),
                        0 0 100px var(--main-color);
        }
        .about-content h2 {
            font-size: 7rem;
            text-align: left;
        }
        .about-content p {
            font-size: 1.8rem;
        }
        .about-content .btn {
            margin: 3rem 0;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--main-color);
        } 

        ::-webkit-scrollbar-track {
            background: var(--bg-color);
        }
        .heading {
            text-align: center;
            font-size: 7rem;
            margin: 5rem 0;
        }

        /* Updated Services Section with Detailed Pricing */
        .services {
            background-color: var(--bg-color);
            color: var(--text-color);
            padding: 8rem 15%;
        }
        .services h2 {
            color: var(--text-color);
            font-size: 6rem;
        }

        /* Service Packages Grid */
        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 8rem;
        }
        .service-box {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--main-color);
            height: 470px;
            border-radius: 3rem;
            cursor: pointer;
            border: 5px solid transparent;
            transition: 0.4s ease-in-out;
        }
        .service-box:hover {
            background: var(--second-bg-color);
            color: var(--main-color);
            border: 5px solid var(--main-color);
            transform: scale(1.03);
        }
        .service-info {
            display: flex;
            flex-direction: column;
            text-align: center;
            justify-content: center;
            align-items: center;
            padding: 5rem;
        }
        .service-info h4 {
            font-size: 4rem;
            margin: 2rem 0;
            font-weight: 800;
        }
        .service-info p {
            font-size: 1.4rem;
            font-weight: 600;
            line-height: 1.7;
        }
        .service-info i {
            font-size: 8rem;
        }

        /* Detailed Services Grid */
        .detailed-services {
            margin-top: 8rem;
        }
        .detailed-services h3 {
            text-align: center;
            font-size: 5rem;
            margin-bottom: 5rem;
            color: var(--text-color);
        }
        .detailed-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 0;
        }
        .detailed-service-card {
            background: var(--second-bg-color);
            padding: 3rem;
            border-radius: 2rem;
            border: 2px solid var(--main-color);
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(5, 222, 139, 0.1);
        }
        .detailed-service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(5, 222, 139, 0.2);
            border-color: var(--main-color);
        }
        .detailed-service-card h4 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--main-color);
        }
        .detailed-service-card p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: var(--text-color);
        }
        .price-tag {
            font-size: 2rem;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 1.5rem;
            font-family: "Poppins", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
            font-feature-settings: "kern" 1, "liga" 1;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .learn-more-btn {
            color: var(--main-color);
            font-weight: 600;
            font-size: 1.4rem;
            transition: color 0.3s ease;
        }
        .learn-more-btn:hover {
            color: #02d483;
        }

        /* Package Comparison Section */
        .package-comparison {
            margin-top: 8rem;
        }
        .package-comparison h3 {
            text-align: center;
            font-size: 5rem;
            margin-bottom: 5rem;
            color: var(--text-color);
        }
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }
        .package-card {
            background: var(--second-bg-color);
            padding: 4rem 3rem;
            border-radius: 2rem;
            text-align: center;
            border: 2px solid var(--main-color);
            transition: all 0.3s ease;
            position: relative;
        }
        .package-card.featured {
            border: 3px solid var(--main-color);
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--second-bg-color) 0%, #0a1a0a 100%);
        }
        .package-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--main-color);
            color: black;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(5, 222, 139, 0.2);
        }
        .package-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }
        .package-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--main-color);
        }
        .package-price {
            font-size: 4rem;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 2rem;
            font-family: "Poppins", "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
            font-feature-settings: "kern" 1, "liga" 1;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        .package-features {
            list-style: none;
            margin-bottom: 3rem;
        }
        .package-features li {
            padding: 1rem 0;
            color: var(--text-color);
            border-bottom: 1px solid #333;
            font-size: 1.4rem;
        }
        .package-features li:last-child {
            border-bottom: none;
        }
        .package-button {
            background: var(--main-color);
            color: black;
            padding: 1.5rem 3rem;
            border-radius: 3rem;
            font-weight: 600;
            font-size: 1.6rem;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid var(--main-color);
        }
        .package-button:hover {
            background: transparent;
            color: var(--main-color);
            transform: translateY(-2px);
            box-shadow: 0 0 25px var(--main-color);
        }

        /* Process Section */
        .process-section {
            margin-top: 8rem;
        }
        .process-section h3 {
            text-align: center;
            font-size: 5rem;
            margin-bottom: 5rem;
            color: var(--text-color);
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 4rem;
            margin-top: 5rem;
        }
        .process-step {
            text-align: center;
            background: var(--second-bg-color);
            padding: 3rem 2rem;
            border-radius: 2rem;
            border: 2px solid var(--main-color);
            transition: all 0.3s ease;
        }
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(5, 222, 139, 0.2);
        }
        .step-number {
            width: 6rem;
            height: 6rem;
            background: var(--main-color);
            color: black;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 2rem;
            margin: 0 auto 2rem;
        }
        .process-step h4 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--main-color);
        }
        .process-step p {
            color: var(--text-color);
            line-height: 1.6;
            font-size: 1.4rem;
        }

        .projects {
            background-color: var(--second-bg-color);
        }
        .projects-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            place-items: center;
            gap: 15rem;
            row-gap: 5rem;
        }
        .project-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: var(--bg-color);
            border: 2px solid var(--main-color);
            border-radius: 3rem;
            gap: 2rem;
            padding: 2rem 2rem;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 0 5px var(--main-color);
            transition: 0.3s ease-in-out;
        }
        .project-card:hover {
            transform: scale(1.02);
            box-shadow: 0 0 25px var(--main-color),
                        0 0 50px var(--main-color);
        }
        .project-card img {
            max-width: 300px;
            border-radius: 2em;
            object-fit: cover;
        }
        .project-card h3 {
            font-size: 5rem;
        }
        .projects .heading {
            font-size: 5rem;
        }
        .project-card p {
            font-size: 1.5rem;
        }
        .contact {
            background-color: var(--bg-color);
        }
        .contact h2 {
            margin-bottom: 3rem;
            color: var(--text-color);
        }
        .contact form {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            margin: 5rem 0;
            text-align: center;
        }
        .contact form .input-box input,
        .contact form textarea {
            width: 100%;
            padding: 1rem;
            font-size: 1.8rem;
            color: var(--text-color);
            background-color: var(--bg-color);
            border-radius: 2rem;
            border: 2px solid var(--main-color);
            margin: 1.5rem 0;
            resize: none;
        }
        .footer {
            background-color: var(--second-bg-color);
            padding: 50px 0;
        }
        .footer .social-icons {
            text-align: center;
        }
        .footer ul {
            text-align: center;
            font-size: 1.8rem;
        }
        .footer ul li {
            display: inline-block;
            margin-left: 20px;
        }
        .footer ul li a {
            color: white;
            transition: 0.3s ease-in-out;
            border-bottom: 3px solid transparent;
        }
        .footer ul li a:hover {
            border-bottom: 3px solid var(--main-color);
        }
        .footer .copyright {
            text-align: center;
            margin-top: 40px;
            font-size: 16px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }
        .modal-content {
            background: linear-gradient(135deg, var(--bg-color) 0%, var(--second-bg-color) 100%);
            margin: 10% auto;
            padding: 3rem;
            border: 3px solid var(--main-color);
            border-radius: 3rem;
            width: 90%;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 0 30px rgba(5, 222, 139, 0.3);
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }
        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        .modal-icon {
            font-size: 4rem;
            color: var(--main-color);
            margin-bottom: 1rem;
        }
        .modal-content h3 {
            color: var(--text-color);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        .modal-content p {
            color: var(--text-color);
            font-size: 1.4rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .modal-btn {
            background: var(--main-color);
            color: black;
            border: none;
            padding: 1rem 2rem;
            border-radius: 3rem;
            font-size: 1.6rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .modal-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--main-color);
        }
        .close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 3rem;
            font-weight: bold;
            color: var(--text-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close:hover {
            color: var(--main-color);
        }

        @media(max-width: 1285px) {
            .projects .heading {
                font-size: 5rem;
            }
            .services h2 {
                font-size: 5rem;
            }
            .header {
                padding: 2rem 5%;
            }
            #menu-icon {
                display: block;
                position: absolute;
                right: 5%;
                top: 50%;
                transform: translateY(-50%);
            }
            .navbar {
                position: absolute;
                top: 100%;
                right: 0;
                width: 50%;
                padding: 1rem 3rem;
                background-color: rgba(0, 0, 0, 0.8);
                border-bottom-left-radius: 2rem;
                border-left: 2px solid var(--main-color);
                border-bottom: 2px solid var(--main-color);
                display: none;   
            }
            .navbar a {
                display: block;
                margin: 3rem 0;
                font-size: 2rem;
                color: var(--text-color);
            }
            .navbar.active {
                display: block;
            }
            .home{
                flex-direction: column-reverse;
                margin: 5rem 0;
                gap: 5rem;
            }
            .home-content {
                align-items: center;
                text-align: center;
            }
            .home-img img {
                width: 50vw;
                height: 50vw;
            }
            .about {
                flex-direction:column-reverse;
                text-align: center;
            }
            .about h2 {
                text-align: center;
                margin: 2rem 0;
            }
            .about-img img {
                width: 45vw;
                height: 45vw;
            }
            .projects-box {
                grid-template-columns: 1fr;
                gap: 3rem;
                row-gap: 4rem;
            }
            .project-card {
                max-width: 400px;
                width: 100%;
            }
            .project-card img {
                max-width: 100%;
                height: auto;
            }
            .contact form {
                flex-direction: column;
                gap: 2rem;
            }
            .contact form .input-box {
                width: 100%;
            }
            .contact form .input-box input {
                width: 100%;
                margin: 1rem 0;
            }
            .contact form textarea {
                width: 100%;
                min-height: 150px;
            }
            .services-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .service-box {
                height: auto;
                min-height: 300px;
                padding: 2rem;
            }
            .service-info {
                padding: 2rem;
            }
            .service-info h4 {
                font-size: 2.5rem;
                margin: 1.5rem 0;
            }
            .service-info p {
                font-size: 1.2rem;
                line-height: 1.6;
            }
            .service-info i {
                font-size: 5rem;
            }
            .detailed-services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .packages-grid {
                grid-template-columns: 1fr;
            }
            .package-card.featured {
                transform: none;
            }
            .process-steps {
                grid-template-columns: 1fr;
            }
            .modal-content {
                margin: 20% auto;
                padding: 2rem;
                width: 95%;
            }
            .modal-content h3 {
                font-size: 2rem;
            }
            .modal-content p {
                font-size: 1.2rem;
            }
            .modal-btn {
                font-size: 1.4rem;
                padding: 0.8rem 1.5rem;
            }
        }