
@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&display=swap');
body {
  font-family: 'Fustat', sans-serif;
  color: #0c0c0c;
  background-color: #5b59c4;
}
.navbar-custom {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  position: relative;
}

.navbar-logo {
  width: 100px;
  height: auto;
}

.navbar-toggler {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none; /* Remove default focus outline */
  overflow: hidden; /* Hide any overflowing parts of the image */
}

.hamburger-img {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Ensure the image has a circular shape */
  object-fit: contain; /* Ensure the image fits within its container */
}

/* Fixing the black dotted border issue */
.navbar-toggler:focus {
  outline: none; /* Explicitly remove outline on focus */
  box-shadow: none; /* Remove any box-shadow that might appear */
}

.navbar-nav {
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: #000000;
  font-size: 0.9rem;
  font-weight: normal;
  display: flex;
  align-items: center;
}

/* High specificity rule to ensure consistent navigation across all pages */
.navbar-custom .navbar-nav .nav-item .nav-link {
  font-size: 0.9rem !important;
  font-weight: normal !important;
  color: #000000 !important;
  font-family: 'Poppins', sans-serif !important; /* Consistent font across all pages */
}

.register-btn {
  background-color: #5b59c4;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: none;
  outline: none;
  margin-left: 2rem;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .navbar-nav {
    display: none;
  }

  .collapse.show .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 999;
  }

  .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
}


@media (max-width: 768px) {
  .home-section {
    padding: 0; /* Remove padding */
    min-height: 50vh; /* Ensure section covers full viewport height */
  }

  .leap-into-world {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text to the left */
    text-align: left; /* Ensure text alignment is left */
    padding: 2rem; /* Adjust padding */
    background-color: #ffffff; /* Ensure white background */
    min-height: 100vh; /* Ensure full viewport height */
    box-sizing: border-box; /* Include padding in height calculation */
  }

  .leap-into-world h1 {
    font-size: 6rem; /* Much larger text size for mobile */
    margin: 0; /* Remove default margin */
  }

  .leap-into-world p {
    font-size: 1.2rem; /* Keep subtext size the same */
    margin: 0; /* Remove default margin */
  }

  .home-content {
    padding: 0 1rem; /* Add horizontal padding */
    top: 0; /* Reset vertical position */
    left: 0; /* Reset horizontal position */
    flex-direction: column;
  }

  

  .video-squares {
    display: none; /* Hide video squares on smaller screens */
  }
}




/* Home section styles */
.home-section {
  position: relative;
  background-color: #ffffff;
  padding: 3rem 0;
  text-align: left;
  padding-bottom: 5rem; /* Padding at the bottom */
  height: 100vh;
  overflow: hidden; /* Prevent overflow of child elements */
}

.home-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute; 
  top: 100px; /* Vertical positioning */
  left: 50px; /* Horizontal positioning */
}

.home-text {
  flex: 1;
  margin-right: 2rem;
}

.home-text h1 {
  font-family: 'Fustat', sans-serif;
  font-size: 4rem; /* Desktop font size */
  margin: 0;
  line-height: 1.2;
  color: #000000;
  text-align: left;
  font-weight: 900; /* Bolder text */
}

.home-text h1 .highlight {
  color: #5b59c4;
  transition: opacity 1s ease-out;
}

.home-subtext {
  font-size: 1.2rem; /* Increased size */
  margin-top: 1rem;
  color: #000000;
  text-align: left;
  font-weight: 800; /* Bolder subtext */
}

.home-image {
  flex: 1;
  text-align: right;
}

.home-image img {
  max-width: 100%;
  height: auto;
}

.semi-circle {
  position: absolute;
  width: 200px;
  height: 100px;
  background-color: #5b59c4; /* Updated color */
  border-radius: 100px 100px 0 0; /* Flipped semi-circle */
  top: -150px;
  left: -335px;
  z-index: 1;
}

.circle {
  position: absolute;
  width: 120px;
  height: 120px; /* Ensure it's a circle */
  background-color: #9AD3CC;
  border-radius: 50%; /* Make it a circle */
  top: 190px;
  left: -480px;
  z-index: 2;
}

/* Responsive design */
@media (max-width: 992px) {
  .home-content {
    flex-direction: column;
    text-align: center;
    left: 20px; /* Adjust for smaller screens */
  }

  .home-text {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .home-text h1 {
    font-size: 2.5rem; /* Adjust font size for smaller screens */
  }

  .home-subtext {
    font-size: 1rem;
  }

  .semi-circle {
    left: -150px; /* Adjust for smaller screens */
    top: -100px; /* Adjust vertical positioning */
    width: 150px; /* Adjust size for smaller screens */
    height: 75px; /* Adjust size for smaller screens */
  }

  .circle {
    left: -200px; /* Adjust for smaller screens */
    top: 100px; /* Adjust vertical positioning */
    width: 100px; /* Adjust size for smaller screens */
    height: 100px; /* Adjust size for smaller screens */
  }
}

@media (max-width: 768px) {
  .home-text h1 {
    font-size: 3.6rem; /* Smaller font size */
    text-align: left;
  }

  .home-subtext {
    font-size: 1.1rem;
    text-align: left;
  }

  .home-content {
    top: 0; /* Reset vertical position */
    left: 0; /* Reset horizontal position */
    flex-direction: column;
    padding: 0 1rem; /* Add horizontal padding */
  }

  .video-squares {
    display: none; /* Hide video squares on smaller screens */
  }

  .home-section {
    padding-bottom: 3rem; /* Adjust bottom padding */
    height: auto; /* Allow height to adjust */
  }

  .semi-circle {
    left: -100px; /* Adjust positioning for very small screens */
    top: -50px; /* Adjust vertical positioning */
    width: 100px; /* Adjust size for very small screens */
    height: 50px; /* Adjust size for very small screens */
  }

  .circle {
    left: -150px; /* Adjust positioning for very small screens */
    top: 50px; /* Adjust vertical positioning */
    width: 80px; /* Adjust size for very small screens */
    height: 80px; /* Adjust size for very small screens */
  }
}

/* Video squares styles */
.video-squares {
  position: relative; 
  display: flex;
  justify-content: flex-end; 
  gap: 35px; 
  margin-top: 3rem;
  padding-bottom: 0; 
}

.video-square-left, .video-square-right {
  position: absolute; 
  width: 350px; 
  height: 350px; 
  overflow: hidden;
  background-color: #ffffff; 
  z-index: 1; 
}

.video-square-left {
  border-radius: 0 0 0 100px; 
  top: -75px; 
  right: 150px;
}

.video-square-right {
  border-radius: 0 100px 0 0; 
  top: -220px; 
  right: -250px; 
}

.video-square-left video, .video-square-right video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure videos cover the square */
}

