body{
  margin: 0;
  box-sizing: border-box;
  
    font-family: 'Be Vietnam Pro', sans-serif;
  
  
}
/* ------------------
nav bar 
------------------ */
  
  /* Existing styles */
  nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav .logo {
    display: flex;
    align-items: center;
  }

  nav .logo img {
    height: 80px;
    width: auto;
    margin-left: 60px;
    /* margin-right: 10px; */ /*commented by-I to move logo to left*/
    
  }

  nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    /* background-color: red; */
    justify-content: center;
  }

  nav ul li {
    margin-right: 4.6rem;
  }

  nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 95%;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 5px;
  }

  nav ul li a:hover {
    background-color: #f9f7f7cb;
  }

  .hamburger {
    display: none;
    cursor: pointer;
    
  }

  .hamburger .line {
    width: 25px;
    height: 1px;
    background-color: #1f1f1f;
    display: block;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;
  }

  .hamburger-active .line:nth-child(2) {
    width: 0;
  }

  .hamburger-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menubar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255);
    transition: max-height 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    z-index: -2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menubar.active {
    max-height: 100vh;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }

  .menubar ul {
    padding: 0;
    list-style: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .menubar.active ul {
    opacity: 1;
  }

  @media screen and (max-width: 790px) {
    .navbar-items {
      display: none;
    }
  }

  .menubar ul li {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  }

  .menubar ul li.show {
    opacity: 1;
    transform: translateY(0);
  }

  .menubar ul li a {
    text-decoration: none;
    color: #000;
    font-size: 95%;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
  }

  .menubar ul li a:hover {
    background-color: #f5f5f5;
  }

  @media screen and (min-width: 790px) {
    .navbar-items {
      display: flex;
       justify-content: right; /* justify and width are set by -I to align nav items ro right */
      width: 100%;
    }

    .menubar {
      display: none; /* Hide the mobile menu */
    }
  }



  @media screen and (max-width: 790px) {
    .hamburger {
      display: block;
    }

    .navbar-items {
      display: none; /* Hide the desktop menu */
    }

    .sign-in {
      display: none; /* Hide the Sign In button on smaller screens */
    }
  }

  @media screen and (min-width: 991px) {
    .sign-in {
      margin-left: auto; /* Move the Sign In button to the flex end */
    }
  }

  @media screen and (max-width: 990px) {
    .sign-in {
      display: none; /* Hide the Sign In button on smaller screens */
    }
  }

  /* Media query for iPad and Kindle */
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px),
    only screen and (min-device-width: 600px) and (max-device-width: 800px) {
    .navbar-nav {
      display: flex; /* Ensure desktop menu is displayed */
      flex-direction: row; /* Display items in a row */
      
    }

    .menubar {
      display: none; /* Hide the mobile menu */
    }

    .sign-in {
      display: block; /* Ensure Sign In button is visible */
      margin-left: auto; /* Move the Sign In button to the flex end */
    }
  }

.icon {
  color:#eb7145;
  margin-right: 10px;
}
/* Custom styles for the Slick Carousel */

/* Modify the previous/next arrows */
.slick-prev, .slick-next {
    background-color: #252725; /* Custom arrow color */
    border-radius: 50%;
    z-index: 10;
  }
  
  .slick-prev:hover, .slick-next:hover {
    background-color: #b6bcb6; /* Hover effect */
  }
  .custom-dots li {
    display: none; /* Hide extra dots */
}

.custom-dots li:nth-child(1),
.custom-dots li:nth-child(3),
.custom-dots li:nth-child(5),
.custom-dots li:nth-child(7) {
    display: inline-block; /* Show only specific dots */
}
  /* Premium Learning Experience */
  .custom-bg {
    background-color: #FFE4C4; /* Light orange background */
    padding: 40px 0;
}
.check-icon {
    color: #eb7145; /* Orange check icon */
    font-size: 24px;
}
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}


/* Access Study Materials for Your Course */
 /* Search Box */
 .search-box {
    background-color:#eb7145;
    padding: 15px;
    border-radius: 15px;
    color: white;
    
}
.search-box input, .search-box select {
    border-radius: 5px;
    border: none;
    padding: 8px;
}
.search-box button {
    background-color: #000;
    color: white;
    border-radius: 5px;
    padding: 8px 12px;
}




