/* Section Background */
/* Section Background */

.btn2{
  margin-top: 7px;
}
@media (max-width: 360px) {
  .btn2 {
      margin-top: -6px;
  }
  
}
@media (max-width: 768px) {
  .btn2 {
      margin-top: -6px;
  }
  
}

@media (max-width: 480px) {
  .btn2 {
      margin-top: -6px;
  }
}

/* login image  */
.login-img {
	width: 77%;
}

/*country code resize*/
.iti__country-list{
    max-width: 270px;
}

.home123{
  font-size: large;
  font-weight: 500;
}

/* scroll in courses start */
/* Scrollable main dropdown menu */
/* Scrollable custom main dropdown menu */
.custom-main-menu {
  max-height: 500px; /* Set the height limit */
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: auto; /* Prevent horizontal scrolling */
  width: 300px; /* Set the width */
  scrollbar-width: thin; /* Make scrollbar thinner */
  scrollbar-color: transparent transparent; /* Transparent scrollbar */
}

/* Scrollbar styling for Webkit-based browsers */
.custom-main-menu::-webkit-scrollbar {
  width: 8px; /* Width of scrollbar */
}

.custom-main-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1); /* Subtle color for thumb */
  border-radius: 5px; /* Rounded scrollbar thumb */
}

.custom-main-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2); /* Slightly darker on hover */
}

.custom-main-menu::-webkit-scrollbar-track {
  background: transparent; /* Transparent track */
}

/* Ensure custom submenus appear outside the scroll area */
.custom-main-menu .dropdown-menu {
  position: absolute;
  left: 100%; /* Align to the right of the parent menu */
  top: 0;
  margin-top: 0;
  visibility: hidden; /* Initially hide submenu */
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 1050;
}

/* Show submenu on hover */
.custom-main-menu > .custom-dropdown-submenu:hover > .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
  .custom-main-menu {
      max-height: 300px; /* Adjust for smaller devices */
      width: 250px; /* Narrower menu for smaller screens */
  }
}

/* scroll in courese end */


.feature-section {
  /* background-color: #eaf2fc;
  padding: 0px 0px;
  border-radius: 8px;
  width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

/* Icon Styling */
.feature-icon {
  font-size: 50px;
  color: #007bff;
  margin-bottom: 5px; /* Space below the icon */
}

/* Title Styling */
.feature-title {
  font-weight: bold;
  font-size: 1.25em;
  color: #333;
  margin-top: 15px; /* Space above the title */
  margin-bottom: 5px; /* Space below the title */
}

/* Description Styling */
.feature-description {
  color: #555;
  font-size: 0.95em;
  margin-top: 10px; /* Space above the description */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Card Styling */
/* .feature-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
} */
 /* Card Styling */
.feature-card {
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 10px 10px 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0px; 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-icon {
      font-size: 40px;
  }
  .feature-title {
      font-size: 1.1em;
  }
  .feature-description {
      font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .feature-icon {
      font-size: 35px;
  }
  .feature-title {
      font-size: 1em;
  }
  .feature-description {
      font-size: 0.85em;
  }
}





/* disclaimer */
/* Base styles */
.disclaimer-section1 {
  background-color: #4d0a91;
  padding: 15px; /* Equal padding for consistent spacing */
}

.disclaimer-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: left; /* Align title to the left */
  margin: 0 auto; /* Center the container horizontally */
  max-width: 90%; /* Ensures equal space on both sides */
}

.disclaimer-text {
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left; /* Align text to the left */
  margin: 0 auto; /* Center the container horizontally */
  max-width: 90%; /* Ensures equal space on both sides */
}

/* Large screens (desktops) */
@media (min-width: 992px) {
  .disclaimer-title,
  .disclaimer-text {
    max-width: 85%; /* More space for large screens */
  }
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .disclaimer-title,
  .disclaimer-text {
    max-width: 90%; /* Adjust space for medium screens */
  }
}

/* Small screens (phones) */
@media (max-width: 767px) {
  .disclaimer-title,
  .disclaimer-text {
    max-width: 95%; /* Adjust for smaller screens */
  }
}

/* Extra small screens (smaller phones) */
@media (max-width: 576px) {
  .disclaimer-title {
    font-size: 1rem;
  }

  .disclaimer-text {
    font-size: 0.8rem;
    max-width: 100%; /* Full width for very small screens */
  }
}

/* disclaimer end */


/* slider of company */



/* chnages in slider 2 */
/* Container styling */
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px; /* Optional: Adjust the maximum width */
  margin: 0 auto; /* Center the carousel */
}

.carousel-track {
  display: flex;
  gap: 40px; /* Space between items */
  animation: scroll 20s linear infinite; /* Infinite scrolling */
}

.carousel-item {
  flex: 0 0 auto;
  width: 100px; /* Set fixed width for each logo */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img {
  max-height: 80px; /* Control logo height */
  width: auto; /* Maintain aspect ratio */
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease-in-out;
}

.carousel-item img:hover {
  transform: scale(1.1); /* Zoom effect on hover */
  filter: brightness(1.2); /* Brightness increase */
}

/* Animation for infinite scrolling */
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .carousel-item img {
      max-height: 60px; /* Smaller size for mobile */
  }
}

@media (min-width: 768px) {
  .carousel-item img {
      max-height: 80px; /* Standard size for tablets */
  }
}

@media (min-width: 992px) {
  .carousel-item img {
      max-height: 100px; /* Larger size for desktop */
  }
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
  margin-top: -2px;
}

/* pop-up */
/* Overlay to darken the background when popup appears */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10;
}
/* Popup form styling start */
.popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
    border-radius: 8px;
    display: none;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}
