 html, body {
  overflow-x: hidden;
}

 
 body{
  margin: 0;
  padding: 0;
 }
 /* --- navbar --- */
 .custom-navbar {
      padding-top: 15px;
      padding-bottom: 1px;
    }
    .logo-img {
      max-height: 110px;
      width: 180px;
    }
    .navbar-nav .nav-link {
      font-size: 1.1rem;
      margin-left: 20px;
    }
    @media (max-width: 991.98px) {
      .navbar-brand {
        margin-right: auto; 
      }
    }


    /*hedre1*/

       .hero-section {
      background-color: #0195A3;
      color: white;
      min-height:100vh;
      padding: 10px 0 120px;
      border-bottom-left-radius: 140px;
      border-bottom-right-radius: 140px;
    }

    @media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 50px 20px;
    border-radius: 0;
  }
}

    .hero-section h2 {
      font-size: 3rem;
      font-weight: bold;
    }

    .hero-section p {
      font-size: 20px;
      margin-top: 15px;
    }

    @media (max-width: 768px) {
  .hero-section h2 {
    font-size: 2rem;
  }   

  .hero-section p {
    font-size: 1rem;
  }
}
    .hero-buttons .btn {
  margin-right: 10px;
  margin-top: 20px;
  width: 150px;
  height: 40px;
}

@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 10px 0;
  }
}


    .illustration-img {
      max-width: 100%;
      height: auto;
    }
    .img-fluid{
      max-width:100%;
      height:auto;
    }

    .services-section {
      background: white;
      border-radius: 16px;
      padding: 40px 20px;
      /* margin-top: -240px; */
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
      /* height: 320px; */
      margin-bottom: -10px;
    }

    .services-section h1 {
      font-weight: bold;
      color: #0195A3;
      margin-top: -20px;
      margin-bottom: 10px;
    }

    .services-section p {
      color: #777;
      font-size: 0.95rem;
      margin-bottom: 30px;
    }

    .service-icon {
      font-size: 2rem;
      color: #008b8b;
      margin-bottom: 10px;
    }

    .service-title {
      font-weight: 600;
      font-size: 0.95rem;
    }

    .service-block {
  position: relative;
}

@media (min-width: 768px) {
  .services-section {
    margin-top: -240px;
    margin-bottom: -10px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    margin-top: 20px; /* give space below hero */
    margin-bottom: 20px;
  }
}

    
    /* Divider between services */
.vertical-dividerr {
  position: absolute;
  right: 0;
  top: 25%;
  height: 80%;
  width: 2px;
  background-color: #007b8e;  
}
@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 2rem;
  }
}



.tab-bar {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #ddd;
  position: relative;
}

.tab-item {
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
}

.tab-item.active {
  color: #007bff;
}

.sliding-underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: #007bff;
  transition: left 0.3s, width 0.3s;
}

.sub-tab-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.sub-tab {
  padding: 8px 16px;
  background-color: #eee;
  border: none;
  cursor: pointer;
}

.sub-tab.active {
  background-color: #007bff;
  color: white;
}

.sub-sub-tab-content {
  margin-top: 20px;
  display: none;
}


.tab-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.tab-text {
  flex: 1 1 50%;
}

.tab-image {
  flex: 1 1 40%;
  text-align: center;
}

.tab-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .tab-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .tab-text, .tab-image {
    flex: 1 1 100%;
  }
}


  /* --- Variables --- */
:root {
  --kwin-teal: #0d8383;
  --kwin-dark-teal: #086a6a;
  --kwin-heading-color: #2c3e50;
  --kwin-text-color: #6c757d;
}

/* --- Section Styling --- */
.what-drives-us-section {
  background-color: #fff;
  padding: 5rem 3rem;
}

/* --- Title Styling --- */
.section-title-with-line {
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--kwin-teal);
}

.line-inline {
  flex-grow: 1;
  height: 2px;
  background-color: var(--kwin-teal);
  margin-left: 20px;
  border-radius: 1px;
  transform: translate(4px, 20px);
}

