.booking_card{
    position: relative;
    background: #0f647180;
    padding: 30px;
    border-radius: 3px;
}
.content-box .booking-form .form-group {
    position: relative;
    margin-bottom: 20px;
}
.content-box .booking-form .form-group input[type='text'], .content-box .booking-form .form-group input[type='email'], .content-box .booking-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: transparent;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    transition: all 500ms ease;
}
.content-box .booking-form .form-group textarea {
    resize: none;
    height: 70px;
}
.content-box .booking-form .form-group input::placeholder,
.content-box .booking-form .form-group textarea::placeholder {
  color: #ffffff; 
  opacity: 1;     
}

.service-block{
    padding-bottom: 0px;
}
.service-block-two .inner-box {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 20px;
    padding: 15px 15px 20px 15px;
    box-shadow: 0 15px 30px 10px #f3f6f6;
    margin-bottom: 25px;
    transition: all 500ms ease;
}
.service-block-two .inner-box .lower-content {
    position: relative;
    padding-top: 20px;
    text-align: center;
    height: 120px;
}
.lt-0{
   height: auto!important;
}
.lt-0 h4 {
    font-size: 17px!important;
}
.service-block-two .inner-box .image-box img {
    width: 100%;
    border-radius: 20px;
    height: 200px;
}
.service-section {
    position: relative;
    padding-top: 70px;
    background: #ffffff;
}
.screening{
    position: relative;
    padding-top: 70px;
}
.about-style-two, .contact-style-two{
    padding: 70px 0px;
}
.content_block_3 .content-box .author-box {
    position: relative;
    padding: 10px 0px 5px 0px;
    min-height: 70px;
}
.cta-style-two .btn-box .banner-btn-two {
    padding: 10px 15px 10px 15px;
    border-radius: 35px;
}
.banner-carousel .content-box .theme-btn-one {
    margin-right: 16px;
    padding:8px 16px;
}
.contact-style-two .info li {
    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-left: 34px;
    font-size: 16px;
    line-height: 30px;
    color: #142441;
}
.contact-style-two .info li i {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 20px;
    line-height: 30px;
}
.contact-style-two .social-links {
    position: relative;
    padding:10px 0px;
}
.contact-style-two .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 10px 10px;
}
.contact-style-two .social-links li a {
    position: relative;
    line-height: 32px;
    font-size: 16px;
    color: #000;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.footer-bottom {
    position: relative;
    width: 100%;
    padding: 15px 0px;
}
.contact-style-two .card {
    box-shadow: 0 0 0 .25rem rgba(99,102,241,.15);
}
.contact-style-two .form-group textarea {
    height: 50px;
    resize: none;
}
.floating-icons {
    position: fixed;
    bottom: 110px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Shared Styles */
.floating-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
    text-decoration: none;
}

/* WhatsApp Button */
.whatsapp-float {
    background-color: #25d366;
}

/* Call Button */
.call-float {
    background-color: #0d6efd; /* Bootstrap primary blue */
}

/* Hover Effect */
.floating-icons a:hover {
    transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,0,0, 0.2); }
    70%  { box-shadow: 0 0 0 20px rgba(0,0,0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0, 0); }
}

.lead-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.lead-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Slide-in panel */
.lead-panel {
    position: fixed;
    top: 0;
    right: -420px; /* hidden offscreen */
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    box-shadow: -6px 0 20px rgba(0,0,0,.2);
    transition: right .5s ease-in-out;
    display: flex;
    flex-direction: column;
}
.lead-panel.show {
    right: 0;
}

.lead-header {
    background:#f3f6f6;
    color: #000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lead-header h5 {
    margin: 0;
    font-weight: 600;
}
.lead-header .close {
    color: #000;
    font-size: 1.5rem;
    opacity: .8;
}
.lead-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}
/* Sticky header layout */
.sticky-header .outer-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo smaller in sticky header */
.sticky-header .logo-box img {
  max-height: 70px;
  width: auto;
  display: block;
}

/* Menu takes space and aligns right */
.sticky-header .menu-area {
  flex: 1;
  margin: 0 20px;
}

