@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* CSS Document */
body, html{
    height: 100%;
}
body{
    background: #f2efec;
    font-family: "Inter", sans-serif;
}
p {
    font-size: 14px;
    color: #8C8C8C;
}
h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    font-weight: 400 !important;
}
p, a, li, ul, button, input {
    font-family: "Inter", sans-serif;
}
h1, h2, h3, h4, h5, h6, p, a, ul, li{
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
a {
    text-decoration: none !important;
    transition: all 0.5s;
}
ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}

    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1280px !important;
    }

    .scroll-content {
  position: relative;
  min-height: 100vh;
  z-index: 0;
}

/* .scroll-wrapper {
  overflow: hidden; 
  height: 100vh; 
} */

.scroll-content::after {
  content: "";
  display: block;
  height: 100vh;
  position: absolute;
  bottom: 0;
  }

/*Header Css Start*/
.navbar-light .navbar-brand {
    margin-left: 70px !important;
}
header {
    position: absolute;
    z-index: 9999;
    width: 100%;
    padding: 20px 0;
}
header .navbar {
    background-color: transparent !important;
    padding: 0 !important;
}
.navbar-nav a {
    color: #fff !important;
    font-size: 14px;
    padding: 0 !important;
    position: relative;
    transition: all 0.3s ease;
}
.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #C9A878;
    transition: width 0.3s ease;
}
.navbar-nav a:hover {
    color: #C9A878 !important;
}
.navbar-nav a:hover::after {
    width: 100%;
}
.navbar-collapse {
    flex-grow: 0 !important;
}
ul.cart-menu {
    margin: 0;
    display: flex;
    gap: 15px;
}
ul.cart-menu li a {
    color: #fff;
}
ul.navbar-nav li {
    margin-right: 18px;
}
/*Banner Css Start*/
.banner img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}
.slide-cap {
    position: absolute;
    z-index: 999;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 700px;
    padding-bottom: 4rem;
}
.slide-cap h1 {
    font-size: 54px;
    color: #fff;
}
.bnr-btn a {
    display: inline-block;
    padding: 13px 30px;
}
.bnr-btn1 {
    background-color: #E6E4E1;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.bnr-btn1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #C9A878;
    transition: all 0.4s ease;
    z-index: -1;
}
.bnr-btn1:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.bnr-btn1:hover::before {
    left: 0;
}
a.bnr-btn2 {
    background-color: #6E1514;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
a.bnr-btn2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #7F0208;
    transition: all 0.4s ease;
    z-index: -1;
}
a.bnr-btn2:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 21, 20, 0.4);
    color: #fff;
}
a.bnr-btn2:hover::before {
    left: 0;
}
.bnr-btn {
    display: flex;
    gap: 18px;
    margin-top: 20px;
}

/*Feature Sec Css Start*/
.ftrd-coll {
    padding: 60px 0;
    text-align: center;
    background-color: #F3EFEC;
}
.theme-title {
    margin: 0 0 40px;
}
.ftr-img img {
    width: 100%;
    height: 380px;
    opacity: 0.7;
    transition: all 0.5s ease;
    transform: scale(1);
    object-fit: cover;
    object-position: center;
}
.ftr-img:hover img {
    opacity: 1;
    transform: scale(1.1);
}
.ftr-img {
    overflow: hidden;
}
.theme-title h3 {
    font-size: 36px;
    color: #2B0D0B;
    margin: 0 0 10px;
    position: relative;
}
.theme-title h3::before {
    content: '';
    height: 2px;
    width: 70px;
    position: absolute;
    background-color: #7F0208;
    bottom: -10px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.ftr-img {
    position: relative;
    background-color: #000;
}
.ftr-con {
    position: absolute;
    bottom: 20px;
    text-align: left;
    left: 20px;
    transition: all 0.4s ease;
    transform: translateY(10px);
    opacity: 0.9;
}
.ftr-img:hover .ftr-con {
    transform: translateY(0);
    opacity: 1;
}
.ftr-con h4 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 8px;
    transition: all 0.3s ease;
}
.ftr-img:hover .ftr-con h4 {
    transform: translateX(5px);
}
.ftr-con a {
    color: #fff;
    text-decoration: underline !important;
    transition: all 0.3s ease;
    display: inline-block;
}
.ftr-con a:hover {
    transform: translateX(5px);
    color: #C9A878;
}