/* Responsive form styling */
.popup-form form .form-control {
    margin-bottom: 15px;
}

/* Blinking effect for advertisement text */
.blink {
  animation: blinker 2s linear infinite;
  color: #d9534f; /* You can set any color you like */
  font-weight: bold;
}

@keyframes blinker {
  50% {
      opacity: 0;
  }
}

/* changes */
/* Adjust the popup form size and padding for mobile devices */
@media (max-width: 480px) {
  .popup-form {
      width: 90%; /* Take up most of the screen width */
      padding: 15px; /* Reduce padding */
      font-size: 14px; /* Adjust font size */
  }

  /* Adjust blinking text size */
  .blink {
      font-size: 12px;
  }

  /* Adjust form inputs and buttons */
  .popup-form form .form-control {
      font-size: 13px;
      padding: 8px; /* Reduce input padding */
  }

  .popup-form button {
      font-size: 14px;
      padding: 10px; /* Adjust button padding */
  }
}

/* Adjust for slightly larger screens (like tablets) */
@media (min-width: 481px) and (max-width: 768px) {
  .popup-form {
      width: 80%; /* Slightly larger width for tablets */
      padding: 20px;
  }

  .popup-form form .form-control {
      font-size: 14px;
      padding: 10px;
  }

  .popup-form button {
      font-size: 15px;
      padding: 12px;
  }
}

/* changes end */
/* country code */
.input-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.country-code {
  max-width: 100px;
  padding: 8px;
}

.form-control {
  width: 100%;
}

/* Adjust the form field widths to ensure consistent sizing */
.popup-form .form-control {
    width: 100%; /* Ensure full width */
    box-sizing: border-box; /* Include padding and border in the width calculation */
}

/* Adjust the phone input field to ensure it takes up the correct width */
#phone {
    width: 100%; /* Ensure the phone number input takes full width */
    padding-left: 40px; /* Add some padding for the country code */
    box-sizing: border-box;
}

/* Fix the country code dropdown size */
.iti {
    width: 100% !important; /* Ensure the intl-tel-input takes full width */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* For smaller screens, ensure the phone input doesn't exceed the form width */
    #phone {
        width: 100% !important;
        padding-left: 40px; /* Keep padding for country code */
    }
}

/* For larger screens like MacOS */
@media (min-width: 769px) {
    /* Ensure the phone input doesn't stretch too much */
    #phone {
        max-width: 100%;
    }
}

/* Popup form styling end */


/* chat bot */
/* Chat toggle button */
#chat-toggle {
  position: fixed;
  bottom: 55px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#chat-toggle i {
  font-size: 24px;
}

/* Chatbot styles */
#chatbot {
  width: 300px;
  height: 300px;
  position: fixed;
  bottom: 90px;
  right: 20px;
  background-color: #f1f1f1;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

#chat-header {
  background-color: #007bff;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#chat-header .avatar {
  font-size: 24px;
}

#chat-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #fff;
}

#chat-body .message {
  margin: 30px 0 0 0;
  display: flex;
}

#chat-body .bot {
  justify-content: flex-start;
}

#chat-body .user {
  justify-content: flex-end;
  margin-bottom: -44px;
  margin-top: -7px;
}

#chat-body .message i {
  font-size: 20px;
  margin: 0 10px;
  color: #007bff;
}

#chat-body .message p {
  /* background-color: #e0e0e0; */
  /* padding: 2px; */
  border-radius: 10px;
  max-width: 100%;
}

#chat-body .bot-name {
  font-size: 12px;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 2px;
}

#chat-input {
  display: flex;
  padding: 10px;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
}

#chat-input input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#chat-input button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
}

#chat-input button i {
  font-size: 16px;
}

#chat-input button:hover {
  background-color: #0056b3;
}

/* Chat Reminder Popup */

/*changes in form*/
#phone {
    padding-left: 133px;
    width: 144%;
}

#chat-reminder {
  position: fixed;
  bottom: 120px;
  right: 20px;
  width: 150px;
  background-color: #007bff;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1100;
  animation: fadeIn 0.5s;
}

.reminder-content {
  padding: 15px;
  text-align: center;
}

.reminder-content p {
  margin: 0;
  font-size: 16px;
}

.reminder-content button {
  margin-top: 1px;
  /* background-color: white; */
  color: #000000;
  border: none;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
}

