/* Parent must be relative */
.main-menu li.menu-item-has-children {
    position: relative;
   
}

/* Center mega menu */
.main-menu li.menu-item-has-children > .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;

  
    transform: translateX(-50%);
    width: auto;
    min-width: 950px; /* adjust if needed */

 
}
.mega-menu-box .mega-menu-title span {
  
    font-size: 13px;
 ;
}
.th-mobile-menu ul li a:before{
    display: none;
}
/* ===== PREMIUM POPUP STYLES ===== */

/* Overlay */
.premium-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}


/* WhatsApp Floating Button - LEFT SIDE */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;        /* 👈 LEFT SIDE */
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
}

/* Mobile optimization */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 28px;
        bottom: 20px;
        left: 20px;   /* 👈 LEFT SIDE */
    }
}
.more-services-btn {
    text-align: center;
    margin-top: 40px;
}
/* ===============================
   TEXT MARQUEE SECTION
================================ */

.text-marquee {
    /* background: #b68c5a; */
    background: #093263;
    padding: 32px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-track span {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    padding: 0 35px;
    font-family: "Playfair Display", serif;
}

/* Oval separator */
.marquee-track .dot {
    width: 45px;
    height: 22px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .marquee-track span {
        font-size: 28px;
        padding: 0 25px;
    }
}

@media (max-width: 576px) {
    .marquee-track span {
        font-size: 22px;
        padding: 0 18px;
    }

    .marquee-track .dot {
        width: 35px;
        height: 18px;
    }
}
p.box-text {
    font-size: 14px;
}
p {

    font-size: 14px;
}
.title-area .sec-title {
    margin-bottom: 20px;
    font-size: 35px;
}
h5.box-title {
    font-size: 20px !important;
}
h3.box-title {
    font-size: 20px !important;
}
.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    font-size: 13px;

}


/*-----popup---start-------*/
/* ===============================
   PREMIUM DISCLAIMER POPUP
================================ */
/* ===== Premium Disclaimer Popup ===== */

.disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999 !important;
    padding: 20px;
}

.disclaimer-box {
    background: #ffffff;
    max-width: 760px;
    width: 100%;
    padding: 45px 50px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    animation: scaleFade 0.45s ease;
}

/* Close Icon */
.disclaimer-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.disclaimer-close:hover {
    color: #000;
}

.disclaimer-header img {
    max-width: 140px;
    margin-bottom: 20px;
}

.disclaimer-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.disclaimer-content {
    font-size: 14px;
    line-height: 1.75;
    color: #000000;
    margin-bottom: 30px;
}

.disclaimer-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* Buttons */
.btn-agree {
    background: linear-gradient(135deg, #c79a5b, #b3874f);
    color: #fff;
    padding: 13px 38px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-disagree {
    background: transparent;
    border: 1px solid #ccc;
    color: #000000;
    padding: 13px 30px;
    border-radius: 40px;
    cursor: pointer;
}

/* Animation */
@keyframes scaleFade {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 576px) {
    .disclaimer-box {
        padding: 30px 22px;
    }

    .disclaimer-actions {
        flex-direction: column;
    }

    .btn-agree,
    .btn-disagree {
        width: 100%;
    }
}
.disclaimer-content p {
    color: black;
    font-size: 13px;
}


/*--------end--------*/
.checklist.style2 li {
    font-size: 14px;

}
p.box-text {
    font-size: 14px !important;
}
.th-menu-wrapper .mobile-logo {
 
    background-color: #fff6ee;
}
.th-menu-wrapper .mobile-logo {

    padding-right: 15px;
    padding-left: 15px;
}
@media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 335px;
    }
    
}
.mobile-logo img {
    width: 306px !important;
    max-width: 1500px;
}
.th-mobile-menu ul li a {

    font-size: 19px;

}
.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand {
  
    font-size: 20px;

}
/* =====================================
   LEXWEB PREMIUM GOOGLE REVIEWS SECTION
===================================== */

.lexweb-reviews {
    /* background: #0f2f2a; */
   background: #093263;
    padding: 100px 0;
    position: relative;
}

.lexweb-reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(199,154,91,0.15) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.25;
}

.lexweb-reviews .container {
    position: relative;
    z-index: 2;
}

/* Header */
.lexweb-reviews-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.lexweb-subtitle {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c79a5b;
    font-weight: 600;
}

.lexweb-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 14px 0;
}

.lexweb-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}

/* Elfsight widget spacing */
.lexweb-reviews .elfsight-app {
    margin-top: 20px;
}

/* Improve card look */
.lexweb-reviews iframe {
    border-radius: 14px !important;
}

/* Responsive */
@media (max-width: 992px) {
    .lexweb-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .lexweb-reviews {
        padding: 70px 0;
    }

    .lexweb-title {
        font-size: 26px;
    }

    .lexweb-desc {
        font-size: 15px;
    }
}
.dNtlyB {
 
    display: none !important;
}




/* Overlay */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Box */
.disclaimer-box {
  background: #ffffff;
  width: 90%;
  max-width: 900px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  max-height: 90vh;
  overflow-y: auto;
}

/* Close */
.disclaimer-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #999;
}
.disclaimer-close:hover {
  color: #000;
}

/* Inner */
.disclaimer-inner {
  display: flex;
}

/* Left Logo */
.disclaimer-left {
  flex: 0 0 35%;
  background: #f9f6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.disclaimer-left img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Right Content */
.disclaimer-right {
  flex: 1;
  padding: 40px;
}

.disclaimer-right h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #1c2b2d;
}

.disclaimer-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

/* Buttons */
.disclaimer-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.agree-btn {
  background: #c9a24d;
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}

.exit-btn {
  background: transparent;
  border: 1px solid #ccc;
  padding: 12px 26px;
  border-radius: 30px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-inner {
    flex-direction: column;
  }

  .disclaimer-left {
    border-bottom: 1px solid #eee;
  }

  .disclaimer-actions {
    flex-direction: column;
  }

  .agree-btn,
  .exit-btn {
    width: 100%;
  }
}
.disclaimer-right p {
    font-size: 13px !important;
    color: black;
}
.widget_call .info-box_text {
    font-size: 13px;
    color: var(--white-color);
}
.widget_call .info-box_link {
    font-size: 13px;
    color: var(--white-color);
}
 
    .header-layout1 .header-logo {
        padding: 0px 96px 0px 0;
    }
    

.main-menu a {

    font-size: 14px;
   
}
.page-title {

    font-size: 25px;
}
.page-content p {
    color: black;
    font-size: 13px;
}
.sticky-wrapper.sticky .header-logo {
    padding: 0px 96px 0px 0;
}
.header-layout1 .header-logo .logo-bg {
 
    background-color: #fff6ee00 !important;
 
}
.hero {
  min-height: 100vh !important;
  height: auto !important;
}

body, html {
   
    overflow-y: auto;
}