/* === Study Material Cards === */
.card-custom {
    border-radius: 10px;
    padding: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.label-badge {
    background-color: #e0e0e0;
    color: #333;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 5px;

}
.category-title {
    background-color: #444;
    color: white;
    font-weight: bold;
    padding: 8px;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.custom-height {
    min-height: 250px;  /* Adjust this value as needed */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* ------------------------------ section solution  ------------------------------------------ */

.section_our_solution .row {
    align-items: center;
  }
  
  .our_solution_category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .our_solution_category .solution_cards_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .solution_cards_box .solution_card {
    flex: 0 50%;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
      0 5px 15px 0 rgba(37, 44, 97, 0.15);
    border-radius: 15px;
    margin: 8px;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 265px;
    transition: 0.7s;
  }
  
  .solution_cards_box .solution_card:hover {
    background: #309df0;
    color: #fff;
    transform: scale(1.1);
    z-index: 9;
  }
  
  .solution_cards_box .solution_card:hover::before {
    background: rgb(85 108 214 / 10%);
  }
  
  .solution_cards_box .solution_card:hover .solu_title h3,
  .solution_cards_box .solution_card:hover .solu_description p {
    color: #fff;
  }
  
  .solution_cards_box .solution_card:before {
    content: "";
    position: absolute;
    background: rgb(85 108 214 / 5%);
    width: 170px;
    height: 500px;
    z-index: -1;
    transform: rotate(42deg);
    right: -56px;
    top: -23px;
    border-radius: 35px;
  }
  
  .solution_cards_box .solution_card:hover .solu_description button {
    background: #fff !important;
    color: #309df0;
  }
  
  .solution_card .so_top_icon {
  }
  
  .solution_card .solu_title h3 {
    color: #212121;
    font-size: 1.3rem;
    margin-top: 13px;
    margin-bottom: 13px;
  }
  
  .solution_card .solu_description p {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .solution_card .solu_description button {
    border: 0;
    border-radius: 15px;
    background: linear-gradient(
      140deg,
      #42c3ca 0%,
      #42c3ca 50%,
      #42c3cac7 75%
    ) !important;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 16px;
  }
  
  .our_solution_content h1 {
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  .our_solution_content p {
  }
  
  .hover_color_bubble {
    position: absolute;
    background: rgb(54 81 207 / 15%);
    width: 100rem;
    height: 100rem;
    left: 0;
    right: 0;
    z-index: -1;
    top: 16rem;
    border-radius: 50%;
    transform: rotate(-36deg);
    left: -18rem;
    transition: 0.7s;
  }
  
  .solution_cards_box .solution_card:hover .hover_color_bubble {
    top: 0rem;
  }
  
  .solution_cards_box .solution_card .so_top_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .solution_cards_box .solution_card .so_top_icon img {
    width: 40px;
    height: 50px;
    object-fit: contain;
  }
  
  /*start media query*/
  @media screen and (min-width: 320px) {
    .sol_card_top_3 {
      position: relative;
      top: 0;
    }
  
    .our_solution_category {
      width: 100%;
      margin: 0 auto;
    }
  
    .our_solution_category .solution_cards_box {
      flex: auto;
    }
  }
  @media only screen and (min-width: 768px) {
    .our_solution_category .solution_cards_box {
      flex: 1;
    }
  }
  @media only screen and (min-width: 1024px) {
    .sol_card_top_3 {
      position: relative;
      top: -3rem;
    }
    .our_solution_category {
      width: 50%;
      margin: 0 auto;
    }
  }
  



  /* Our courses  */

  .course-card {
    border-radius: 10px;
    padding: 20px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.course-image {
    height: 180px;
    background: #f5f5f5;
    border-radius: 8px;
    position: relative;
}
.course-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: orange;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.rating i {
    color: orange;
}
.join-btn {
    /* background: orange; */
    /* background-color: #F89C1C; */
    color: white;
    border-radius: 30px;
    font-size: 18px;
    padding: 10px 20px;
}

/* Our platforms  */
.hero-section {
  background: linear-gradient(135deg, #eb7145, #FFB84D);
  /* background-image: url("https://s3-alpha-sig.figma.com/img/f0d0/e606/2ad952c7ae3b1198f139811e89597528?Expires=1740960000&Key-Pair-Id=APKAQ4GOSFWCW27IBOMQ&Signature=YbLag4CuwI9yYNGvtY~ce7z81hpxWdMnxqcbIvIJwRSwQ~K5LVpbZvwMIz6rZdPVVe3Ok5ukmdtyrLFCuIk9nyGsFdFCeW13mCOZpqkO2c9Dj0BgXnquY55jGCmHIyK4xbhHErsvFFHgEVjOQUjG7D3s6RLj3TJA3HId~U7-ZiHNTiDnXRaWyz8r-x6fDoApURMjc6OmtYKUIXGCmOqhNrDycI2WoK1618aC7m3CjQSSFMTZZAt-skCYmxHjc-jcuj-92-IvhVecSwt3NwkJ0Gb9GwYbHgLoBTiFqAoI9-j3l79prnKDZGhB0BATXITzCIDdFlOAce-zQ-QDMw3xdw__");
 background-repeat: no-repeat; 
 object-fit: contain; */
  color: white;
  padding: 40px 20px;
  text-align: center;
  /* border-radius: 10px; */
  
}
.hero-section h2 {
  font-weight: bold;
}
.hero-section .btn {
  background: white;
  color: black;
  font-weight: bold;
  border-radius: 20px;
}
.services-section {
  margin-top: -50px;
}
.service-card {
  background: white;
  border-radius: 10px;
  /* padding: 20px; */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.service-card img {
  max-width: 100%;
  border-radius: 10px;
}
.service-card h6 {
  font-weight: bold;
  color: #FF9900;
}
.service-card p {
  font-size: 14px;
}
.learn-more {
  color: #FF9900;
  font-weight: bold;
}
/* --------------
footer
-------------- */
.footer {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  /* padding: 15px 10px; */
}

.footer-bottom {
  background-color: #eb7145;
  color: white;
  text-align: center;
  padding: 10px ;
}
/* -----------------
above nav
---------------- */
.navtop {
  background-color:#eb7145;
  color: white;
  text-align: center;
  padding: 15px ;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  /* background-color: white ; */
  color: black;
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: black;
  font-size: 2rem;
  margin-bottom: 1rem;
}


@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: black;
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.contact .info-item:hover .icon-box {
  background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}