.sticky-header .menu-area nav > ul {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.sticky-header .menu-right-content {
  flex: 0 0 auto;
  margin-left: 20px;
}
.main-header .logo-box {
    position: relative;
    padding: 10px 100px 10px 0px;
}

.split-modal { border-radius: 12px; overflow: hidden; }
  .split-close {
    position: absolute; right: 10px; top: 8px; z-index: 3;
    font-size: 1.75rem; line-height: 1; color: #fff; opacity: .9;
    text-shadow: none;
  }
  .split-left {
    position: relative;
    height: 100%;
    min-height: 320px;
    background: url('../../assets/img/image111.jpg') center/cover no-repeat; /* <-- set your image */
  }
.split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 69%), rgb(0 0 0 / 57%));
}
.split-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* centers both ways */
  text-align: center;
  color: #fff;
  padding: 20px;
  width: 85%;
}

  .split-right h5 { letter-spacing: .2px; }
  .split-right .form-control {
    border-radius: .45rem; border: 1px solid #ddd; box-shadow: none; transition: border-color .2s, box-shadow .2s;
  }
  .split-right .form-control:focus {
    border-color: #007bff; box-shadow: 0 0 0 .2rem rgba(0,123,255,.15);
  }
  .font-weight-600 { font-weight: 600; }

  /* Subtle entry animation */
  .modal.fade .modal-dialog { transform: translateY(-20px); transition: transform .25s ease-out; }
  .modal.show .modal-dialog { transform: translateY(0); }

  /* Mobile: hide image, full-width form */
  @media (max-width: 767.98px) {
    .split-modal { border-radius: 10px; }
  }
  /* Close Button Styling */
.split-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1051; /* Above overlays */
  font-size: 2rem;
  font-weight: 700;
  color: #333; /* Dark so it shows on white */
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.split-close:hover {
  opacity: 1;
  color: #000;
}
@media only screen and (max-width: 499px) {
    .main-header.style-four .header-lower .outer-box {
        display: flex;
    }
    .mobile-menu .navigation li{
        padding:5px 20px;
    }
    .mobile-menu .navigation li > a{
        margin-bottom: 10px;
    }
}
.hearing-aid-banner-section {
    background: #f6f8fb;
    padding: 30px 0;
    overflow: hidden;
}

.hearing-banner-wrapper {
    position: relative;
}

.banner-left-content {
    max-width: 460px;
}

.banner-subtitle {
    padding: 5px 10px;
    background: #de1b71;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}

.offer-title {
    font-size:30px;
    line-height: 1.22;
    font-weight: 900;
    color: #000;
    margin-top:15px;
    margin-bottom: 15px;
}

.offer-title span {
    display: block;
    color: #de1b71;
}

.offer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #111;
    margin-bottom: 0;
}

/* Timer */
.offer-timer-wrap {
    background: #fff;
    padding: 22px;
    border-radius: 22px;
    margin: 26px 0 30px;
    box-shadow: 0 15px 40px rgba(22, 79, 160, 0.12);
    max-width: 455px;
}

.timer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.timer-head span {
    font-size: 13px;
    font-weight: 800;
    color: #164fa0;
    background: #eaf2ff;
    padding: 8px 14px;
    border-radius: 40px;
}

.timer-head strong {
    font-size: 18px;
    color: #10213f;
    font-weight: 900;
}

.offer-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.offer-timer b {
    font-size: 32px;
    color: #164fa0;
    font-weight: 900;
    line-height: 1;
    margin-top: -5px;
}

.timer-box {
    width: 90px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(180deg, #2a6fd1, #164fa0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(22, 79, 160, 0.25);
}

.timer-box span {
    font-size:18px;
    font-weight: 700;
    line-height:20px;
}

.timer-box small {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top:3px;
    text-transform: uppercase;
}

.timer-progress {
    width: 100%;
    height: 8px;
    background: #e7eefc;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 10px;
}

.timer-progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #de1b71, #ff4d9d);
    border-radius: 50px;
    transition: width 1s linear;
}

.timer-note {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #10213f;
    margin: 10px 0 0;
}

/* Button */
.banner-download-btn {
    min-width: 250px;
    justify-content: center;
    text-align: center;
}