.reminder-content button:hover {
  background-color: #f1f1f1;
}

/* Fade-in animation for the reminder */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Responsive design */
@media (max-width: 768px) {
  #chatbot {
    width: 75%;
    height: 40%;
    bottom: 5px;
    right: 2px;
  }
}

/* Close Button Styles */
.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ff0000;
}

.close-btn:focus {
  outline: none;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.bot-avatar {
  width: 32px;  /* Fixed width */
  height: 32px; /* Fixed height */
  border-radius: 50%; /* Circular avatar */
  margin-right: 10px; /* Space between the avatar and text */
}


/* chat bot end */

/* our service box rotate */
.service-bx {
  position: relative;
  overflow: hidden;
}

.action-box {
  position: relative;
  overflow: hidden;
}

.action-box img {
  width: 100%;
  transition: transform 0.4s ease;
}

.action-box:hover img {
  transform: translateY(-100%);
}

.overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.action-box:hover .overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.overlay-content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.overlay-content p {
  margin: 0;
  font-size: 14px;
}


/* logo changes start */
.menu-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
  /* padding: 10px; */
}

.logo-text {
  display: flex;
  align-items: center;
  /* font-size: 1.5em; */
  font-weight: bold;
  color: white;
  /* margin-left: 10px; */
}
.san{
  margin-left: 5px;
}
.Mark {
  background-color: #f35460;
  color: white;
  border-radius: 5px;
  padding: 2px 5px;
}

/* .logo-subtext {
  font-size: 0.8em; 
  color: #f35460;
  text-transform: uppercase;
  letter-spacing: 1px;
} */
.logo-subtext {
  font-size: 0.6em;
  color: #f35460;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -15px;
  margin-left: 50px; /* Adds some spacing between "Mark" and "learning" */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align text inside this div */
}

@media (max-width: 768px) {
  /* .logo-text {
    font-size: 2em;
  } */
  .logo-subtext {
    font-size: 0.6em;
  }
}

@media (max-width: 480px) {
  /* .logo-text {
    font-size: 1.5em;
  } */
  .logo-subtext {
    font-size: 0.6em;
  }
  /*changes in form*/
  #phone {
    padding-left: 193px;
    width: 120%;
  }
}




/* footer content privacy policy  */
.policy-header {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}
.policy-header h1 {
  font-size: 2.5rem;
  color: #333;
}
.policy-header p {
  color: #6c757d;
  margin-top: 15px;
}
.policy-section {
  margin: 30px 0;
}
.policy-section h3 {
  font-size: 1.5rem;
  color: #007bff;
}
.policy-section p {
  color: #555;
  text-align: justify;
}
.footer {
  background-color: #f8f9fa;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .policy-header h1 {
    font-size: 2rem;
  }
  .policy-header p {
    font-size: 0.9rem;
  }
  .policy-section h3 {
    font-size: 1.2rem;
  }
}
/* footer content end */


/* slider of company partners start  */
.clint-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.slider {
  overflow: hidden;
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.logos {
  display: flex;
  animation: scroll 10s linear infinite;
}

.logos img {
  flex: 0 0 20%; /* Ensures 5 images are visible at a time */
  max-width: 100%;
  margin: 0 10px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logos img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Adjustments for smaller devices */
@media (max-width: 768px) {
  .logos img {
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .logos img {
    margin: 0 3px;
  }
}

/* slider of company partners start  */



/* Home/slider/main page/ start */
/* Swiper Container */
.swiper-container {
  width: 100%;
  height: 50vh; /* Full viewport height */
  position: relative;
}

/* Each Slide */
.swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Slide Image */
.slide-image {
  width: 100%;
  /* height: 10%; */
  object-fit: cover;
  background-repeat: no-repeat;
}

/* Slide Text */
.slide-text {
  position: absolute;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 20px;
  border-radius: 8px;
  max-width: 80%; /* Limit text width */
}

.slide-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slide-text p {
  font-size: 1rem;
}

/* Pagination Bullet Styling */
.swiper-pagination-bullet {
  background: #fff;
}


/* flags  start*/
/* .header-lang-box1 {
  position: relative;
  display: inline-block;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 40px 10px 15px;
  background-color: #f8f9fa;
  font-size: 16px;
  cursor: pointer;
  background-image: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/svgs/solid/angle-down.svg');
  background-repeat: no-repeat;
  background-position: right 10px center;
} */

/* Add Flag Styles */
/* .header-lang-box1 option[data-icon] {
  padding-left: 30px;
} */

/* .header-lang-box1 option[data-icon="us-flag"] {
  background-image: url('https://upload.wikimedia.org/wikipedia/en/a/a4/Flag_of_the_United_States.svg');
} */

/* .header-lang-box1 option[data-icon="au-flag"] {
  background-image: url('https://upload.wikimedia.org/wikipedia/en/b/b9/Flag_of_Australia.svg');
} */

/* .header-lang-box1 option[data-icon] {
  background-repeat: no-repeat;
  background-position: left center;
} */
/* flags end */
