
        .fluid-width-video-wrapper {
            width: 100%;
            position: relative;
            padding: 0;
        }

        .fluid-width-video-wrapper iframe,
        .fluid-width-video-wrapper object,
        .fluid-width-video-wrapper embed {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* SECTION BACKGROUND */
        .welcome {
            background: linear-gradient(135deg, #2e2e2e, #4a4a4a);
            color: #ffffff;
            position: relative;
        }

        /* OVERLAY */
        .welcome .overlay {
            background: rgb(149 140 140 / 33%);
        }

        /* HEADING */
        .welcome .section-title {
            color: #ffffff;
        }

        .welcome .text-line {
            color: #d4af37;
            /* GOLDEN */
        }

        .welcome .f-bold {
            color: #e63946 !important;
            /* RED */
        }

        /* POWER ICON */
        .welcome .fa-power-off {
            color: #d4af37;
            margin-left: 8px;
        }

        /* COUNTDOWN CONTAINER */
        .counter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        /* COUNTDOWN BOX */
        .counter-box {
            background: #ffffff;
            border-radius: 12px;
            padding: 15px 20px;
            min-width: 90px;
            text-align: center;
            border: 2px solid #d4af37;
            /* GOLDEN BORDER */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* NUMBER */
        .counter-box .number {
            font-size: 32px;
            font-weight: 700;
            color: #e63946;
            /* RED */
        }

        /* LABEL */
        .counter-box span {
            font-size: 13px;
            color: #555;
            text-transform: uppercase;
        }

        /* BUTTON */
        .btn-color {
            background: linear-gradient(135deg, #e63946, #d4af37);
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 12px 30px;
            transition: all 0.3s ease;
        }

        .btn-color:hover {
            background: linear-gradient(135deg, #d4af37, #e63946);
            transform: translateY(-2px);
            color: #fff;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .counter-container {
                flex-wrap: wrap;
            }

            .counter-box {
                min-width: 70px;
                padding: 12px;
            }

            .counter-box .number {
                font-size: 26px;
            }
        }


        .counter-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            /* space between boxes */
        }

        .counter-box {
            background: #fff;
            min-width: 90px;
            padding: 12px 8px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .counter-box .number {
            font-size: 26px;
            font-weight: 700;
            color: #111;
        }

        .counter-box span {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
        }

        @media (max-width: 576px) {
            .counter-container {
                gap: 8px;
            }

            .counter-box {
                min-width: 70px;
                padding: 10px 6px;
            }

            .counter-box .number {
                font-size: 20px;
            }
        }

        .about-modern {
            padding: 100px 0;
            background: #f7f7f7;
        }

        .about-title {
            font-size: 48px;
            font-weight: 700;
            color: #222;
        }

        .about-title span {
            color: #d4af37;
            /* gold */
        }

        .about-subtitle {
            color: #666;
            font-size: 18px;
            margin-top: 10px;
        }

        /* POINTS */
        .about-point {
            margin-bottom: 40px;
        }

        .about-point h4 {
            font-weight: 600;
            color: #e63946;
            /* red accent */
            margin-bottom: 10px;
        }

        .about-point p {
            color: #555;
            font-size: 15px;
            line-height: 1.7;
        }

        /* IMAGE */
        .about-image-circle {
            width: 260px;
            height: 260px;
            margin: auto;
            border-radius: 50%;
            border: 6px solid #d4af37;
            overflow: hidden;
        }

        .about-image-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* BUTTON */
        .about-btn {
            background: #222;
            color: #fff;
            padding: 12px 40px;
            border-radius: 30px;
            font-weight: 600;
            transition: 0.3s;
        }

        .about-btn:hover {
            background: #d4af37;
            color: #000;
        }

        /* RESPONSIVE */
        @media (max-width: 991px) {
            .about-title {
                font-size: 36px;
            }

            .about-image-circle {
                margin: 40px auto;
            }
        }

        /* COMMON OVERLAY */
        .section .overlay {
            background: linear-gradient(135deg,
                    rgba(34, 34, 34, 0.92),
                    rgba(60, 60, 60, 0.92));
        }

        /* SECTION BACKGROUND */
        #service,
        #contact {
            background: #f4f4f4;
            /* light grey */
            color: #333;
        }

        /* REMOVE DARK OVERLAY */
        #service .overlay,
        #contact .overlay {
            display: none;
        }

        /* SECTION BACKGROUND */
        #service,
        #contact {
            background-color: #f5f5f5;
            /* light grey */
            color: #333;
        }

        /* SECTION TITLES */
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #222;
        }

        /* LEAD TEXT */
        .lead {
            font-size: 18px;
            color: #555;
        }

        /* SERVICE CARD */
        .service-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        /* ICONS */
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            margin-bottom: 15px;
        }

        /* ICON COLORS */
        .bg-red {
            background-color: #e74c3c;
        }

        .bg-golden {
            background-color: #f1c40f;
        }

        .bg-grey {
            background-color: #7f8c8d;
        }

        /* SERVICE CARD HEADINGS */
        .service-card h4 {
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 600;
            color: #111;
        }

        /* PRICE */
        .price {
            font-weight: 700;
            font-size: 18px;
            color:#e63946;
            /* golden for price */
        }

        /* CONTACT FORM */
        /* Contact Section */
        #contact {
            background-color: #f5f5f5;
            /* Light grey background */
        }

        /* Section Title */
        #contact .section-title {
            font-size: 36px;
            font-weight: 700;
            color: #222;
        }

        /* Lead Text */
        #contact .lead {
            font-size: 18px;
            color: #555;
        }

        /* Contact Form Inputs */
        .contact-form .form-control {
            border: 2px solid #ccc;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 16px;
            transition: 0.3s;
        }

        .contact-form .form-control:focus {
            border-color: #e63946;
            /* Golden accent on focus */
            box-shadow: 0 0 8px rgba(241, 196, 15, 0.3);
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(45deg, #f39c12, #e74c3c);
            /* Golden to Red gradient */
            color: #fff;
            font-weight: 600;
            padding: 12px 40px;
            border-radius: 50px;
            border: none;
            transition: 0.3s;
        }

        .submit-btn:hover {
            opacity: 0.9;
        }

        /* Success / Error Messages */
        .success-message {
            color: #27ae60;
            /* Green for success */
            font-weight: 600;
        }

        .error-message {
            color: #e74c3c;
            /* Red for error */
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 767px) {
            #contact .form-control {
                margin-bottom: 15px;
            }
        }

        /* RESPONSIVE */
        @media (max-width: 767px) {
            .service-card {
                margin-bottom: 20px;
            }
        }

        #contact-form input::placeholder,
        #contact-form textarea::placeholder {
            color: #e63946;
            /* Golden color */
            opacity: 1;
            /* Firefox fix */
        }

        /* Optional: input text color */
        #contact-form input,
        #contact-form textarea {
            color: #e63946;
            /* Text entered by user */
            border-color: #ccc;
            /* input border */
        }

        /* Button gradient */
        #contact-form button.btn-submit {
            color: #fff;
            background: linear-gradient(45deg, #f1c40f, #e74c3c);
            border: none;
        }