@media (max-width: 768px) {
  .video-squares {
    display: none; /* Hide video squares on smaller screens */
  }
}






.right-content {
  padding: 20px;
}

.icon {
  width: 24px; /* Adjust as needed */
  height: auto;
  margin-right: 10px;
}

.right-content ul {
  padding-left: 0;
  list-style: none;
  padding-top: 2rem;
}

.right-content li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 700; /* Bold text */
}

.box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px; /* Further reduced padding */
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: 700; /* Bold text */
  width: 80%; /* Further reduced size */
  margin: 0 auto 15px auto; /* Center the boxes and reduce space between them */
}

.box:last-child {
  margin-bottom: 0; /* Remove bottom margin from the last box */
}

.box-text {
  color: #5b59c4;
  display: block;
}

.box-text:first-child {
  font-size: 1.7rem; /* Reduced size */
  font-weight: 800; /* Thicker font */
  margin: 10px 0 4px 0; /* Added space above the number and reduced space between number and text */
}

.learning-title {
  font-size: 3rem;
  font-weight: 800; /* Thicker font */
  text-align: left; /* Left align the text */
}

.right-content .view-all {
  color: #5b59c4 !important;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .learning-title {
    font-size: 2rem;
  }

  .box {
    padding: 8px; /* Adjust padding */
  }

  .box-text:first-child {
    font-size: 1.5rem; /* Adjust font size */
  }
}

@media (max-width: 992px) {
  .learning-title {
    font-size: 1.8rem;
  }

  .right-content {
    padding: 15px;
  }

  .box {
    padding: 6px; /* Adjust padding */
  }

  .box-text:first-child {
    font-size: 1.3rem; /* Adjust font size */
  }
}

@media (max-width: 768px) {
  .learning-title {
    font-size: 1.5rem;
  }

  .right-content {
    padding: 10px;
  }

  .box {
    padding: 5px; /* Adjust padding */
    margin-bottom: 10px; /* Reduced space between rectangles */
  }

  .box-text:first-child {
    font-size: 1.2rem; /* Adjust font size */
  }
}

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

  .right-content {
    padding: 5px;
  }

  .box {
    width: 65%; /* Full width for small screens */
    margin-bottom: 8px; /* Reduced space between rectangles */
    padding: 5px; /* Adjust padding */
  }

  .box:last-child {
    margin-bottom: 0; /* Remove bottom margin from the last box */
  }

  .box-text:first-child {
    font-size: 1.1rem; /* Adjust font size */
    margin: 10px 0 2px 0; /* Added space above the number and reduced space between number and text */
  }

  /* Reduce space on left and right */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}



.view-all, .know-more {
  color: #5b59c4 !important;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.section-how-we-work {
  background-color: #5b59c4;
  color: white;
  padding: 85px 10rem 65px; /* Increased top padding */
}

.section-how-we-work h1 {
  font-family: Fustat, sans-serif; /* Ensure consistent font family */
  font-size: 2rem; /* Match the size of 'Who we are' */
  font-weight: 900; /* Make it much bolder */
  text-align: left; /* Align text to the left */
  margin: 0;
}

.section-how-we-work h2 {
  font-family: Fustat, sans-serif; /* Ensure consistent font family */
  font-size: 1.8rem;
  font-weight: 700; /* Bolder subheading */
  margin-top: 40px; /* Increased space above the heading */
}

.section-how-we-work p {
  font-family: Fustat, sans-serif; /* Ensure consistent font family */
  font-size: 1.2rem; /* Slightly larger for better readability */
  font-weight: 600; /* Bolder paragraph text */
  margin-top: 20px; /* Increased space between headings and paragraph */
}

.profile-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profile-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.profile-title {
  color: #5b59c4;
  font-size: 1.2rem;
  font-weight: 900; /* Bolder card titles */
  margin-bottom: 10px;
}

.profile-text {
  color: #5b59c4;
  font-size: 1rem;
  font-weight: 700; /* Bolder card subtext */
}

@media (max-width: 1200px) {
  .section-how-we-work {
    padding: 50px 2rem 30px; /* Adjusted top padding for smaller screens */
  }

  .section-how-we-work h1 {
    font-size: 1.8rem;
  }

  .section-how-we-work h2 {
    font-size: 1.6rem;
    margin-top: 30px; /* Adjust space above the heading */
  }

  .section-how-we-work p {
    font-size: 1rem;
    margin-top: 15px; /* Space between heading and paragraph */
  }

  .profile-title {
    font-size: 1.1rem;
  }

  .profile-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  .section-how-we-work {
    padding: 40px 2rem 30px; /* Adjusted top padding for smaller screens */
  }

  .section-how-we-work h1 {
    font-size: 1.6rem;
  }

  .section-how-we-work h2 {
    font-size: 1.4rem;
    margin-top: 20px; /* Adjust space above the heading */
  }

  .section-how-we-work p {
    font-size: 0.8rem;
    margin-top: 15px; /* Space between heading and paragraph */
  }

  .profile-title {
    font-size: 1rem;
  }

  .profile-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .section-how-we-work {
    padding: 30px 2rem 20px; /* Adjusted top padding for smaller screens */
  }

  .section-how-we-work h1 {
    font-size: 1.4rem;
  }

  .section-how-we-work h2 {
    font-size: 1.2rem;
    margin-top: 15px; /* Adjust space above the heading */
  }

  .section-how-we-work p {
    font-size: 0.7rem;
    margin-top: 15px; /* Space between heading and paragraph */
  }

  .profile-title {
    font-size: 0.9rem;
  }

  .profile-text {
    font-size: 0.7rem;
  }
}

@media (max-width: 576px) {
  .section-how-we-work {
    padding: 20px 2rem 10px; /* Adjusted top padding for smaller screens */
  }

  .section-how-we-work h1 {
    font-size: 1.8rem;
  }

  .section-how-we-work h2 {
    font-size: 1.3rem;
    padding-top: 1rem; /* Adjust space above the heading */
  }

  .section-how-we-work p {
    font-size: 0.9rem;
    margin-top: 12px; /* Space between heading and paragraph */
  }

  .profile-title {
    font-size: 1.2rem;
  }

  .profile-text {
    font-size: 0.6rem;
  }
}



.section-form {
  background-color: #f4f4f4;
  padding: 2rem 0;
}