/* Image */
.banner-image {
    text-align: center;
}

.banner-image img {
    max-width: 100%;
    width: 430px;
    transition: 0.4s ease;
}

.banner-image img:hover {
    transform: scale(1.04);
}

/* Form Card */
.appointment-card {
    background: linear-gradient(180deg, #1e5eb5, #164fa0);
    padding: 38px 30px;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(22, 79, 160, 0.28);
}

.appointment-card h2 {
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.3;
}

.form-subtitle {
    color: #fff;
    text-align: center;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.appointment-card input,
.appointment-card textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #222;
}

.appointment-card textarea {
    height: 112px;
    resize: none;
}

.checkbox-area {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    margin: 4px 0 24px;
    cursor: pointer;
}

.checkbox-area input[type="checkbox"] {
    width: 17px;
    height: 17px;
    min-width: 17px;
    margin: 0;
    accent-color: #fff;
    cursor: pointer;
}

.checkbox-area span {
    flex: 1;
}

.appointment-card .theme-btn-one {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.custom_btn {
    background: #fff !important;
    color: #164fa0 !important;
    border-radius: 12px;
    font-weight: 800;
}

.custom_btn:hover {
    background: #10213f !important;
    color: #fff !important;
}

/* Tablet */
@media (max-width: 991px) {
    .hearing-aid-banner-section {
        padding: 40px 0;
    }

    .banner-left-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 35px;
    }

    .offer-timer-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .banner-image {
        margin-bottom: 35px;
    }

    .appointment-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .hearing-aid-banner-section {
        padding: 38px 0;
    }

    .banner-subtitle {
        font-size: 13px;
        padding: 8px 16px;
    }

    .offer-title {
        font-size: 32px;
    }

    .offer-desc {
        font-size: 15px;
    }

    .offer-timer-wrap {
        padding: 18px;
        border-radius: 18px;
    }

    .timer-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .offer-timer {
        gap: 10px;
    }

    .timer-box {
        width: 80px;
        height: 70px;
    }

    .timer-box span {
        font-size: 24px;
    }

    .offer-timer b {
        font-size: 24px;
    }

    .banner-download-btn {
        width: 100%;
        min-width: auto;
    }

    .appointment-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .appointment-card h2 {
        font-size: 23px;
    }

    .form-subtitle {
        font-size: 15px;
    }
}
.custom_btn{
    background: #fff;
    color: #000!important;
}
.custom_btn:hover{
    color: #fff!important;
}
.section-padding{
    padding: 30px 0px;
}

.why-choose-section{
    background:#f6f8fb;
    padding:30px 0;
}

.why-choose-image{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.why-choose-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    display:block;
}

.why-choose-content{
    padding-left:45px;
}

.section-tag{
    display:inline-block;
    background:#eaf2ff;
    color:#164fa0;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.why-choose-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:#10213f;
    margin-bottom:20px;
}

.why-choose-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 30px;
}

.why-points{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.why-point{
    display:flex;
    gap:16px;
    background:#fff;
    padding:18px 20px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(22,79,160,0.08);
}

.why-point span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #164fa0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.why-point h4{
    font-size:14px;
    font-weight:600;
    color:#10213f;
    margin-bottom:6px;
}

.why-point p{
    font-size:14px;
    line-height:1.5;
    color:#5f6b7a;
    margin:0;
}

@media(max-width:991px){
    .why-choose-section{
        padding:30px 0;
    }

    .why-choose-content{
        padding-left:0;
        margin-top:35px;
    }

    .why-choose-content h2{
        font-size:34px;
    }

    .why-choose-image img{
        height:auto;
    }
}

@media(max-width:575px){
    .why-choose-content h2{
        font-size:28px;
    }

    .why-point{
        padding:16px;
    }
}
.video-testimonial-section{
    background:#fff;
    padding:30px 0;
}

.video-testimonial-section .sec-title{
    margin-bottom:45px;
}

.video-testimonial-section .sec-title h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#000;
    margin:0;
}

.video-testimonial-section .sec-title h2 span{
    color:#164fa0;
}

