@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root{
  --primary-color     : #259eed;
  --secondary-color   : #F8F8F8;
  --text-color      : #828282;
  --accent-color      : #020d19;
  --white-color     : #FFFFFF;
  --divider-color     : #020D1914;
  --dark-divider-color  : #FFFFFF1A;
  --error-color     : rgb(230, 87, 87);
  --default-font      : "Roboto", sans-serif;
  --accent-font     : "Roboto", sans-serif;
}
body{
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif !important;}

.views a:hover{
    text-decoration: none;
}

.card h3 a{
    color: #340606;
}

/*home*/

 .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.5s;
      z-index: 9999;
    }
    .overlay.active { opacity: 1; visibility: visible; }
    .popup {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      max-width: 450px;
      width: 90%;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0,0,0,0.25);
      transform: scale(0.8);
      opacity: 0;
      animation: showPopup 0.6s ease forwards;
      position: relative;
    }
    @keyframes showPopup {
      from { transform: scale(0.8) translateY(-30px); opacity: 0; }
      to { transform: scale(1) translateY(0); opacity: 1; }
    }
    .popup h2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #259eed;
    }
    .popup p {
      font-size: 15px;
      color: #555;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .btn {
      display: inline-block;
      margin: 8px;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 500;
      color: #eabc66 !important;
      background: linear-gradient(135deg, #340606, #340606);
      text-decoration: none;
      transition: 0.3s;
      box-shadow: 0 5px 15px rgba(37,158,237,0.3);
      border:none !important;
      outline: none !important;
    }
    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(37,158,237,0.5);
    }
    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 22px;
      color: #fff;
      background: #259eed;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 5px 12px rgba(37,158,237,0.4);
    }
    .close-btn:hover { background: #1976d2; }
    .animation {
      width: 260px;
      height: 260px;
      margin: -40px auto 10px;
    }
      
      
          .views a{
              color: #fff;
          }

          .tab-wrapper {
  
  width: 100%;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  width:100%;
}

.tab {
  flex: 1;
  padding: 7px;
  background: #0047ab;
  color: #eee;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.tab.active {
  background: green;
  color: #fff;
}

.tab-content {

  /*padding: 20px;*/
  border-radius: 6px;
  color: #000;
}



 .open-modal-btn {
      padding: 14px 28px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
      transition: background-color 0.3s ease;
    }

    .open-modal-btn:hover {
      background-color: #0056b3;
    }

    /* Modal Overlay */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    /* Modal Box */
    .modal {
      background: transparent;
      border-radius: 12px;
      padding: 30px 20px;
      /*max-width: auto;*/
      width: 90%;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
      transform: translateY(-50px);
      opacity: 0;
      transition: all 0.4s ease;
      text-align: center;
      position: relative;
    }

    .modal.show {
      transform: translateY(0);
      opacity: 1;
    }

    .modal h2 {
      color: #007bff;
      margin-bottom: 10px;
    }

    .modal p {
      color: #333;
      font-size: 1.1em;
      margin-bottom: 20px;
    }

    .modal ul {
      text-align: left;
      padding: 0;
      margin: 0 0 20px 0;
      list-style: none;
    }

    .modal ul li {
      margin-bottom: 10px;
      color: #444;
    }

    .modal ul li::before {
      content: "✔️";
      margin-right: 8px;
      color: #28a745;
    }

    .close-btn {
      position: absolute;
      top: 10px; right: 15px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #999;
    }

    .close-btn:hover {
      color: #000;
    }

    /* Responsive */
    @media (max-width: 480px) {
      .modal {
        padding: 20px 15px;
      }
    }
    
    
    
    h2{font-size:18px;padding:16px;margin:0}

    /* Tabs */
    .tabs{display:flex;gap:22px;padding:6px 16px;overflow-x:auto}
    .tab{flex:0 0 auto;display:flex;flex-direction:column;align-items:center;cursor:pointer;padding:6px}
    .tab img{width:72px;height:72px;border-radius:50%;object-fit:cover;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
    .tab span{margin-top:8px;font-size:13px;color:var(--muted)}
    .tab.active span{font-weight:700;color:#111}

    .divider{height:3px;background:#111;width:44px;margin:10px 16px;border-radius:3px}

    /* Cards row */
    .cards{display:flex;gap:12px;padding:16px 12px;overflow-x:auto}
    .card{flex:0 0 auto; background:#fff;border-radius:12px;padding:10px;box-shadow:0 6px 18px rgba(12,12,12,0.04)}
    .card img{width:100%;height:92px;object-fit:cover;border-radius:10px}
    .card p{margin:10px 0 0 0;font-size:15px;text-align:center}

    .cta{display:block;margin:20px 16px;padding:14px;background:var(--accent);color:#fff;text-align:center;border-radius:10px;text-decoration:none;font-weight:700}

    .info{padding:0 16px 90px 16px;color:var(--muted)}

    /* Bottom nav */
    .bottom-nav{position:fixed;left:0;right:0;bottom:0;height:72px;background:#fff;border-top:1px solid var(--border);display:flex;justify-content:space-around;align-items:center}
    .nav-item{font-size:12px;color:var(--muted);text-align:center}
    .nav-item svg{display:block;margin:0 auto 6px}
    .nav-item.active{color:#000;font-weight:700}

    /* small responsive tweaks */
    @media(min-width:720px){main{max-width:auto;margin:0 auto}.bottom-nav{display:none}}
    
   /*=========================
    HEALTH BLOG SLIDER
==========================*/

.hb-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:35px;
}

.hb-header span{
    display:block;
    color:#d8a315;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hb-header h2{
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-top: 8px;
    padding: 5px 0;
}

.hb-view-btn{
       background: #eabc66;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: .4s;
    font-weight: 600;
    font-size: 14px;
}

.hb-view-btn:hover{
    background:#d8a315;
    color:#fff;
    text-decoration:none;
}

#healthBlogSlider{
    position:relative;
}

.health-blog-item{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.5s;
}

.health-blog-item:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.health-blog-image{
    width:42%;
    overflow:hidden;
    position:relative;
    padding-left: 15px;
}

.health-blog-image img{
    width:100%;
    height:360px;
    object-fit:cover;
    transition:.6s;
}

.health-blog-item:hover img{
    transform:scale(1.08);
}

.health-blog-content{
    width:58%;
    padding:45px;
}

.health-blog-content a{
    font-size:15px;
}

.hb-date{
    display: inline-block;
    background: #fcf9ef;
    color: #340606;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.health-blog-content h3{
      font-size: 18px;
    line-height: 28px;
    color: #222;
    font-weight: 700;
    margin-bottom: 18px;
}

.health-blog-content p{
    color:#666;
    line-height:30px;
    font-size:16px;
    margin-bottom:25px;
}

.health-blog-btn{
    display:inline-block;
    background:#eabc66;
    color:#000 !important;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.health-blog-btn:hover{
    background:#0d4c93;
    color:#fff;
    text-decoration:none;
}

.health-blog-btn i{
    margin-left:8px;
}

.carousel-control-prev,
.carousel-control-next{
    width:55px;
    height:55px;
    background:#fff;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.carousel-control-prev{
    left:-28px;
}

.carousel-control-next{
    right:-28px;
}

.carousel-control-prev span,
.carousel-control-next span{
    color:#0d4c93;
    font-size:34px;
    line-height:55px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover{
    background:#d8a315;
}

.carousel-control-prev:hover span,
.carousel-control-next:hover span{
    color:#fff;
}

.carousel-item{
    transition:transform .8s ease-in-out;
}

.carousel-item.active .health-blog-item{
    animation:blogFade .8s;
}

@keyframes blogFade{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Responsive */

@media(max-width:991px){

.health-blog-item{
    display:block;
}

.health-blog-image,
.health-blog-content{
    width:100%;
}

.health-blog-image img{
    height:260px;
}

.health-blog-content{
    padding:30px;
}

.health-blog-content h3{
    font-size:24px;
    line-height:34px;
}

.carousel-control-prev,
.carousel-control-next{
    display:none;
}

}



/*about*/


.about-content{
    padding-left:40px;
}

.founder-box{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:40px;
    justify-content: space-between;
}

.founder-logo{
    width:95px;
    height:95px;
    border-radius:50%;
    /*background:#fff;*/
    display:flex;
    align-items:center;
    justify-content:center;
    /*box-shadow:0 10px 30px rgba(0,0,0,.08);*/
}
.newadd img{
    width:100%;
    height: 500px;
    object-fit: cover;
    
}

.newadd-section{
    background: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.newadd-section:before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(212, 175, 55, .08);
    border-radius: 50%;
    right: -180px;
    top: -180px;
}



.founder-sign img{
    width:220px;
    margin-bottom:8px;
}

.founder-sign h5{
        margin: 0;
    font-size: 18px;
    color: #340606;
    font-weight: 700;
}

.founder-sign span{
    color:#666;
    font-size:15px;
    display:block;
}

.info-4-img img{
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

@media(max-width:991px){

.about-content{
    padding-left:0;
    margin-top:35px;
}

.founder-box{
    flex-direction:column;
    align-items:flex-start;
}

.founder-sign img{
    width:180px;
}

}


/* =========================================
   ORGAN SECTION
========================================= */

.organ-section {
    padding: 50px 20px;
    background:
        radial-gradient(circle at 10% 20%, rgb(252 249 239), transparent 30%), radial-gradient(circle at 90% 80%, rgba(24, 76, 145, .08), transparent 30%), #ffffff;
    overflow: hidden;
}

.organ-container {
    max-width: 1250px;
    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.section-heading {
    text-align: center;
    /*max-width: 720px;*/
    margin: 0 auto 50px;
}

.section-mini-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #340606;
    /*margin-bottom: 12px;*/
}

.section-heading h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    color: #17243b;
    font-weight: 800;
}

.section-heading h2 span {
    color: #340606;
}

.section-heading p {
    margin-top: 16px;
    color: #68758a;
    font-size: 16px;
    /*line-height: 0;*/
}


/* =========================================
   SLIDER
========================================= */

.organ-slider-wrapper {
    position: relative;
}

.organ-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px 5px 20px;
}

.organ-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================
   CARD
========================================= */

.organ-card {
    flex: 0 0 calc(25% - 17px);

    position: relative;

    background: rgba(255,255,255,.92);

    border: 1px solid #e9eef3;

    border-radius: 24px;

    padding: 18px;

    box-shadow:
        0 12px 35px rgba(20, 40, 70, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

    overflow: hidden;
}

.organ-card::before {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    background: rgba(24,184,165,.07);

    border-radius: 50%;

    right: -40px;
    top: -40px;
}

.organ-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(20,40,70,.14);
}


/* =========================================
   IMAGE
========================================= */

.organ-image-box {

    height: 190px;

    border-radius: 20px;

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

    overflow: hidden;

    position: relative;
}

.organ-image-box img {

    width: 145px;
    height: 145px;

    object-fit: contain;

    transition: transform .45s ease;
}

.organ-card:hover .organ-image-box img {
    transform: scale(1.08) rotate(2deg);
}


/* Backgrounds */

.heart-bg {
    background: linear-gradient(135deg,#e9f7ff,#d9efff);
}

.kidney-bg {
    background: linear-gradient(135deg,#effaf7,#d8f2eb);
}

.lungs-bg {
    background: linear-gradient(135deg,#fff3ec,#ffe4d8);
}

.thyroid-bg {
    background: linear-gradient(135deg,#f2efff,#e5dfff);
}

.liver-bg {
    background: linear-gradient(135deg,#edf9f4,#d9f0e8);
}

.spine-bg {
    background: linear-gradient(135deg,#f3f0ff,#e5e0ff);
}


/* =========================================
   CONTENT
========================================= */

.organ-content {
    padding: 20px 5px 5px;
}

.organ-number {

    display: block;

    font-size: 12px;

    font-weight: 700;

    color: #e0ac1e;

    margin-bottom: 6px;
}

.h4-xs{
    font-size:20px !important;
}

.organ-content h3 {

    margin: 0;

    color: #340606;

    font-size: 16px;

    font-weight: 800;
}

.organ-content p {

    color: #778296;

    font-size: 13px;

    line-height: 1.6;

    min-height: 42px;

    margin: 9px 0 18px;
}


/* =========================================
   VIEW BUTTON
========================================= */

.view-test-btn {

    width: 100%;

    border: none;

    background: linear-gradient(
            135deg,
            #a97708,
            #c99722
        ) !important;

    color: #fff;

    padding: 6px 16px;

    border-radius: 12px;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: space-between;

    transition: .3s ease;
}

.view-test-btn span {
    font-size: 18px;
}

.view-test-btn:hover {
    background: #000;

    transform: translateY(-2px);
}


/* =========================================
   ARROWS
========================================= */

.organ-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid #e3e9ee;

    background: white;

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

    color: #17243b;

    font-size: 20px;

    cursor: pointer;

    z-index: 5;

    transition: .3s ease;
}

.organ-arrow:hover {

    background: #18b8a5;

    color: white;

    border-color: #18b8a5;
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}


/* =========================================
   DOTS
========================================= */

.organ-dots {

    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 20px;
}

.organ-dot {

    width: 8px;
    height: 8px;

    background: #d7dfe6;

    border-radius: 20px;

    transition: .3s ease;
}

.organ-dot.active {

    width: 26px;

    background: #340606;
}


/* =========================================
   MODAL
========================================= */

.organ-modal {

    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 99999;

    padding: 20px;
}

.organ-modal.active {
    display: flex;
}

.modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(10,20,35,.65);

    backdrop-filter: blur(7px);
}


.organ-modal-box {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 28px;

    padding: 30px;

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

    animation: modalIn .3s ease;
}

@keyframes modalIn {

    from {
        opacity: 0;
        transform: translateY(25px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* CLOSE */

.modal-close {

    position: absolute;

    right: 20px;
    top: 18px;

    width: 38px;
    height: 38px;

    border: none;

    background: #f2f5f7;

    border-radius: 50%;

    font-size: 25px;

    cursor: pointer;

    color: #17243b;
}

.modal-close:hover {
    background: #18b8a5;
    color: white;
}


/* =========================================
   MODAL TOP
========================================= */

.modal-top {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 25px;

    padding-right: 35px;
}

.modal-organ-image {

    width: 90px;
    height: 90px;

    flex-shrink: 0;

    border-radius: 22px;

    background: #eaf8f6;

    display: flex;

    justify-content: center;
    align-items: center;
}

.modal-organ-image img {

    width: 70px;
    height: 70px;

    object-fit: contain;
}

.modal-small-title {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #310505;
}

.modal-top h2 {

    margin: 5px 0;

    font-size: 28px;

    color: #17243b;
}

.modal-top p {

    margin: 0;

    color: #778296;

    font-size: 13px;
}


/* =========================================
   TEST LIST
========================================= */

.test-list {

    display: grid;

    gap: 10px;
}

.test-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 17px;

    background: #f8fafb;

    border: 1px solid #edf1f4;

    border-radius: 14px;

    transition: .25s ease;
}

.test-item:hover {

    background: #edfaf8;

    border-color: #bcebe5;

    transform: translateX(4px);
}

.test-info {

    display: flex;

    align-items: center;

    gap: 12px;
}

.test-icon {

    width: 38px;
    height: 38px;

    border-radius: 11px;

    background: #e2f6f3;

    display: flex;

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

    color: #18a997;

    font-size: 18px;
}

.test-name {

    font-size: 14px;

    font-weight: 700;

    color: #17243b;
}

.test-price {

    font-size: 14px;

    font-weight: 800;

    color: #18a997;
}


/* =========================================
   MODAL FOOTER
========================================= */

.modal-footer {

    margin-top: 25px;
}

.modal-book-btn {

    width: 100%;

    border: none;

    background: #18b8a5;

    color: white;

    padding: 15px;

    border-radius: 13px;

    font-weight: 800;

    cursor: pointer;

    font-size: 14px;
}

.modal-book-btn:hover {
    background: #129b8c;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px) {

    .organ-card {
        flex: 0 0 calc(33.333% - 15px);
    }

}


@media(max-width:768px) {
    .section-heading-actions .views{
        padding: 0 10px;
    }

    .organ-section {
        padding: 65px 15px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .organ-card {
        flex: 0 0 calc(50% - 11px);
    }

    .organ-arrow {
        display: none;
    }

}


@media(max-width:520px) {

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .organ-card {
        flex: 0 0 88%;
    }

    .organ-image-box {
        height: 180px;
    }

    .organ-modal-box {
        padding: 22px;

        border-radius: 22px;
    }

    .modal-top {
        gap: 14px;
    }

    .modal-organ-image {
        width: 70px;
        height: 70px;
    }

    .modal-organ-image img {
        width: 55px;
        height: 55px;
    }

    .modal-top h2 {
        font-size: 22px;
    }

}


/* =========================================
   MODERN TEST MODAL
========================================= */

.test-modal {

    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;

    z-index: 999999;

}

.test-modal.active {

    display: flex;

}


/* Overlay */

.test-modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(10, 24, 42, .68);

    backdrop-filter: blur(8px);

}


/* Main Modal */

.test-modal-box {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 720px;

    max-height: 90vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 28px;

    padding: 30px;

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

    animation: testModalOpen .35s ease;

}


/* Animation */

@keyframes testModalOpen {

    from {

        opacity: 0;

        transform:
            translateY(30px)
            scale(.94);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* =========================================
   CLOSE BUTTON
========================================= */

.test-modal-close {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 50%;

    background: #f2f6f7;

    color: #17243b;

    font-size: 27px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;

    transition: .25s ease;

}

.test-modal-close:hover {

    background: #18b8a5;

    color: #ffffff;

    transform: rotate(90deg);

}


/* =========================================
   HEADER
========================================= */

.test-modal-header {

    display: flex;

    align-items: center;

    gap: 20px;

    padding-right: 45px;

    margin-bottom: 25px;

}


/* Organ Circle */

.modal-organ-circle {

    width: 105px;

    height: 105px;

    flex-shrink: 0;

    border-radius: 28px;

    display: flex;

    justify-content: center;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #e8f8f5,
            #d8f1ed
        );

    box-shadow:
        inset 0 0 0 1px rgba(24,184,165,.08);

}

.modal-organ-circle img {

    width: 78px;

    height: 78px;

    object-fit: contain;

}


/* Header Text */

.modal-label {

    display: inline-block;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    color: #18b8a5;

    margin-bottom: 5px;

}

.modal-heading-content h2 {

    margin: 0;

    color: #17243b;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.2;

}

.modal-heading-content p {

    margin: 8px 0 0;

    color: #778296;

    font-size: 14px;

    line-height: 1.5;

}


/* =========================================
   INFO ROW
========================================= */

.modal-info-row {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-bottom: 30px;

}

.modal-info-box {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px;

    border-radius: 15px;

    background: #f7fafb;

    border: 1px solid #edf1f3;

}

.info-icon {

    width: 36px;

    height: 36px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 11px;

    background: #e6f7f4;

    font-size: 17px;

}

.modal-info-box strong {

    display: block;

    color: #17243b;

    font-size: 13px;

    line-height: 1.2;

}

.modal-info-box small {

    display: block;

    color: #8792a2;

    font-size: 10px;

    margin-top: 3px;

}


/* =========================================
   TEST HEADING
========================================= */

.modal-test-heading {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 14px;

}

.modal-test-heading h3 {

    margin: 0;

    color: #17243b;

    font-size: 20px;

    font-weight: 800;

}

.modal-test-heading p {

    margin: 4px 0 0;

    color: #8a95a5;

    font-size: 12px;

}

.test-count-badge {

    background: #e9f8f5;

    color: #129c8d;

    padding: 7px 12px;

    border-radius: 30px;

    font-size: 11px;

    font-weight: 800;

}


/* =========================================
   TEST LIST
========================================= */

.modal-test-list {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


/* Test Item */

.modal-test-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 16px;

    border-radius: 15px;

    border: 1px solid #edf1f4;

    background: #ffffff;

    transition: all .25s ease;

}

.modal-test-item:hover {

    border-color: #b9e8e2;

    background: #f4fcfa;

    transform: translateX(4px);

}


/* Left */

.modal-test-left {

    display: flex;

    align-items: center;

    gap: 12px;

}

.modal-test-icon {

    width: 40px;

    height: 40px;

    border-radius: 12px;

    background: #310505;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #d8a51a;

    font-size: 18px;

    font-weight: 800;

}

.modal-test-name {

    color: #17243b;

    font-size: 13px;

    font-weight: 700;

}


/* Price */

.modal-test-price {

    color: #310505;

    font-size: 15px;

    font-weight: 800;

}


/* =========================================
   FOOTER
========================================= */

.modal-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #edf1f3;

}

.modal-note {

    display: flex;

    align-items: center;

    gap: 7px;

}

.modal-note span {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #e6f8f4;

    color: #16a48f;

    font-size: 12px;

    font-weight: 800;

}

.modal-note p {

    margin: 0;

    color: #7c8797;

    font-size: 11px;

}

.modal-book-btn {

    border: none;

    background: #17243b;

    color: #ffffff;

    padding: 14px 22px;

    border-radius: 13px;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    display: flex;

    align-items: center;

    gap: 20px;

    transition: .3s ease;

}

.modal-book-btn span {

    font-size: 18px;

}

.modal-book-btn:hover {

    background: #18b8a5;

    transform: translateY(-2px);

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:600px) {

    .test-modal {

        padding: 12px;

    }

    .test-modal-box {

        padding: 22px;

        border-radius: 23px;

        max-height: 94vh;

    }

    .test-modal-header {

        gap: 14px;

        margin-bottom: 20px;

    }

    .modal-organ-circle {

        width: 78px;

        height: 78px;

        border-radius: 20px;

    }

    .modal-organ-circle img {

        width: 58px;

        height: 58px;

    }

    .modal-heading-content h2 {

        font-size: 23px;

    }

    .modal-heading-content p {

        font-size: 12px;

    }

    .modal-info-row {

        grid-template-columns: 1fr;

    }

    .modal-info-box {

        padding: 11px;

    }

    .modal-footer {

        flex-direction: column;

        align-items: stretch;

    }

    .modal-book-btn {

        justify-content: center;

    }

}

/* ==========================================
   RECOMMENDED PACKAGE HEADER
========================================== */

.recommended-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
}

.recommended-title h2 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    color: #111827;
}


/* ==========================================
   RIGHT ACTION
========================================== */

.recommended-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ==========================================
   SEARCH BOX
========================================== */

.package-search-box {
    position: relative;

    width: 330px;
    height: 46px;

    display: flex;
    align-items: center;

    background: #ffffff;

    border: 1px solid #e1e7ec;
    border-radius: 12px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

    transition: all .3s ease;
}

.package-search-box:focus-within {
    border-color: #10b7a5;

    box-shadow:
        0 0 0 3px rgba(16, 183, 165, .08),
        0 6px 20px rgba(0, 0, 0, .06);
}


/* SEARCH ICON */

.package-search-icon {
    width: 45px;

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

    flex-shrink: 0;
}

.package-search-icon svg {
    width: 19px;
    height: 19px;

    fill: none;

    stroke: #340606;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* INPUT */

.package-search-box input {
    width: 100%;
    height: 100%;

    padding: 0 8px 0 0;

    border: none;
    outline: none;

    background: transparent;

    font-size: 13px;
    font-weight: 500;

    color: #17243b;
}

.package-search-box input::placeholder {
    color: #9aa5b1;
}


/* CLEAR BUTTON */

.package-search-clear {
    width: 28px;
    height: 28px;

    margin-right: 8px;

    display: none;

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

    flex-shrink: 0;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: #eef4f5;

    color: #65717f;

    font-size: 19px;

    cursor: pointer;

    transition: .2s ease;
}

.package-search-clear:hover {
    background: #10b7a5;
    color: #ffffff;
}


/* ==========================================
   VIEW MORE
========================================== */

.package-view-more {
    min-width: 110px;
    height: 46px;

    padding: 0 20px;

    border: none;
    border-radius: 10px;

    background: #430606;
    color: #ffd900;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


/* ==========================================
   NO RESULT
========================================== */

.package-no-result {
    display: none;

    width: 100%;

    padding: 35px 20px;

    text-align: center;

    color: #777;

    font-size: 14px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .recommended-header {
        flex-direction: column;
        align-items: stretch;

        gap: 15px;
    }

    .recommended-title h2 {
        font-size: 23px;
    }

     
    .package-search-box {
        width: 100%;
        flex: 1;
    }

    .package-view-more {
        min-width: 95px;
        padding: 0 13px;
    }

}


@media (max-width: 480px) {

   

    .package-search-box {
        flex: 0 0 100%;
    }

    .package-view-more {
        width: 100%;
    }

}


/* =========================================
   MEN / WOMEN TABS - COMPLETE CSS
========================================= */

/* Parent */
.tab-wrapper {
    width: 100%;
    display: block;
}


/* Tabs outer box */
.tabs {
    display: inline-flex !important;
    width: auto !important;
    max-width: max-content !important;

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

    gap: 3px;

    padding: 4px;

    margin: 0 0 22px 0;

    background: #340606;

    border: 1px solid #e7ecef;

    border-radius: 12px;

    box-sizing: border-box;
}


/* Individual tab */
.tabs .tab {
    position: relative;

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

    width: auto;
    min-width: 82px;

    height: 36px;

    padding: 0 16px;

    margin: 0;

    border: none !important;

    outline: none;

    border-radius: 9px;

    background: transparent !important;

    color: #eabc66;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


/* Hover */
.tabs .tab:hover {
    color: #fff;
}


/* Active tab */
.tabs .tab.active {

    background: #ffffff !important;

    color: #10a997 !important;

    box-shadow:
        0 2px 8px rgba(20, 40, 60, 0.10);

}


/* Active bottom indicator */
.tabs .tab.active::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 4px;

    width: 18px;

    height: 2px;

    border-radius: 10px;

    background: #10b7a5;

    transform: translateX(-50%);

}


/* Remove old green/blue colors */
.tabs .tab:first-child,
.tabs .tab:nth-child(2) {

    background: transparent !important;

}


/* Keep active color */
.tabs .tab.active:first-child,
.tabs .tab.active:nth-child(2) {

    background: #ffffff !important;

    color: #10a997 !important;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .tabs {
        width: auto !important;
        max-width: 100% !important;
    }

    .tabs .tab {

        width: 80px;
        min-width: 80px;

        height: 35px;

        padding: 0 14px;

    }

}

/* =========================================
   MOST BOOKED TESTS HEADER
========================================= */

.section-heading-row {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 20px;
}


/* Heading */

.section-heading-row h2 {

    margin: 0;

    color: #111827;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.2;

    white-space: nowrap;
}


/* Right side */

.section-heading-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}


/* =========================================
   SEARCH
========================================= */

.section-heading-actions .package-search-box {

    width: 300px;

    height: 44px;

    display: flex;

    align-items: center;

    background: #ffffff;

    border: 1px solid #e1e7ec;

    border-radius: 12px;

    box-shadow:
        0 5px 18px rgba(0,0,0,.05);

    transition: .3s ease;

}


.section-heading-actions .package-search-box:focus-within {

    border-color: #10b7a5;

    box-shadow:
        0 0 0 3px rgba(16,183,165,.08);

}


/* Search icon */

.section-heading-actions .package-search-icon {

    width: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}


.section-heading-actions .package-search-icon svg {

    width: 18px;

    height: 18px;

    fill: none;

    stroke: #430606;

    stroke-width: 2;

    stroke-linecap: round;

}


/* Input */

.section-heading-actions .package-search-box input {

    width: 100%;

    height: 100%;

    padding: 0 8px 0 0;

    border: none;

    outline: none;

    background: transparent;

    color: #17243b;

    font-size: 12px;

}


.section-heading-actions .package-search-box input::placeholder {

    color: #9aa5b1;

}


/* Clear */

.section-heading-actions .package-search-clear {

    width: 27px;

    height: 27px;

    margin-right: 7px;

    display: none;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #eef4f5;

    color: #687687;

    font-size: 18px;

    cursor: pointer;

}


.section-heading-actions .package-search-clear:hover {

    background: #10b7a5;

    color: #ffffff;

}


/* =========================================
   VIEW MORE
========================================= */

.section-heading-actions .views {

    min-width: 90px;

    height: 44px;

    padding: 0 17px;

    border: none;

    border-radius: 9px;

    background: #eabc66;

    color: #000;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .25s ease;

}


.section-heading-actions .views:hover {

    background: #5b0808;

    transform: translateY(-1px);

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .section-heading-row {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }

    .section-heading-row h2 {

        font-size: 22px;

    }

    .section-heading-actions {

        width: 70%;

    }

    .section-heading-actions .package-search-box {

        flex: 1;

        width: auto;

    }

}


@media(max-width:480px) {

    .section-heading-actions {

        display:flex;

    }

    .section-heading-actions .package-search-box {

        width: 100%;

        flex: 0 0 100%;

    }

    .section-heading-actions .views {

        width: 100%;
        padding: 0 10px;

    }

}

/* =========================================
   CONSULT WITH OUR DOCTOR
========================================= */

.consult-doctor {
    width: 100%;
    /*padding: 70px 0px 0px 0px;*/
    background: #ffffff;
    overflow: hidden;
}


/* Main Container */

.consult-container {
    width: 100%;
    max-width: auto;
    min-height: 370px;
    margin: auto;

    position: relative;

    display: flex;
    align-items: center;

    border-radius: 0px;
    padding: 20px 0;
    background:
        linear-gradient(110deg, #ffedba 0%, #f2ecc247 52%, #ffedba 100%);

    overflow: visible;
}


/* =========================================
   DOCTOR AREA
========================================= */

.doctor-box {
    width: 44%;
    height: 100%;

    position: relative;

    align-self: stretch;

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


/* Doctor Background Circle */

.doctor-circle {
    /*position: absolute;*/

    /*width: 300px;*/
    /*height: 300px;*/

    left: 50%;
    bottom: -65px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgb(255 240 196);

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


/* Inner Circle */

.doctor-circle::before {

    content: "";

    position: absolute;

    width: 245px;
    height: 245px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgb(254 240 200);
}


/* Doctor Image */

.doctor-img {

    position: relative;

    z-index: 3;

    width: 400px;
    max-width: 100%;

    margin-bottom: -2px;

    object-fit: contain;

    filter: drop-shadow(
        0 15px 20px rgba(0,0,0,.12)
    );
}


/* =========================================
   CONTENT
========================================= */

.consult-content {

    width: 56%;

    padding: 55px 80px 55px 15px;

    position: relative;

    z-index: 5;
}


/* Small Tag */

.consult-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(255,255,255,.48);

    color: #000;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 18px;
}


/* Heading */

.consult-content h2 {

    margin: 0;

    color: #102f42;

    font-size: 36px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}


.consult-content h2 span {

    display: inline-block;

    color: #340606;

    background: #fff;

    padding: 4px 18px 7px;

    border-radius: 5px;

    margin-left: 5px;
}


/* Line */

.title-line {

    width: 330px;

    height: 3px;

    margin: 16px 0 15px;

    background: #340606;

    position: relative;
}


.title-line::after {

    content: "";

    position: absolute;

    right: 0;

    top: -5px;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #340606;
}


/* Description */

.consult-description {

    max-width: 650px;

    margin: 0 0 27px;

    color: #344d58;

    font-size: 16px;

    line-height: 1.65;

}


/* =========================================
   BOTTOM CONTENT
========================================= */

.consult-bottom {

    display: flex;

    align-items: center;

    gap: 55px;
}


/* Contact */

.contact-info {

    display: flex;

    align-items: center;

    gap: 14px;
}


.contact-icon {

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    color: #340606;

    font-size: 21px;
}


.contact-info h4 {

    margin: 0 0 6px;

    font-size: 18px;

    color: #132f3e;
}


.contact-info a {

    display: block;

    color: #344d58;

    font-size: 14px;

    line-height: 1.55;

    text-decoration: none;
}


.contact-info a:hover {

    color: #078e8b;
}


/* =========================================
   APPOINTMENT BUTTON
========================================= */

.appointment-btn {

    min-width: 255px;

    height: 58px;

    padding: 0 20px;

    border-radius: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background:
        linear-gradient(135deg, #eabc66, #eabc66) !important;

    color: #000;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0,140,130,.20);

    transition: all .3s ease;
}


.appointment-btn span {

    font-size: 21px;
}


.appointment-btn strong {

    font-size: 15px;

    white-space: nowrap;
}


.appointment-btn .arrow {

    margin-left: 5px;

    transition: transform .3s ease;
}


.appointment-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(0,140,130,.30);

    color: #ffffff;
}


.appointment-btn:hover .arrow {

    transform: translateX(5px);
}


/* =========================================
   FLOATING ICONS
========================================= */

.floating-icons {

    position: absolute;

    right: 20px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    gap: 12px;

    z-index: 10;
}


.floating-icon {

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #111;

    font-size: 21px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.08);

    transition: all .3s ease;
}


.floating-icon:hover {

    background: #0bb4a8;

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================================
   DECORATIVE DOTS
========================================= */

.consult-container::after {

    content: "";

    position: absolute;

    right: 55px;
    top: 25px;

    width: 90px;
    height: 90px;

    background-image:
        radial-gradient(
            rgba(255,255,255,.55) 2px,
            transparent 2px
        );

    background-size: 14px 14px;

    opacity: .7;

    pointer-events: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .consult-content {

        padding-right: 55px;
    }

    .consult-content h2 {

        font-size: 38px;
    }

    .doctor-img {

        width: 350px;
    }

    .consult-bottom {

        gap: 25px;
    }

    .appointment-btn {

        min-width: 220px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .consult-doctor {

        padding: 50px 20px;
    }

    .consult-container {

        flex-direction: column;

        border-radius: 35px;

        overflow: hidden;
    }


    .doctor-box {

        width: 100%;

        min-height: 330px;

        order: 1;
    }


    .doctor-circle {

        width: 280px;
        height: 280px;

        bottom: -80px;
    }


    .doctor-img {

        width: 340px;
    }


    .consult-content {

        width: 100%;

        padding: 35px 35px 45px;

        text-align: center;

        order: 2;
    }


    .consult-tag {

        justify-content: center;
    }


    .consult-content h2 {

        font-size: 38px;
    }


    .title-line {

        margin-left: auto;
        margin-right: auto;
    }


    .consult-description {

        margin-left: auto;
        margin-right: auto;
    }


    .consult-bottom {

        justify-content: center;

        flex-wrap: wrap;
    }


    .floating-icons {

        right: 15px;

        top: 25px;

        transform: none;
    }


    .floating-icon {

        width: 48px;
        height: 48px;

        font-size: 17px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .consult-doctor {

        padding: 30px 12px;
    }


    .consult-container {

        border-radius: 25px;
    }


    .doctor-box {

        min-height: 270px;
    }


    .doctor-circle {

        width: 225px;
        height: 225px;

        bottom: -65px;
    }


    .doctor-circle::before {

        width: 185px;
        height: 185px;
    }


    .doctor-img {

        width: 285px;
    }


    .consult-content {

        padding: 30px 20px 35px;
    }


    .consult-tag {

        font-size: 10px;

        padding: 7px 13px;
    }


    .consult-content h2 {

        font-size: 30px;

        line-height: 1.15;
    }


    .consult-content h2 span {

        margin-left: 0;

        margin-top: 5px;

        padding: 3px 12px 5px;
    }


    .title-line {

        width: 220px;
    }


    .consult-description {

        font-size: 13px;

        line-height: 1.6;
    }


    .consult-bottom {

        flex-direction: column;

        gap: 22px;
    }


    .contact-info {

        text-align: left;
    }


    .appointment-btn {

        width: 100%;

        min-width: auto;
    }


    .floating-icons {

        right: 8px;

        top: 15px;

        gap: 7px;
    }


    .floating-icon {

        width: 42px;
        height: 42px;

        font-size: 15px;
    }

}
.doctor-box img{
    width: 100%;
}

/*new addd////////////////*/

.service-section {
      max-width: 1200px;
      margin:40px auto;
      padding: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 35px;
    }

    .cardss {
      background: #fff;
      border-radius: 18px;
      padding: 50px 25px 35px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .cardss::after {
      content: "";
      position: absolute;
      top: -40px;
      right: -40px;
      width: 100px;
      height: 100px;
      background: #ffc506;
      border-radius: 50%;
      opacity: 0.1;
      transition: 0.4s;
    }

    .cardss:hover {
      transform: translateY(-12px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .cardss:hover::after {
      width: 150px;
      height: 150px;
      opacity: 0.2;
    }

    .icon-box {
      width: 80px;
      height: 80px;
      margin: -68px auto 20px;
      border-radius: 50%;
      background: #eabc66;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 32px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .cardss:hover .icon-box {
      transform: rotate(10deg) scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .cardss h3 {
      font-size: 16px;
    font-weight: bold;
    color: #340606;
    margin-bottom: 12px;
    }

    .cardss p {
      font-size: 14px;
      color: #555;
      line-height: 1.7;
    }

    /* Optional button */
   .btn1 {
    margin-top: 18px;
    display: inline-block;
    padding: 8px 18px;
    background: #eabc66;
    color: #000 !important;
    font-size: 14px !important;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn1:hover {
      background: #16a085;
    }


/*social media\\\\\\\\\\\\\*/



    .social-sidebar{
      position:fixed;
      left:12px;
      top:50%;
      transform:translateY(-50%);
      display:flex;
      flex-direction:column;
      gap:.8rem;
      z-index:9999;
    }

    .social-item{
      --w:56px;
      background:#fff;
      border-radius:calc(var(--w) / 4);
      box-shadow:0 6px 18px rgba(2,6,23,0.6);
      overflow:hidden;
      width:var(--w);
      height:52px;
      display:flex;
      align-items:center;
      gap:.5rem;
      transition:width .35s cubic-bezier(.68,-0.55,.27,1.55), transform .25s ease;
      transform-origin:left center;
      cursor:pointer;
      text-decoration:none;
      color:var(--white);
      -webkit-tap-highlight-color:transparent;
      position:relative;
    }

    .social-item::before{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(120deg, rgba(255,255,255,0.15), transparent 60%);
      opacity:0;
      transform:translateX(-100%);
      transition:transform .6s ease, opacity .4s ease;
    }

    .social-item .label{
      white-space:nowrap;
      padding-right:14px;
      font-weight:600;
      font-size:15px;
      opacity:0;
      transform:translateX(-10px);
      transition:opacity .25s ease, transform .3s ease;
    }

    .social-item .icon{
      width:42px;
      height:42px;
      display:inline-grid;
      place-items:center;
      margin-left:0;
      border-radius:10px;
      flex:0 0 30px;
      background:transparent;
      transition:transform .4s ease;
    }

    .social-item:hover, .social-item:focus-within{
      width:220px;
      transform:translateX(6px) scale(1.05);
    }
    .social-item:hover::before, .social-item:focus-within::before{
      opacity:1;
      transform:translateX(100%);
    }
    .social-item:hover .label, .social-item:focus-within .label{
      opacity:1;
      transform:none;
    }
    .social-item:hover .icon{transform:rotate(360deg) scale(1.1);}

    @keyframes floatIn {
      0%{transform:translateX(-40px) translateY(-50%) scale(.8); opacity:0}
      60%{transform:translateX(10px) translateY(-50%) scale(1.05); opacity:1}
      100%{transform:translateX(0) translateY(-50%) scale(1)}
    }
    .social-sidebar .social-item{animation: floatIn .6s ease both;}
    .social-sidebar .social-item:nth-child(1){animation-delay:.1s}
    .social-sidebar .social-item:nth-child(2){animation-delay:.2s}
    .social-sidebar .social-item:nth-child(3){animation-delay:.3s}
    .social-sidebar .social-item:nth-child(4){animation-delay:.4s}

    .social-item.twitter .icon{background:linear-gradient(180deg,#E6F4FF, rgba(255,255,255,0.02));}
    .social-item.github .icon{background:linear-gradient(180deg,#f5f5f7, rgba(255,255,255,0.02));}
    .social-item.linkedin .icon{background:linear-gradient(180deg,#EEF7FF, rgba(255,255,255,0.02));}
    .social-item.email .icon{background:linear-gradient(180deg,#fff7ed, rgba(255,255,255,0.02));}

    .social-item:focus{outline:none}
    .social-item:focus-visible{box-shadow:0 0 0 4px rgba(29,161,242,0.3);}

    @media (max-width:560px){
      .social-sidebar{left:8px}
      .social-item{--w:44px;height:46px}
      .social-item:hover{width:190px}
    }

    .demo-card{
      width:min(880px,95vw);
      padding:2rem;
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius:14px;
      box-shadow:0 10px 40px rgba(2,6,23,0.6);
      text-align:left;
    }
    h1{margin:.1rem 0 1rem 0;font-size:1.6rem}
    p{color:var(--muted);line-height:1.5}
    
    
    .logos span{
        display: none;
    }

.callss ul li {
    list-style: none;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 18px;
}

.steelblue-color{
  font-size: 22px !important;
  font-weight: bold;
      color: #340606 !important;
}
.btn-blue{
  background:#0e7cdc !important;
  color: #fff !important;
}

.slick-slide {
    margin: 0px 15px 0 0;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.mobile-nav{
    display: none;
}
.mobile-header{
    display: NONE;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}



/*//////Search////*/

.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
      width: 100%;
    border: 3px solid #057c9a;
    border-right: none;
    padding: 2px 10px 5px 10px;
    height: 36px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
    /* line-height: 69px; */
    font-weight: 600;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border:none;

}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid #0E67CD;
  /*background: #057c9a;*/
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
  background: #0E6AD1;
background: #259eed;

}

.search button{
    border:none;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.logos img{
  width: 40%;
    margin: 15px 0px;
}
.header{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 80px;
}
.calls{
  margin: 30px 0;
}
.calls ul{
  margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.calls ul li{
  list-style: none;
  display: inline-block;
  /*margin-right: 10px;*/
}
.calls i{
  width: 30px;
  height: 30px;
  background: #0E6AD1;
background: linear-gradient(90deg,rgba(14, 106, 209, 1) 0%, rgba(4, 176, 212, 1) 51%, rgba(14, 103, 205, 1) 100%);
  border-radius: 100%;
  color: #fff;
  text-align: center;
  line-height: 30px;
}
.callss span{
  color: #0E67CD;
  font-weight: 600;
}

.callss img{
  width: 50%;
}
.callss ul{
  margin: 0;
  padding: 0;
}
.callss ul li{
  list-style: none;
}
.callss{
  display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 21px 0px;
}
.callss ul{
  display: flex;
    align-items: center;
}
#whatsapps a i{
  background: green !important;
  color: #fff;
}

.menu{
  padding: 10px 0;
  background: #340606;
}
.menu ul{
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.menu ul li{
  list-style: none;
}

.home-btn img {
    width: 100% !important;
    height: auto !important;
}
.services-7-table.blue-table .table td, .services-7-table.blue-table .table th {
    border-bottom: 1px dashed rgba(255, 255, 255, .6);
    color: #eabc66;
}
.menu a:hover{
    color:#fff;
}
.menu a{
  color: #eabc66;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.6px;
  font-weight: 600;
}
.banner img{
  width:100%;
  
}
.search input::placeholder{
  font-size: 14px;
  color: #0E67CD;
}


/*//Need help/////////*/

.help-section {
      background: #eddcdc26;
      padding: 30px 20px;
      margin: 20px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      max-width: 1200px;
      margin: auto;
    }

    .help-section h2 {
      margin-bottom: 20px;
      color: #0047ab;
      font-size: 24px;
      font-weight: bold;
    }

    .help-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .help-card {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      background: #340606;
      border-radius: 12px;
      padding: 16px 20px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: 0.3s;
      cursor: pointer;
      justify-content: space-between;
    }

    .help-card:hover {
      background: #eef3ff;
    }

    .help-icon {
      width: 50px;
      height: 50px;
      border-radius: 25px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0px;
      /*box-shadow: 0 0 0 2px #ddd;*/
    }

    .help-icon i {
      font-size: 20px;
      color: #4a4a4a;
    }

    .help-content h4 {
      margin: 0;
    font-size: 16px;
    color: #e0ac1e;
    font-weight: bold;
    }

    .help-content p {
      margin: 4px 0 0;
      font-size: 13px;
      color: #fff;
    }
    .help-icon img{
      width: 80%;
    }







    /*//packages////////*/

    .package-section {
  padding: 60px 0px;
  background: radial-gradient(circle at 10% 20%, rgb(252 249 239), transparent 30%), radial-gradient(circle at 90% 80%, rgba(24, 76, 145, .08), transparent 30%), #ffffff;
}



h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #2d2d2d;
}

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px;
  position: relative;
  text-align: left;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon img {
  width: 60px;
  margin-bottom: 10px;
  background: none;
  border-radius: 100%;
}

.safe-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  /*background: #d1ecf1;*/
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
      background: #259eed;
}

.card h3 {
  font-size: 14px !important;
  margin: 10px 0 !important;
  font-weight: bold;
  line-height: 22px !important;
  height: 30px;
}

.home-tag {
      display: inline-block;
    background: #ffbb0045;
    color: #000;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    margin: 8px 0;
    font-weight: bold;
}

.card p {
  font-size: 13px;
  color: #555;
  margin: 10px 0;
}

.card p span {
  color: #222;
  font-weight: 600;
}

.price {
  margin: 15px 0;
}

.price strong {
  font-size: 20px;
  color: #222;
}

.price del {
  color: #aaa;
  margin: 0 8px;
}

.off {
  color: #0E67CD;
  font-weight: bold;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
  align-items: center;
}

button.view {
  flex: 1;
  padding:6px 10px;
      background: #fff;
  cursor: pointer;
  font-weight: 600;
  
  
  border: 1px solid #ccc;
  color: #000 !important;
  border-radius: 10px;
  font-weight: bold;
  font-size: 13px;
}
.view a{
    color: #000 !important;
}

button.views {
  font-size: 12px !important;
  padding: 7px 10px;
  /*background: #fff;*/
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  width: auto;
      background:#eabc66;
      /*margin-top: 10px;*/
    width:auto;
}

button.cart {
  flex: 1;
  padding: 10px;
  background: #d63384;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  opacity: 0.9;
}
.package-section h2{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-section h2{
  margin: 0;
    padding: 0 0 20px 0;
    font-size: 22px;
    font-weight: 600;
}

/*ordering///////////*/



.easy-ordering {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9ff;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.ordering-left {
  flex: 1;
  min-width: 300px;
}

.ordering-left h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.steps li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
}

.steps li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 2px;
  height: 40px;
  background: #e0a8c7;
}
.steps p{
  font-weight: 600;
  font-size: 16px;
}

.steps li:last-child::before {
  display: none;
}

.steps img {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #eecde3;
  color: #a04b79;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
  font-size: 18px;
  padding: 5px;
}

.ordering-right {
  flex: 1;
  min-width: 280px;
}

.image-grid {
  
}

.image-grid img {
  width: 55%;
    /* border-radius: 50% 50% 0 0; */
    object-fit: cover;
    /* height: 180px; */
    text-align: right;
    margin: 0 0 0 auto;
    display: block;
}


/*why choose/////////*/
.why-apollo h2{
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight:600;
  padding: 25px 0;

}
.why-apollo {
 background-image: url(../images/statsBg.webp);
 background-repeat: no-repeat;
 background-size: cover;
 color: #fff;
 padding:20px 0 70px 0;
     background: linear-gradient(90deg, rgba(14, 106, 209, 1) 0%, rgba(4, 176, 212, 1) 51%, rgba(14, 103, 205, 1) 100%);
  
}

.why-apollo h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 160px;
}

.stat-box {
  background-color: #ffffff1f;
    padding: 25px 20px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.stat-box h3 {
  font-size: 32px;
  margin: 0 0 10px;
}

.stat-box p {
  font-size: 15px;
  line-height: 1.4;
}

/************************************/
/***       17. Our Blog css       ***/
/************************************/

.our-blog{
  padding: 50px 0 40px;
}

.post-item{
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  box-shadow: 0px 0px 40px 5px #00000005;
  padding: 40px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.post-item-header{
  margin-bottom: 30px;
}

.post-item-meta{
  margin-bottom: 15px;
}

.post-item-meta ul{
  list-style: none;
  margin: 0;
  padding: 0;
} 

.post-item-meta ul li{
  color: var(--accent-color);
  text-transform: capitalize;
}

.post-item-content h2{
  font-size: 20px;
  line-height: 1.3em;
}

.post-item-content h2 a{
  color: inherit;
}

.post-featured-image{
  margin-bottom: 0px;
}

.post-featured-image a{
    display: block;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.74;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    transform: scale(1.1);
}

.blog-item-btn a{
  font-weight: 500;
    color: #0E67CD;
}
.post-item-meta ul li{
  font-weight: 500;
    color: #0E67CD;
}
.section-title h3{
  text-align: center;
    padding: 20px 0;
    text-transform: capitalize;
    font-size: 30px;
    font-weight: 600;
}
/* ==========================================================================
  20. FOOTER
  =========================================================================== */

#footer-1 .footer-box {
  padding-left: 10%;
}



/*------------------------------------------*/
/*   FOOTER TYPOGRAPHY
/*------------------------------------------*/

.footer h5.h5-xs {
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 25px;
  color: #0E67CD;
}

#footer-2 .footer-info p {
  font-weight: 400;
  margin-bottom: 3px;
}

.footer-box p {
  font-size: 0.975rem;
  margin-bottom: 10px;
}

.footer-box p span {
  color: #444;
  font-size: 0.925rem;
  font-weight: 500;
}

.footer-box h5.h5-xl {
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

#footer-2 p.foo-email {
  margin-top: 30px;
  margin-bottom: 5px;
}

p.foo-email a {
  font-weight: 500;
  text-decoration: underline;
}

p.footer-copyright {
  font-size: 0.95rem;
  margin-bottom: 0;
}

p.footer-copyright span {
  font-weight: 700;
  color: #a4195d;
}
.foo-links i{
  color: #0E67CD;
}

.footer.bg-image h5.h5-xs,
.footer.bg-image p.foo-email a {
  color: #fff;
}

.footer.bg-image .footer-box p,
.footer.bg-image .footer-info p,
.footer.bg-image .footer-links li a,
.footer.bg-image p.footer-copyright {
  color: #c5d1dc;
}

.footer.bg-image .footer-box p span,
.footer.bg-image p.footer-copyright span {
  color: #fff;
}

/*------------------------------------------*/
/*   FOOTER LINKS
/*------------------------------------------*/

.footer-links li {
  font-size: 0.975rem;
  width: auto !important;
  display: block !important;
  vertical-align: top;
  clear: none !important;
  margin: 0 0 9px 0;
  padding: 0;
}

.footer-links li a:hover {
  color: #000;
  text-decoration: underline;
}

/*------------------------------------------*/
/*   FOOTER SOCIAL LINKS
/*------------------------------------------*/

.foo-socials {
  display: inline-block; 
  padding-left: 0;
  margin: 0 auto 0;
}

.foo-socials li {
  width: auto !important;
  display: inline-block !important;
  vertical-align: top;
  clear: none !important;
  margin: 0 0 8px 0;
  padding: 0;
}

.foo-socials a {
  display: block;
  background-color: #255281;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 16px;
  line-height: 34px!important;
  margin-right: 4px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;  
}

.bottom-footer {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 40px;
}

.footer.bg-image .foo-socials a {
  border: 2px solid #c5d1dc;
  color: #c5d1dc;
}

.foo-socials a.ico-facebook:hover { background-color: #3b5998; border-color: #3b5998; color: #fff; }
.foo-socials a.ico-twitter:hover { background-color: #00a9ed; border-color: #00a9ed; color: #fff; }
.foo-socials a.ico-instagram:hover { background-color: #dc3c59; border-color: #dc3c59; color: #fff; }
.foo-socials a.ico-dribbble:hover { background-color: #d92d84; border-color: #d92d84; color: #fff; }
.foo-socials a.ico-behance:hover { background-color: #2473f6; border-color: #2473f6; color: #fff; } 
.foo-socials a.ico-pinterest:hover { background-color: #ac281a; border-color: #ac281a; color: #fff; }
.foo-socials a.ico-linkedin:hover { background-color: #015886; border-color: #015886; color: #fff; }
.foo-socials a.ico-google-plus:hover { background-color: #cd1111; border-color: #cd1111; color: #fff; } 
.foo-socials a.ico-youtube:hover { background-color: #cd1b20; border-color: #cd1b20; color: #fff; } 
.foo-socials a.ico-tumblr:hover { background-color: #3a5976; border-color: #3a5976; color: #fff; }
.foo-socials a.ico-vk:hover { background-color: #3b5998; border-color: #3b5998; color: #fff; }
.foo-socials a.ico-yahoo:hover { background-color: #7b0099; border-color: #7b0099; color: #fff; }
.foo-socials a.ico-yelp:hover { background-color: #d32323; border-color: #d32323; color: #fff; }

/*------------------------------------------*/
/*   FOOTER NEWSLETTER FORM
/*------------------------------------------*/

.footer-form .form-control {
  height: 48px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-right: none;
  color: #333;
  font-size: 1rem;
  padding: 0 15px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.foo-links{
  margin: 0;
  padding: 0;
}
.help{
  margin: 0;
  padding: 0;
}
.footer-info img{
width: 70%;
    height: auto;
}
#footer-3{
  padding: 20px 0;
  background-color: #cccccc52;
}

.foo-links li a{
  color: #000;
}
.footer-box p{
  display: inline-flex;
    align-items: baseline;
}
.footer-box i{
  color:#255281;
  padding-right: 10px;
  font-size: 16px;
}

.foo-email a {
    font-weight: 500;
    text-decoration: underline;
    color: #0E67CD;
}



    @media (max-width: 768px) {
        
            .recommended-actions {
        display: flex !important;
    }
        .recommended-actions {
        width: 70% !important;
    }
        
        
        /* ---------- CONFIG (change these) ---------- */
:root{
  --accent: #259eed;         /* main accent color */
  --bg: #ffffff;            /* menu background */
  --text: #222;             /* text color */
  --overlay: rgba(0,0,0,0.45);
  --menu-width: 82vw;       /* width of sliding menu on open */
  --transition: 320ms;
}
/* ---------- BASIC RESET ---------- */
*{box-sizing:border-box}

a{color:inherit;text-decoration:none}

/* ---------- MOBILE-ONLY: show on small screens, hide on wider screens ---------- */
.mobile-only { display:block; }
@media (min-width: 900px) { /* adjust breakpoint if needed */
  .mobile-only { display:none !important; } /* hide entire component on desktop */
}

/* ---------- HEADER BAR ---------- */
.mobile-header{
  position:fixed;
  top:0;left:0;right:0;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8));
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  z-index:1200;
}

/* logo/title */
.mobile-header .brand{font-weight:600;color:var(--text);font-size:16px}

/* hamburger */
.hamburger{
  width:44px;height:44px;border-radius:10px;display:inline-grid;place-items:center;
  border:1px solid rgba(0,0,0,0.06);background:transparent;
}
.hamburger .lines{width:20px;height:14px;position:relative}
.hamburger .lines span{
  position:absolute;left:0;right:0;height:2px;background:var(--text);border-radius:2px;
  transition:var(--transition) transform, var(--transition) opacity;
}
.hamburger .lines span:nth-child(1){top:0}
.hamburger .lines span:nth-child(2){top:6px}
.hamburger .lines span:nth-child(3){top:12px}

/* active hamburger -> X */
.hamburger.open .lines span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.hamburger.open .lines span:nth-child(2){opacity:0}
.hamburger.open .lines span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

/* ---------- OVERLAY & SLIDING PANEL ---------- */
.mobile-overlay{
  position:fixed;inset:0;background:var(--overlay);opacity:0;visibility:hidden;
  transition:var(--transition) opacity, var(--transition) visibility;
  z-index:1100;
}
.mobile-overlay.show{opacity:1;visibility:visible}

/* sliding nav */
.mobile-nav{
  position:fixed;top:0;left:0;height:100vh;width:var(--menu-width);
  max-width:420px;background:#259eed;transform:translateX(-100%);
  box-shadow: 8px 0 30px rgba(0,0,0,0.12);transition:var(--transition) transform;
  z-index:99999;padding:18px 14px 30px;border-top-right-radius:12px;border-bottom-right-radius:12px;
  display:flex;flex-direction:column;
  
}
.mobile-nav.open{transform:translateX(0)}

/* nav header inside panel */
.mobile-nav .nav-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.mobile-nav .nav-title{font-size:18px;font-weight:700;color:var(--text)}
.mobile-nav ul li i{
    padding-right: 10px;
}



/* nav list */
.mobile-nav ul{list-style:none;padding:6px 0 0;margin:0;display:flex;flex-direction:column;gap:6px}
.mobile-nav li a{
  display:flex;align-items:center;padding:8px;border-radius:10px;
  font-size:16px;color:#fff;
}
.mobile-nav li a:hover{background:rgba(0,0,0,0.04)}

/* Optional grouped section style */
.mobile-nav .section-title{font-size:14px;color:#fff;margin:10px 4px 6px}

/* easy CTA button */
.cta{
  margin-top:auto;
  display:block;padding:12px 14px;border-radius:12px;text-align:center;
  font-weight:700;background:var(--accent);color:#fff;
  box-shadow:0 6px 18px rgba(37,158,237,0.18);
}

/* small helper for content push (so top bar doesn't cover page content) */
.page-spacer{height:56px}
        
        
        
        
        
        
        
        
        
        
        
        
        .wide-70 { padding-top: 30px !important; padding-bottom: 30px !important; }
        .package-section{
            padding: 25px 0;
        }
        
          #division img{
      display: none !important;
  }
        
        .logos span{
            display: block;
        }
      .help-cards {
        flex-direction: column;
      }
      .menu{
          display: none;
      }
      .logos{
          position: relative;
      }
      .logos img {
        width: 55%;
        margin: 12px 0px;
        margin-left: 0px;;
        }
        
    .logos span{
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 12px;
    left: 3px;
    }
    
.calls {
    /* margin: 30px 0; */
    position: absolute;
    top: -80px;
    right: 20px;
}
.calls ul li{
    margin-right: 10px;
}

.brand li{
    list-style: none;
}

.wrap {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 32px 0;
}
.callss img{
    display: none;
}

.banner img{
  margin-top: 0px;
}
.callss {
        position: absolute;
        top: -71px;
        right: 5px;
    }
    .header {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 110px;
    margin-top: 50px;
}

.search {
    width: 95%;
    position: relative;
    display: flex;
    margin: 0 auto;
}

.wide-100 {
    padding-top: 20px;
    padding-bottom: 25px;
}

.help-card {
    flex: 0;
    display: flex;
    align-items: center;
    /*background: #fff;*/
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    cursor: pointer;
    justify-content: space-between;
}

.pt-40 {
    padding-top: 20px;
}
.tabs{
  width:auto !important;
}
.banner img{
  width:100%;
  height: auto;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: #0047ab;
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 18%;
  width: 100%;
  text-align: center;
  margin-top: 0px;
}

.overlay a {
        padding: 8px 20px;
        text-decoration: none;
        font-size: 20px;
        color: #fff;
        display: block;
        transition: 0.3s;
        text-align: left;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
top: -10px;
right: 0;
font-size: 48px;
}





@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }

}






      
    