        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            /* border: 1px solid red; */
        }

        body {
            background: #f5f5f5;
            /* height: 200vh; */
        }

        /* NAVBAR */

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #0F172A;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .navbar {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 20px;
        }

        .logo {
            font-size: 22px;
            font-weight: 600;
            color: #FBBF24;
            display: flex;
            align-items: center;
        }

        /* NAV LINKS */

        .nav-links {
            position: fixed;
            top: 0;
            left: -260px;
            width: 260px;
            height: 100%;
            background: #0F172A;
            padding-top: 80px;
            display: flex;
            flex-direction: column;
            gap: 25px;
            padding-left: 30px;
            transition: 0.5s;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        }

        .nav-links a {
            text-decoration: none;
            color: #FFFFFF;
            font-weight: 500;
            font-size: 16px;
        }

        /* ACTIVE MENU */

        .nav-links.active {
            left: 0;
        }

        .nav-links a:active {
            color: #FBBF24 !important;

        }

        .nav-links a.active {
            color: #FBBF24;
            font-weight: 800;
        }
        

        /* HAMBURGER */

        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #FFFFFF;
            transition: 0.3s;
        }

        /* HAMBURGER ANIMATION */

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* DESKTOP */

        @media(min-width:768px) {

            .hamburger {
                display: none;
            }

            .nav-links {
                position: static;
                flex-direction: row;
                height: auto;
                width: auto;
                padding: 0;
                gap: 30px;
                box-shadow: none;
            }

        }

      

        /* SLIDER */

        .slider {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        /* SLIDES CONTAINER */

        .slides {
            display: flex;
            height: 100%;
            transition: transform 1s ease;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* IMAGE */

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.2);
            transition: transform 7s ease;
        }

        .slide.active img {
            transform: scale(1);
        }

        /* DARK OVERLAY */

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5),
                    rgba(0, 0, 0, 0.5));
        }

        /* CONTENT */

        /* .scontent {
            position: absolute;
            top: 50%;
            left: 8%;
            transform: translateY(-50%);
            color: white;
            max-width: 520px;
        } */

        .scontent {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            /* max-width: 700px; */
            width: 90%;
            text-align: center;
        }

        /* CONTENT ANIMATION */

        .scontent h2,
        .scontent p,
        .scontent a {
            opacity: 0;
            transform: translateY(40px);
        }

        .slide.active h2 {
            animation: fadeUp .8s forwards .2s;
        }

        .slide.active p {
            animation: fadeUp .8s forwards .5s;
        }

        .slide.active a {
            animation: fadeUp .8s forwards .8s;
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }

        /* TEXT STYLING */

        .scontent h2 {
            font-size: 52px;
            margin-bottom: 15px;
        }

        .scontent p {
            font-size: 18px;
            margin-bottom: 25px;
        }

        .scontent a {
            display: inline-block;
            padding: 14px 28px;
            background: #FBBF24;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
        }

        /* NAV BUTTONS */

        .nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 24px;
            padding: 12px 18px;
            cursor: pointer;
            z-index: 5;
        }

        .prev {
            left: 20px
        }

        .next {
            right: 20px
        }

        /* DOTS */

        .dots {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .dot {
            width: 14px;
            height: 14px;
            background: #ccc;
            border-radius: 50%;
            cursor: pointer;
        }

        .dot.active {
            background: #2563eb;
        }

        /* MOBILE */

        @media(max-width:768px) {

            /* .scontent {
                left: 6%;
                max-width: 90%;
            } */

            .scontent {
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                max-width: 90%;
                width: 90%;
                text-align: center;
                padding: 0 10px;
            }

            .scontent h2 {
                font-size: 30px;
            }

            .scontent p {
                font-size: 14px;
            }

        }



        .packages {
            padding: 60px 8%;
        }

        .packages h2 {
            text-align: center;
            font-size: 34px;
            margin-bottom: 50px;
            margin-top: 50px;
        }

        .package-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .package {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
        }

        .package-header {
            background: #0F172A;
            padding: 20px;
            color: #FFFFFF;
            text-align: center;
        }

        .package-header h3 {
            font-size: 22px;
            color: #FBBF24;
            font-variant: small-caps;
        }

        .package-header h3:last-child {
            color: #FFFFFF;
            font-variant: normal;
        }

        .feature {
            display: flex;
            justify-content: space-between;
            padding: 14px 20px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            font-weight: 500;
        }

        .feature:hover {
            background: #f1f1f1;
        }

        .icon {
            font-weight: bold;
        }

        .content {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease;
            padding: 0 20px;
            background: #fafafa;
        }

        .content ul {
            padding: 15px 0 15px 20px;
        }

        .content li {
            margin: 6px 0;
            font-size: 14px;
        }



        /* Section */
        .verify-section {
            max-width: 700px;
            margin: auto;
            background: white;
            padding: 40px 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin: 10px;
        }

        .verify-section h2 {
            margin-bottom: 10px;
            font-size: 28px;
        }

        .verify-section p {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* Button container */
        .btn-group {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* Buttons */
        .btn {
            background: #0F172A;
            color: #FBBF24;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn:hover {
            background: #0056b3;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            /* padding:20px; */
        }

        /* Image box (dialog) */
        .image-box {
            position: relative;
            background: white;
            width: 500px;
            height: 500px;
            max-width: 95%;
            max-height: 90vh;
            padding: 15px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }

        /* Image inside dialog */
        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 6px;
        }

        /* Close button */
        .close {
            position: absolute;
            top: -10px;
            right: -10px;
            background: white;
            border-radius: 50%;
            padding: 8px 10px;
            cursor: pointer;
            font-size: 18px;
            border: 2px solid #FBBF24;
        }

        /* Mobile adjustments */
        @media (max-width:500px) {

            .verify-section {
                padding: 30px 20px;
            }

            .verify-section h2 {
                font-size: 22px;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

        }

        @media (max-width:600px) {

            .image-box {
                width: 90%;
                height: 300px;
            }

        }

        /* Popup background */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
            z-index: 999;
        }

        /* Form box */
        .contact-container {
            background: #fff;
            width: 100%;
            max-width: 400px;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: popup 0.4s ease;
        }

        /* animation */
        @keyframes popup {
            from {
                transform: translateY(-60px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* close icon */
        .close-btn {
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 20px;
            cursor: pointer;
            color: #555;
        }

        /* heading */
        .contact-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        /* input group */
        .input-group {
            margin-bottom: 15px;
        }

        .input-group input,
        .input-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
        }

        /* textarea */
        textarea {
            height: 90px;
            resize: none;
        }

        /* submit */
        .btn-sub[type="submit"] {
            width: 100%;
            padding: 12px;
            background: #FBBF24;
            border: none;
            color: #0F172A;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
        }

        /* messages */
        .success {
            color: green;
            margin-top: 10px;
            display: none;
            text-align: center;
            margin: 5px 0;

        }

        .error {
            color: red;
            margin-top: 10px;
            display: none;
            text-align: center;
            margin: 5px 0
        }

        /* MOBILE */
        @media (max-width:480px) {

            .contact-container {
                padding: 20px;
            }

            .contact-container h2 {
                font-size: 20px;
            }

            .open-btn {
                font-size: 14px;
                padding: 10px 18px;
            }

        }

        .contact-buttons {
            position: fixed;
            bottom: 50px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
        }

        .contact-buttons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            font-size: 40px;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .contact-buttons a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
        }

        .call-btn {
            background-color: #28a745;
            /* Green */
        }

        .whatsapp-btn {
            background-color: #25D366;
            /* WhatsApp green */
        }

        .popup-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .popup-modal-content {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            width: 300px;
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: Arial;
        }

        .popup-modal-content button {
            margin-top: 15px;
            padding: 8px 20px;
            border: none;
            background: #FBBF24;
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
        }

        .popup-modal-content button:hover {
            background: #0056b3;
        }

        .loader {
            display: none;
            border: 6px solid #f3f3f3;
            border-top: 6px solid #FBBF24;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
        }

        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }


        /* SECTION HEADING */
        .design-gallery {
            padding: 25px 20px;
            text-align: center;
        }

        .design-gallery h2 {
            color: #1e293b;
            margin-bottom: 40px;
            font-size: 32px;
            font-weight: bold;
        }

        /* GALLERY GRID */
        .design-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: auto;
        }

        /* GALLERY ITEM */
        .design-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .design-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
        }

        .design-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .design-item:hover img {
            transform: scale(1.05);
        }

        @media screen and (max-width: 979px) {
            .nav-links a {
                font-size: 12px;
            }
            .tab-call{
                font-size: 14px;
            }
        }

        @media screen and (max-width: 767px) {
            .nav-links a {
                font-size: 16px;
            }
            
        }
          /* MOBILE */

        @media (max-width: 576px) {
            .Phone-call-desktop {
                display: none !important;
            }
        }