.video-card{
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.video-card iframe{
    width:100%;
    height:285px;
    border:0;
    display:block;
}

@media(max-width:991px){
    .video-card{
        margin-bottom:30px;
    }

    .video-card iframe{
        height:260px;
    }
}

@media(max-width:575px){
    .video-testimonial-section{
        padding:30px 0;
    }

    .video-testimonial-section .sec-title h2{
        font-size:32px;
    }

    .video-card iframe{
        height:220px;
    }
}

.centers-contact-section{
    background:#f6f8fb;
    padding:30px 0px;
}

.centers-contact-section .section-title{
    margin-bottom:50px;
}

.centers-contact-section .section-title span{
    display:inline-block;
    padding:8px 18px;
    background:#eaf2ff;
    color:#164fa0;
    border-radius:30px;
    font-weight:700;
    margin-bottom:15px;
}

.centers-contact-section .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#10213f;
    margin-bottom:10px;
}

.centers-contact-section .section-title p{
    color:#000;
    font-size:16px;
}

/* Centers */
.centers-contact-section .my_area .col-sm-6{
    padding-bottom:18px;
}
.centers-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.center-card{
    background:#fff;
    border-radius:14px;
    padding:20px 22px;
    display:flex;
    align-items:center;
    gap:15px;
    font-size:16px;
    font-weight:600;
    color:#10213f;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.center-card:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(22,79,160,.12);
}

.center-card i{
    width:42px;
    height:42px;
    background:#164fa0;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Form */

.appointment-card{
    background:#164fa0;
    padding:30px;
    border-radius:20px;
    position:sticky;
    top:100px;
}

.appointment-card h3{
    color:#fff;
    text-align:center;
    font-size:22px;
    font-weight:600;
    margin-bottom:25px;
}

.appointment-card input,
.appointment-card textarea{
    width:100%;
    border:none;
    border-radius:8px;
    padding:12px 15px;
    margin-bottom:15px;
}

.appointment-card textarea{
    height:90px;
    resize:none;
}

.checkbox-area{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    margin-bottom:20px;
}

.checkbox-area input{
    width:18px;
    height:18px;
}

.custom_btn{
    width:100%;
    background:#fff;
    color:#164fa0 !important;
}

/* Mobile */

@media(max-width:991px){

    .centers-grid{
        grid-template-columns:1fr;
        margin-bottom:30px;
    }

    .appointment-card{
        position:relative;
        top:auto;
    }

    .centers-contact-section{
        padding:30px 0px;
    }
}

.awards-section{
    background:#fff;
    padding:30px 0;
}

.awards-section .section-title{
    margin-bottom:45px;
}

.awards-section .section-title span{
    display:inline-block;
    background:#eaf2ff;
    color:#164fa0;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:12px;
}

.awards-section .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#10213f;
    margin-bottom:10px;
}

.awards-section .section-title p{
    font-size:16px;
    color:#000;
}

.award-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(22,79,160,0.09);
    transition:.3s ease;
    margin-bottom: 20px;
}

.award-card:hover{
    transform:translateY(-6px);
}

.award-img{
    background:#eee;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.award-img img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:18px;
}

.award-content{
    padding:22px;
    text-align:center;
}

.award-content h4{
    font-size:22px;
    font-weight:800;
    color:#10213f;
    margin-bottom:8px;
}

.award-content p{
    font-size:15px;
    color:#666;
    margin:0;
}

.awards-slider .owl-nav button{
    width:48px;
    height:48px;
    border-radius:50% !important;
    background:#164fa0 !important;
    color:#fff !important;
    font-size:28px !important;
}

@media(max-width:575px){
    .awards-section .section-title h2{
        font-size:30px;
    }

    .award-img{
        height:280px;
    }
}

.faq-section{
    background:#fff;
    padding:30px 0;
}

.faq-title h2{
    font-size:42px;
    font-weight:700;
    color:#10213f;
    margin-bottom:45px;
}

.faq-wrapper{
    margin:0 auto;
}

.faq-item{
    margin-bottom:22px;
}

.faq-question{
    width:100%;
    border:0;
    background:#fff;
    color:#000;
    padding:10px;
    font-size:16px;
    font-weight:700;
    text-align:left;
    display:flex;
    align-items:center;
    gap:28px;
    box-shadow:0 8px 28px rgba(0,0,0,0.07);
    cursor:pointer;
    transition:.3s ease;
}