.form-heading {
  color: #000000;
  font-weight: bold;
  margin-bottom: 1rem;
}

.form-subheading {
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.form-group label {
  color: #000000;
  font-weight: bold;
  font-size: 1rem;
}

.form-group input[type="radio"] {
  margin-right: 0.5rem;
}

.form-group.input[type="radio"] + label {
  font-weight: bold;
  color: #000000;
}

.form-group.input[type="radio"]:checked + label {
  color: #5b59c4;
}

.form-group.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-group.text-center label,
.form-group.text-center input[type="radio"] {
  margin: 0 10px;
  display: inline-block;
}

.form-group.text-center input[type="radio"] {
  margin-right: 5px;
}

.form-container {
  margin-top: 1.5rem;
}

.btn-submit {
  padding: 10px 20px;
  background-color: #5b59c4;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  width: auto;
  display: inline-block;
}

/* Media Queries for Mobile Customization */
@media (max-width: 1200px) {
  .form-heading {
    font-size: 1.8rem;
  }
  .form-subheading {
    font-size: 1rem;
  }
  .form-group label {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .form-heading {
    font-size: 1.5rem;
  }
  .form-subheading {
    font-size: 0.9rem;
  }
  .form-group label {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .form-heading {
    font-size: 1.3rem;
  }
  .form-subheading {
    font-size: 0.8rem;
  }
  .form-group label {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .form-heading {
    font-size: 1.5rem;
  }
  .form-subheading {
    font-size: 0.7rem;
  }
  .form-group label {
    font-size: 0.7rem;
  }
}
























.course-title {
  margin: 0;
}

.right-content {
  padding: 20px;
}

.right-content .view-all {
  color: #5b59c4;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .right-content h1 {
    font-size: 1.8rem;
  }

  .right-content p {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .right-content h1 {
    font-size: 1.5rem;
  }

  .right-content p {
    font-size: 0.9rem;
  }

  .right-content {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .main-container-2 {
    flex-direction: column;
    align-items: center;
  }

  .left-container-2 {
    min-height: auto;
  }

  .right-content h1 {
    font-size: 1.3rem;
  }

  .right-content p {
    font-size: 0.8rem;
  }

  .right-content {
    padding: 10px;
  }
}

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

  .right-content h1 {
    font-size: 1rem;
  }

  .right-content p {
    font-size: 0.8rem;
  }

  .right-content {
    padding: 5px;
  }
}









.course-title {
  font-family: Fustat, sans-serif; /* Ensure consistent font family */
  font-size: 28px; /* Match the size of the 'Who we are' title */
  font-weight: 900; /* Make it much bolder */
  text-align: left; /* Align text to the left */
  margin: 0;
}

.right-content {
  padding: 20px;
}

.right-content .view-all {
  color: #5b59c4;
  font-weight: bold;
  text-decoration: none;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-body {
  padding: 20px;
}

.card-body h5 {
  font-weight: 900; /* Bold title */
  margin: 0;
  color: #000;
  text-align: left;
}

.card-body p {
  font-weight: 700; /* Slightly bolder subtext */
  margin: 0;
  color: #000;
  text-align: left;
}

@media (max-width: 1200px) {
  .right-content h3 {
    font-size: 1.8rem;
  }

  .right-content p {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .right-content h3 {
    font-size: 1.5rem;
  }

  .right-content p {
    font-size: 0.9rem;
  }

  .right-content {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .section-courses {
    text-align: center;
  }

  .course-title {
    margin-bottom: 20px;
  }

  .right-content h3 {
    font-size: 1.3rem;
  }

  .right-content p {
    font-size: 0.8rem;
  }

  .right-content {
    padding: 10px;
  }
}

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

  .right-content h3 {
    font-size: 1rem;
    text-align: left;
  }

  .right-content p {
    font-size: 0.7rem;
    text-align: left;
  }

  .right-content {
    padding: 5px;
  }
}






.section-form {
  background-color: #ffffff;
  padding: 2rem 0;
}

.form-heading {
  color: #000000;
  font-weight: bold;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-container {
  margin-top: 1.5rem;
}

.btn-submit {
  padding: 10px 20px;
  background-color: #5b59c4;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  width: auto;
  display: inline-block;
}

@media (max-width: 1200px) {
  .form-heading {
      font-size: 1.8rem;
  }
  .form-group label {
      font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .form-heading {
      font-size: 1.5rem;
  }
  .form-group label {
      font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .form-heading {
      font-size: 1.3rem;
  }
  .form-group label {
      font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .form-heading {
      font-size: 1.2rem;
  }
  .form-group label {
      font-size: 0.7rem;
  }
}



.section-blog-custom {
  background-color: #5b59c4;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.blog-title-custom {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold; 
  text-align: center; 
}

.right-content-custom {
  padding: 20px;
  color: #ffffff;
}

.right-content-custom h3 {
  font-size: 1.8rem;
  font-weight: bold; /* Make the "Bits on what we think" text bolder */
}

.right-content-custom p {
  font-size: 1rem;
}

.right-content-custom .view-all-custom {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}

.right-content-custom .arrow-icon-custom {
  margin-left: 5px;
  vertical-align: middle;
  width: 0.8em; /* Adjust icon size */
  height: 0.8em; /* Adjust icon size */
}

.card-custom {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure all cards are the same height */
}

.image-section img {
  width: 100%;
  height: 200px; /* Set a fixed height to ensure all images are the same size */
  object-fit: cover; /* Ensures the image covers the area while maintaining aspect ratio */
}

.text-section {
  padding: 15px;
  background-color: #ffffff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-section h4 {
  color: #2B2A52;
  margin: 0 0 10px 0; /* Add bottom margin for spacing */
  text-decoration: underline;
  font-size: 1.2rem; /* Increase heading size */
}

.know-more-custom {
  display: inline-flex;
  align-items: center;
  font-weight: bold; /* Make the "Know More" text bolder */
  color: #5b59c4; /* Set default text color for the button */
}

.know-more-custom .arrow-icon-custom {
  margin-left: 5px;
  width: 0.8em; /* Adjust icon size to fit the button text */
  height: 0.8em; /* Adjust icon size to fit the button text */
}

.card-custom:not(:last-child) .text-section {
  margin-bottom: 1.5rem; /* Add space below card content */
}

.card-custom:not(:last-child) .know-more-custom {
  margin-bottom: 1rem; /* Add space between "Know More" buttons */
}

@media (max-width: 1200px) {
  .right-content-custom h3 {
    font-size: 1.6rem;
  }

  .right-content-custom p {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .right-content-custom h3 {
    font-size: 1.4rem;
  }

  .right-content-custom p {
    font-size: 0.9rem;
  }

  .right-content-custom {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .section-blog-custom .row {
    flex-direction: column;
    align-items: center;
    padding: 20px 2rem 10px;
  }

  .blog-title-custom {
    font-size: 1.5rem;
  }

  .right-content-custom h3 {
    font-size: 1.3rem;
  }

  .right-content-custom p {
    font-size: 0.8rem;
  }

  .right-content-custom {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .blog-title-custom {
    font-size: 1.8rem;
  }

  .right-content-custom h3 {
    font-size: 1.3rem;
    padding-top: 1rem;
  }

  .right-content-custom p {
    font-size: 0.9rem;
    margin-top: 12px;
  }
  .right-content-custom {
    padding: 5px;
  }
}





/*header section*/
.hero_area {
  height: 98vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #eae6f5;
}

.sub_page .hero_area {
  height: auto;
}

.header_section .container {
  padding: 0;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 7px 20px;
  margin: 10px 15px;
  color: #000000;
  text-align: center;
  border-radius: 35px;
  text-transform: uppercase;
  font-size: 0.9rem; /* Consistent with main nav */
  font-weight: normal; /* Consistent with main nav */
}

.custom_nav-container .navbar-nav .nav-item.active .nav-link, .custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  background-color: #4b208c;
  color: #ffffff;
}
/* Target the "Register Now" link specifically */
.custom_nav-container .navbar-nav .nav-item .nav-link[href="contact.html"] {
  background-color: #4b208c;
  color: #ffffff;
}

/* Remove hover effect for this specific link */
.custom_nav-container .navbar-nav .nav-item .nav-link[href="contact.html"]:hover {
  background-color: #4b208c; /* Keep background color same as default */
  color: #ffffff; /* Keep text color same as default */
}
a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand img {
  margin-right: 5px;
  width: 130px;
}

.navbar-brand span {
  font-size: 22px;
  font-weight: 700;
  color: #4b208c;
}

.custom_nav-container {
  z-index: 99999;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #190734;
  margin: 7px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  color: #3b3a3a;
  padding-bottom: 90px;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .detail_box {
  
  color: #000000;
}

.slider_section .detail_box h1 {
  
  font-weight: bold;
}

.slider_section .detail_box p {
  margin-top: 20px;
}

.slider_section .detail_box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 35px;
  margin-top: 35px;
}

.slider_section .detail_box a:hover {
  background-color: #5625a1;
}

.slider_section .img_container {
  border: 7px solid #7b57b2;
  border-radius: 100%;
  overflow: hidden;
}

.slider_section .img_container div#carouselExampleContarols {
  width: 100%;
  position: unset;
}

.slider_section .img_container .img-box img {
  width: 100%;
}

.slider_section .carousel-control-prev,
.slider_section .carousel-control-next {
  top: initial;
  left: initial;
  bottom: 5%;
  right: 10%;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 100%;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: center;
}

.slider_section .carousel-control-prev {
  background-image: url(../images/prev.png);
  background-color: #ffffff;
  -webkit-transform: translate(-85px, 30px);
          transform: translate(-85px, 30px);
}

.slider_section .carousel-control-next {
  background-image: url(../images/next.png);
  background-color: #4b208c;
  -webkit-transform: translate(-45px, 0);
          transform: translate(-45px, 0);
}

.service_section {
  text-align: center;
}

.service_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service_section .service_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 35px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.service_section .service_container .box {
  margin: 25px 1%;
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  padding: 35px 25px 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-top: 15px solid transparent;
  overflow: hidden;
  -webkit-transition: all .1s;
  transition: all .1s;
}

.service_section .service_container .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 125px;
}

.service_section .service_container .box .img-box img {
  width: 90px;
}

.service_section .service_container .box .detail-box {
  margin-top: 25px;
}

.service_section .service_container .box .detail-box h5 {
  color: #2e0e5f;
  font-weight: 600;
  position: relative;
}

.service_section .service_container .box:hover, .service_section .service_container .box.active {
  border-top: 15px solid #512a97;
}

.service_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 35px;
}

.service_section .btn-box a:hover {
  background-color: #5625a1;
}

.about_section {
  background-color: #f3f0f6;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about_section .img_container .img-box {
  border: 5px solid #7b57b2;
  border-radius: 100%;
  overflow: hidden;
}

.about_section .img_container .img-box.b1 {
  width: 70%;
}

.about_section .img_container .img-box.b2 {
  width: 50%;
  margin-left: auto;
  margin-top: -12%;
}

.about_section .img_container .img-box img {
  width: 100%;
}

.about_section .detail-box {
  margin-right: 15%;
}

.about_section .detail-box p {
  margin-top: 25px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 5px;
  margin: 25px 0 45px 0;
}

.about_section .detail-box a:hover {
  background-color: #5625a1;
}

.blog_section .heading_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blog_section .heading_container h2::before {
  background-color: #ffffff;
}

.blog_section .box {
  margin-top: 55px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.blog_section .box .img-box {
  position: relative;
}

.blog_section .box .img-box img {
  width: 100%;
}

.blog_section .box .detail-box {
  padding: 25px 25px 15px;
}

.blog_section .box .detail-box h5 {
  font-weight: bold;
}

.contact_section {
  position: relative;
}

.contact_section form {
  margin-top: 45px;
  padding-right: 35px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: transparent;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
}

.contact_section input::-webkit-input-placeholder {
  color: #737272;
}

.contact_section input:-ms-input-placeholder {
  color: #737272;
}

.contact_section input::-ms-input-placeholder {
  color: #737272;
}

.contact_section input::placeholder {
  color: #737272;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  border: none;
  display: inline-block;
  padding: 12px 45px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 0px;
  margin-top: 35px;
}

.contact_section button:hover {
  background-color: #5625a1;
}

.contact_section .map_container {
  height: 100%;
  min-height: 325px;
}

.contact_section .map_container .map-responsive {
  height: 100%;
}

.footer_bg {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: top;
}

/* info section */
.info_section {
  background-color: #190734;
  color: #ffffff;
}

.info_section h6 {
  font-weight: bold;
}

.info_section .info_contact {
  margin-top: 60px;
  margin-bottom: 45px;
}

.info_section .info_contact .col-md-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section .info_contact a {
  color: #ffffff;
}

.info_section .info_contact img {
  max-width: 100%;
  margin-right: 10px;
}

.info_section .info_form {
  margin: 0 auto;
  margin-bottom: 45px;
}

.info_section .info_form h4 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_form form input {
  background-color: #ffffff;
  border: none;
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  outline: none;
  color: #000000;
  min-height: 42.4px;
  padding-left: 15px;
}

.info_section .info_form form input ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input :-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  display: inline-block;
  padding: 10px 30px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 0;
  font-size: 15px;
  text-transform: uppercase;
}

.info_section .info_form form button:hover {
  background-color: #5625a1;
}

.info_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social img {
  width: 35px;
  margin-right: 8px;
}

/* end info section */
/* footer section*/
.footer_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.footer_section p {
  color: #222222;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.footer_section p a {
  color: #222222;
}
/*# sourceMappingURL=style.css.map */




.footer-section {
  background-color: #ffffff;
  padding: 2rem 0;
}

.footer-logo {
  max-width: 150px;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
}

.footer-divider {
  border: none;
  border-top: 1px solid #d3d3d3;
  margin: 1.5rem 0;
}

.footer-subheading {
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.footer-icon {
  vertical-align: middle;
  margin-right: 0.5rem;
  height: 2rem;
}

.social-icon {
  color: #5b59c4;
  margin-right: 1rem;
  text-decoration: none;
}

.social-icon:not(:last-child) {
  margin-right: 0.5rem;
}

@media (max-width: 992px) {
  .footer-section {
      text-align: center;
  }

  .footer-divider {
      margin: 1rem 0;
  }
}

@media (max-width: 768px) {
  .footer-section {
      text-align: left;
  }

  .footer-links li {
      margin-bottom: 0.5rem;
  }

  .footer-icon {
      display: inline-block;
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .footer-section {
      text-align: center;
  }

  .footer-divider {
      margin: 1rem 0;
  }

  .footer-links li {
      margin-bottom: 0.5rem;
  }

  .footer-icon {
      display: inline-block;
      margin-bottom: 0.5rem;
  }
}

.social-image {
  width: 100%; /* Adjust width as needed */
  max-width: 500px; /* Maximum width */
  height: auto; /* Maintain aspect ratio */
}










.instructors-section {
  background-color: white;
  text-align: center;
  padding: 20px 0;
  height: 300px; /* Adjust this value to control the height */
}

.instructors-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: black;
  margin: 0;
  padding:7rem;
}

@media (max-width: 768px) {
  .instructors-title {
    font-size: 1.5rem;
  }
}

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






/* New Grid Section */
.grid-section {
  background-color: #5b59c4;
  padding: 2rem 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-box {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  padding: 1rem;
}

.image-placeholder {
  width: 100%;
  padding-top: 75%; /* Maintain aspect ratio */
  background-color: #d3d3d3;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.box-content {
  text-align: left;
}

.box-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.box-description {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.know-more-text {
  color: #5b59c4;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem; /* Adjust the font-size as needed */
}

.know-more-icon {
  margin-left: 0.5rem;
  width: 1em; /* This ensures the icon scales with the text size */
  height: auto;
}

@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}









.music-instructor-section {
  background-color: #5b59c4;
  padding: 2rem 0;
}

.music-instructor-container {
  display: flex;
  flex-wrap: wrap;
}

.image-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
}

.unique-placeholder {
  width: 300px; /* Adjust width to control the size of the square */
  height: 300px; /* Same height as width to make it a square */
  background-color: #d3d3d3; /* Grey background for the placeholder */
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructor-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.instructor-heading {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
}


.instructor-description {
  color: #ffffff;
  font-size: 1rem;
  padding-bottom: 1rem;
}

.pointer-container {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.pointer-icon {
  width: 1em; /* Ensures the icon scales with the text size */
  height: auto;
  margin-right: 0.5rem;
}

.pointer-text {
  color: #ffffff;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .image-container {
    justify-content: center;
    padding-bottom: 2rem;
  }

  .text-container {
    text-align: center;
  }

  .pointer-container {
    justify-content: center;
  }
}





.card-img-container{
  height: 30vh;
  width: 100%;
  background-size: cover !important;
}



.instructor-details-section {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25vh;
}

.instructor-details-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900; 
  color: #000000;
  font-size: 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .instructor-details-heading {
    font-size: 2.5rem; 
  }
}

@media (max-width: 480px) {
  .instructor-details-heading {
    font-size: 2rem; 
  }
}



.getintouch-section {
  background-color: #5b59c4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25vh;
}

.getintouch-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900; 
  color: #ffffff;
  font-size: 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .getintouch-heading {
    font-size: 2.5rem; 
  }
}

@media (max-width: 480px) {
  .getintouch-heading {
    font-size: 2rem; 
  }
}


.contact-form-section {
  background-color: #f4f4f4;
  padding: 50px 0;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form .form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 900;
}

.contact-form .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form .form-group.col-md-6 {
  flex: 0 0 48%; /* Adjust the width of the fields */
}

.contact-form textarea.form-control.message-field {
  width: calc(100% + 20px); /* Combined width of First Name and Last Name fields */
  height: 100px;
  resize: vertical;
}

.submit-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.submit-btn {
  padding: 10px 20px;
  background-color: #5b59c4;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #4948a9;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form .form-group.col-md-6 {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .contact-form textarea.form-control.message-field {
    width: 100%;
  }
}



.apld-section {
  background-color: #5b59c4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 1rem; /* Increased padding on top and bottom */
}

.apld-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #ffffff;
  font-size: 3rem;
  text-align: left;
  margin: 0;
  padding-left: 4rem; /* Initial space on the left */
  width: 100%;
}

.apld-info {
  margin-top: 2rem; /* Space between heading and info section */
  padding-left: 4rem; /* Same padding as heading */
  padding-top: 1rem; /* Padding above the info section */
  padding-bottom: 1rem; /* Padding below the info section */
  width: 100%;
  background-color: #5b59c4; /* Match the section background color */
}

.apld-info-text {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 1rem;
  display: flex;
  gap: 2rem; /* Space between items */
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Space between icon and text */
}

.info-icon {
  width: 1.5rem; /* Size of the icon */
  height: 1.5rem;
}

@media (max-width: 768px) {
  .apld-heading {
    font-size: 2.5rem;
    padding-left: 1.5rem; /* Adjust padding for smaller screens */
  }

  .apld-info-text {
    font-size: 0.875rem; /* Slightly smaller font size */
    gap: 1.5rem; /* Adjust spacing for smaller screens */
  }

  .info-icon {
    width: 1.25rem; /* Adjust icon size for smaller screens */
    height: 1.25rem;
  }
}

@media (max-width: 480px) {
  .apld-heading {
    font-size: 2rem;
    padding-left: 1rem; /* Adjust padding for smallest screens */
  }

  .apld-info-text {
    font-size: 0.75rem; /* Further reduce font size */
    gap: 1rem; /* Adjust spacing for smallest screens */
  }

  .info-icon {
    width: 1rem; /* Adjust icon size for smallest screens */
    height: 1rem;
  }
}





.features-section {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
}

.features-container {
  background-color: #ffffff;
  padding: 2rem;
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding-left: 4rem; /* Initial space on the left */
  padding-right: 4rem; /* Initial space on the right */
}

.features-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.features-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  width: 48%; /* Each item takes up roughly half the row's width */
  box-sizing: border-box;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
}

.feature-text {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  font-size: 1rem;
}

.feature-separator {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 0.5rem 0;
}

.additional-text {
  margin-top: 1rem; /* Space between the white rectangle and the new text */
  padding: 2rem 4rem; /* Match padding with features container */
}

.additional-text p {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .features-heading {
    font-size: 1.25rem; /* Adjusted font size for tablets */
  }

  .feature-text {
    font-size: 0.875rem;
  }

  .feature-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .features-container {
    padding-left: 2rem; /* Adjusted padding for smaller screens */
    padding-right: 2rem;
  }

  .additional-text {
    padding-left: 2rem; /* Adjusted padding for smaller screens */
    padding-right: 2rem;
  }

  .feature-item {
    width: 100%; /* Make each feature item take up full width */
    padding: 0.5rem 0; /* Add some vertical padding */
  }
}

@media (max-width: 480px) {
  .features-heading {
    font-size: 1rem; /* Adjusted font size for mobile */
  }

  .feature-text {
    font-size: 0.75rem;
  }

  .feature-icon {
    width: 1rem;
    height: 1rem;
  }

  .features-container {
    padding-left: 1rem; /* Adjusted padding for mobile screens */
    padding-right: 1rem;
  }

  .additional-text {
    padding: 1rem; /* Adjusted padding for mobile screens */
  }
}


/* Styles for the chapter section */
.chapter-section {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chapter-dropdown {
  background-color: #ffffff;
  padding: 1rem 4rem;
  margin: 0 auto 1rem auto; /* Added margin-bottom for space between sections */
  width: 90%;
  max-width: 1600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.chapter-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #000000;
  font-size: 1.5rem;
}

.chapter-icon {
  font-size: 1.5rem;
  color: #000000;
}

.chapter-content {
  background-color: #ffffff;
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
  padding: 0 4rem 1rem 4rem;
  display: none; /* Hidden by default */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

@media (max-width: 768px) {
  .chapter-dropdown, .chapter-content {
    padding: 1rem 2rem; /* Adjusted padding for smaller screens */
  }

  .chapter-text {
    font-size: 1.25rem; /* Adjusted font size for tablets */
  }

  .chapter-icon {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .chapter-dropdown, .chapter-content {
    padding: 1rem 1rem; /* Adjusted padding for mobile screens */
  }

  .chapter-text {
    font-size: 1rem; /* Adjusted font size for mobile */
  }

  .chapter-icon {
    font-size: 1rem;
  }
}




.placement-preparation-section {
  background: linear-gradient(180deg, #5B59C4 0%, #9AD3CC 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px; /* Top and bottom padding for spacing */
  text-align: center;
}

.placement-preparation-content {
  max-width: 1200px; /* Limit the content width */
  width: 100%;
}


.placement-preparation-subtext {
  font-family: 'Fustat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  
}

@media (max-width: 768px) {
  .placement-preparation-subtext {
      font-size: 18px;
  }
}

@media (max-width: 480px) {
  .placement-preparation-subtext {
      font-size: 16px;
  }
}
.placement-preparation-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  
  color: #ffffff;
  text-align: center;
  margin: 0;
  
}

@media (max-width: 768px) {
  .placement-preparation-heading {
      font-size: 32px;
      line-height: 60px;
  }
}

@media (max-width: 480px) {
  .placement-preparation-heading {
      font-size: 30px;
      line-height: 40px;
  }
}





.courses-section {
  background-color: #f4f4f4;
  padding: 60px 13rem; 
}

.courses-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 600; 
  color: #000000;
  margin: 0;
}

.courses-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800; 
  color: #000000;
  margin: 0 0 20px 0;
}

.courses-description {
  font-family: 'Fustat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin: 0;
}


.course-card-wrapper {
  padding: 0 3rem;
}

.course-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem; 
  overflow: hidden; 
  flex-direction: row; 
}

.course-card-left {
  flex-shrink: 0;
}

.course-image {
  width: 170px; 
  height: 170px; 
  border-radius: 10px 0 0 0;
  object-fit: cover;
  max-width: 100%; 
  opacity: 1; 
}

.course-card-right {
  flex: 1;
}

.course-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700; 
  color: #000000;
  margin: 0 0 10px 0;
}

.rectangle-image {
  width: 50%;
  height: auto;
  margin: 10px 0;
}

.dotted-line {
  border-top: 1px dotted #000000;
  margin: 10px 0;
}

.course-card-description {
  font-family: 'Fustat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin: 10px 0;
}

.read-more {
  font-family: 'Fustat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5B59C4;
  text-decoration: none;
}


@media (max-width: 768px) {
  .courses-section {
    padding: 60px 1.5rem; 
  }

  .course-card-wrapper {
    padding: 0 1.5rem;
  }

  .course-card {
    padding: 20px;
    margin-bottom: 20px; 
    flex-direction: column;
    width: 100%; 
    box-sizing: border-box; 
  }

  .course-image {
    width: 100%; 
    height: auto; 
    max-width: 398px;
  }

  .rectangle-image {
    width: 100%; 
  }
}

@media (max-width: 480px) {
  .courses-section {
    padding: 60px 1rem; 
  }

  .course-card {
    padding: 20px;
    margin-bottom: 20px; 
    width: 100%; 
  }

  .course-image {
    width: 100%; 
    height: auto; 
    max-width: 398px; 
  }

  .rectangle-image {
    width: 100%; 
  }
  .courses-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000000;
    margin: 1rem;
    text-align: center;
  }

  .courses-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-top: 1rem;
  }
}










@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@400&display=swap'); 

.why-select-us-section {
  background-color: #5b59c4;
  color: white;
  padding: 65px 13rem;
}

/* Adjust padding for smaller screens */
@media(max-width: 600px) {
  .why-select-us-section {
    padding: 65px 0rem;
  }
}

.why-select-us-heading {
  font-family: Fustat, sans-serif;
  font-size: 24px;
  font-weight: bold;
  
  margin: 0;
}

.why-select-us-main-heading {
  font-family: Fustat, sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.why-select-us-subtext {
  font-family: Fustat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

/* White box styling */
.white-box {
  background: white;
  color: #5b59c4;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds subtle shadow */
  text-align: left; /* Ensure content is left-aligned */
}

/* Heading inside white box */
.white-box > h4 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Paragraph inside white box */
.white-box > p {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0;
}

/* Ensure padding and spacing is consistent */
.p-3 {
  padding: 1rem !important;
}

/* Media query to handle responsiveness of cards */
@media (max-width: 768px) {
  .why-select-us-main-heading {
    font-size: 1.3rem;
    margin-top: 1rem;
  }

  .why-select-us-heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .why-select-us-subtext {
    font-size: 1.1rem;
  }
}
/* Adjusting Why Select Us heading on small screens */
@media (max-width: 576px) {
  .why-select-us-heading {
    text-align: center;
    width: 100%; /* Ensures the heading takes full width */
  }
}



.testimonials-section {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.testimonials-heading {
  font-size: 24px;
  font-weight: 900;
}

.owl-carousel .item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin: 6px 10px;
  color: #333;
  text-align: center;
  width: 96%;
  max-width: 600px;
  height: 300px; /* Set a fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow-wrap: break-word;
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
  max-width: 100%;
  flex-grow: 1; /* Allow the quote to grow to fill available space */
}

.testimonial-name {
  font-size: 18px;
  font-weight: 900;
  color: #000;
  text-align: center;
  margin-top: 10px;
  overflow: hidden; /* Hide overflow content */
  text-overflow: ellipsis; /* Add ellipsis for overflow text */
}


.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-button {
  background: none;
  border: none;
  cursor: pointer;
}

.text-center button svg {
  fill: black;
}

@media (max-width: 767px) {
  .owl-carousel .item {
    padding: 15px; /* Further reduced padding for smaller screens */
    margin: 14px 5px; /* Reduced margin for smaller screens */
    width: 97%; /* Full width minus margin for smaller screens */
  }

  .carousel-controls {
    gap: 10px;
  }
}


@media (max-width: 767px) {
  /* Center-align "Testimonials" text */
  .testimonials-heading {
    text-align: center;
    font-size: 1.8rem; /* Set the desired font size */
    margin: 0 auto; /* Ensure it's centered */
    width: 100%; /* Make sure the element takes up full width */
  }

  /* Left-align "We Got It Done for Them" and the subtext, and adjust font size */
  .testimonials-main-heading {
    text-align: left;
    font-size: 1.3rem; /* Adjust as needed */
    padding-top: 20px;
    font-weight: 700;
  }

  .testimonials-subtext {
    text-align: left;
    font-size: 1.1rem; /* Adjust as needed */
    font-weight: 600;
  }

  /* Center-align text within each testimonial card */
  .owl-carousel .item {
    text-align: center; /* Center-align text within the testimonial cards */
  }
}





.tech-stack-section {
  background-color: #f4f4f4;
  padding: 65px 13rem;
}

.tech-stack-heading {
  font-family: Fustat, sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 48px;
  color: black;
  text-align: left;
  margin-bottom: 40px; 
}

.tech-stack-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px; 
  max-width: 1438px;
  margin: 0 auto;
  padding: 20px 0;
}

.tech-column {
  flex: 1;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tech-heading {
  font-family: Fustat, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: black;
  text-align: left;
  margin-bottom: 10px; 
  display: flex;
  align-items: center;
}

.heading-line {
  width: 100%;
  border: 1px solid black;
  margin-bottom: 10px; 
}

.tech-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px; 
  padding: 10px 0; 
  font-weight: bold; 
}

.tech-icon {
  width: 40px; 
  height: auto;
  margin-right: 10px;
}


@media (max-width: 768px) {
  .tech-stack-container {
      
      align-items: center;
      padding: 20px 146px;
  }

  .tech-column {
      min-width: 100%;
      margin-bottom: 40px;
      text-align: center;
  }

  .tech-heading {
      font-size: 18px;
  }

  .tech-icon {
      width: 35px;
  }
  .tech-stack-heading {
    text-align: center; /* Center the main heading */
  }
}


@media (max-width: 576px)
{
  .tech-stack-section 
  {
    padding: 65px 6px;
  }

  .h2.tech-stack-heading
  {
    font-size: 1.8rem;
  }

  .teck-stack-container
  {
    padding: 20px 146px;
  }
}







.associates-section {
  background-color: #5b59c4;
  color: white;
  padding: 65px 10rem;
}

.associates-heading {
  font-family: Fustat, sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.associates-subheading { /* New subheading style */
  font-family: Fustat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .associates-section {
      padding: 30px 2rem;
  }

  .associates-heading {
      font-size: 20px;
  }

  .associates-subheading {
      font-size: 16px;
  }
}



.recruitment-model-section {
  background-color: #f4f4f4; /* Light grey background */
  color: black; /* Black text color */
  padding: 65px 10rem;
  position: relative; /* Ensure proper positioning for the images */
}

.recruitment-model-heading {
  font-family: Fustat, sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.recruitment-model-main-heading {
  font-family: Fustat, sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.recruitment-model-subtext {
  font-family: Fustat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

/* Image container styling */
.image-container {
  margin-top: 30px; /* Adjust margin as needed to align with content */
  text-align: center; /* Center align image */
}

.image-container picture {
  display: block;
  width: 100%; /* Ensure the image container is responsive */
  max-width: 100%; /* Prevents the image from exceeding its container */
}

.image-container img {
  width: 100%; /* Make the image slightly larger */
  height: auto; /* Maintain aspect ratio */
  margin-left: -5%; /* Shift the image slightly to the left */
}

/* Responsive images sizes */
@media (max-width: 768px) {
  .image-container picture source[srcset*="desktop"] {
    display: none; /* Hide desktop image on small screens */
  }

  .image-container {
    text-align: center; /* Center the image container */
  }

  .image-container img {
    width: 100%; /* Stretch the image to fill the container width */
    max-width: calc(100% - 20px); /* Allow a margin of 10px on each side */
    height: auto; /* Maintain aspect ratio */
    display: inline-block; /* Ensure image respects text-align center */
    margin: 0; /* Remove any default margin */
  }
}



@media (max-width: 768px) {
  /* Recruitment section adjustments for phone screens */
  .recruitment-model-section {
    padding: 30px 2rem; /* Adjusted padding */
  }

  /* "Our Recruitment Model" styling */
  .recruitment-model-heading {
    font-size: 1.8rem; /* Font size 1.8rem */
    text-align: center; /* Center align text */
    padding-top: 15px;
    padding-bottom: 15px; /* Add padding at the bottom */
  }

  /* "We will be there for each step" styling */
  .recruitment-model-main-heading {
    font-size: 1.3rem; /* Font size 1.3rem */
    text-align: left; /* Left align text */
    padding-bottom: 10px; /* Add padding at the bottom */
  }

  /* Subtext styling */
  .recruitment-model-subtext {
    font-size: 1rem; /* Adjust the font size */
    font-weight: 600; /* Slightly bolder text */
    text-align: left; /* Left align text */
    padding-bottom: 10px; /* Add padding at the bottom */
  }

  /* Image container adjustments for phone screens */
  .image-container {
    text-align: center; /* Center align the image container */
    margin-top: 20px; /* Adjust margin to align better with content */
  }

  .image-container img {
    width: 100%; /* Ensure the image fills the container */
    max-width: calc(100% - 20px); /* Allow some margin on the sides */
    height: auto; /* Maintain aspect ratio */
    display: inline-block; /* Ensure image respects text-align center */
    margin: 0 auto; /* Center the image */
  }
}





.new-features-section {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
}

.new-features-container {
  background-color: #ffffff;
  padding: 2rem;
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding-left: 4rem; /* Initial space on the left */
  padding-right: 4rem; /* Initial space on the right */
}

.new-features-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #000000;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.new-feature-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.new-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
}

.new-feature-text {
  font-family: 'Poppins', sans-serif;
  font-weight: bold; /* Added bold font */
  color: #000000;
  font-size: 1rem;
}

.new-feature-separator {
  border: none;
  border-top: 1px solid #cccccc;
  margin: 0.5rem 0;
}

.new-additional-text {
  margin-top: 1rem; /* Space between the white rectangle and the new text */
  padding: 2rem 4rem; /* Match padding with features container */
}

.new-additional-text p {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .new-features-heading {
    font-size: 1.25rem; /* Adjusted font size for tablets */
  }

  .new-feature-text {
    font-size: 0.875rem;
  }

  .new-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .new-features-container {
    padding-left: 2rem; /* Adjusted padding for smaller screens */
    padding-right: 2rem;
  }

  .new-additional-text {
    padding-left: 2rem; /* Adjusted padding for smaller screens */
    padding-right: 2rem;
  }
}

@media (max-width: 480px) {
  .new-features-heading {
    font-size: 1rem; /* Adjusted font size for mobile */
  }

  .new-feature-text {
    font-size: 0.75rem;
  }

  .new-feature-icon {
    width: 1rem;
    height: 1rem;
  }

  .new-features-container {
    padding-left: 1rem; /* Adjusted padding for mobile screens */
    padding-right: 1rem;
  }

  .new-additional-text {
    padding: 1rem; /* Adjusted padding for mobile screens */
  }
}



.job-offers-section {
  background-color: var(--primary-bg-color, #5b59c4);
  color: var(--primary-text-color, white);
  padding: 65px var(--section-padding, 13rem);
}

/* Adjust padding for smaller screens */
@media(max-width: 600px) {
  .job-offers-section {
    padding: 65px var(--small-screen-padding, 0rem);
  }
}

.job-offers-heading {
  font-family: var(--heading-font-family, Fustat, sans-serif);
  font-size: var(--heading-font-size, 24px);
  font-weight: var(--heading-font-weight, bold);
  margin: 0;
}

.info-box {
  background: var(--box-bg-color, white);
  color: var(--box-text-color, #5b59c4);
  border-radius: var(--box-border-radius, 1rem);
  box-shadow: var(--box-shadow, 0 4px 8px rgba(0, 0, 0, 0.1));
  text-align: var(--box-text-align, left);
}

/* Job Title Styling */
.job-title {
  font-size: var(--job-title-font-size, 24px);
  font-weight: var(--job-title-font-weight, bold);
  margin-top: var(--job-title-margin-top, 10px);
  margin-bottom: var(--job-title-margin-bottom, 0px);
  color: var(--box-text-color, #5b59c4);
}

/* Job Subtitle Styling */
.job-subtitle {
  font-size: var(--job-subtitle-font-size, 18px);
  margin-bottom: var(--job-subtitle-margin-bottom, 10px);
  color: var(--box-text-color, #5b59c4);
}

/* Job Package and Skillset Styling */
.job-package, .job-skillset {
  font-size: var(--job-details-font-size, 16px);
  margin-bottom: var(--job-details-margin-bottom, 5px);
  color: var(--box-text-color, #5b59c4);
}

.job-package strong, .job-skillset strong {
  font-weight: bold;
}

/* Media query for responsive design */
@media (max-width: 768px) {
  .job-offers-heading {
    font-size: var(--small-heading-font-size, 1.8rem);
    text-align: var(--small-heading-text-align, center);
  }

  .job-title {
    font-size: var(--small-job-title-font-size, 20px);
  }

  .job-subtitle {
    font-size: var(--small-job-subtitle-font-size, 16px);
  }

  .job-package, .job-skillset {
    font-size: var(--small-job-details-font-size, 14px);
  }
}

/* Further adjustments for small screens */
@media (max-width: 576px) {
  .job-offers-heading {
    text-align: var(--small-screen-heading-align, center);
    width: var(--small-screen-heading-width, 100%);
  }
}

/* Footer Improvement Styles */
/* Footer Logo Link Styling */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* Improved Social Media Links */
.social-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-media-links .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border-radius: 25px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.social-media-links .social-link:hover {
  background-color: #5b59c4;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(91, 89, 196, 0.2);
}

.social-media-links .social-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.social-media-links .social-link span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Footer Bottom Improvements */
.footer-bottom {
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.footer-bottom .footer-link {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .footer-link:hover {
  color: #5b59c4;
  text-decoration: none;
}

/* Mobile Responsive for Footer */
@media (max-width: 768px) {
  .social-media-links {
    justify-content: center;
  }
  
  .social-media-links .social-link {
    padding: 0.4rem 0.8rem;
  }
  
  .social-media-links .social-link span {
    font-size: 0.8rem;
  }
}

