

* {
    padding: 0;

    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
}

body{
        background: #f2f7ff;
}
html, body {
  overflow-x: hidden;
}


/* Transparent Navbar with No Shadow */

.logo {
  float: left;
  margin-left: -8px;
  margin-top: -10px;
}
.navbar {
  width: 35%;
  float: right;
  padding: 3px 20px;
  box-shadow: none;
  z-index: 1000;  
}
.call-button{
  margin-bottom:-20px ;
}
.navbar1 {
  width: 100%;
  /* float: right; */
  /* padding: 3px 20px; */
  box-shadow: none;
  z-index: 1000;
}

.navbar-brand {
  color: black;
  font-weight: bold;
  font-size: 18px;
}

.navbar-nav .nav-link {
  color: black;
  font-size: 18px;
  padding: 3px 20px;
  font-weight: 500;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.dropdown-menu {
  display: none;
  background-color: white;
  padding: 10px 0;
  border: 1px solid #ccc;
  min-width: 220px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.two-column-dropdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 20px;
  min-width: 500px;
}

.two-column-dropdown .column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.dropdown-item {
  padding: 8px 10px;
  white-space: nowrap;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
}

/* Auth buttons container */
.auth-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.auth-buttons a {
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
}

.auth-buttons .login {
  border: 2px solid black;
  color: black;
  background-color: transparent;
}

.auth-buttons .signup {
  background-color: #dc3545;
  color: white;
  border: none;
}

.auth-buttons a:hover {
  opacity: 0.85;
}

/* Toggler customization */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile view handling */
@media (max-width: 768px) {
  .firstnavbar {
    display: none !important;
  }
  .language-slider-container {
    display: none !important;
  }
  .mobileview {
    display: block;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobileview {
    display: none !important;
  }
}

.signup:hover {
  background-color: #dc3545;
  color: black;
}

/*Apply css for languages selection*/
.language-slider-container{
    margin-top: -20px;
}

.lang-arrow {
  position: absolute;
/*  top: 50%;*/
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.left-arrow {
  left: 5px;
}

.right-arrow {
  right: 5px;
}
.language-slider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}
.language-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.lang-btn {
    background-color: #f5f3f0;
    color: #333;
    padding: 4px;
    width:77px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    box-shadow: 
  5px 5px 8px rgba(0, 140, 200, 0.4),    /* right-bottom shadow */
  0px -2px 8px rgba(0, 140, 200, 0.2);  /* left-top shadow */

/*    transition: all 0.3s ease;*/
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
/*    margin: 1px;*/
    margin-top:-3px ;
    text-align: center;
     transition: transform 0.4s linear;
  }

  .lang-btn:hover {
    box-shadow: 0 0 15px rgba(0, 140, 200, 0.6);
    transform: scale(1.05);
  }

  .lang-btn .lang {
    font-weight: bold;
  }

  .lang-btn span {
    font-size: 11.5px;
    display: block;
    margin-top: -4px;
  }

  .active-lang {
    background-color: #fdf151; /* Tailwind yellow-400 */
    color: #000;
    border: 2px solid #fdf151; /* yellow-500 */
  }
/* Login & Signup Buttons */


.signup:hover {
    background-color: #dc3545;
    color: black;
}

/* Base layout */
.container {
    width: 100%;
  display: grid;
  grid-template-columns: 65% 35%;

  height: auto;
  align-items: center;
  /*padding: 20px;*/
  /*gap: 10px;*/
}

#sentenceDisplay {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

/* Image slider */
.slider {
    width: 100%;
  max-width: 550px;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  float:right;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slides img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 10px;
}

.slides img.active {
  opacity: 1;
}

/* Highlighted text if needed */
.highlight {
  color: #1e88e5;
  font-weight: 600;
  /*background-color: #e3f2fd;*/
  padding: 2px 6px;
  border-radius: 4px;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .slider {
    margin: 20px auto;
    max-width: 80%;
    height: 200px;
  }

  .slides img {
    height: 200px;
  }

  #sentenceDisplay {
    font-size: 22px;
  }
}

/* Responsive: Mobile */
@media (max-width: 576px) {
  .container {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slider {
    width: 100%;
    max-width: 100%;
    height: 200px;
  }

  .slides img {
    height: 200px;
  }

  #sentenceDisplay {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* CARD */
.card-container1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);  /* ✅ Fixed: 5 columns */
    gap: 15px;
    margin: 23px 20px 10px 20px;
}

/* Card Styles */
.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    height: 150px; /* Adjust height as needed */
    /*padding: 10px;*/
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: #F2F7FF;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

/* Hover effect */
.card-body:hover {
    box-shadow: rgb(141, 175, 211) 0px 20px 30px -10px;
    transform: translateY(-5px);
    cursor: pointer;
}

/* Image Styling */
.card-body img,
.cardimg1 {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Paragraph Styling */
.card-body p {
    background-color: #FFFF99;
    font-size: 18px;
    font-weight: 600;
    color: #042757;
    padding: 3px 0;
    width: 100%;
    border-radius: 0 0 5px 5px;
    margin: 0;
    margin-top: auto;
    /*font-family:'Inter', sans-serif;*/
}

/* ✅ Tablet View (3 cards per row) */
@media (max-width: 992px) {
    .card-container1 {
        grid-template-columns: repeat(3, 1fr);
    }
    .card-body {
        height: 180px;
    }
}

/* ✅ Mobile View (2 cards per row) */
@media (max-width: 576px) {
    .card-container1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 5px 15px 10px 15px;
    }

    .card-body {
        height: 130px;
        padding: 8px;
    }

    .card-body p {
        font-size: 14px;
    }

    .card-body img {
        max-height: 100px;
    }
}

/* apply css for button of view more */

button {
    background-color: #007bff;
    /* Blue color */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    margin-top: 50px;
}

button:hover {
    background-color: #0056b3;
}




/* Center the button */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-top: -10px;
}

