

/* advertise strip */
.banner-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: linear-gradient(90deg, #00B4DB, #0083B0); */
    /* background-image: url('/images/home/banner_strip1.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat; */
    color: white;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  /* Add these new styles */
.banner-content.layout-1 {
    background-image: url('/images/home/banner_strip1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.banner-content.layout-2 {
    background-image: url('/images/home/banner_strip2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}
  
  .banner-content {
    padding: 15px;
    text-align: center;
    display: none;
    height: 98px;
  }
  
  .banner-content.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: fadeIn 0.5s ease;
    align-items: flex-end;
    padding-inline: 6rem;
  }
  
  .controls-wrapper {
    position: absolute;
    right: 15px;
    top: 34%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column-reverse;
  }
  
  .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    /* background-color: red; */
    border-radius: 4px;
  }
  
  .indicators {
    display: flex;
    gap: 5px;
  }
  
  .indicator {
    width: 8px;
    height: 8px;
    border-radius: 20%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .indicator.active {
    background: white;
    transform: scale(1.2);
  }
  
  .cta-button {
    display: inline-block;
    padding: 8px 44px;
    background-color: white;
    color: #ea0500;
    border: 2px solid #ea0500;
    border-radius: 25px;
    text-decoration: none;
    margin-left: 2rem;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 600;
  }
  
  .cta-button:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
    color:rgb(211, 29, 29);
    border: 1px solid rgb(211, 29, 29);
  }
  
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .spacer {
  height: 9rem;
  }
  
  .text-danger.mob-head-adv {
    font-size: 20px;
    font-weight: 600;
  }

  .text-light.mob-head-adv {
    font-size: 24px;
    font-weight: 700;
  }

  .mob-para-adv.text-dark {
    font-size: 24px;
    font-weight: 700;
  }

  .mob-para-adv.text-light {
    font-size: 20px;
    font-weight: 600;
  }

  .mob-para-adv {
  /* font-size: 24px;
  font-weight: 700; */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.4rem;
  }
  
  
  @media (max-width: 729px) {
  .banner-strip {
    z-index: 1030; /* Higher than navbar */
  }
  
  #topNav {
    position: fixed;
    width: 100%;
    z-index: 1029;
  }
  
  .spacer {
    transition: height 0.3s ease;
  }
  .spacer {
        height: 12.6rem;
    }
  
  /* Adjust banner content for better mobile display */
  .banner-content {
    padding: 10px 15px;
  }
  
  .banner-content .text-content {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .cta-button {
    margin-top: 8px;
    margin-left: 0;
  }
  
  
  }
  
  
  @media (max-width: 573px) {
  .top_nav_fixed {
    top: 7.6rem;
  }
  .spacer {
        height: 15rem;
    }
  
    .mob-head-adv {
      font-size: 16px;
    }
    .mob-para-adv {
      font-size: 12px;
    }
  
  }
  
  
  @media (min-width:991px) and (max-width:1194px) {
  .d-fl-logos img.sathee-logo {
    width: 3.2rem !important;
  }
  .navbar-brand img.moe-logo {
    width: 6rem !important;
  }
  .navbar-light .navbar-nav .nav-link {
    padding-inline: 0.2rem !important;
    font-size: 14px !important;
  }
  }
  
  .mob-para-adv span {
    font-size: 18px;
  }

  @media (max-width: 1160px) {
    .banner-content.layout-1 {
        background-image: url('/images/home/banner_strip1_mob.png');
    }
    
    .banner-content.layout-2 {
        background-image: url('/images/home/banner_strip2_mob.png');
    }
    .cta-button { 
        padding: 4px 22px; 
        margin-left: 1rem;
        font-size: 16px;
        font-weight: 500;
      }
      .text-light.mob-head-adv {
        font-size: 20px;
        font-weight: 600;
    }
    .text-danger.mob-head-adv {
        font-size: 16px;
        font-weight: 500;
    }
    .mob-para-adv.text-light {
        font-size: 16px;
        font-weight: 500;
    }
    .mob-para-adv.text-dark {
        font-size: 20px;
        font-weight: 600;
    }
    .mob-para-adv span {
        font-size: 16px;
      }
      .controls-wrapper {
        top: 22%;
      }

  }

  @media (max-width: 980px) {
    .banner-content.active {
        padding-inline: 1rem;
    }
  }

  @media (max-width: 820px) {
    .banner-content.active {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: center;
        row-gap: 0.5rem;
    }
    .banner-content {
        height: 108px;
      }
    .cta-button {
        margin-left: 0;
    }


    .text-light.mob-head-adv {
        font-size: 16px;
     
    }
    .text-danger.mob-head-adv {
        font-size: 14px;
    
    }
    .mob-para-adv.text-light {
        font-size: 14px;
    
    }
    .mob-para-adv.text-dark {
        font-size: 16px;
      
    }
    .mob-para-adv span {
        font-size: 14px;
      }

  }

  @media (max-width: 520px) {
    /* .banner-content {
        height: 120px;
      } */
      .banner-content.active {
        padding-inline: 0.4rem;
        row-gap: 0.2rem;
    }

    .cta-button {
        padding: 4px 20px;
        font-size: 12px;
    }
    .cta-button {
        padding: 0px 18px !important;
    }
      .mob-para-adv {
        font-size: 12px !important;
    }
    .text-light.mob-head-adv {
        font-size: 14px;
    }
    
    .mob-para-adv span {
        padding-top: 0.1rem;
    }
      .mob-para-adv {
        gap: 0.4rem;
      }
    
  }

  @media (max-width: 390px) {
    .banner-content {
        height: 130px;
      }
    }
  
  /* navbar.css st */
  /* --- state after scroll start --- */
  .top_nav_fixed {
  position: fixed !important;
  left: 0;
  top: 4.6rem;
  width: 100%;
  z-index: 99999;
  margin: 0px;
  padding-top: 0.4rem;
  color: #1e293b;
  background-color: #ffffff;
  /* transition: all ease-out .3s; */
  }
  
  .navbar-collapse.show li a,
  .navbar-collapse.collapsing li a {
  color: #1c2d41;
  font-weight: 500;
  transition: all 0.3s ease-out;
  }
  
  .navbar-collapse.show .navbar-nav .active,
  .navbar-collapse.show .navbar-nav a:hover {
  color: #2098d1;
  }
  
  /* --- state after scroll end --- */
  
  .navbar-brand img {
  width: 194px;
  padding: 0px;
  }
  
  /* IPad Pro */
  @media (max-width: 1024px) {
  
  .dropdown-divider {
    border-top: 1px solid #c0ccda;
  }
  }
  
  /* Small devices (landscape phones, 576px and up) */
  
  @media only screen and (max-width: 576px) {
  
  .navbar-brand img {
    width: 144px;
    padding: 0px;
    /* margin-right: 10px; */
  }
  }
  
  @media only screen and (max-width: 347px) {
  .navbar {
    padding: 0.5rem 0px !important;
  }
  
  .d_flex_nav_pri ul.navbar-nav {
    padding-inline: 0.5rem;
  }
  }
  
  /* navbar starts extracted from internal style */
  
  .spacer {
  height: 9rem;
  background-color: #f8f9fa;
  }
  
  .navbar-toggler {
  color: rgba(0, 0, 0, .5) !important;
  border: none !important;
  }
  
  .navbar-nav li>ul.dropdown-menu {
  margin: 0;
  }
  
  .navbar-collapse .dropdown-menu .dropdown-submenu a {
  padding-inline: 0.8rem;
  }
  
  .navbar-nav li:hover>ul.dropdown-menu {
  display: block;
  margin: 0;
  }
  
  .navbar-nav li:hover>div.dropdown-menu {
  display: block;
  margin: 0;
  }
  
  .dropdown-submenu {
  position: relative;
  }
  
  .dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  }
  
  /* rotate caret on hover */
  .dropdown-menu>li>a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
  }
  
  
  .navbar-light .navbar-nav .nav-link {
  color: #000000 !important;
  }
  
  .bg-dimmed {
  margin: 0;
  padding: 0 !important;
  }
  
  .collapse.navbar-collapse.d_flex_nav_pri {
  justify-content: space-around;
  }
  
  .container::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
  }
  
  .navbar-expand-lg .navbar-nav {
  flex-wrap: wrap !important;
  }
  
  .navbar-expand-lg .d-fl-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  }
  
  .d-fl-logos img.sathee-logo {
  width: 3.8rem;
  }
  
  
  .navbar-brand img.moe-logo {
  width: 7rem;
  height: auto;
  }
  
  /* media query starts */
  @media screen and (max-width:1469px) {
  .spacer {
    height: 6rem;
  }
  }
  
  /* @media screen and (max-width:729px) {
  .spacer {
    height: 7.6rem !important;
  }
  } */
  
  @media screen and (max-width:550px) {
  .d-fl-logos img.sathee-logo {
    width: 2.8rem !important;
  }
  
  .d-fl-logos .navbar-brand img.moe-logo {
    width: 5.4rem;
  }
  }
  
  @media screen and (max-width:768px) {
  .container-fluid.bg-dimmed.wrapper {
    display: block !important;
  }
  
  .cta-button {
    display: flex;
    padding: 2px 12px !important;
    align-items: center;
    justify-content: center;
    min-height: 32px;
  }
  .mobsm-topstrip {
    margin-top: -2.6rem !important;
  }
  
  }
  
  @media only screen and (max-width: 1240px) {
  .navbar-expand-lg .navbar-nav {
    justify-content: center !important;
    flex-wrap: wrap !important;
  
  }
  }
  
  
  @media only screen and (max-width: 991px) {
  
  .spacer {
    height: 4.8rem;
  }
  
  .collapse.navbar-collapse.d_flex_nav_pri {
    justify-content: space-around;
    position: relative;
    max-height: 72vh;
    height: auto;
    overflow-y: scroll;
  
  }
  
  .nav-link.dropdown-toggle,
  .dropdown-item.dropdown-toggle {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }
  
  .top_nav_fixed {
    box-shadow: 0px 0px 4px silver;
  }
  
  
  
  .dropdown-item:focus,
  .dropdown-item:hover {
    background-color: #dee2e6;
  }
  
  .navbar-nav li>ul.dropdown-menu {
  
    background-color: #e9ecef;
    border: none;
  }
  
  .navbar-toggler-icon-close {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    background-image: url(/images/home/cross.png);
    color: #000000;
  }
  
  }
  
  /* navbar ends extracted from internal style */
  /* navbar.css en */