/*Process Sec Css Start*/
.proc-blk {
    border: 2px solid #C9A878;
    text-align: center;
    padding: 20px 10px;
}
.proc-blk {
    border: 2px solid #C9A878;
    text-align: center;
    padding: 10px 10px;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    background-color: transparent;
}
.proc-blk:hover {
    background-color: #C9A878;
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(201, 168, 120, 0.3);
}
.proc-blk:hover h4,
.proc-blk:hover p {
    color: #fff;
}
.proc-blk:hover span {
    transform: scale(1.1) rotate(5deg);
}
.proc-blk span {
    display: inline-block;
    margin: 0 0 12px;
    transition: all 0.4s ease;
}
.proc-blk h4 {
    transition: all 0.3s ease;
}
.proc-blk p {
    margin: 0;
    transition: all 0.3s ease;
}
.process-sec {
    padding: 0 0 60px;
    background-color: #F3EFEC;
}


/*Latest Product Sec Css Start*/
.ltst-arriv {
    background-color: #f2efec;
    padding: 50px 0;
}
.ltst-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}
.ltst-title h3 {
    font-size: 36px;
    color: #2B0D0B;
}
.ltst-title-btn a {
    color: #1A1A1A;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.ltst-title-btn a::after {
    content: "\f054";
    margin-left: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: FontAwesome;
    font-weight: normal;
}