/* ----------------------- */
/* Apply css for small plan card */


/* pop up style */

#viewMoreBtn {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top:20px ;
}

/* Modal */

.modal {
    display: none;
    /* position: fixed; */
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    text-align: left;
    position: relative;
    overflow-y: auto;
    /* max-height: 80vh; */
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: red;
}

/* Tabs */
.tabs {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
    color: black;
}

.tab {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
}

.tab.active {
    border-bottom: 3px solid blue;
    font-weight: bold;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Insurance List */
.insurance-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.insurance-item {
    text-align: center;
    width: 100px;
}

.insurance-item img {
    width: 70px;
    height: 70px;
}

.insurance-item p {
    font-size: smaller;
}

/*banner css*/

    .slider-container {
      position: relative;
      overflow: hidden;
      max-width: 100%;
      margin: 20px 10px;
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.3s ease-in-out;
      scroll-behavior: smooth;
      overflow-x: auto;
      scrollbar-width: none; /* Firefox */
      -webkit-overflow-scrolling: touch;
      padding-bottom: 10px; /* space for scrollbar hidden */
    }

    .slider-wrapper::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }

    /* Fixed card width for desktop */
    .banner-card {
      flex: 0 0 420px;  /* fixed width */
      width: 420px;
      height: 200px;
      padding: 15px;
      margin: 10px 15px;
      background: #f5f5f5;
      border-radius: 8px;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      scroll-snap-align: start; /* for nice snapping */
    }
