
/* about container section css */

/* Custom background with a gradient for the container */
.custom-background {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color)); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white; /* White text color */
  position: relative; /* Relative positioning to control child elements */
  overflow: hidden; /* Hide any overflow from the floating elements */
  height: 400px;
  padding: 20px !important;
  /* border: 5px solid blue;  */
  display: flex; /* Flexbox layout for centering content */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  flex-direction: column; /* Stack items vertically */
  text-align: center; /* Center align text */
}

/* Styling and animation for floating shapes */
.floating-shape {
  position: absolute; /* Absolute positioning for independent movement */
  z-index: 1; /* Controls stacking order */
  animation: float 6s infinite ease-in-out; /* Floating animation */
}

/* Common styles for all floating shapes */
.floating-shape-1,
.floating-shape-2,
.floating-shape-3 {
  background: rgba(255, 255, 255, 0.1); /* Transparent white background */
  border-radius: 50%; /* Circular shapes */
}

/* Individual shape styling with size, position, and animation */
.floating-shape-1 {
  width: 150px;
  height: 150px;
  top: 40px; /* Adjusted for better centering */
  left: 50px; /* Increased for balanced placement */
  animation-duration: 6s; /* Animation duration */
}

.floating-shape-2 {
  width: 100px;
  height: 100px;
  bottom: 60px; /* Adjusted for spacing */
  right: 60px; /* Aligned further to the edge */
  animation-duration: 8s; /* Longer animation duration */
  animation-delay: 2s; /* Delay before animation starts */
}

.floating-shape-3 {
  width: 120px;
  height: 120px;
  top: 80px; /* Increased top spacing */
  right: 100px; /* Adjusted for visual symmetry */
  animation-duration: 10s; /* Even longer animation duration */
  animation-delay: 4s; /* Longer delay before animation starts */
}

/* Styling for small floating dots */
.floating-dot {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3); /* Slightly more visible background */
  border-radius: 50%; /* Circular dots */
  animation: float 5s infinite ease-in-out; /* Continuous floating animation */
}

/* Positioning and animation details for individual dots */
.floating-dot-1 {
  top: 160px; /* Slightly moved for spacing */
  left: 100px; /* Adjusted for alignment */
  animation-duration: 7s; /* Duration of float animation */
  animation-delay: 1s; /* Start delay */
}

.floating-dot-2 {
  bottom: 100px; /* Increased spacing */
  right: 130px; /* Adjusted for symmetry */
  animation-duration: 9s; /* Slightly longer animation duration */
  animation-delay: 3s; /* Animation starts after a delay */
}

/* Floating play icon styling */
.floating-play-icon {
  position: absolute; /* Absolute positioning */
  font-size: 54px; /* Large icon size */
  color: rgba(255, 255, 255, 0.2); /* Transparent color */
  animation: float 12s infinite ease-in-out; /* Slow floating animation */
}

/* Individual floating play icons with unique position and animation */
.floating-play-icon-1 {
  bottom: 120px; /* Moved slightly up for better placement */
  left: 25%; /* Adjusted for centered layout */
  animation-duration: 12s; /* Slower animation */
  animation-delay: 2s; /* Delay before start */
}

.floating-play-icon-2 {
  bottom: 180px; /* Increased spacing for separation */
  left: 65%; /* Positioned to create balance */
  animation-duration: 14s; /* Longest animation duration */
  animation-delay: 4s; /* Delay before animation starts */
}

/* Keyframes defining the floating effect */
@keyframes float {
  0% {
    transform: translateY(0px); /* Starting position */
  }
  50% {
    transform: translateY(-20px); /* Move up */
  }
  100% {
    transform: translateY(0px); /* Return to start */
  }
}

/* Breadcrumb link styling */
.breadcrumb-item.active {
  color: var(--main-color); /* Link color (orange) */
}

/* Styling for breadcrumb arrow icons */
.custom-breadcrumb .fa-angles-right {
  margin: 0 8px; /* Space around arrow icon */
  color: white; /* Icon color */
}

/* Layout styling for the breadcrumb */
.custom-breadcrumb {
  display: flex;
  justify-content: center; /* Center breadcrumb items */
  align-items: start;
  list-style: none; /* Remove default list styling */
}

/* About - Us Section Css Here */