.ltst-title-btn a:hover {
    color: #6E1514;
    transform: translateX(5px);
}
.ltst-title-btn a:hover::after {
    transform: translateX(5px);
}
.ltst-inn {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    margin: 0 0 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.ltst-inn img {
    transition: all 0.5s ease;
    transform: scale(1);
}
.ltst-pro:hover .ltst-inn {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.ltst-pro:hover .ltst-inn img {
    transform: scale(1.1);
}
.ltst-pro {
    color: #000;
    transition: all 0.3s ease;
}
.ltst-pro-disp {
    transition: all 0.3s ease;
}
.ltst-pro:hover .ltst-pro-disp h4 {
    color: #6E1514;
}
.ltst-pro:hover .ltst-pro-disp span {
    color: #7F0208;
    font-weight: 600;
}
.ltst-inn span {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    text-transform: uppercase;
}
span.new-tag {
    background-color: #1A1A1A;
}
span.best-tag {
    background-color: #6E1514;
}
.prod-half {
    background-color: #f2efec;
    padding: 20px 0;
}
.prod-half .ltst-pro {
    margin: 0 0 20px;
}
.product-bnr img {
    width: 100%;
    height: 1060px;
    object-fit: cover;
    position: relative;
    transition: all 0.5s ease;
}
.product-bnr:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.product-bnr {
    overflow: hidden;
}
.product-bnr {
    position: relative;
}
.product-bnr::before {
    content: '';
    height: 100%;
    width: 100%;
    border: 2px solid #7F0208;
    position: absolute;
    right: -20px;
    bottom: -20px;
}

/*Our Process Sec Css Start*/
.our-proc {
    padding: 60px 0;
}
.al-cntr {
    align-items: center;
}
.our-proc-img img {
    width: 100%;
    position: relative;
    transition: all 0.5s ease;
}
.our-proc-img:hover img {
    transform: scale(1.05);
}
.our-proc-img {
    overflow: hidden;
}
.our-proc-img {
    position: relative;
}
.our-proc-img::before {
    content: '';
    height: 100%;
    width: 95%;
    border: 2px solid #7F0208;
    position: absolute;
    right: 10px;
    bottom: -20px;
}
.our-proc-blk h3 {
    color: #2B0D0B;
    font-size: 48px;
    margin: 0;
}
.our-proc-inn h4 {
    color: #2B0D0B;
    font-size: 26px;
}
.our-proc-inn {
    border-bottom: 2px solid #7F0208;
    margin-top: 10px;
    padding: 10px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.our-proc-inn:hover {
    padding-left: 15px;
    border-bottom-color: #C9A878;
}
.our-proc-inn:hover h4 {
    color: #6E1514;
    transform: translateX(5px);
}
.our-proc-inn h4 {
    transition: all 0.3s ease;
}
/*Quiz Sec Css Start*/
.quiz-sec {
    padding: 70px 0 80px;
    background-color: #f2efec;
}
.quiz-blk h3 {
    color: #2B0D0B;
    font-size: 46px;
    margin: 0 0 18px;
}
.quiz-blk a {
    background-color: #6E1514;
    display: inline-block;
    padding: 14px 40px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.quiz-blk a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.quiz-blk a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(110, 21, 20, 0.4);
    background-color: #7F0208;
    color: #fff;
}
.quiz-blk a:hover::before {
    width: 300px;
    height: 300px;
}
.quiz-img img {
    width: 100%;
    position: relative;
    transition: all 0.5s ease;
}
.quiz-img:hover img {
    transform: scale(1.05);
}
.quiz-img {
    overflow: hidden;
}
.quiz-img {
    position: relative;
}
.quiz-img::before {
    content: '';
    height: 100%;
    width: 100%;
    border: 2px solid #7F0208;
    position: absolute;
    right: -20px;
    bottom: -20px;
}

/*Cover CSS Start*/
.cover img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.cover {
    text-align: center;
    background-color: #f2efec;
}

.cover-txt {
    position: absolute;
    top: 0;
    z-index: 99;
    width: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    height: 100%;
}
.cover-txt h1 {
    color: #fff;
    font-size: 64px;
    position: relative;
}

/*Client Stories Section CSS Start*/
.client-stories {
    background-color: #f2efec;
    padding: 60px 0;
}
.client-stories-title {
    text-align: center;
    margin: 0 0 50px;
}
.client-stories-title h3 {
    font-size: 36px;
    color: #6E1514;
    margin: 0;
    font-family: "Playfair Display", serif;
}
.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}
.testimonial-card:hover {
    box-shadow: 0 15px 35px rgb(110 21 20 / 32%);
}
.testimonial-card:hover .quote-mark {
    transform: scale(1.1);
    color: #7F0208;
}
.testimonial-card:hover .author-avatar img {
    transform: scale(1.1);
}
.quote-mark {
    font-size: 22px;
    color: #6E1514;
    line-height: 1;
    font-family: "Playfair Display", serif;
    margin: 0 0 15px;
    font-weight: 400;
}
.testimonial-text {
    color: #1A1A1A;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 25px;
    flex-grow: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.quote-mark {
    transition: all 0.3s ease;
}
.author-name {
    color: #1A1A1A;
    font-size: 22px;
    font-weight: 500;
    width: 50px;
    line-height: 26px;
    font-family: "Playfair Display", serif;
}

/*Footer CSS Start*/
footer {
    background-color: #7F0208;
    padding: 0;
}
.footer-main {
    margin: 0;
}
.footer-brand-col {
    background-color: #f2efec;
    padding: 40px 30px;
    margin: 0;
    height: 100%;
    background-image: url(../images/bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-brand img {
    margin: 0 0 20px;
}
.footer-brand {
    text-align: center;
}
.footer-brand h3 {
    color: #6E1514;
    font-size: 24px;
    font-family: "Playfair Display", serif;
    margin: 0 0 25px;
    font-weight: 400;
}
.footer-contact {
    margin: 0 0 25px;
}
.footer-contact p {
    color: #6E1514;
    font-size: 14px;
    margin: 0 0 8px;
    line-height: 1.6;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    color: #6E1514;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
}
.footer-social a:hover {
    color: #7F0208;
}
.footer-newsletter, .footer-info, .footer-links {
    padding: 60px 30px 10px;
}
.footer-newsletter h4,
.footer-info h4,
.footer-links h4 {
    color: #fff;
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    margin: 0 0 20px;
    text-decoration: underline;
}
.footer-newsletter p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 8px;
}
.newsletter-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    flex: 1;
    padding: 5px 0;
    outline: none;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.newsletter-submit {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
    outline: none;
}
.footer-info ul,
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-info ul li,
.footer-links ul li {
    margin: 0 0 12px;
}
.footer-info ul li a,
.footer-links ul li a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s;
}
.footer-info ul li a:hover,
.footer-links ul li a:hover {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 5px;
}
.footer-bottom {
    background-color: #7f0208;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    width: 100%;
}
.copyright {
    color: #fff;
    font-size: 12px;
    margin: 0;

}
.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}
.payment-icon {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}


/*Lite box Css Start*/
section.lite-box {
    padding: 40px 0;
    background-color: #f2efec;
}
.litebox img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
}
.litebox {
    position: relative;
}
.litebtn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.litebtn a {
    border: 3px solid #fff;
    color: #fff;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 26px;
    transition: all 0.4s ease;
    background-color: rgba(110, 21, 20, 0.3);
}
.litebtn a:hover {
    transform: scale(1.2);
    background-color: rgba(110, 21, 20, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    border-color: #C9A878;
}
.litebox {
    transition: all 0.3s ease;
}
.litebox:hover img {
    filter: brightness(0.9);
}
.litebox::before {
    content: '';
    height: 100%;
    width: 100%;
    border: 2px solid #7F0208;
    position: absolute;
    right: 20px;
    bottom: -20px;
}


/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.ftr-img,
.proc-blk,
.ltst-pro,
.testimonial-card,
.our-proc-inn {
    animation: fadeInUp 0.6s ease-out;
}

.slide-cap {
    animation: fadeIn 1s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button, .proc-blk, .ltst-pro, .testimonial-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.proc-blk:hover span img {filter: invert(1) brightness(6.5);}

.footer-social a:hover {
    background-color: #6E1514;
}

.footer-social a:hover i {color: #fff;}

.footer-bottom img {
    width: 210px;
}


/* POPUP CSS - UPDATED FIX */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999; /* Bahut high z-index */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.popup {
    background-color: white;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 100000; /* Popup ka z-index overlay se bhi high */
}

.popup-overlay.active .popup {
    transform: translateY(0);
}

.popup-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background-color: #f2efec;
}

.popup-header h2 {
    font-size: 28px;
    font-weight: 300;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.popup-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.popup-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus {
    border-color: #b8860b;
    outline: none;
}

.cta-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #b8860b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-button:hover {
    background-color: #a6790a;
}

.popup-footer {
    text-align: center;
    padding: 0 30px 30px;
    color: #888;
    font-size: 13px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    font-family: Arial, sans-serif;
    z-index: 100001; /* Close button ka sabse high z-index */
}

.close-popup:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Emergency fix - agar phir bhi na dikhe to */
.popup-overlay.active {
    pointer-events: auto !important;
}

.popup {
    pointer-events: auto !important;
}

/* Agar parent element overflow hidden ho */
.popup-overlay {
    overflow: visible !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup {
        width: 95%;
        margin: 20px;
    }
    
    .popup-header {
        padding: 25px 20px 15px;
    }
    
    .popup-header h2 {
        font-size: 24px;
    }
    
    .popup-body {
        padding: 25px 20px;
    }
    
    .popup-footer {
        padding: 0 20px 25px;
    }
    
    .cta-button {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .popup-header h2 {
        font-size: 22px;
    }
    
    .popup-header p {
        font-size: 15px;
    }
    
    .form-group input {
        padding: 12px 14px;
    }
}

/* EXTRA DEBUGGING CSS - Agar phir bhi issue ho to yeh add karo */
#popupOverlay {
    display: flex !important;
}

#popupOverlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.popup-overlay * {
    box-sizing: border-box;
}

.popup-body .cta-button {
    background-color: #6E1514;
    display: inline-block;
    padding: 14px 40px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.popup-image {
    width: 80px;
}