.banner-card:nth-child(1) {
    background: linear-gradient(45deg, #a4508b, #5f0a87);
}

.banner-card:nth-child(2) {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
}

.banner-card:nth-child(3) {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}.banner-card:nth-child(4) {
    background: linear-gradient(45deg, #a4508b, #5f0a87);
}

.banner-card:nth-child(5) {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
}

.banner-card:nth-child(6) {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
}
    .banner-card p {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .banner-card button {
      padding: 8px 16px;
      background-color: #007bff;
      border: none;
      color: white;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .banner-card button:hover {
      background-color: #0056b3;
    }

    .dots {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .dot.active {
      background-color: #007bff;
    }

    /* For smaller screens, reduce card width */
    @media (max-width: 767px) {
     /* .slider-container1{
        margin: 20px;
      }  */
      .banner-card {
        flex: 0 0 90%;
        width: 90%;
        margin: 0 5%;
      }
    }

/*css for static card*/

.container-card1 {
    max-width: 1230px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin: 30px 30px;
    position: relative;
}

.heading {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 30px;
      line-height: 1.3;
      color: #222;
    }

    /* Highlight the strong elements inside heading */
    .heading strong {
      color: #007bff; /* blue highlight */
    }

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 600px;
    flex: 1;
}



/*css for static card*/

.card1 {

    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-left: 4px solid transparent;
    transition: transform 0.3s;
    width: calc(50% - 10px);
}

.card1:hover {
    transform: scale(1.05);
}

.card1 p {
    color: #333;
    margin-top: 10px;
}

.card1 strong {
    font-size: 1.2rem;
}

.blue {
    border-left-color: #0073e6;
}

.skyblue {
    border-left-color: skyblue;
}

.green {
    border-left-color: #28a745;
}

.yellow {
    border-left-color: #ffc107;
}

@media (max-width: 768px) {
    .container-card1 {
        flex-direction: column;
        align-items: flex-start;
        margin-left: -5px;
    }

    .heading {
        margin-left:    20px;
        font-size: 24px;
        margin-left: 10px;
        text-align: left;
    }

    .info-grid {
        flex-direction: column;
        align-items: center;
    }

    .card1 {
        width: 90%;
    }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
    .heading {
        margin-left: 20px;
        font-size: 20px;
        line-height: 1.5;
    }

    .card1 {
        padding: 15px;
    }
}

/* calculator css */


.calculator-container {
    overflow-x: auto;
    display: flex;
    gap: 25px;
    padding: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
    margin: 10px;
    /*            text-align: left;*/
    position: relative;
}

.calculator-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.calculator-card {
    min-width: 418px;
    /*            height: 200px;*/
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.investment {
    background: #ffe0e6;
}

.term {
    background: #dff5ff;
}

.premium {
    background: #ede7f6;
}

.calculator-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: black;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.calculator-list a:last-child {
    border-bottom: none;
}

.view-all-btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .text-left {
        margin:10 px;
    }

}

/*Avdvantageous section*/
.container-Adv {
    width: 1210px;
    margin: 40px 50px;
    text-align: left;
    padding: 10px 0px;
}

.container-Adv h2 {
    margin-left: 40pxs;
    border-bottom: 3px solid #0065ff;
    display: inline-block;
}

.description {
    width: 55%;
    font-size: 17px;
    margin-top: 30px;
    line-height: 25px;
}

.grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card-adv {
    /*    margin-left: 20px;*/
    width: 18%;
    background: #fff;
    border: 1px solid #dfe1e6;
    border-radius: 10px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}

.card-adv:hover {
    transform: translateY(-5px);
}

.img1-adv img {
    width: 120px;
    height: 120px;
    margin-left: -80px;

    margin-bottom: 10px;
}

.heading-adv {
    text-align: left;
}

.heading-adv h5 {
    margin: 10px 0;
    color: #666;
}

.heading-adv p {
    font-size: 12px;
    color: #666;
}

.know-more {
    color: #1a237e;
    text-decoration: none;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .container-Adv.grid {
        display: flex;
        flex-direction: column;
        align-items: left;
        max-width: 100%;
        overflow: hidden;
    }

    .card-adv {
        width: 50%;
        display: flex;
        margin-bottom: 20px;
    }

    .card-adv img {
        margin-left: 20px;
    }
}

@media screen and (max-width: 720px) {
    .container-Adv {
        margin: 5px;
    }

    .grid {
        flex-direction: column;
        align-items: left;

    }

    .heading-adv h5 {
        text-align: center;
    }

    .description {
        margin-top: 30px;
        align-items: center;
        width: 30%;
    }

    .card-adv img {
        margin-left: 20px;
    }

    .card-adv {
        width: 30%;
        display: flex;
        margin-bottom: 20px;
    }
}

/*css for help section*/
.container3 {
  width: 100%;
/*  padding-top: 30px;*/

  background-color: #fff;
}

.container3 h2 {
  border-bottom: 3px solid #0065ff;
  display: inline-block;
/*  padding-bottom: 5px;*/
  font-size: 2rem;
}

p {
    font-size: 16px;
    line-height: 24px;
}

.col-lg-6 {
    margin-bottom: 0px;
    min-height: 80vh;
}
.custom-img{
        width: 500px;
        height:500px
/*        margin-left: -10px;*/
    }
/* For small screens: Make the text full-width */
@media (max-width: 768px) {
  .container3 h2 {
    font-size: 1.6rem;
  }

  .container3 p {
    font-size: 15px;
  }
.custom-text {

    width: 100px;
}
.text-muted{
width: 300px;
}
.border{
    width: 300px;
}
}

@media (max-width: 480px) {
    .container3{
         margin-left: 20px;
    }
    .custom-img{
        width: 380px;
        /*margin-left: 10px;*/
        /*margin-bottom:10px*/
/*        margin-left: -10px;*/
    }
  .container3 h2 {
    font-size: 1.4rem;
     margin-bottom:10px
  }

  .container3 p {
      margin-top:20px ;
    font-size: 14px;
  }
.custom-text {

    width: 100px;
}
.text-muted{
    margin-top: -80px;
width: 300px;
}
 .border{
    width: 300px;
} 
}





/* costomer card */
.customerCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ReviewCard {
    width: 400px;
    height: 300px;
    border: 1px solid black;


}




/* costomer card */
.customerCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ReviewCard {
    width: 400px;
    height: 300px;
    border: 1px solid black;


}

/*also buy*/

.plans {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr); /* Default: 2 per row */
  margin-top: 1rem;

}

/* Tablets: 3 per row */
@media (min-width: 576px) {
 .also-buy{
    margin: -15px;
}
  .plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium devices: 4 per row */
@media (min-width: 768px) {
 .also-buy{
    margin: 5px;
}
  .plans {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large screens: 5 per row */
@media (min-width: 992px) {
    .also-buy{
    margin: 20px;
}
  .plans {
    grid-template-columns: repeat(5, 1fr);
  }
}

.plans span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.plans span:hover {
  background-color: #e6f0ff;
  color: #0056b3;
  cursor: pointer;
}
/*______________________________ footer _____________________________________________*/


.footer {
      font-size: 0.95rem;
    }

    .footer h5 {
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .footer ul li {
      margin-bottom: 8px;
    }

    .footer a {
      color: #ddd;
      text-decoration: none;
    }

    .footer a:hover {
      color: #fff;
      text-decoration: underline;
    }
    #footercol{
        margin-left: 10px;
    }

    @media (max-width: 576px) {
      .footer {
        text-align: left;
      }
    }


/*.chanel {
    background-image: url(images/becomechanelpartner.jpg);
    padding: 1px;
    margin-bottom: 10px;
    background-attachment: unset;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 1px 1px;
    padding-bottom: 2px;

} */
.icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* optional spacing between stars */
    font-size: 2.5rem;
}

.icons:hover {
    color: gold;
}

.chanel {

    width: 1200px;
    max-width: 100vw;
    overflow-x: hidden;
}


/* Add to your CSS for call button */
.call-button {
    position: fixed;
    bottom: 15px;
/*    left: 50%;*/
width: 100%;
/*    transform: translateX(-50%);*/
    background-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
/*    border-radius: 50px;*/
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    font-size: 16px;
}
.call-button:hover {
    background-color: #218838;
}