.faq-icon{
    width:22px;
    min-width:22px;
    height:22px;
    border:2px solid currentColor;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    line-height:18px;
    font-weight:700;
}

.faq-answer{
    display:none;
    padding:15px 0 15px;
}

.faq-answer p{
    font-size:16px;
    line-height:1.6;
    color:#000;
    margin:0;
}

.faq-item.active .faq-question{
    background:#164fa0;
    color:#fff;
    border-radius:5px;
}

.faq-item.active .faq-answer{
    display:block;
}

@media(max-width:767px){
    .faq-title h2{
        font-size:34px;
    }

    .faq-question{
        font-size:17px;
        padding:20px 18px;
        gap:14px;
    }

    .faq-answer p{
        font-size:16px;
    }
}
.modal-xl{
    max-width:1050px;
}

.split-modal{
    border:0;
    border-radius:20px;
    overflow:hidden;
    background:#fff;
}

.split-close{
    position:absolute;
    right:0px;
    top:0px;
    z-index:999;
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    background:#fff !important;
    opacity:1;
    font-size:28px;
    line-height:32px;
    color:#000;
    box-shadow:0 6px 18px rgba(0,0,0,.15);
}

.split-offer-left{
    background:#f6f8fb;
    min-height:520px;
    padding:24px 30px;
}

.modal-product-image{
    width:100%;
    margin-bottom:18px;
}

.modal-product-image img{
    width:100%;
    height:210px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:16px;
}

.split-offer-left-content{
    width:100%;
}

.modal-offer-badge{
    padding:5px 10px;
    border-radius:30px;
    background:#de1b71;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.split-offer-left h2{
    font-size:24px;
    line-height:1.25;
    font-weight:700;
    color:#000;
    
    margin-top:15px;
    margin-bottom:10px;
}

.split-offer-left h2 span{
    color:#de1b71;
    font-size:24px;
    line-height:1.15;
    font-weight:700;
    margin-top:3px;
    white-space:nowrap;
}

.split-offer-left p{
    font-size:14px;
    line-height:1.6;
    color:#111;
    margin:0;
}

/* Compact Timer */
.mini-timer-wrap{
    background:#fff;
    padding:14px 16px;
    border-radius:16px;
    margin-top:16px;
    box-shadow:0 8px 22px rgba(22,79,160,.10);
}

.mini-timer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-bottom:12px;
}

.mini-timer-top span{
    background:#eaf2ff;
    color:#164fa0;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:800;
}

.mini-timer-top strong{
    color:#10213f;
    font-size:14px;
    font-weight:900;
}