/* Styles for the first image */
.highlight-text {
  color: var(--primary-color);
  font-weight: bold;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.underline {
  text-decoration-color: #ff9900;
}

.icon-circl {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.icon-circl img {
  width: 50px;
  height: auto;
}

.badge-custom {
  background-color: var(--main-color);
  color: white;
  padding: 5px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.about-section-container {
  height: 85vh;
}

.about-section-row {
  height: auto !important;
}

/* Styles for the first image */
.aboutus-img-1 {
  position: absolute;
  top: 52%;
  left: 15px;
  transform: translateY(-50%);
}

.aboutus-img-1 img {
  width: 55%;
  height: auto;
}

/* Styling for the enrolled students section */
.enrolled-students {
  position: absolute;
  top: -150px;
  right: 90px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #ffa500;
  padding: 15px 10px;
  border-radius: 2px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}

/* Icon container styling */
.icon-container {
  background-color: #ffa500;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container img {
  width: 30px;
  height: auto;
}

/* Styles for the second image */
.aboutus-img-2 {
  position: absolute;
  top: -90px !important;
  right: 15px;
}

.aboutus-img-2 img {
  width: 200px;
  height: 300px;
}
@media (max-width: 768px) {
  /* Adjust the container height to be flexible for smaller screens */
  .about-section-container {
    height: auto;
    padding: 15px;
  }

  /* Adjust the layout for the left section to center-align */
  .about-us-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  /* Ensure image 1 takes full width */
  .aboutus-img-1 {
    position: relative;
    width: 80%;
    height: auto;
    margin: 0 auto;
    top: 0;
    left: 0;
    transform: translateY(0); /* Remove translation to avoid misalignment */
    border: none; /* Remove border for a cleaner look */
  }

  /* Scale down the image size for smaller screens */
  .aboutus-img-1 img {
    width: 100%;
    height: auto;
    border: none;
    
  }

  /* Adjust enrolled students section for better fit */
  .enrolled-students {
    position: absolute;
    top: 86px;
    right: 0px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #ffa500;
    padding: 15px 10px;
    border-radius: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
  }

  /* Ensure the icon container scales properly */
  .icon-container {
    width: 40px;
    height: 40px;
  }

  /* Adjust the text container font size for readability */
  .number {
    font-size: 1.8rem;
  }

  /* Adjust aboutus-img-2 for responsive alignment */
  .aboutus-img-2 {
    position: relative;
    width: 70%;
    margin: 15px auto;
    text-align: center;
  }

  .aboutus-img-2 img {
    width: 100%;
    height: auto;
  }

  /* Update right section to stack vertically */
  .about-right-section {
    padding: 20px;
    text-align: start;
  }

  /* Adjust the badge and title font size */
  .badge-custom {
    font-size: 0.8rem;
  }

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

  /* Adjust feature item alignment for vertical stacking */
  .feature-item {
    flex-direction: column;
    align-items: start;
  }

  .feature-item h5 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.9rem;
    text-align: start;
  }
}


/* Counter Section Here */
.counter-section {
  background-color: var(--primary-color); /* Updated color to match the design */
  color: white;
  padding: 30px 0;
  text-align: center;
  color: var(--gray-text); /*
  border-radius: 10px; /* Rounded edges for smooth appearance */
}

.counter-box {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  text-align: center;
}

.counter-icon {
  background-color: rgba(255, 255, 255, 0.1); /* Background for icons */
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.counter-value {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.counter-description {
  font-size: 1rem;
}

/* professional Insturtor section  */
/* Styles for the profile card */
.profile-card {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 350px;
}

/* Profile info box styles */
.profile-info {
  position: relative;
  background-color: rgba(255, 255, 255, 1);
  padding: 10px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

/* Initial state for the share icon */
.share-icon {
  position: absolute;
  top: -20px;
  right: -10px;
  background-color: orange;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hover effect to show the share icon */
.profile-card:hover .share-icon,
.profile-info:hover .share-icon {
  opacity: 1;
  transform: scale(1);
}

/* Styling for the badge displayed at the top of the page */
.badge {
  background-color: var(--main-color);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.9rem;
}

/* Highlighted text style used in the heading */
.highlight-text {
  color: var(--primary-color);
}

/* Learning process section css */

.Learning-container {
  background-color: ghostwhite;
}

.step-card {
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  margin: 10px 0;
  position: relative;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 0 auto 10px auto; */
  position: absolute;
  top: 10px;
  right: 100px;
  box-shadow: var(--primary-color) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, var(--primary-color) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.step-title {
  font-weight: bold;
  margin-top: 15px;
  font-size: 18px;
}

.step-description {
  color: #555;
  font-size: 14px;
}

.icon-learn {
  width: 120px;
  height: 120px;
  padding: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.785);
  /* border: 3px solid; */
  font-size: 34px;
  color: #f39c12;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
/* Adjustments for smaller screen sizes */
/* Adjustments for smaller screen sizes */
@media (max-width: 576px) {
  .step-number {
    top: 15px;
    right: 170px;
    width: 35px;
    height: 35px;
  }
  .icon {
    width: 80px;
    height: 80px;
    font-size: 45px;
  }
}

/* Review Section here */
.testimonial-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  background-color: #f7b400;
  color: #fff;
  border-radius: 2px;
}
.testimonial-text {
  font-size: 16px;
  margin-top: 10px;
  color: #333;
}
.testimonial-author {
  font-weight: bold;
}
.testimonial-role {
  color: #888;
}
.rating {
  color: #f7b400;
}
.testimonial-img img {
  width: 100px;
  height: 100%;
}


/* <!-- General Questions --> */

/* Accordion item styling */
.accordion-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px; /* Add space below each accordion item */
  border-radius: 8px; /* Ensures each item has rounded corners */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  border: none !important;

}

/* Accordion header styling */
.accordion-header {
  background-color: #fff;
  color: black;
  cursor: pointer;
  padding: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  border-radius: 8px;
  margin: 10px;
  user-select: none;
}

/* Icon styling inside the accordion header */
.accordion-header .icon {
  background-color: var(--main-color);
  margin-right: 10px;
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 3px;
}

.accordion-header.active .icon {
  background-color: var(--primary-color);
}

/* Accordion body styling */
.accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease; /* Smooth transition for height */
  padding: 0 15px;
  border-radius: 0 0 8px 8px;
}

/* Accordion body content styling */
.accordion-body-content {
  padding: 15px;
  color: #333;
}


/* <!-- Newsletters Subcribe --> */
@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

.subscribe {
  background-color: var(--primary-color);
  padding: 50px 0; /* Adds some padding to the section */
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 1px,
    transparent 1px
  );
  background-size: 20px 20px; /* Adjust the size of the dot pattern */
  animation: moveBackground 10s linear infinite; /* Adds animation to the background */
}

.subscribe-text {
  background-color: #fff;
  color: var(--main-color);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.9rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto; /* Centers the text block */
}

.subscribe-form {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.subscribe-form .form-control {
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.subscribe-form .btn-custom {
  background-color: var(--main-color); /* Button color */
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.subscribe-form .btn-custom:hover {
  background-color: #ff7f0f; /* Darker shade on hover */
}