
@media (max-width: 767px) {
    .floating_btn {
        display: none !important;
    }
}
:root{
--red-deep: #c11f12;
--red-glow: rgba(225, 40, 26, 0.32);
--ink:#131110;
}




/* .footers {



    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
    color: #fff;
}

.footer-btn {
    flex: 1;
    text-align: center;
    padding: 3px 0;
}

.footer-btn i {
    font-size: 35px;
}

.footer-btn.call {
    background-color: #000000;
}

.footer-btn.chat {
    background-color: #05a13e;
}

.footers p {
    color: #fff;
}

@media (min-width: 772px) {
    .footers {
        display: none !important;
    }
} */

.mobile-contact-bar {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #111;
    border-radius: 8px;
    z-index: 9999;
}
 
/* Common */
.contact-btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}
 
/* WhatsApp Large */
.whatsapp-btn5 {
    flex: 3;
    background: #008000;
    ;
    color: #fff;
}
 
/* Call Small */
.call-btn5 {
    flex: 1;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
 
.contact-btn i {
    font-size: 18px;
}
 
@media (min-width:768px) {
    .mobile-contact-bar {
        display: none;
    }
}


.floating_btn {
    position: fixed;
    bottom: 104px;
    right: 36px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.contact_icon {
    background-color: #05a33f;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #05a33f;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}



.floating_btn2 {
    position: fixed;
    bottom: 196px;
    right: 37px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.contact_icon2 {
    background-color: #bc0501;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #bc0501;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@media (max-width: 772px) {
    .floating_btn2 {
        display: none !important;
    }
}


.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn svg{
    width:20px;
    height:20px;
}

.btn-ghost {
    background: #fff;
    color: #111;
    border: 1.5px solid #D9D9D9;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.btn-ghost:hover {
    color: #111;
    background: #fff;
    border: 2px solid #111;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.btn-ghost:hover svg{
    color:#111;
}

.btn-cta {
    background: #05a33f;
    color: #fff;
    border: 1.5px solid #e1281a;
    box-shadow: 0 10px 25px rgba(225,40,26,.28);
}

.btn-cta:hover {
    background: #05a33f;
    color: #fff;
    border: 2px solid #b31b11;
    box-shadow: 0 12px 28px rgba(225,40,26,.35);
    transform: translateY(-2px);
}

.btn-cta:hover svg{
    color:#fff;
}

@media(max-width:768px){
    .header-right {
        display: none !important;
    }
}


/* banner cta  */

.hero-cta{

    display:flex;
    flex-direction:column;
    gap:18px;

    max-width:480px;

    margin-top:40px;

}

.hero-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:12px;

    height:64px;

    border-radius:14px;

    font-size:20px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.hero-btn i{

    font-size:20px;

}

.hero-btn-whatsapp{

    background:#05a33f;

    color:#fff;

    box-shadow:0 20px 45px rgba(234,45,25,.35);

}

.hero-btn-whatsapp:hover{

    color:#fff;

    transform:translateY(-4px);

}

.hero-btn-call{

    background:transparent;

    color:#fff;

    border:1.5px solid rgba(255,255,255,.25);

}

.hero-btn-call:hover{

    color:#fff;

    border:2px solid rgba(255,255,255,.7);

    transform:translateY(-4px);

}

.hero-small-note{

    color:#ddd;

    font-size:15px;

    display:flex;

    align-items:flex-start;

    gap:10px;

}

.hero-small-note i{

    color:#ff8d00;

    margin-top:3px;

}

.hero-review-box{

    position:absolute;

    bottom:25px;

    left:-40px;

    width:300px;

    background:#fff;

    border-radius:20px;

    padding:24px;

    box-shadow:0 25px 70px rgba(0,0,0,.25);

    z-index:10;

}

.hero-review-stars{

    color:#ff9900;

    font-size:20px;

    letter-spacing:2px;

    margin-bottom:10px;

}

.hero-review-box h5{

    margin-bottom:10px;

    font-weight:700;

}

.hero-review-box p{

    font-size:15px;

    color:#666;

    line-height:1.7;

}

.hero-review-box span{

    display:block;

    margin-top:15px;

    font-weight:600;

    color:#e1281a;

}

@media(max-width:1199px){

.hero-review-box{

left:0;

bottom:-40px;

width:260px;

}

}

@media(max-width:767px){

.hero-cta{

max-width:100%;

}

.hero-btn{

height:56px;

font-size:16px;

}

.hero-review-box{

position:relative;

left:auto;

bottom:auto;

margin:25px auto 0;

width:100%;

max-width:340px;

}

}



   .reviews-section {
      background:#ffffff;
      padding: 48px 24px;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }

    .eyebrow-line {
      width: 24px;
      height: 2px;
      background:#F24014;
    }

    .eyebrow-text {
      
        color:#F24014;
    font-weight:700;
    letter-spacing:2px;
      font-size: 11px;
      
     
      text-transform: uppercase;
    }

    .section-heading {
     font-size:52px;
    font-weight:800;
    line-height:1.1;
      color:#00045F;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size:16px;
       color:#666;
      line-height:1.8;
      margin-bottom: 28px;
    }

    /* Tabs */
    .tabs-scroll {
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 4px;
      margin-bottom: 16px;
    }

    .tabs-scroll::-webkit-scrollbar {
      display: none;
    }

    .tabs-inner {
      display: flex;
      gap: 8px;
      width: max-content;
    }

    .tab-btn {
      background: #fff;
      border: 1px solid #e9e9e9;
      border-radius: 10px;
      padding: 8px 14px;
      cursor: pointer;
      min-width: 90px;
      text-align: left;
      
      transition: background 0.15s;
    }
    /* .tab-btn:hover{
    border-color:#F24014;
    transform:translateY(-3px);
} */

    .tab-btn.active {
      background:#00045F;
    border-color:#00045F;
    }

    .tab-btn .tab-name {
      font-size: 13px;
      font-weight: 600;
      color: #222;
      display: block;
    }

    .tab-btn.active .tab-name {
      color: #fff;
    }

    .tab-btn .tab-meta {
      font-size: 11px;
      color: #888;
      display: flex;
      align-items: center;
      gap: 3px;
      margin-top: 2px;
    }

    .tab-btn.active .tab-meta {
      color: #ccc;
    }

    .tab-btn .tab-star {
      color: #f5a623;
    }

    .tab-btn.active .tab-star {
      color: #f5c842;
    }

    /* Google bar */
    .google-bar {
      background: #fff;
      border-radius: 12px;
      border: 1px solid #e8e2d9;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .g-bar-name {
      font-size: 15px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .g-bar-meta {
      font-size: 13px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .g-bar-score {
      font-weight: 600;
      color: #1a1a1a;
    }

    .stars {
      color: #f5a623;
      letter-spacing: 1px;
      font-size: 13px;
    }

    /* Carousel wrapper */
    .carousel-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Arrow buttons */
    .arrow-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      flex-shrink: 0;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      transition: background 0.15s;
      user-select: none;
    }

    .arrow-btn:disabled {
      background: #e0dbd4;
      color: #aaa;
      cursor: default;
      box-shadow: none;
    }

    .arrow-btn:not(:disabled):hover {
      background: #f5f5f5;
    }

    /* Cards grid */
    .cards-grid {
      flex: 1;
    }

    /* Review card */
    .review-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #e8e2d9;
      padding: 16px;
      height: 100%;
    }

    .card-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .rev-name {
      font-size: 13px;
      font-weight: 600;
      color: #1a1a1a;
    }

    .rev-source {
      font-size: 11px;
      color: #888;
    }

    .card-stars {
      color: #f5a623;
      font-size: 13px;
      margin-bottom: 8px;
    }

    .card-text {
      font-size: 12.5px;
      color: #444;
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 7;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .read-more {
      color: #c8622a;
      font-size: 12.5px;
      font-weight: 600;
      margin-top: 6px;
      cursor: pointer;
    }

    .disclaimer {
      font-size: 10.5px;
      color: #999;
      line-height: 1.5;
      margin-top: 20px;
    }



    .running-light-img {
    object-fit: cover;
    border: 4px solid #00e5ff;
    border-radius: 20px;
    animation: runningImageLight 2s linear infinite;
}

@keyframes  runningImageLight {
0% {
    border-color: #00e5ff;
    box-shadow: 0 -5px 15px #00e5ff, 0 0 5px #00e5ff;
}

25% {
    border-color: #7c4dff;
    box-shadow: 5px 0 15px #7c4dff, 0 0 5px #7c4dff;
}
50% {
    border-color: #ff0080;
    box-shadow: 0 5px 15px #ff0080, 0 0 5px #ff0080;
}
75% {
    border-color: #00ff99;
    box-shadow: -5px 0 15px #00ff99, 0 0 5px #00ff99;
}
100% {
    border-color: #00e5ff;
    box-shadow: 0 -5px 15px #00e5ff, 0 0 5px #00e5ff;
}
}



/* ===== V2.0 SEO + lead form improvements ===== */
.seo-content-section { background: #fff; }
.seo-content-section h1,
.seo-content-section h2,
.seo-content-section h3 { color: var(--ploming-black, #082545); }
.seo-content-section p { font-size: 17px; line-height: 1.75; }
.seo-cta-box { padding: 28px; border-radius: 16px; background: #f4f8fc; border: 1px solid rgba(8,37,69,.10); }
.seo-cta-box h2, .seo-cta-box h3 { margin-bottom: 10px; }
.nsm-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.enquiry-status { min-height: 24px; font-weight: 600; }
.js-enquiry-form button[disabled] { opacity: .7; cursor: wait; }
.js-enquiry-form input:focus,
.js-enquiry-form textarea:focus,
.js-enquiry-form select:focus { outline: 3px solid rgba(253,167,0,.25); outline-offset: 2px; }
.accordion-item { margin-bottom: 14px; border: 1px solid rgba(8,37,69,.12) !important; border-radius: 12px !important; overflow: hidden; }
.accordion-button { font-weight: 700; font-size: 18px; }
@media (max-width: 767px) {
  .page-header__title { font-size: 38px; line-height: 1.15; }
  .seo-content-section p { font-size: 16px; }
}