.mini-timer-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.mini-time-box{
    width:82px;
    height:62px;
    border-radius:14px;
    background:linear-gradient(180deg,#2a6fd1,#164fa0);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    box-shadow:0 8px 18px rgba(22,79,160,.22);
}

.mini-time-box span{
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.mini-time-box small{
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 3px;
    text-transform: uppercase;
}

.mini-timer-row b{
    color:#164fa0;
    font-size:26px;
    font-weight:900;
    line-height:1;
}

.mini-progress{
    width:100%;
    height:5px;
    background:#e7eefc;
    border-radius:50px;
    overflow:hidden;
    margin-top:12px;
}

.mini-progress-bar{
    width:100%;
    height:100%;
    background:linear-gradient(90deg,#de1b71,#ff4d9d);
    border-radius:50px;
    transition:width 1s linear;
}

.mini-timer-note{
    text-align:center;
    font-size:12px !important;
    font-weight:700;
    color:#10213f !important;
    margin:8px 0 0 !important;
}

/* Right Form */
.split-offer-form{
    background:linear-gradient(180deg,#1e5eb5,#164fa0);
    min-height:520px;
    padding:48px 34px 36px;
}

.split-offer-form h3{
    color:#fff;
    text-align:center;
    font-size:25px;
    line-height:1.35;
    font-weight:900;
    margin-bottom:14px;
}

.modal-form-subtitle{
    color:#fff;
    text-align:center;
    font-size:14px;
    line-height:1.6;
    margin:0 0 24px;
    opacity:.9;
}

.split-offer-form input:not([type="checkbox"]),
.split-offer-form textarea{
    width:100%;
    border:none;
    outline:none;
    background:#fff;
    border-radius:12px;
    padding:14px 16px;
    margin-bottom:15px;
    font-size:14px;
}

.split-offer-form textarea{
    height:105px;
    resize:none;
}

.modal-checkbox-area{
    display:flex;
    align-items:center;
    gap:10px;
    margin:8px 0 22px;
    color:#fff;
    font-size:14px;
}

.modal-checkbox-area input[type="checkbox"]{
    width:17px;
    height:17px;
    min-width:17px;
    margin:0;
}

.modal-submit-btn{
    width:100%;
    justify-content:center;
    text-align:center;
    background:#fff !important;
    color:#164fa0 !important;
    border-radius:12px;
    padding:14px 20px;
    font-weight:800;
}

.modal-submit-btn:hover{
    background:#10213f !important;
    color:#fff !important;
}

/* Responsive */
@media(max-width:991px){
    .modal-xl{
        max-width:94%;
    }

    .split-offer-left{
        min-height:auto;
        padding:24px 20px;
        text-align:center;
    }

    .modal-product-image img{
        height:auto;
        object-fit:contain;
    }

    .split-offer-form{
        min-height:auto;
        padding:32px 22px;
    }

    .split-offer-form h3{
        font-size:23px;
    }
}

@media(max-width:575px){
    .split-close{
        width:36px;
        height:36px;
        font-size:25px;
        line-height:29px;
    }

    .split-offer-left{
        padding:22px 16px;
    }

    .modal-offer-badge{
        font-size:12px;
        padding:7px 13px;
    }

    .split-offer-left h2{
        font-size:21px;
    }

    .split-offer-left h2 span{
        font-size:25px;
    }

    .split-offer-left p{
        font-size:13px;
    }

    .mini-timer-top{
        flex-direction:column;
        text-align:center;
    }

    .mini-time-box{
        width:72px;
        height:58px;
    }

    .mini-time-box span{
        font-size:21px;
    }

    .mini-timer-row b{
        font-size:22px;
    }

    .split-offer-form h3{
        font-size:21px;
    }

    .modal-form-subtitle{
        font-size:13px;
    }
}

/* Header layout same for normal + sticky */
.main-header .outer-box,
.sticky-header .outer-box{
    display:grid !important;
    grid-template-columns: 1fr auto auto;
    align-items:center;
    column-gap:35px;
}

/* Logo left */
.main-header .logo-box,
.sticky-header .logo-box{
    justify-self:start;
}

/* Menu button ke left me */
.main-header .menu-area,
.sticky-header .menu-area{
    justify-self:end;
    margin:0 !important;
}

/* Button right */
.main-header .menu-right-content,
.sticky-header .menu-right-content{
    justify-self:end;
    margin:0 !important;
}

/* Contact Us spacing */
.main-header .main-menu .navigation,
.sticky-header .main-menu .navigation{
    display:flex !important;
    justify-content:flex-end !important;
    margin:0 !important;
}

.main-header .main-menu .navigation > li,
.sticky-header .main-menu .navigation > li{
    padding:0 !important;
}
.main-footer {
    position: relative;
    background-color: #164fa0 !important;
}
.footer-bottom p, .footer-bottom a{
    color:#fff;
}

.thank-you-box {
    max-width: 360px;
    margin: 0 auto;
    padding: 35px 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.success-icon {
    width: 42px;
    height: 42px;
    border: 3px solid #168754;
    color: #168754;
    border-radius: 50%;
    line-height: 36px;
    font-size: 28px;
    margin: 0 auto 15px;
    font-weight: bold;
}

.thank-you-box h3 {
    color: #0b4c7c;
    font-weight: 700;
    margin-bottom: 8px;
}

.thank-you-box p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.thank-you-box .phone a {
    color: #007bff;
    font-weight: 700;
    text-decoration: none;
}

.youtube-btn {
    display: inline-block;
    background: #e7344c;
    color: #fff;
    padding: 10px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.youtube-btn:hover {
    color: #fff;
}