/* --- Heading and Description --- */
.drive-us-heading {
  color: var(--kwin-heading-color);
  font-size: 1.8rem;
  line-height: 1.4;
}

.drive-us-description {
  color: var(--kwin-text-color);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Learn More Link --- */
.learn-more-link {
  color: var(--kwin-teal);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.learn-more-link:hover {
  color: var(--kwin-dark-teal);
  text-decoration: underline;
}

.learn-more-link .bi {
  font-size: 1.2rem;
}

/* --- Feature Blocks --- */
.feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature-number {
  color: var(--kwin-teal);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  transform: translate(6px, -5px);
}

.feature-title {
  color: var(--kwin-teal);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.feature-description {
  font-size: 1.1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: calc(1.5em * 3);
  overflow: hidden;
}

/* --- Image Styling --- */
/* .what-drives-us-image {
  max-width: 90%;
  height: auto;
} */

.rytimg-custom {
  margin-top: -130px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
  .what-drives-us-section .col-lg-6 {
    padding-right: 15px !important;
  }

  .what-drives-us-image {
    margin-top: -70px;
    max-width: 80%;
  }

  .section-title-with-line {
    font-size: 1.8rem;
  }

  .drive-us-heading {
    font-size: 1.5rem;
  }
}

/* Large screens only: pull image up */
@media (min-width: 992px) {
  .col-lg-6.text-center .what-drives-us-image {
    margin-top: -30rem;
  }
}


/* Mobile screens: reset margin so it stacks properly */
@media (max-width: 991.98px) {
  .what‑drives‑us-image {
    margin-top: 0;
  }
}


@media (max-width: 767.98px) {
  .section-title-with-line {
    text-align: center;
    display: block;
  }

  .line-inline {
    left: 50%;
    transform: translateX(-50%);
  }

  .drive-us-heading,
  .drive-us-description,
  .learn-more-link {
    text-align: center;
  }

  .learn-more-link {
    justify-content: center;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .what-drives-us-image {
    max-width: 90%;
  }
}

/*product*/

.prod {
  width: 100%;
  background-color: #0097A7;
  padding: 40px 0;
  text-align: center;
  color: white;
  
}

.content-head {
  font-weight: bold;
  font-size: 45px;
  margin-bottom: 15px;
}

.content {
  font-weight: 500;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px auto;
  
}

/* Card styles  */
.card-title {
  text-align: center !important;
  display: block;
  width: 100%;
}
.custom-card1 {
  height: 500px;
  display: flex;
  flex-direction: column;
  border-radius: 4rem;
  overflow: hidden;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-left: -50px;
  margin-right: 35px;
}
.custom-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 4rem;
  align-items: center;
  justify-content: center;
  padding: 0!important;
  margin:0!important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.custom-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content:center;
  flex-grow: 1;
  padding: 15px;
  
}

.know-more-link {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.know-more-link:hover {
  text-decoration: underline;
  color: #003580;
}

.card-img-top {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.row.no-gap {
  margin-left: 0!important;
  margin-right: 0!important;
}

.row.no-gap > [class*='col-'] {
  padding-left:0!important;
  padding-right: 0!important;
}



/* Tablet and below (≤992px) */
@media (max-width: 992px) {
  .content-head {
    font-size: 36px;
  }
  .card-img-top {
    height: 130px;
  }
}

/* Mobile & small tablets (≤768px) */
@media (max-width: 768px) {
  .custom-card {
    margin-bottom: 30px;
    height: auto;
  }

  .card-img-top {
    height: 120px;
  }

  .content-head {
    font-size: 28px;
  }

  .content {
    font-size: 14px;
    max-width: 90%;
    margin: 0 auto 30px auto;
  }

  .card-col {
    padding-left: 5px;
    padding-right: 3px;
  }
}

/* Small mobile (≤576px) */
@media (max-width: 576px) {
  .custom-card {
    border-radius: 1rem;
    padding: 15px;
    margin: 0 auto !important; /* Fix typo: was "importat" */
    width: 90%;
  }

  .card-body {
    text-align: center;
    align-items: center;
  }

  .card-title,
  .card-text,
  .know-more-link {
    text-align: center;
  }

  .content-head {
    font-size: 24px;
  }

  .content {
    font-size: 14px;
    max-width: 90%;
  }
}


/*product*/
/*lms*/

/* -------BUILD LEARN GROW--------------*/
/* Main Heading */



.tab-bar-with-line {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.tab-bar {
  display: flex;
  justify-content: space-around;
  position: relative;
}

.tab-item {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  color: #333;
}

.sliding-underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: #007b8e;
  transition: left 0.3s ease, width 0.3s ease;
}
.tab-content {
      margin-top: 20px;
    }
    .nav-tabs .nav-link.active {
      background-color: #0d6efd;
      color: #fff;
    }
    .nav-pills .nav-link.active {
      background-color: #0dcaf0;
      color: #fff;
    }


.hero-heading {
  color: #007b8e;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  line-height: 1.2;
}

/* Underline */
.hero-underline {
  border-bottom: 3px solid #5c4033;
  display: inline-block;
  width: 60px;
  margin-left: 10px;
}

/* Subheading */
.hero-subheading {
  color: #0e0d0d;
  font-size: 22px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 15px;
  text-align: center;
}

/* Tab section */
.tab-section {
  margin-top: 40px;
  width: 100%;
}

.tab-bar-with-line {
  position: relative;
  display: inline-block;
}

.tab-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Tab styles */
.tab-item {
  cursor: pointer;
  font-size: 28px;
  color: #9bbdc2;
  padding: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tab-item.active {
  color: #007b8e;
  font-weight: bold;
}

/* Animated underline */
.sliding-underline {
  position: absolute;
  bottom: 0;
  height: 4px;
  background-color: #007b8e;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Buttons */
.buttons {
  margin-top: 30px;
  text-align: center;
}

.lms-buttons .btn {
  border-radius: 20px;
  padding: 10px 25px;
  font-weight: bold;
  font-size: 20px;
  min-width: 200px;
}

/* Outline info */
.lms-buttons .btn-outline-info {
  color: #007b8e;
  border-color: #007b8e;
}

.lms-buttons .btn-outline-info:hover {
  background-color: #007b8e;
  color: #fff;
}

/* Small screen */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 32px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .tab-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .tab-item {
    font-size: 22px;
  }

  .sliding-underline {
    display: none;
  }

  .lms-buttons .btn {
    min-width: 100%;
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.sub-tab-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Optional: adds space between buttons */
}

@media (max-width: 768px) {
  .sub-tab-bar {
    flex-direction: column;
    align-items: center;
  }

  .sub-tab {
    width: 100%;
    max-width: 300px; /* Optional: limits the maximum width */
    font-size: 16px;   /* Optional: adjusts font size for readability */
  }
}

/*lms*/

/*specailaztion*/

.specialization-bg {
  background-color: #0097A7; /* or your desired color */
  width: 100%;
}
.my-container{
  background-color: #0097A7;
 width: 100%;
}
.card {
  border: none;
  width: 100%;
  max-width:90%;
  margin:0 auto;
  height: 500px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 3rem;
}

.arrow-icon {
  font-size: 1.5rem;
  color: #00e5ff;
  margin-bottom: -30px !important;
    margin-top: 0rem !important;
  
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: start;
  
}

.card-title {
  font-size: 1rem;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .card-title {
    font-size: 0.95rem;
  }

  .card-body {
    align-items: center;
    text-align: center;
  }

  .icon img {
    width: 60px;
    height: 60px;
  }
}


/*services*/

.section-title {
      color: #2a8b84;
      font-size: 1.9rem;
      font-weight: bold;
    }
    .section-underline {
      display: inline-block;
      width: 80px;
      height: 4px;
      background-color: #2a8b84;
      margin-left: 15px;
      transform: translateY(9px);
    }
    .service-heading {
      color: #2a8b84;
      font-size: 1.9rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }
    .service-underline {
      display: block;
      width: 80px;
      height: 4px;
      background-color: #2a8b84;
      margin-bottom: 8px;
    }
    .key-feature-title {
      font-size: 1.2rem;
      color: #333;
      font-weight: bold;
    }
    .key-feature-list {
      list-style-type: none;
      padding-left: 0;
    }
    .key-feature-item {
      margin-bottom: 1rem;
    }
    .key-feature-item strong {
      color: #333;
      font-size: 1.1rem;
    }
    .key-feature-item p {
      color: grey;
      font-size: 18px;
      margin-bottom: 0;
    }
    
   .partner-logo {
  height: 100px; /* standardize container height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}

.partner-logo:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Individual logo sizes for clarity */
.brain-logo {
  max-width: 120px;
  height: auto;
}
.oscar-logo {
  max-width: 140px;
  height: auto;
}
.malnad-logo {
  max-width: 120px;
  height: auto;
}
.wakin-logo {
  max-width: 180px;
  height: auto;
}
    .partner-logo img {
  max-height: 100%;
  max-height: 80px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .partner-logo {
    height: 80px;
    padding: 8px;
  }

  .partner-logo img {
    max-height: 60px;
  }
}
.section-title span {
  display: block;
  margin: 0 auto 8px auto;
}


     .form-section {
            padding: 40px;
        }
        .text-section {
            padding: 40px;
        }
        .form-group label {
            font-weight: bold;
        }
        .shadow-custom {
          width: 3000!important;
box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.1), 5px 5px 5px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.1);
}

/*watsapp*/
.floats {
  position: fixed;
  bottom: 120px;
  right: 10px;
  /* left: 95%; */
  z-index: 999;
  
}
/* Media query for smaller screens (adjust left position) */
@media (max-width: 576px) {
.floats {
left: 80%;  /* Adjust to 80% for small screens */
}
}


.floats a {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease;
  
}

.floats a img {
  width: 100%;
  height: auto;
}

.floats a:hover {
  transform: scale(1.1);
}


/*watsapp*/

/*footer*/
  /* General Body & Typography */
.footer {
      background-color: #0195A3;
      color: white;
      padding: 60px 0 20px;
    }
    .footer h5 {
      font-weight: bold;
    }
    .footer p,
    .footer a {
      color: white;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
    }
    .footer a:hover {
      text-decoration: underline;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-weight: bold;
    }


    #goToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 1000;
    background-color: white;
    border: none;
    padding: 17px;
  
    border-radius: 30%;
    transform:translate(15px,20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }




     .scroll-btn {
      /* z-index: 10;
      width: 40px;
      height: 50px;
      font-size: 40px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); */
      height: 40px;  /* Adjust as needed */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 2.5rem; 
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 60px;
  /* light gray */
  border: none;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
   /* box-shadow: 4px 0 6px -2px rgba(0, 0, 0, 0.5);  */
   box-shadow: 8px 0 10px -6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
    }

    .scroll-btn:hover {
      /* background-color: #007bff; */
      /* color: white; */
    }

    #reviewScroll {
      scroll-behavior: smooth;
      overflow-x: auto;
      white-space: nowrap;
    }
    #reviewScroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

    .review-card {
      min-width: 250px;
      max-width: 300px;
      white-space: normal;
    }

    .review-card img {
      object-fit: cover;
    }

    .social-icons {
  display: flex;
  gap: 15px;
}

.social-icons .icon {
  width: 40px;
  height: 40px;
  background-color: white;
  color: #0195A3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

/* Hover effects */
.social-icons .icon:hover {
  background-color: #ffffff;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Optional: Custom colors on hover for branding */
.icon.whatsapp:hover {
  background-color: #25D366;
  color: white;
}
.icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}
.icon.facebook:hover {
  background-color: #3b5998;
  color: white;
}