/* General Reset */
:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw; /* Prevents overflow from hidden elements */
  position: relative;
}

.navbar-container {
  display: flex;
  position: relative;
  width: 100%;
  height: 81px; /* Adjust as needed */
  background: #F1F5F9;
  z-index: 5;
}  

.navbar-frame {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 81px;
}

.logo-style1 {

  position: absolute;
  top: -10%; /* Moves half of the logo down */
  left: 123px; /* Adjust as needed */
  transform: translateY(50%); /* Ensures smooth overlap */
  z-index: 10; /* Keeps logo above content */
  width: 114px; /* Adjust logo size as needed */
  height: 113px;
  /* filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.2));  */
}

img {
  /* width: 114px; */
  width: 114px;
  height: 113px;
  border-radius: 23px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2); 
  width: 100%;
}

.nav-button {
  position: absolute;
  width: 771px;
  height: 42px;
  top: 20.68px;
  bottom: 18.32px;
  left: 670px;
  z-index: 7;
}

.cta-button {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 83.92%;
  padding: 9px 20px 9px 20px;
  background: #032a52;
  z-index: 8;
  border-radius: 5px;
  width: 124px;
  height: 42px;

}

.apply-now {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #ffffff;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  z-index: 9;
  text-decoration: none;
}

.nav-button1 {
  position: absolute;
  width: 80.03%;
  height: 64.04%;
  top: 17.96%;
  left: 0;
  z-index: 10;
}

.navbar-buttons {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 45px;
  position: absolute;
  width: 617px;
  height: 24px;
  top: 0;
  left: 0;
  z-index: 14;
}

.home {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #424352;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 15;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 180px;
}

.nav-about-us {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #424352;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 16;
  text-decoration: none;
}

.courses {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #424352;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 17;
  text-decoration: none;
}

.events {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #424352;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 18;
  text-decoration: none;
}

.resources {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #424352;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 19;
  text-decoration: none;
}

.contact {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 24px;
  color: #424352;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.5px;
  z-index: 20;
  text-decoration: none;
}

/* Hamburger Button Style */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  text-decoration: none;
}

.hamburger span {
  height: 5px;
  width: 35px;
  background: #032a52;
  margin: 4px 0;
  border-radius: 3px;
  text-decoration: none;
}

/* Mobile styles for screens ≤ 768px */
@media screen and (max-width: 768px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-frame {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: auto;
    position: static;
  }

  .logo-style1 {
    position: absolute;
    top: 30%;
    left: 40px; 
    transform: translateY(50%); 
    z-index: 10;
    width: 40px;
    height: 40px;
  }

  .cta-button {
    position: relative;
    top: 0;
    left: 0;
    margin-left: 200px;
    padding: 6px 12px;
    width: 100px;
    height: auto;
  }

  .hamburger {
    display: flex;
    font-size: 24px;
  }

  .nav-button {
    position: static;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
  }

  .nav-button1 {
    display: none;
    width: 70%;
    position: relative;
    height: auto;
    top: 20px;
    left: 130px;
    background-color: #f8fafc;
    padding: 10px 20px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
    text-decoration: none;
  }

  .navbar-buttons {
    flex-direction: column;
    gap: 15px;
    position: relative;
    width: 100%;
    height: auto;
    text-decoration: none;
  }

  .navbar-buttons a {
    font-size: 16px;
    padding: 8px 0;
    color: #032a52;
    text-decoration: none;
  }

  /* Remove left margin on Home for mobile */
  .home {
    margin-left: 0;
  }
}

/* Extra small devices ≤ 480px */
@media screen and (max-width: 480px) {
  .logo-style1 {
    width: 60px;
    height: 60px;
  }

  .apply-now {
    font-size: 14px;
  }

  .nav-button1 {
    width: 65%;
  }

  .cta-button {
    padding: 6px 10px;
    margin-left: 150px;
  }

  .hamburger span {
    width: 20px;
  }
}

/* Show menu on hamburger click (JavaScript required) */
.nav-button1.active {
  display: block;
  text-decoration: none;
}

/* -------------------------------------- Enroll Now Button page ------------------------------------------- */

/* Base Styles: Desktop */
.enrollnow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background-color: #f5f5f5;
  gap: 20px;
  padding: 40px;
}

.enrollnow-box {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);;
}

.enrollnow-container button {
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 300px;
  max-width: 100%;
  transition: background-color 0.3s ease;
}

/* Degree Course Button */
.degree-button {
  background-color: #032a52;
  color: white;
  font-family: 'Inter', sans-serif !important;
  font-size: 30px;
  font-weight: 500;
}

.degree-style, .short-style {
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 600;
}


/* Short Term Course Button */
.shortterm-button {
  background-color: #032a52;
  color: white;
  font-family: 'Inter', sans-serif !important;
  font-size: 30px;
  font-weight: 500;
}

/* Responsive: Tablet View */
@media screen and (max-width: 768px) {
  .enrollnow-container {
    padding: 30px 20px;
    min-height: 60vh;
    gap: 16px;
  }

  .enrollnow-container button {
    width: 90%;
    font-size: 15px;
  }
}

/* Responsive: Mobile View */
@media screen and (max-width: 480px) {
  .enrollnow-container {
    min-height: 40vh;
    padding: 20px 10px;
    gap: 14px;
  }

  .enrollnow-container button {
    width: 100%;
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ----------------------------------------- landing page section start ------------------------------------------------ */

.hero-container {
  position: relative;
  margin-top: -50px; /* Pulls content up so it overlaps */
  z-index: 1; /* Keeps it behind the logo */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%; /* Full viewport width */
  height: 700px;
  margin: 0 auto;
  padding-top: 0;
  overflow: hidden;
  margin-bottom: 69px;
  /* gap: 69px; */
}

.main-frame {
  position: relative;
  margin-top: -50px; /* Pulls content up so it overlaps */
  z-index: 1; /* Keeps it behind the logo */
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%; /* Full viewport width */
  height: 700px;
  overflow: hidden;
}

.group {
  position: relative;
  width: 100vw;
  height: 650px;
}

.frame-1 {
  position: relative;
  width: 305px;
  height: 23.768px;
  margin: 157.617px 0 0 73.234px;
  z-index: 6;
  overflow: hidden;
}

.img-hero1 {
  position: absolute;
  width: 100%; /* Full width */
  height: 700px; /* Maintain aspect ratio */
  top: 0;
  left: 0;
  object-fit: cover; /* Ensure it covers the container */
  z-index: 4;
  border-radius: 0px;
}

.img-hero2 {
  position: absolute;
  width: 100%; 
  height: 700px; 
  top: 0;
  left: 0;
  object-fit: cover; 
  z-index: 4;
  border-radius: 0px;
}

.bg-style1 {
  position: absolute;
  width: 1279.999px;
  height: 618px;
  top: 41.899px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 21;
}

.bg-style2 {
  position: absolute;
  width: 446.91px;
  height: 537.316px;
  top: 0;
  left: 0;
  z-index: 43;
}

.bg-style3 {
  position: relative;
  width: 446.91px;
  height: 466px;
  margin: 0 0 0 0;
  z-index: 48;
  overflow: visible auto;
}

.bg-style4 {
  position: relative;
  width: 233.643px;
  /* height: 178px; */
  margin-top: 90px;
  z-index: 61;
  overflow: visible auto;
}

.group-7 {
  color: #032a52;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 14px;
  font-weight: 500;
  padding: 5px;
  background: rgba(255, 255, 255, 0.003);
  border-radius: 5px;
  line-height: 25px;
  text-align: left;
  /* margin-right: 180px; */
  white-space: nowrap;
  letter-spacing: 0.14px;
  z-index: 64;
  text-align: center;
  /* overflow: visible auto; */
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.558) 0%, rgba(255, 255, 255, 0.612) 100%), rgba(255, 255, 255, 0.02);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

.group-9 {
  position: relative;
  width: 415.691px;
  /* height: 194.375px; */
  height: auto;
  margin: 19.625px 0 0 31.219px;
  font-size: 0px;
  z-index: 49;
  overflow: visible auto;
}

.for-learners-dream-big {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 364.563px;
  height: 94.084px;
  margin: 0 0 0 0;
  color: #032a52;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 42px;
  font-weight: 700;
  line-height: 47.5px;
  text-align: left;
  z-index: 50;
  margin-bottom: 20px;
}

.empower-ambitious-minds {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 414.917px;
  /* height: 96px; */
  height: auto;
  margin: 4.291px 0 0 0.77px;
  color: #232323;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  z-index: 51;
}

.group-a {
  position: relative;
  width: 302.124px;
  height: 46px;
  margin: 28px 0 0 25.223px;
  z-index: 52;
  overflow: visible auto;
}

.group-b {
  position: relative;
  width: 302.124px;
  height: 23.768px;
  margin: 0 0 0 0;
  z-index: 53;
}

.group-c {
  position: absolute;
  width: 302.124px;
  height: 23.768px;
  top: 0;
  left: 0;
  z-index: 54;
}

.live-interactive-classes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  position: absolute;
  width: 302.124px;
  height: 23.768px;
  top: 0;
  left:0;
  color: #032a52;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 28px;
  font-weight: 600;
  line-height: 23.768px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.14px;
  z-index: 55;
  font-style: normal;
}

.text-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.text-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}

.text-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.pagination-dots {
  text-align: left;
  margin-top: -50px;
  margin-left: 30px;
  margin-bottom: 30px;
  justify-content: space-between;
}

.dot {
  display: inline-block;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #FFF;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  width: 40px;
  height: 6px;
  border-radius: 4px;
  background-color: #f1f0f0; /* You can change to brand color */
}

.download-btn-hero-container {
  display: flex;
  margin-left: 33px;
  /* margin-bottom: 129px; */
  text-decoration: none;
}

/* Button Styling */
.download-btn-hero {
  background-color: #ff4b5c; /* Stylish red */
  color: white;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  padding: 16.211px 17.594px 15.316px 15.766px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  align-items: center; 
  gap: 8px; /* Space between icon and text */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.broucher-link {
  text-decoration: none;
}

/* Hover Effect */
.download-btn-hero:hover {
  background-color: #d43f4f;
  transform: scale(1.05); /* Slight zoom effect */
}

/* Click Effect */
.download-btn-hero:active {
  transform: scale(0.95); /* Slight shrink on click */
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 36px;
  margin-bottom: 46px;
  margin-top: 20px;
  position: absolute;
  width: 432.038px;
  height: 539px;
  left: 870.961px;
  padding: 32px 30px 32px 30px;
  background: #ffffff;
  z-index: 22;
  border-radius: 10px;
  box-shadow: 1px 5px 50px 0 rgba(84, 99, 122, 0.1);
}

.contact-form-frame13 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  /* gap: 15px; */
  position: relative;
  width: 311px;
  z-index: 23;
  overflow: hidden;
  padding-top: 32px;
}

.here-to-help {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 34px;
  color: #252525;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 33px;
  font-weight: 700;
  line-height: 33.6px;
  text-align: left;
  white-space: nowrap;
  z-index: 24;
  margin-bottom: 15px;
}

.contact-query {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 25px;
  color: rgba(37, 37, 37, 0.7);
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
  white-space: nowrap;
  z-index: 25;
}

.name-input, .email-input, .contact-input, .course-input {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  width: 350px;
  margin-bottom: 36px;
  padding: 12.5px 0 12.5px 12px;
  background: #ffffff;
  border: 1px solid #e6e9fc;
  z-index: 26;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: content-box;
}

.alert.messages {
  padding: 10px;
  background-color: #F1F5F9;
  border: 1px solid #d6e9c6;
  color: #F3042C;
  border-radius: 10px;
  margin: 0px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 1100px;
  text-align: center;
  align-items: center;
  font-size: 20px;
  margin-left: 250px;
  font-weight: 500;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
}

/* Tablet (max-width: 768px) */
@media screen and (max-width: 768px) {
  .alert.messages {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    padding: 8px;
    margin-top: 30px;
  }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .alert.messages {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    padding: 6px;
    margin-top: 30px;
  }
}

.contact-form-container button {
  /* flex-shrink: 0;
  position: relative; */
  width: 156px;
  /* display: flex; */
  height: 43px;
  background-color: #ff4b5c; /* Stylish red */
  color: white;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 16px;
  font-weight: 600;
  line-height: 22.5px;
  font-style: normal;
  /* z-index: 39; */
  /* overflow: hidden; */
  border-radius: 5px;
  border-color: white;
  margin-bottom: 32px;
}

.fa-download {
  font-weight: 100;
}

/* Hover Effect */
.contact-form-container button:hover {
  background-color: #d43f4f;
  transform: scale(1.05); /* Slight zoom effect */
}

.success-message {
  color: #4CAF50;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Mobile View Media Queries */

/* For screens smaller than 768px (Tablet View) */
@media screen and (max-width: 768px) {
  .hero-container,
  .main-frame,
  .group {
    height: 300px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* overflow: visible; */
    justify-content: center;
  }

  .hero-container {
    margin-bottom: 19px;
    justify-content: center;
  }

  .img-hero1, .img-hero2 {
    height: 300px;
    object-fit: cover;
  }

  .bg-style1 {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    /* justify-items: center;
    justify-content: center; */
    padding: 20px 10px;
  }

  .bg-style2, .bg-style3, .bg-style4 {
    width: 320px;
    height: auto;
    padding: 0;
    margin: 0 auto;
    text-align: left;
    margin-top: -90px;
  }

  .group-7 {
    font-size: 10px;
    line-height: 20px;
    padding: 8px;
    margin-bottom: 15px;
  } */

  /* .frame-8 {
    width: 200px;
  } */

  .text-slider-wrapper {
    width: 300px;
    height: auto;
    
  }
  
  .group-9 {
    margin-left: 10px;
    
  }

  .for-learners-dream-big {
    width: 80%;
    font-size: 10px;
    line-height: 6px;
    text-align: center;
    margin-top: -20px;
  }

  .empower-ambitious-minds { 
    width: 50%;
    height: 130px; 
    font-size: 8px;
    line-height: 12px;
    text-align: left;
    margin-top: -70px;
  }

  .download-btn-hero-container {
    justify-content: left;
    /* margin: 10px 0; */
    margin-left: 10px;
    margin-top: -10px;
  }

  .download-btn-hero {
    width: 100%;
    font-size: 10px;
    padding: 5px;
    border-radius: 5px;
  }

  .contact-form-container {
    width: 170px;
    height: 200px;
    /* padding: 20px 10px; */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: -230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: right;
    flex-wrap: nowrap;
    gap: 5px;
    margin-bottom: 10px;
    /* margin-top: 20px; */
    position: absolute;
    /* width: 432.038px;
    height: 539px; */
    margin-left: 6px;
    padding: 10px;
    background: #ffffff;
    z-index: 22;
    border-radius: 10px;
    box-shadow: 1px 5px 50px 0 rgba(84, 99, 122, 0.1);
  }

  .contact-form-frame13 {
    /* text-align: center; */
    margin-bottom: 2px;
    /* margin-left: 10px; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-shrink: 0;
    /* gap: 15px; */
    position: relative;
    /* width: 311px; */
    /* z-index: 23;
    overflow: hidden; */
    padding: 0px;
  }

  .here-to-help {
    font-size: 13px;
    font-weight: bold;
    margin-top: -10px;
  }

  .contact-query {
    font-size: 9px;
    color: #555;
    margin-top: -25px;
    margin-bottom: -5px;
  }

  .name-input, .email-input, .contact-input, .course-input {
    width: 130px;
    margin: 3px 0;
    padding: 4px;
    font-size: 8px;
    /* border-radius: 6px; */
    border: 1px solid #ccc;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-shrink: 0;
    position: relative;
    /* width: 350px; */
    margin-bottom: 5px;
    /* padding: 12.5px 0 12.5px 12px; */
    background: #ffffff;
    border: 1px solid #e6e9fc;
    z-index: 26;
    overflow: hidden;
    border-radius: 3px;
    /* box-sizing:content-box; */
  }

  .contact-form-container button {
    background-color: #ff4b5c;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: 130px;
    /* display: flex; */
    height: 20px;
    background-color: #ff4b5c; /* Stylish red */
    color: white;
    font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
    font-size: 12px;
    /* font-weight: 600; */
    line-height: 10.5px;
    font-style: normal;
    /* z-index: 39; */
    /* overflow: hidden; */
    border-radius: 5px;
    border-color: white;
    margin-bottom: 5px;
  }

  form button:hover {
    background-color: #d43f4f;
  }
}

/* For screens smaller than 480px (Tablet View) */

@media screen and (max-width: 480px) {
  .contact-form-container {
    width: 120px;
    left: 230px;
  }

  .here-to-help {
    font-size: 12px;
  }

  .contact-query {
    font-size: 6px;
  }
  
  .name-input, .email-input, .contact-input, .course-input {
    width: 90px;
  }

  .contact-form-container button {
    background-color: #ff4b5c;
    color: white;
    font-weight: 400;
    border: none;
    cursor: pointer;
    width: 100px;
    font-size: 10px;
  }
}

/* ---------------------------------------------------- Footer ------------------------------------------------------- */

/* Footer Styling */
#footer {
  background-color: #0c0c0c; /* Light gray background */
  color: #ffff; /* Dark gray text */
  padding-top: 20px;
  font-family: Arial, sans-serif;
}

/* Logo Styling */
.navbar-brand img.logo-footer {
  /* max-width: 180px;
  height: auto; */
  width: 105px;
  height: 105px;
  border-radius: 10px;
}

/* Footer Column Spacing */
#footer .container {
    width: 100%;
    max-width: 100%;      /* Prevents restriction by max width */
    /* max-width: 1200px; */
    margin-bottom: 83px;
}

/* Quick Links Styling */
#footer h3 {
    color: #e6e9ed;
    font-size: 25px;
    font-weight: 500;
}

/* .footer-logo-content {
  width: 158px;
} */

#footer a {
    text-decoration: none;
    color: #121010;
    transition: color 0.3s ease-in-out;
}

#footer a:hover {
    color: #eaedf0;
}

#footer h5 {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
}

/* #footer h5:hover {
    color: #FFDE4D;
} */

/* Contact Info Styling */
#footer h2 {
    font-size: 18px;
    font-weight: 100;
    display: flex;
    align-items: center;
}

#footer h2 i {
    color: #e7e9ec;
    font-size: 24px;
}

/* Social Media Buttons */
#footer .btn {
    /* width: 50px;
    height: 50px;
    font-size: 25px;
    
    text-align: center;
  
    background-color: #000;
    color: #e6e9ed; */
  width: 50;
  height: 50px;
  flex-shrink: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 25px;
  border: none;
  /* padding: 16px; */
}

/* #footer .btn:hover {
    background-color: #ff0e0e;
} */

/* Bottom Footer */
#footer .container-fluid {
    /* background-color: #000; */
    color: #fff;
    font-size: 16px;
}

#footer .container-fluid a {
    font-weight: bold;
    /* border-bottom: 1px solid white; */
    transition: border-bottom 0.3s ease;
}

#footer .container-fluid a:hover {
    border-bottom: 1px solid #0e0d0d;
    color: #111010;
}

/* Responsive Design */
@media (max-width: 992px) {
    #footer .container {
        text-align: left;
    }

    #footer .col-lg-5, 
    #footer .col-lg-2, 
    #footer .col-lg-4 {
        margin-bottom: 20px;
    }

    #footer .d-flex {
        justify-content: left;
    }
}

@media (max-width: 576px) {
    #footer h2 {
        font-size: 1rem;
    }

    #footer h5 {
        font-size: 16px;
    }
}

/* ------------------------------------------- About Us Section (Home) --------------------------------------------- */

.aboutus-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  /* margin: 0 auto; */
  padding: 0 80px 0 80px;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 69px;
}

.aboutus-buttons {
  display: flex;
  justify-content: flex-end; /* Aligns buttons to the right */
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
}

.frame-aboutus {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  position: relative;
  width: 100vw;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(270deg, #182135 9.5%, #F3042C 100%);
  z-index: 66;
  margin-bottom: 69px;
  height: 118px;
  padding-top: 10px;
}

.swt-academy {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  font-style: normal;
  width: 100vw;
  /* height: 110px; */
  color: #ffffff;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 96px; 
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  line-height: 100%;
  text-align: left;
  white-space: nowrap;
  opacity: 0.99;
  z-index: 67;
  margin-left: 120px;
}

.aboutus-mainheading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 19px;
  position: relative;
  width: 80vw;
  /* height: 443.537px;  */
  height: 458px;
  z-index: 69;
  margin-left: 120px;
}

.aboutus-heading1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  /* gap: 19px; */
  position: relative;
  width: 541.735px;
  height: 35.564px;
  padding: 4.135px 0 4.135px 0;
  background: #032a52;
  z-index: 70;
  margin-bottom: 10px;
}

.aboutus-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 541.735px;
  height: 24px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif !important;
  font-size: 19.84984588623047px;
  font-weight: 500;
  line-height: 23.158px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.17px;
  z-index: 71;
}

.aboutus-details {
  flex-shrink: 0;
  position: relative;
  width: 1058.658px;
  height: 371.588px;
  font-size: 0px;
  z-index: 72;
}

.aboutus-main-desc {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 1058.658px;
  height: 110px;
  /* height: auto; */
  margin: 0 0 0 0;
  color: #3b3b3b;
  font-family: 'Poppins', sans-serif !important;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 29.816px;
  text-align: left;
  z-index: 73;
}

.aboutus-main-block {
  position: relative;
  /* position: absolute; */
  width: 1058.364px;
  height: 245.197px;
  /* height: 300px; */
  margin: 36.391px 0 0 0;
  z-index: 74;
}

.about-us-image {
  position: absolute;
  width: 370.55px;
  height: 245.197px;
  /* height: 250px; */
  top: 0;
  left: 0;
  z-index: 75;
}

.aboutus-img {
  display: flex;
  align-items: flex-start;
  position: absolute;
  width: 355.468px;
  height: 245.197px;
  /* height: 250px; */
  top: 0;
  /* left: 15.082px; */
  border-radius: 49.039px;
}

.about-us-course-section {
  position: absolute;
  width: 663.153px;
  height: 207.656px;
  top: 0;
  right: 0;
  font-size: 0px;
  z-index: 78;
}

.about-us-course-name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  /* width: 663.153px; */
  width: 650px;
  height: 42px;
  margin: 15.656px 0 0 0;
  color: #032a52;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 29.830238342285156px;
  font-weight: 700;
  line-height: 41.017px;
  text-align: left;
  white-space: nowrap;
  z-index: 80;
}

.about-us-course-desc {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 640px;
  /* height: 90px; */
  margin: 11.656px 0 0 13.117px;
  color: #6d6d6d;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14.915119171142578px;
  font-weight: 600;
  line-height: 22.373px;
  text-align: left;
  z-index: 81;
}

.founder-swt-academy {
  position: relative;
  width: 198px;
  height: 52px;
  margin: 12px 0 0 465.117px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 18.643898010253906px;
  font-weight: 400;
  line-height: 26px;
  text-align: right;
  text-overflow: initial;
  white-space: nowrap;
  z-index: 79;
}

.founder-name {
  position: relative;
  color: #363636;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 18.643898010253906px;
  font-weight: 400;
  line-height: 26px;
  text-align: right;
}

.founder-designation {
  position: relative;
  color: #363636;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 18.643898010253906px;
  font-weight: 500;
  line-height: 26px;
  text-align: right;
}

/* Mobile responsiveness - Tablet (≤768px) */
@media screen and (max-width: 768px) {
  .aboutus-container {
    padding: 0 20px;
    margin-bottom: 40px;
    height: 825px;
  }

  .frame-aboutus {
    height: 50px;
    /* margin-bottom: 30px; */
    margin-top: -280px;
  }

  .swt-academy {
    font-size: 40px;
    margin-left: 20px;
  }

  .aboutus-mainheading {
    width: 100%;
    margin-left: 0;
    margin-top: -600px;
  }

  .aboutus-heading1 {
    width: 100%;
    height: auto;
    padding: 10px;
  }

  .aboutus-title {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .aboutus-details {
    width: 100%;
    height: auto;
  }

  .aboutus-main-desc {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    height: auto;
  }

  .aboutus-main-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* height: 1500px; */
    margin-top: 20px;
    position: relative;
    height: 245px;
    margin-bottom: 19px;
  }

  .about-us-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  .aboutus-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .about-us-course-section {
    position: relative;
    width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .about-us-course-name,
  .about-us-course-desc {
    width: 100%;
    text-align: left;
    justify-content: left;
    margin: 10px 0;
  }

  .about-us-course-name {
    font-size: 17px;
  }

  .founder-swt-academy {
    margin: 10px auto 0 auto;
    text-align: left;
    width: 100%;
  }
}

/* Mobile responsiveness - Phone (≤480px) */
@media screen and (max-width: 480px) {
  .swt-academy {
    font-size: 32px;
    margin-left: 10px;
  }

  .aboutus-title {
    font-size: 12px;
  }

  .aboutus-main-desc {
    font-size: 14px;
  }

  .about-us-course-name {
    font-size: 14px;
  }

  .about-us-course-desc {
    font-size: 13px;
  }

  .founder-name,
  .founder-designation {
    font-size: 14px;
    margin-top: -5px;
  }
}

/* ----------------------------------------- Intro to Service Section (Home) -------------------------------------------- */

.service-section {
  /* display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  padding-top: 0;
  width: 100%;
  margin-bottom: 55px;  */
  display: flex;
  height: 430.222px;
  padding: 18.667px 56.889px;
  flex-direction: column;
  align-items: center;
  gap: 28.444px;
  margin-bottom: 138px;
}

.container-service-home {
  text-align: center;
  max-width: 100%;
}

.service-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #575757;
  letter-spacing: 1.26px;
  margin-bottom: 28.444px;
  font-family: 'Poppins', sans-serif !important;
}

.service-section-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: #032A52;
  margin: 10px 0 50px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  /* margin-bottom: 28.444px; */
  font-style: normal;
}

/* Service Cards */
.service-cards {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 30px;
  width: 100%;
  margin-right: 30px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.service-card {
  width: 330px;
  background: #ffffff;
  padding: 30px;
  border: 4px solid transparent;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Subtle default shadow */
  position: relative;
  overflow: hidden;
  /* cursor: pointer; */
  transition: 0.3s;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

/* Default hover effect */
/* .service-card:hover {
  background-color: #efeeee;
  border: solid #d5cdcd; 
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4); 
  transform: translateY(-5px); 
  transition: all 0.3s ease;
} */

/* Active class when clicked */
/* .service-card.active {
  background-color: #efeeee; 
  border: solid #d5cdcd;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
} */

/* Downward Font Awesome Icon */
/* .service-card .fa-angle-down {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 25px;
  color: #333;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
} */

/* .service-card:hover .fa-angle-down {
  opacity: 1; 
} */

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #032a52;
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding: 10px;
  line-height: 1.4;
}

.card-text {
  font-size: 16px;
  font-weight: 500;
  color: #6f6b80;
  line-height: 1.4;
  padding: 5px;
  text-align: justify;
  letter-spacing: 0.1px;
}

.service-buttons {
  display: flex;
  justify-content: flex-end; /* Aligns buttons to the right */
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
}

/*----------*/

/* Section Container */
/* .service-details-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
} */

/* Container Styling */
.service-details-container {
  width: 95%;
  margin: 30px auto;
  /* margin-bottom: 69px; */
}

/* Wrapper for Text & Image */
.service-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  gap: 20px;
}

/* Left Content (Text Section) */
.service-content {
  flex: 1;
  padding-right: 20px;
  margin-left: 20px;
}

.service-box {
  background-color: white;
  padding: 20px;
  margin-bottom: 15px;
  /* border-left: 4px solid #007bff; */
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  /* height: 26px; */
  color: #f3032c;
  font-family: 'Poppins', sans-serif !important;
  font-size: 40px;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 1.6px;
  z-index: 82;
}

.service-box h4 {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  /* height: 56px; */
  color: #231f40;
  font-family: 'Poppins', sans-serif !important;
  font-size: 28px;
  font-weight: 600;
  line-height: 56px;
  text-align: left;
  white-space: nowrap;
  z-index: 83;
}

.service-box p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #3a3a3a;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  text-overflow: initial;
  letter-spacing: 1.6px;
  z-index: 84;
  overflow: hidden;
}

/* Right Image */
.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-demo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Center the button horizontally and vertically */
.download-btn-container {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin-bottom: 69px;
}

/* Button Styling */
.download-btn {
  background-color: #ff4b5c; /* Stylish red */
  color: white;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  align-items: center; 
  gap: 8px; /* Space between icon and text */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover Effect */
.download-btn:hover {
  background-color: #d43f4f;
  transform: scale(1.05); /* Slight zoom effect */
}

/* Click Effect */
.download-btn:active {
  transform: scale(0.95); /* Slight shrink on click */
}

@media (max-width: 768px) {
  .service-section {
    height: 1300px;
  }
}

@media (max-width: 480px) {
  .card-text {
    font-size: 12px;
    font-weight: 500;
    color: #6f6b80;
    line-height: 1.4;
    padding: 5px;
    text-align: justify;
    letter-spacing: 0.1px;
  }
}

/* ---------------------------------------------- Course Structure ---------------------------------------------------------- */

.course-structure {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  width: 100%;
  z-index: 128;
  justify-content: center;
  justify-items: center;
  padding: 20px;
  margin-bottom: 69px;
}

.course-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 8px;
  justify-content: center;
  justify-items: center;
}

/* Course Highlights */
.course-highlights {
  width: 25%; 
  display: block;
  position: relative;
  color: #032a52;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  white-space: nowrap;
  z-index: 190;
  border-radius: 8px;
  border: solid 1px #cbc8c8;
  align-items: center;
  margin-right: 30px;
  padding: 20px;
}

.course-title {
  font-size: 24px;
  font-weight: 600;
  color: #032A52;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.course-subtitle {
  display: block;
  position: relative;
  margin: 0.46px 0 0 0;
  color: #000000;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 12px;
  font-weight: 400;
  line-height: 23px;
  text-align: left;
  white-space: nowrap;
  z-index: 151;
  margin-bottom: 20px;
}

.course-structure-icons {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000;
  margin-bottom: 10px;
  /* gap: 10px; */
}

.location-icon {
  font-size: 18px;
  color: #032a52;
  margin-right: 10px;
  width: 30px; /* Ensures all icons take up equal width */
  text-align: center; /* Centers the icon */
  align-items: center;
}

.course-structure-highlights {
  color: #000;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 143.75% *
  padding: 3px;
  /* justify-content: space-around; */
}

.degree-fee-section-container {
  padding: 30px;
  border-radius: 8px;
  border: solid 1px #cbc8c8;
  align-items: center; 
  /* margin-top: -10px; */
}

/* Degree Fees */
.degree-fee-section {
  width: 800px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.degree-title {
  font-size: 36px;
  font-weight: 700;
  color: #032A52;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.degree-description {
  font-size: 16px;
  color: #646464;
  margin-bottom: 20px;
  width: 750px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.fee-detail-container {
  display: flex;
  padding-top: 10px;
  justify-content: space-between;
}

.fee-details {
  margin-bottom: 0; /* Remove bottom margin to prevent spacing issues */
}

.fee-starting {
  font-size: 25px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.emi-option {
  font-size: 16px;
  color: #2b2b2b;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.view-courses-btn {
  width: 200px;
  height: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #032A52;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.view-courses-btn:hover {
  background: #021c34;
}

.service-buttons {
  display: flex;
  justify-content: flex-end; /* Aligns buttons to the right */
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
}

/* Media Query for Tablets and Small Laptops (up to 768px) */
@media (max-width: 768px) {
  .course-structure {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 40px;
  }

  .course-container {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .course-highlights {
    width: 90%;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 15px;
  }

  .degree-fee-section-container {
    width: 100%;
    padding: 15px;
  }

  .degree-fee-section {
    width: 100%;
  }

  .degree-title {
    font-size: 28px;
  }

  .degree-description {
    font-size: 15px;
    width: 100%;
  }

  .fee-detail-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .fee-starting,
  .emi-option {
    font-size: 16px;
  }

  .view-courses-btn {
    width: 100%;
  }
}

/* Media Query for Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  .course-structure {
    padding: 10px;
    margin-bottom: 30px;
  }

  .course-highlights {
    width: 100%;
    padding: 10px;
    font-size: 18px;
  }

  .course-title {
    font-size: 20px;
  }

  .course-structure-icons {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .location-icon {
    font-size: 16px;
    width: 25px;
  }

  .course-structure-highlights {
    font-size: 14px;
  }

  .degree-title {
    font-size: 22px;
  }

  .degree-description {
    font-size: 14px;
  }

  .fee-starting,
  .emi-option {
    font-size: 14px;
  }

  .view-courses-btn {
    height: 45px;
    font-size: 14px;
  }
}


/* -------------------------------------------- Earned Certificates Home --------------------------------------------------------- */

/* Container Styles */
.earned-certificates-container {
  display: flex;
  padding: 40px;
  padding-top: 0;
  width: 50%;
  margin-left: 4%;
  margin-bottom: 69px;
}

/* Content Wrapper */
.earned-certificates-content {
  max-width: 600px;

}

/* Title Styling */
.earned-certificates-title {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  /* height: 64px; */
  color: rgba(0, 0, 0, 0.87);
  font-family: 'Poppins', sans-serif !important;
  font-size: 54px;
  font-weight: 600;
  line-height: 64px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.25px;
  z-index: 209;
  margin-bottom: 19px;
  width: 480px;
}

/* Description Styling */
.earned-certificates-description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  /* width: 85%; */
  /* height: 55px; */
  width: 550px;
  /* height: 55px; */
  color: rgba(0, 0, 0, 0.6);
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  letter-spacing: 0.5px;
  z-index: 210;
}

/* Stats Section */
.certificate-stats {
  display: flex;
  justify-content: left;
  gap: 30px;
  margin-top: 20px;
  margin-left: 40px;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

/* Individual Stat Box */
.certificate-stat-box {
  background: #032a52;
  color: #fff;
  width: 164px;
  height: 70px;
  /* padding: 20px; */
  border-radius: 62px;
  box-shadow: 0 7px 29px rgba(99, 99, 110, 0.2);
  text-align: center;
}

/* Numbers */
.stat-count {
  display: block;
  font-size: 28px;
  font-weight: 700;
  /* margin-bottom: 5px; */
}

/* Labels */
.stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

/* Authentication Section */

.component-variant {
  width: 100%;
  z-index: 292;
  margin-top: 15px;
}

.frame-85 {
  width: 600px;
  top: 0;
  left: 0;
  background: #ffffff;
  margin-left: 30%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 1px 5px 50px 0 rgba(84, 99, 122, 0.1);
}

.authentication-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 22px;
  position: relative;
  z-index: 224;
}

.frame-86 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto; 
  position: relative;
  width: 145.72px;
  height: 25px;
  color: #727695;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
  white-space: nowrap;
  z-index: 225;
}

.authentication-description {
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  flex-shrink: 0;
  /* gap: 8.068px; */
  gap: 8.07px;
  position: relative;
  width: 237px;
  background: #e8e9ff;
  z-index: 226;
  border-radius: 13.867px;
}

.thomas-cook-logo {
  flex-shrink: 0;
  position: relative;
  width: 133.123px;
  height: 57.391px;
  background-size: cover;
  z-index: 227;
  border-radius: 14.876px;
}

.indian-hotels-company-logo {
  flex-shrink: 0;
  position: relative;
  width: 95.809px;
  height: 57.737px;
  background-size: cover;
  z-index: 228;
  border-radius: 14.876px;
}

.authentication-technology {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 500px;
  color: #646464;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: left;
  z-index: 229;
}

/* ===== Responsive Styles: Tablet View (Max Width: 768px) ===== */
@media (max-width: 768px) {
  .earned-certificates-container {
    flex-direction: column;
    padding: 20px;
    width: 100%;
    margin-left: 0;
  }

  .earned-certificates-title {
    font-size: 38px;
    line-height: 48px;
    width: 100%;
    white-space: normal;
  }

  .earned-certificates-description {
    width: 100%;
    font-size: 16px;
    line-height: 28px;
  }

  .certificate-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 0;
    justify-content: center;
  }

  .certificate-stat-box {
    width: 140px;
    height: 60px;
  }

  .frame-85 {
    width: 100%;
    margin-left: 0;
    padding: 20px;
    margin-top: 50px;
  }

  .authentication-technology {
    width: 100%;
  }

  .authentication-description {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .thomas-cook-logo,
  .indian-hotels-company-logo {
    width: 120px;
    height: 70px;
    margin: 5px;
  }
}


/* ===== Responsive Styles: Mobile View (Max Width: 480px) ===== */
@media (max-width: 480px) {
  .earned-certificates-title {
    font-size: 28px;
    line-height: 36px;
  }

  .earned-certificates-description {
    font-size: 15px;
    line-height: 24px;
  }

  .certificate-stats {
    gap: 15px;
  }

  .certificate-stat-box {
    width: 120px;
    height: 55px;
  }

  .stat-count {
    font-size: 22px;
  }

  .stat-label {
    font-size: 14px;
  }

  .frame-85 {
    padding: 15px;
  }

  .frame-86 {
    font-size: 18px;
  }

  .authentication-technology {
    font-size: 14px;
    line-height: 20px;
  }
}

/* --------------------------------------------- Next Cohort Details ------------------------------------------------------ */

.batch-update-button {
  display: flex;
  justify-content: flex-end;
  gap: 10px; 
  width: 100%; 
}

/* Main Container */
.cohort-container {
  width: 100%;
  max-width: 900px;
  text-align: center;
  justify-content: center;
  margin-left: 20%;
  margin-bottom: 69px;
}

/* Title */
.cohort-title {
  color: #032a52;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 40px;
  font-weight: 600;
  line-height: 43.041px;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 25px;
}

/* Card Layout */
.cohort-card {
  background: white;
  padding: 25px;
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(26, 25, 25, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  border: solid rgb(249, 245, 245);
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

/* Date Section */
.date-section {
  display: flex;
  align-items: center; /* Align items vertically */
  justify-content: space-between; /* Space between elements */
  /* background: #dadadb; */
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  width: 100%; /* Full width */
}

/* Left: Date & Month */
.date-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

}

.date {
  font-size: 28px;
  color: #050d17;
  font-weight: bold;
  /* text-align: center;
  justify-content: center; */
}

.month {
  font-size: 14px;
  color: #080707;
  font-weight: 600;
  margin-top: -15px;
  /* text-align: center;
  justify-content: center; */
}

.outline {
  border: dashed;
  border-width: 2px;
  color: #e6e1e1;
  width: 880px;
}

/* Batch Details */
.batch-details {
  flex-grow: 1; /* Take up space */
  /* justify-content: space-between;
  align-items: center; */
  text-align: center;
  width: 100%;
  margin: 10px 0;
}

.batch-title {
  font-size: 24px;
  font-weight: bold;
  color: #272727;
  flex-grow: 1; /* Take up space */
  text-align: center;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.enroll-btn {
  background: #444;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background: #222;
}

/* Batch Information */
.batch-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}

.info-item {
  text-align: center;
}

.info-label {
  display: block;
  font-weight: bold;
  color: #272727;
  font-size: 18px;
}

.info-value {
  color: #777D8C;
  font-size: 18px;
}

.available {
  color: green;
  font-size: 18px;
}

/* Location */
.location-batch {
  display: flex;
  align-items: center;
  /* gap: 5px; */
}

.location-icon-batch {
  font-size: 18px;
  color: red;
}

/* Tablet View - 768px and below */
@media (max-width: 768px) {
  .cohort-container {
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    max-width: 100%;
    margin-bottom: 19px;
  }

  .cohort-title {
    font-size: 32px;
  }

  .cohort-card {
    padding: 20px;
    border-radius: 25px;
  }

  .date-section {
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 10px;
  }

  .enroll-btn {
    font-size: 16px;
    padding: 6px 10px;
  }

  .outline {
    width: 100%;
  }

  .batch-info {
    flex-direction: row;
    /* align-items: center; */
    gap: 18px;
  }

  .info-item {
    width: 100%;
  }
}

/* Mobile View - 480px and below */
@media (max-width: 480px) {
  .cohort-title {
    font-size: 20px;
  }

  .cohort-card {
    padding: 15px;
  }

  .date {
    font-size: 18px;
  }

  .month {
    font-size: 12px;
    margin-top: -10px;
  }

  .batch-title {
    font-size: 13px;
  }

  .enroll-btn {
    font-size: 14px;
    padding: 5px 8px;
  }

  .info-label {
    font-size: 16px;
  }

  .info-value {
    font-size: 13px;
  }

  .outline {
    width: 100%;
  }

  .location-icon-batch {
    font-size: 13px;
    margin-top: -25px;
    margin-left: 10px;
  }
}

/* ------------------------------------------------ Explore Our Mentors ---------------------------------------------------- */

.mentor-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
  position: relative;
  width: 100%;
  height: 154px;
  background: #ffffff;
  z-index: 321;
  margin-bottom: 69px;
}

.mentor-main-title {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #606060;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-weight: 650;
  line-height: 26px;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 1.6px;
  z-index: 322;
}

.mentor-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 922px;
  color: #606060;
  font-family: 'Poppins', sans-serif !important;
  font-size: 32px;
  font-weight: 650;
  line-height: 42px;
  text-align: center;
  z-index: 323;
}

/* Mentors Container */
.mentors-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding: 20px;
  margin-bottom: 69px;
}

/* Mentor Card Container */
.mentor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 320px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(54, 82, 122, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

/* Image Section */
.mentor-image {
  width: 360px;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 10px; /* Adjust the value as needed */
  border-bottom-left-radius: 0px; /* Adjust the value as needed */
  border-top-right-radius: 10px; /* Adjust the value as needed */
  border-bottom-right-radius: 0px; /* Adjust the value as needed */
  box-shadow: none; /* Ensures no shadow is applied */
}

/* Details Section */
.mentor-details {
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  padding: 15px;
  background: #fff;
  width: 100%;
}

.mentor-text {
  display: flex;
  align-items: center; /* Align items vertically */
  gap: 30px; /* Space between name and logo */
}

/* Name & Role */
.mentor-name {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
  padding-left: 20px;
  width: 200px;
}

/* Company Logo */
.mentor-company-logo {
  width: 60px; /* Adjust size as needed */
  height: auto;
  border-radius: 0px;
  box-shadow: none;
}

.mentor-role {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  padding-left: 20px;
  margin-top: -20px;
}

/* LinkedIn Profile */
.linkedin-profile {
  margin-top: 30px;
}

.linkedin-profile a {
  /* display: flex; */
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0077b5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fa-brands {
  font-size: 23px;
}

.linkedin-profile a i {
  margin-right: 5px;
}

.linkedin-profile a:hover {
  color: #004f87;
}

.mentor-buttons {
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
  justify-content: center;
  display: flex;
}

/* -------------------------------------------- Our Alumni Placed ----------------------------------------------------- */

.alumni-placed-container {
  /* width: 100%;
  text-align: center;
  margin-bottom: 69px;
  display: flex; */
  display: flex;
  flex-direction: column;
  /* width: 1440px;
  height: 6650px; */
  width: 100%;
  padding: 0px 80px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.our-alumni-placed {
  position: relative;
  /* height: 26px; */
  color: #575757;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 1.8px;
  /* padding-right: 50px; */
}

.explore-our-alumni-connect {
  position: relative;
  color: #231f40;
  font-family: 'Poppins', sans-serif !important;
  font-size: 33px;
  font-weight: 650;
  line-height: 56px;
  /* text-align: left; */
  white-space: nowrap;
  /* margin-top: 50px; */
}

/* General Styles */
.testimonial-container {
  display: flex;
  justify-content: center; 
  /* align-items: stretch; */
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 80px;
  margin-bottom: 69px;
}

.testimonials {
  display: flex;
  justify-content: space-between; 
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}

.testimonial__body {
  width: 400px;
  height: 400px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 1px 5px 52.9px rgba(84, 99, 122, 0.1);
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 100px;

}

/* Profile Image */
.testimonial__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: none;
}

/* Hike Box */
.testimonial__hike {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 10px;
  border: 1px solid #369f52;
  border-radius: 2px;
  margin-bottom: 120px;
  /* width: 200px; */
}

.hike {
  font-size: 14px;
  font-weight: 600;
  color: #43a55d;
}

.fa-arrow-trend-up {
  color: #43a55d;
}

/* Testimonial Details */
.testimonial__info {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.testimonial__name {
  font-size: 20px;
  font-weight: 630;
}

.testimonial__role {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

/* Description */
.testimonial__description {
  font-size: 17px;
  color: #4d607d;
  margin-top: 10px;
}

/* Company Logo */
.testimonial__company-logo {
  width: 100px;
  margin-top: 20px;
  height: auto;
  border: 0px;
  box-shadow: none;
}

/* LinkedIn Profile */
.testimonial__linkedin {
  margin-top: 30px;
}

.testimonial__linkedin a {
  font-size: 18px;
  font-weight: 400;
  color: #006dd9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.testimonial__linkedin a:hover {
  color: #004f87;
}

.button-more-mentor {
  display: flex;
  justify-content: center;
  margin-bottom: 69px;
}

.btn-mentor {
  text-decoration: none;
  padding: 20px;
  border: solid;
  padding: 18px 24px 18px 24px;
  background: #575757;
  color: #ffffff;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 6px;
}

.testimonial-buttons {
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
  justify-content: center;
  display: flex;
  margin-top: 20px;
}

/* ---------------------------------------------- Growth of Students -------------------------------------------------------- */

/* Styling the section */
.growth-stories {
  display: flex;
  justify-content: space-between; /* Space between left & right content */
  padding: 50px;
  padding-top: 0;
  padding-bottom: 0;
  height: auto; /* Adjust based on content */
  margin-bottom: 69px;
}

/* Container for text */
.content {
  max-width: 500px; /* Control width */
  text-align: left; /* Ensure left alignment */
  margin-left: 100px;
}

/* Title Styling */
.section-title {
  color: #032a52;
  font-family: 'Inter', sans-serif !important;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

/* Description Styling */
.description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  padding: 10px;
}

/* Right Side Testimonial Content */
.testimonial-student {
  width: 550px;
  height: auto;
  margin-top: 30px;
  margin-right: 100px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px; /* Space between elements */
}

.testimonial-student-buttons {
  gap: 10px; /* Adds spacing between buttons */
  justify-content:flex-end;
  padding-top: -80px;
  /* margin-top: -80px; */
  display: flex;
}

/* Quote Image */
.quote-studentgrowth {
  width: 50px; /* Adjust size */
  height: auto;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
}

/* Centered footer for carousel controls and indicators */
.student-carousel-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; 
  margin-top: 20px;
}

.student-carousel-nav-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: rgb(85, 85, 85);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.student-carousel-nav-btn:hover {
  transform: scale(1.2);
  color: #0056b3;
}

.student-custom-indicators {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.student-custom-indicators button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s ease;
}

.student-custom-indicators i {
  font-size: 8px;
}

.student-custom-indicators button.active i {
  color: rgb(25, 163, 226); 
  font-size: 8px;
}

/* Experience Text */
.experience-text {
  color: #767676;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: justify;
}

/* Student Info Container */
.student-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Student Details: Image & Name */
.student-details {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Student Image */
.student-image {
  width: 80px; /* Adjust as needed */
  border-radius: 50%; /* Make it circular */
  height: 80px;
  box-shadow: none;
}

/* Student Name & Rating Wrapper */
.student-name-rating {
  display: flex;
  flex-direction: column;
}

/* Student Name */
.student-name {
  color: #575757;
  font-family: 'Poppins', sans-serif !important;
  font-size: 23px;
  font-weight: 600;
  line-height: 20px;
}

/* Star Ratings */
.fa-star {
  margin-top: 20px;
  font-size: 14px;
  color: #fcc141; /* Gold color */
}

.linkedin-profile {
  /* display: flex; */
  padding-left: 20px;
  font-size: 20px;
  font-weight: 400;
  color: #0077b5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fa-brands {
  font-size: 23px;
}

.linkedin-profile a i {
  margin-right: 5px;
}

.linkedin-profile:hover {
  color: #004f87;
}

/* Tablet View: 768px and below */
@media (max-width: 768px) {
  .growth-stories {
    flex-direction: column;
    padding: 30px 20px;
    margin-bottom: 50px;
    align-items: center;
  }

  .content {
    max-width: 100%;
    margin: 0 0 30px 0;
    text-align: center;
  }

  .section-title {
    font-size: 36px;
    line-height: 48px;
  }

  .description {
    font-size: 16px;
    padding: 0;
  }

  .testimonial-student {
    width: 100%;
    margin: 0;
    align-items: center;
  }

  .experience-text {
    font-size: 15px;
    text-align: justify;
    padding: 0 10px;
  }

  .student-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .student-details {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .student-image {
    width: 70px;
    height: 70px;
  }

  .student-name {
    font-size: 20px;
  }

  .fa-star {
    margin-top: 10px;
  }

  .student-carousel-footer {
    gap: 20px;
    flex-wrap: wrap;
  }

  .student-custom-indicators {
    flex-wrap: wrap;
    gap: 5px;
  }
}


/* Mobile View: 480px and below */
@media (max-width: 480px) {
  .growth-stories {
    padding: 20px 15px;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .description {
    font-size: 15px;
  }

  .student-image {
    width: 60px;
    height: 60px;
  }

  .student-name {
    font-size: 18px;
  }

  .experience-text {
    font-size: 14px;
    line-height: 24px;
  }

  .student-carousel-nav-btn {
    font-size: 16px;
  }

  .student-custom-indicators i {
    font-size: 6px;
  }

  .quote-studentgrowth {
    width: 40px;
  }
}

/* -------------------------------------------- Whatsapp Channel -------------------------------------------------- */

.whatsapp-title-container {
  width: 100%;
  text-align: center;
}

.whatsapp-channel {
  color: #575757;
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.whatsapp-sub-title-container {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 69px;
}

.latest-updates {
  color: #231f40;
  font-family: 'Poppins', sans-serif !important;
  font-size: 35px;
  font-weight: 650;
}

.whatsapp-container {
  position: relative; /* Make this a reference for absolute positioning */
  width: 1250px;
  height: 761px;
  margin-left: 140px;
  margin-bottom: 69px;
}

.whatsapp-background {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  /* display: block; */
  box-shadow: none;
  overflow: hidden;
}

.whatsapp-overlay {
  position: absolute;
  top: 57.55%; /* Adjust position as needed */
  left: 74%;
  transform: translate(-50%, -50%); /* Center the overlay */
  width: 499px; /* Adjust size */
  height: 645px; /* Maintain aspect ratio */
  opacity: 0.99; /* Optional transparency */
  border-radius: 60px 70px 0 0; /* Top-left & Top-right only */
  box-shadow: none;
  overflow: hidden;
}

.whatsapp-overlay1 {
  position: absolute;
  top: 66%; /* Adjust position as needed */
  left: 73.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  width: 480px; /* Adjust size */
  height: 515px; /* Maintain aspect ratio */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px; 
  overflow-y: auto;  /* Enable vertical scrolling */
  max-height: 530px; /* Limit max height to avoid overflow */
  padding: 0px; /* Add padding for spacing */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: rgb(87, 85, 85) transparent;
  box-shadow: none;
}

/* Custom Scrollbar for Webkit Browsers */
.whatsapp-overlay1::-webkit-scrollbar {
  width: 6px;
}

.whatsapp-overlay1::-webkit-scrollbar-track {
  background: transparent;
}

.whatsapp-overlay1::-webkit-scrollbar-thumb {
  background: rgb(6, 6, 6);
  border-radius: 5px;
}

.whatsapp-overlay1:hover::-webkit-scrollbar-thumb {
  background: red;
  width: 10px;
}

.whatsapp-icon-overlay {
  position: absolute;
  top: 40.99%; /* Adjust position as needed */
  left: 25.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  width: 152px; /* Adjust size */
  height: 152px; /* Maintain aspect ratio */
  opacity: 0.9; /* Optional transparency */
  border-radius: 30px; 
}

.text-heading {
  position: absolute;
  top: 55.99%; /* Adjust position as needed */
  left: 25.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
  width: 632.943px;
  height: 49px;
  color: #FFF;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 40.617px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.279px; 
}

.job-alert {
  position: absolute;
  top: 65.99%; /* Adjust position as needed */
  left: 25.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
  width: 632.943px;
  height: 49px;
  color: #FFF;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 27.078px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.279px;
}

.fa-whatsapp {
  font-size: 33px;
}

.powered-by {
  position: absolute;
  top: 72.99%; /* Adjust position as needed */
  left: 25.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
  width: 632.943px;
  height: 49px;
  color: #21CD3F;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 16.924px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.279px;
}

.btn-join-whatsapp {
  position: absolute;
  top: 77.99%; /* Adjust position as needed */
  left: 25.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
  display: flex;
  width: 106px;
  height: 38px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #FFF;
  color: #21CD3F;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 16.924px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  letter-spacing: -0.279px;
}

.scroll-to-explore {
  position: absolute;
  top: 91.99%; /* Adjust position as needed */
  left: 38.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
  width: 632.943px;
  height: 49px;
  color: #21CD3F;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.279px;
}

.fa-caret-right {
  color: #E8E8E8;
  font-size: 40px; /* Keep icon large */
  line-height: 25px; /* Match text height */
  display: flex;
  padding-bottom: -50px;
  align-items: center; /* Center the icon */
  position: absolute;
  top: 90.50%; /* Adjust position as needed */
  left: 44.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
}

.explore-community {
  position: absolute;
  top: 10.99%; /* Adjust position as needed */
  left: 22.78%;
  transform: translate(-50%, -50%); /* Center the overlay */
  opacity: 0.9; /* Optional transparency */
  border-radius: 0px;
  width: 632.943px;
  height: 49px;
  color: #FFF;
  text-align: center;
  font-family: 'Inter', sans-serif !important;
  font-size: 43.078px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.279px;
}

.text-message {
  color: rgb(13, 13, 13); 
  font-size: 14px;
  background-color: #dee8eb;
  padding: 5px;
  width: 400px;
  border-radius: 10px;
  margin-left: 30px;
  font-family: 'Inter', sans-serif !important;
}

.overlay-image {
  width: 400px; 
  height: 400px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-left: 30px;
  justify-content: center;
}

/* For Tablets and small screens */
@media (max-width: 768px) {
  .whatsapp-container {
    width: 95vw;
    height: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin-bottom: 29px;
  }

  .whatsapp-background {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .whatsapp-overlay1 {
    width: 48%;
    height: 325px;
    top: 65%;
    left: 70%;
    transform: translate(-50%, -50%);
  }

  .whatsapp-overlay {
    margin-top: -40px;
    width: 50%;
    height: 420px;
    top: 66%;
    left: 70%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
  }

  .whatsapp-overlay1 {
    max-height: 400px;
    /* overflow-y: auto; */
  }


  .overlay-image {
    width: 70%;
    height: auto;
    margin-left: 10%;
    border-radius: 20px;
  }

  .text-message {
    width: 70%;
    margin-left: 10%;
    font-size: 10px;
  }

  .whatsapp-icon-overlay,
  .text-heading,
  .job-alert,
  .powered-by,
  .btn-join-whatsapp,
  .scroll-to-explore,
  .fa-caret-right,
  .explore-community {
    width: 30%;
    left: 25%;
    /* transform: translateX(-50%); */
    text-align: left;
    position: absolute;
  }

  .whatsapp-icon-overlay {
    width: 80px;
    height: 80px;
    top: 28%;
    left: 23%;
  }

  .text-heading {
    font-size: 12px;
    top: 48%;
    /* left: 15%; */
    font-weight: 500;
    width: 130px;
  }

  .fa-whatsapp {
    font-size: 12px;
  }

  .job-alert {
    font-size: 12px;
    top: 58%;
    font-weight: 500;
  }

  .powered-by {
    font-size: 12px;
    top: 73%;
  }

  .btn-join-whatsapp {
    top: 90%;
    height: 32px;
    font-size: 14px;
  }

  .scroll-to-explore {
    top: 82%;
    font-size: 14px;
  }

  .fa-caret-right {
    font-size: 24px;
    top: 80%;
    left: 55%
  }

  .explore-community {
    font-size: 16px;
    top: 8%;
  }
}

/* For Mobile Devices */
@media (max-width: 480px) {

  .whatsapp-channel {
    font-size: 16px;
  }

  /* .text-heading,
  .job-alert,
  .powered-by,
  .scroll-to-explore,
  .btn-join-whatsapp,
  .explore-community {
    font-size: 16px;
  }

  .text-heading {
    font-size: 24px;
  }

  .explore-community {
    font-size: 26px;
  } */

  .latest-updates {
    font-size: 22px;
  }
}


/*.side-image2 {
  width: 270px;
  height: 760px;
  filter: brightness(1); 
  text-decoration: none;
  border-top-right-radius: 20px; 
  border-top-left-radius: 0px;  
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 20px;
} */

/* .main-whatsapp-container {
  position: relative;
  width: 1218px;
  height: 900px;
  background: url("{% static 'whatsapp/whatsapp1.png' %}") no-repeat center/cover;
  opacity: 0.76;
  border-radius: 10px;
  z-index: 402;
}

.whatsapp {
  position: absolute;
  width: 1218px;
  height: 195px;
  top: 0;
  left: 0;
  background: url("{% static 'whatsapp/whatsapp2.png' %}") no-repeat center/cover;
  z-index: 403;
} */

/* ----------------------------------------------------- FAQ's -------------------------------------------------------- */

.FAQ-container {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 69px;
  padding-top: 0;
}

.FAQ-Titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  z-index: 525;
  margin-right: 10px;
}

.title-main {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #575757;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 1.6px;
}

.sub-title {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  /* height: 56px; */
  color: #032a52;
  font-family: 'Poppins', sans-serif !important;
  font-size: 42px;
  font-weight: 650;
  line-height: 56px;
  text-align: left;
  white-space: nowrap;
  z-index: 527;
  /* margin-bottom: 30px; */
}

/* FAQ Container */
.faq-main-container {
  /* margin: 1px auto; */
  margin-left: 180px;
  width: 1060px;
  margin-bottom: 69px;
}

.faq-item {
  border: 1px solid #ddd;
  padding: 10px;
  width: 1000px;
  margin-top: 35px;
}

.faq-questions {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  outline: none;
  text-align: left;
  color: #212121;
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  font-weight: 500;
  gap: 20px;
}

.faq-icon {
  font-size: 25px;
  transition: transform 0.3s ease-in-out;
  font-weight: 1000;
  color: #575757;
  border-radius: 4px;
  height: 20px;
}

.faq-answer {
  display: none; /* Initially hidden */
  padding: 10px;
  font-size: 16px;
  color: #555;
  transition: all 0.3s ease-in-out;
}

.faq-answer.active {
  display: block;
}

.faq-buttons {
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
  justify-content:right;
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .FAQ-container {
    margin-top: 50px;
  }


  .faq-main-container {
    margin: 0 auto;
    width: 90%;
  }

  .faq-item {
    width: 100%;
    padding: 8px;
  }

  .faq-questions {
    font-size: 18px;
    gap: 12px;
    padding: 8px;
  }

  .faq-answer {
    font-size: 15px;
    padding: 8px;
  }

  .FAQ-Titles {
    margin-right: 0;
  }

  .sub-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    white-space: normal;
  }

  .title-main {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .FAQ-container {
    margin-top: 50px;
  }

  .faq-main-container {
    margin: 0 auto;
    width: 95%;
  }

  .faq-item {
    width: 100%;
    padding: 6px;
    margin-top: 25px;
  }

  .faq-questions {
    font-size: 16px;
    gap: 10px;
    padding: 6px;
  }

  .faq-icon {
    font-size: 20px;
    height: 18px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 6px;
  }

  .FAQ-Titles {
    margin-right: 0;
  }

  .sub-title {
    font-size: 24px;
    line-height: 30px;
    white-space: normal;
    text-align: center;
  }

  .title-main {
    font-size: 12px;
    line-height: 20px;
  }
}

/* --------------------------------- Courses Page - Hero Section --------------------------------------------- */

/* Positioning the Swiper overlay to align with the main frame */
/* .swiper-overlay {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.swiper {
  max-width: 60%;
  height: 290px; 
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.swiper-wrapper {
  display: flex;
  align-items: center;
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}


.swiper-slide img {
  width: 100%;
  height: 290px; 
  max-width: 100%;
  max-height: 100%;
  object-fit:cover; 
  border-radius: 15px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}


.swiper-slide-active {
  transform: scale(1.1); 
  opacity: 1;
}



.swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.85);
  opacity: 0.5;
}


.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}


.swiper-slide-next-next,
.swiper-slide-prev-prev {
    opacity: 0.2; 
    filter: blur(8px); 
    transform: scale(0.8); 
}


.swiper-slide-next-next img,
.swiper-slide-prev-prev img {
    width: 60%;
    height: auto;
    transition: all 0.5s ease-in-out;
} */

.bg-img-course {
  position: absolute;
  width: 100%; /* Full width */
  height: 700px; /* Maintain aspect ratio */
  top: 0;
  left: 0;
  object-fit: cover; /* Ensure it covers the container */
  /* z-index: 2; */
  border-radius: 0px;
  opacity: 0.6;
  background-color: rgba(255, 255, 255, 0.293); /* white overlay */
}

/* ✅ Overlay text at the center */
.cousepg-main-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  font-weight: bold;
  color: black;
  z-index: 9;
  text-align: center;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;;
}

.cousepg-main-desc {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 500;
  color: black;
  z-index: 9;
  text-align: justify;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
}

.carousel-control-prev,
.carousel-control-next {
  margin-bottom: 10%;
  transform: translateX(0%);
}

.custom-arrow {
  font-size: 40px;
  color: black;
  position: absolute;
}

/* Prevent horizontal scroll globally */
html, body {
  overflow-x: hidden;
}


/* MEDIA QUERY: Tablets (≤768px) */
@media screen and (max-width: 768px) {
  /* .hero-container {
    padding: 20px 10px;
  }

  .main-frame {
    padding: 0 10px;
  } */

  .bg-img-course {
    width: 100%;
    height: 400px;
  }

  .cousepg-main-title {
    font-size: 16px;
    margin-top: 10px;
  }

  .cousepg-main-desc {
    font-size: 12px;
    padding: 0 5px;
    margin-top: 20px;
  }

  .carousel-inner,
  .carousel-item {
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}


/* MEDIA QUERY: Mobile (≤480px) */
@media screen and (max-width: 480px) {
  .cousepg-main-title {
    font-size: 14px;
  }

  .cousepg-main-desc {
    font-size: 12px;
    margin-top: 20px;
    font-weight: 500;
  }

  .custom-arrow {
    font-size: 1.5rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }
}


/* Main Swiper Container */
.swipercontainer-overlay {
  width: 100%;
  margin-bottom: 81px;
}

/* Swiper Container */
.swiper {
  /* max-width: 59.80%;
  height: 290px; */
  max-width: 59.65%;
  height: 350px;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: visible !important; */
}

/* Swiper Wrapper */
.swiper-wrapper {
  display: flex;
  align-items: center;
  overflow: visible !important;
}

/* Default Swiper Slide Styling */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  overflow: visible !important;
}

.image-wrapper {
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
  border-radius: 28px;
  padding: 0; /* no padding needed unless desired */
  background: #fff; /* optional */
}

.image-wrapper img {
  width: 100%;
  height: 290px;
  border-radius: 28px;
  display: block;
}

/* Image Styling */
.swiper-slide img {
  width: 100%;
  height: 290px;
  max-width: 100%;
  max-height: 100%;
  margin-top: 30px;
  border-radius: 28px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2);
}

/* ✅ Active Slide - Fully Visible & Enlarged */
.swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
}

/* ✅ Second Layer (Next & Prev Slides) - Clear but Slightly Smaller */
.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.25);  /* Slightly smaller */
  opacity: 10;  /* Clear visibility */
}

/* ✅ Third Layer (Shadow Effect) - Blurred & Darker */
/* Third Layer - Smaller & Blurry */
.swiper-slide-next-next,
.swiper-slide-prev-prev {
    transform: scale(0.9); /* Slightly smaller */
    opacity: 0.3; /* More visible */
    border-radius: 28px; /* ✅ Apply border-radius */
    transition: all 0.5s ease-in-out;
}

/* Ensure visibility for third-layer images */
.swiper-slide-next-next img,
.swiper-slide-prev-prev img {
  width: 80%;
  height: auto;
  transition: all 0.5s ease-in-out;
  border-radius: 15px; /* Ensures rounded corners */
}

/* Center align the navigation and pagination */
.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px; /* Space from the swiper */
  gap: 20px; /* Space between arrows and pagination */
  width: 100%;
  /* margin-top:20px; */
}

/* Pagination dots */
.swiper-pagination {
  /*position: absolute; /* Remove absolute positioning */
  display: flex;
  /* align-items: center;
  justify-content: center; */
  color: #7B61FF;
  position: static !important; /* Prevent Swiper from repositioning */
}

.swiper-pagination-active {
  background: #7B61FF;
}

/* Style for pagination bullets */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #7B61FF;
  /* opacity: 0.5; */
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}

/* Active bullet */
.swiper-pagination-bullet-active {
  background: #7B61FF;
  opacity: 1;
  transform: scale(1.2);
}

.fa-arrow-left-long {
  margin-left: 650px;
  color: rgb(85, 85, 85);
  background: none; /* Remove default background */
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: static !important; /* Prevent Swiper from repositioning */
}

.fa-arrow-right-long {
  margin-right: 680px;
  color: rgb(85, 85, 85);
  background: none; /* Remove default background */
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: static !important; /* Prevent Swiper from repositioning */
}

/* Hover effect for arrows */
/* .fa-arrow-left-long:hover,
.fa-arrow-right-long:hover {
  color: blue;
} */

/* Hide default swiper button icons */
.fa-arrow-left-long::after,
.fa-arrow-right-long::after {
  font-size: 26px;
}

/* ✅ Tablet View (≤768px) */
/* @media screen and (max-width: 768px) {
  .swiper {
    max-width: 90%;
    height: auto;
  }

  .swiper-slide {
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  .swiper-slide img,
  .image-wrapper img {
    height: 200px;
    border-radius: 30px;

  }

  .fa-arrow-left-long {
    display: none;
  }

  .fa-arrow-right-long {
    display: none;
  }

  .swiper-controls {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 20px;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
} */

/* ✅ Mobile View (≤480px) */
/* @media screen and (max-width: 480px) {
  .swipercontainer-overlay {
    padding: 0 10px;
  }

  .swiper {
    max-width: 100%;
    height: auto;
    flex-direction: column;
  }

  .swiper-slide {
    transform: scale(1) !important;
    opacity: 1 !important;
  }

  .image-wrapper img,
  .swiper-slide img {
    height: 180px;
    border-radius: 20px;
  }

  .swiper-controls {
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    gap: 10px;
  }

  .fa-arrow-left-long,
  .fa-arrow-right-long {
    display: none;
  }

  .swiper-pagination {
    display: flex;
    justify-content: center;
  }

  .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 3px;
  }
} */

/* ✅ Tablet & Mobile View Fixes (≤768px and ≤480px) */
@media screen and (max-width: 768px) {
  .swiper {
    max-width: 100%; /* Full width */
  }

  .swipercontainer-overlay {
    padding: 0 10px; /* Add safe spacing */
  }
    
  .swiper-controls {
    margin-top: 20px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .swiper-slide {
    transform: scale(1); /* Remove unwanted scaling */
    opacity: 1;
  }
}

@media screen and (max-width: 480px) {
  .swiper {
    max-width: 100%;
  }

  .swipercontainer-overlay {
    padding: 0 5px;
  }

  /* .fa-arrow-left-long,
  .fa-arrow-right-long {
    margin: 0;
  } */

  .swiper-controls {
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    flex-direction: row;
  }

  .swiper-pagination {
    display: flex;
    justify-content: center;
  }

  .swiper-slide {
    transform: scale(1);
    opacity: 1;
  }
}


.partners-scroll {
  width: 100%;
  z-index: 2;
  padding: 20px;
  margin-bottom: 86px;
  margin-top: -100px;
}

.partners-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.partners {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.partner-company-name {
  display: inline-flex;
  height: 41.007px;
  padding: 16.124px 37.966px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  border-radius: 7.831px;
  background: #032A52;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  font-size: 18.427px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 29.483px */
}

.fa-circle {
  font-size: 5px;
}

/* ----------------------------------- Course Page Main Menu Bar ----------------------------------- */

.coursepg-container {
  margin-bottom: 86px;
}

.course-menubar {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-left: 132px;
  margin-right: 15px;
  position: relative;
}

.maincourse-menu {
  color: #807A82;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
  height: 32px;
  margin-left: 30px;
  cursor: pointer;
  position: relative; /* Needed for absolute positioning of underline */
}

/* Active menu style */
.maincourse-menu.active {
  color: #3758B2;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}

.watch-demo-course {
  color: #535353;
  text-align: center;
  justify-content: center;
  font-size: 14px;
  font-style: normal;
  font-family: 'Poppins', sans-serif !important;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.14px;
  border: solid #b2b1b3;
  border-width: 2px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 176px;
  height: 40px;
  flex-shrink: 0;
  margin-top: -10px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 48%;
}

.course-apply-now {
  width: 172px;
  height: 40px;
  flex-shrink: 0;
  color: #FFF;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16.962px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 27.138px */
  letter-spacing: 0.17px;
  background-color: #032a52;
  margin-top: -10px;
  padding: 5px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 48%;
}

.border-line {
  margin-top: 29px;
  border: solid #dddddd;
  margin-left: 162px;
  margin-right: 170px;
  border-width: 1.5px;
  position: relative;
  z-index: 1; /* Keep it behind */
}

/* Active underline effect (overlaying border-line) */
.maincourse-menu.active::after {
  content: "";
  position: absolute;
  bottom: -30px; /* Adjust this value to overlap perfectly */
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #3758B2; /* Active underline color */
  z-index: 2; /* Ensure it is on the same level as the border-line */
}

.course-content-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 49px;
  /* margin-bottom: 69px; */
  padding-left: 80px;
  padding-right: 100px;
  height: auto;
}

/* Course Description (Left) */
.course-description {
  width: 60%;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}

.description-content {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.apply-course-btn {
  width: 200px;
  height: 40px;
  flex-shrink: 0;
  color: #FFF;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16.962px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 27.138px */
  letter-spacing: 0.17px;
  background-color: #032a52;
  margin-top: -10px;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
}

/* Course Form (Right) */
.course-form {
  width: 360px;
  padding: 20px;
  border-radius: 3px;
  margin-top: 30px;
  height: 740px;
  border-radius: 3px;
  border-bottom: 6px solid #000;
  background: #FFF;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}

.course-form-img {
  width: 320px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 5px;
  box-shadow: none;
/* background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), lightgray -2.273px -30.38px / 101.42% 159.375% no-repeat, #CCC; */
}

.course-form label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin-top: 10px;
}

.course-form input {
  display: flex;
  width: 320px;
  padding: 12.5px 0px 12.5px 12px;
  align-items: flex-start;
  margin-top: 30px;
  border-radius: 5px;
  border: 1px solid #E6E9FC;
  background: #FFF;
  color: #727695;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1px;
}

.form_tc {
  width: 320px;
  color: #727695;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
  margin-top: 10px;
}

.apply_counselling {
  color: #FFF;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  width: 320px;
  height: 43px;
  /* width: 100%; */
  flex-shrink: 0;
  border-radius: 5px;
  background: #575757;
  padding: 8px 70px 8px 70px;
  margin-top: 75px;
  border: none;
}

.apply_counselling:hover {
  background-color: #444;
}

.description-content-title {
  color: #575757;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 150% */
  text-transform: capitalize;
  margin-bottom: 26px;
}

.description-content-desc {
  color: #6F6B80;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%; /* 24.3px */
  display: flex;
  width: 853px;
  height: 67px;
  flex-direction: column;
  justify-content: center;
}

/* FAQ Section */
.course-content-faqdetails {
  max-width: 856px;
}

.course-faqitem {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  width: 856px;
  padding: 17px 29px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  margin-top: 30px;
}

/* Ensuring question and icon are in a row and spaced correctly */
.faq-maincourse {
  color: #595665;
  font-family: 'Inter', sans-serif !important;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 114.286% */
  display: flex;
  justify-content: space-between;  /* This makes sure the text and icon are on opposite ends */
  align-items: center;
  width: 100%; /* Make sure it stretches across the container */
}

/* Fixing icon alignment */
.faq-maincourse-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: #000000;
  margin-left: auto; /* Pushes the icon to the right */
  display: flex;
  align-items: center;
}

/* Hide answers initially */
.faq-maincourse-desc {
  display: none;
  margin-top: 10px;
  font-size: 20px;
  color: #575757;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  line-height: 25.879px; /* 114.393% */
  font-weight: 600;
}

.coursepg-desc-details-title {
  color: #575757;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%; /* 112.5% */
  text-transform: capitalize;
  margin-top: 40px;
}

.coursepg-desc-details-subtitle {
  color: #575757;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.879px; /* 114.393% */
  margin-top: 15px;
  margin-bottom: 20px;
  /* letter-spacing: 0.200px; */
}

.coursepg-desc-details-maindesc {
  color: #575757;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.879px; /* 114.393% */
  /* letter-spacing: 0.181px; */
  /* margin-top: 20px; */
}


/* Rotate arrow when active */
.course-faqitem.active .faq-maincourse-icon {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .course-content-wrapper {
    flex-direction: column;
    padding: 20px;
  }

  .course-form {
    width: 100%;
    margin-top: 20px;
  }

  .course-menubar {
    align-items: left;
    width: 330px;
  }

  .maincourse-menu {
    align-items: left;
    margin: 0px;
    display: flex;
    margin-left: -100px;
    width: 100px;
  }

  .course-description {
    margin-top: 20px;
    width: 100%;
  }

  .description-content-desc {
    width: 330px;
    font-size: 12px;
    text-align: justify;
  }

  .course-faqitem {
    width: 330px;
  }

  .faq-maincourse, .faq-maincourse-icon {
    font-size: 16px;
  }

  .watch-demo-course {
    display: none;
  }

  .course-apply-now {
    margin-left: 30px;
  }

  .border-line {
    /* width: 200px; */
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .course-content-wrapper {
    flex-direction: column;
    padding: 15px;
  }

  .course-form {
    width: 95%;
    margin-top: 15px;
  }

  .coursepg-form {
    width: 350px;
  }
  
  .course-form label, .course-form input {
    width: 280px;
  }

  .apply_counselling {
    width: 280px;
    font-weight: 300;
    line-height: 20px; /* 150% */
    font-size: 14px;
  }

  .course-form-img {
    width: 280px;
  }

  .course-menubar {
    align-items: flex-start;
    width: 50%;
  }

  .maincourse-menu {
    display: flex;
    align-items: flex-start;
    margin: 0;
    margin-left: -80px;
    width: 100%;
  }

  .course-description {
    margin-top: 15px;
    width: 100%;
  }

  .description-content-desc {
    width: 100%;
    font-size: 11px;
    text-align: justify;
  }

  .course-faqitem {
    width: 100%;
  }

  .faq-maincourse,
  .faq-maincourse-icon {
    font-size: 14px;
  }

  .watch-demo-course {
    display: none;
  }

  .course-apply-now {
    margin-left: 20px;
  }

  .border-line {
    display: none;
  }
}

/* -------------------------------------- Mentor Story Course Pg ------------------------------------------- */

.mentor-story-container {
  display: flex;  /* Enables flexbox */
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  width: 100%; /* Full width */
  position: relative; /* Keeps it flexible for layout */
  margin-bottom: 86px;
}

.mentor-story-bg {
  width: 1118px;
  height: 561px;
  flex-shrink: 0;
  aspect-ratio: 1118/561;
  object-fit:cover; /* Keeps aspect ratio */
  box-shadow: none;
}

.story-content {
  position: absolute; /* Places it on top of the background */
  top: 52%; /* Moves it to the center vertically */
  left: 32%; /* Moves it to the center horizontally */
  transform: translate(-50%, -50%); /* Perfect center alignment */
  z-index: 2; /* Ensures it appears above the background */
}

.story-img {
  width: 320px;
  height: 476px;
  flex-shrink: 0;
  box-shadow: none;
}

.story-heading {
  position: absolute; /* Places it on top of the background */
  transform: translate(-50%, -50%); /* Perfect center alignment */
  z-index: 2; /* Ensures it appears above the background */
  margin-left: 520px;
  top: 65px;
  display: flex;
  width: 448px;
  height: 20px;
  /* flex-direction: column; */
  justify-content: center;
  flex-shrink: 0;
  color: #FFF;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}

.custom-line {
  width: 48px;
  height: 2px;
  color: #FFF;
  border: none;
  margin: 10px 0; /* Adjust spacing */
}

.story-main-content {
  position: absolute; /* Places it on top of the background */
  transform: translate(-50%, -50%); /* Perfect center alignment */
  z-index: 2; /* Ensures it appears above the background */
  margin-left: 880px;
  top: 170px;
}

.story-title {
  width: 480px;
  height: 90px;
  flex-shrink: 0;
  color: #FFF;
  font-size: 35.2px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  font-family: 'Noto Sans', sans-serif;
  padding-top: 16px;
}

.story-desc {
  width: 512px;
  height: 108px;
  flex-shrink: 0;
  color: #E0E0E0;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
  padding-top: 40px;
}

.profile-mentor {
  display: flex;
  flex-direction: row;
  position: absolute; /* Places it on top of the background */
  transform: translate(-50%, -50%); /* Perfect center alignment */
  z-index: 2; /* Ensures it appears above the background */
  margin-left: 190px;
  margin-top: 20px;
}

.profile-mentor-pic {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 72px;
  border: 5px solid #FFF;
  background: #000;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
  margin-top: 200px;
}

.profile-mentor-details {
  margin-top: 215px;
  margin-left: 20px;
}

.profile-mentor-name {
  display: flex;
  width: 292px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #FFF;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}

.profile-mentor-dept {
  display: flex;
  width: 292px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #E0E0E0;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 22.4px */
  letter-spacing: 0.14px;
}

.FAQ-container-coursepg {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin-bottom: 69px;
  padding-top: 0;
}

.FAQ-Titles-coursepg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  z-index: 525;
  margin-right: 10px;
}

.title-main-coursepg {
  color: #575757;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  letter-spacing: 1.6px;
}

.sub-title-coursepg {
  color: #231F40;
  font-family: 'Poppins', sans-serif !important;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px; /* 140% */
  /* margin-bottom: 30px; */
}

/* FAQ Container */
.faq-main-container-coursepg {
  /* margin: 1px auto; */
  margin-left: 180px;
  width: 1060px;
  margin-bottom: 69px;
}

.faq-item-coursepg {
  border: 1px solid #ddd;
  padding: 10px;
  width: 1000px;
  margin-top: 35px;
}

.faq-questions-coursepg {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  outline: none;
  text-align: left;
  color: #212121;
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  font-weight: 500;
  gap: 20px;
}

.faq-icon {
  font-size: 25px;
  transition: transform 0.3s ease-in-out;
  font-weight: 1000;
  color: #575757;
  border-radius: 4px;
  height: 20px;
}

.faq-answer-coursepg {
  display: none; /* Initially hidden */
  padding: 10px;
  font-size: 16px;
  color: #555;
  transition: all 0.3s ease-in-out;
}

.faq-answer-coursepg.active {
  display: block;
}

.faq-buttons {
  gap: 10px; /* Adds spacing between buttons */
  width: 100%; /* Ensures it takes the full width of the container */
  justify-content:right;
}

@media screen and (max-width: 768px) {
  .faq-main-container-coursepg {
    width: 90%; /* Responsive width */
    margin: 0 auto 50px auto; /* Center the container */
    padding: 0 10px; /* Some inner spacing */
  }

  .faq-item-coursepg {
    width: 100%; /* Full width of container */
    margin-top: 25px;
    padding: 12px;
  }

  .faq-questions-coursepg {
    font-size: 18px;
    gap: 15px;
  }

  .faq-answer-coursepg {
    font-size: 15px;
  }

  .sub-title-coursepg {
    font-size: 30px;
    line-height: 42px;
  }

  .title-main-coursepg {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 480px) {
  .faq-main-container-coursepg {
    width: 95%;
    padding: 0 8px;
    margin: 0 auto 40px auto;
  }

  .faq-item-coursepg {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
  }

  .faq-questions-coursepg {
    font-size: 16px;
    gap: 12px;
  }

  .faq-answer-coursepg {
    font-size: 14px;
  }

  .sub-title-coursepg {
    font-size: 24px;
    line-height: 36px;
  }

  .title-main-coursepg {
    font-size: 13px;
    line-height: 20px;
  }
}

/* Custom arrows */
/*.custom-arrow {
  font-size: 2rem;
  color: #333;
} */

/* ----------------------------------------------- About Us Page Started ------------------------------------------------------ */

.aboutpg-main-container {
  margin-top: 89px;
  margin-bottom: 89px;
  margin-left: 565px;
  margin-right: 565px;
}

.aboutpg-main-header {
  /* position: absolute; */
  left: 565px;
  bottom: 89px;
  color: #C8C8C8;
  text-align: center;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 41.125px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .aboutpg-main-container {
    margin: 60px auto;
    padding: 0 20px;
  }

  .aboutpg-main-header {
    font-size: 32px;
    text-align: center;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .aboutpg-main-container {
    margin: 40px auto;
    padding: 0 15px;
  }

  .aboutpg-main-header {
    font-size: 24px;
    text-align: center;
  }
}

/* --------------------------------------------- Aboutpg container1 ----------------------------------------------------- */

.aboutpg-main-start1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 60px 150px 91px 150px;
  padding: 20px;
  gap: 100px;
}

.aboutpg-image1 {
  flex: 1;
  width: 542px;
  height: 398px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #959595;
  margin-left: -20px;
}

.aboutpg-img1 {
  width: 305px;
  height: 299px;
  border-radius: 23px;
  box-shadow: none;
}

.aboutpg-text-content {
  flex: 1.2;
  margin-right: -40px;
}

.aboutpg-desc-head1 {
  color: #646464;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 27px;
  margin: 10px 0 20px 0;
  font-feature-settings: 'liga' off, 'clig' off;
}

.aboutpg-main-desc1,
.maindesc1-para2,
.maindesc1-para3 {
  color: #3B3B3B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  letter-spacing: 0.48px;
  text-align: justify;
}

.aboutpg-main-desc1 {
  width: 626px;
  font-weight: 400;
}

.maindesc1-para2 {
  font-weight: 400;
}

.maindesc1-para3 {
  font-weight: 700;
}

/* --------------------------------------------- Aboutpg container2 ----------------------------------------------------- */

.aboutpg-main-start2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 60px 150px 91px 150px;
  padding: 20px;
  gap: 100px;
  background: #FCFCFD;
}

.aboutpg-text-content2 {
  flex: 1.2;
}

.aboupg-desc-head2 {
  color: #B1CAE5;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  opacity: 0.99;
  width: 530px;
}

.aboutpg-main-desc2 {
  width: 560px;
  align-self: stretch;
  color: #000;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.96px;
  margin-top: 16px;
}

.aboutpg-img-content2 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutpg-img2 {
  margin-right: -20px;
  width: 539px;
  height: 300px;
  flex-shrink: 0;
  aspect-ratio: 71/49;
  box-shadow: none;
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .aboutpg-main-start2 {
    flex-direction: column;
    margin: 40px 30px;
    gap: 40px;
    padding: 10px;
  }

  .aboupg-desc-head2 {
    font-size: 48px;
    width: 100%;
    text-align: center;
  }

  .aboutpg-main-desc2 {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    text-align: justify;
    letter-spacing: 0.5px;
  }

  .aboutpg-img2 {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .aboutpg-main-start2 {
    margin: 30px 15px;
    padding: 10px;
    gap: 30px;
  }

  .aboupg-desc-head2 {
    font-size: 36px;
    text-align: center;
    width: 100%;
  }

  .aboutpg-main-desc2 {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .aboutpg-img2 {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}

/* --------------------------------------------- Aboutpg container3 ----------------------------------------------------- */

.aboutpg-main-start3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 60px 150px 91px 150px;
  gap: 80px;
  padding: 20px;
  background: #FCFCFD;
}

.aboutpg-img-content3 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutpg-img3 {
  width: 539px;
  height: 300px;
  flex-shrink: 0;
  box-shadow: none;
}

.aboutpg-text-content3 {
  flex: 1.2;
}

.aboupg-desc-head3 {
  color: #B1CAE5;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  opacity: 0.99;
  width: 530px;
}

.aboutpg-main-desc3 {
  width: 560px;
  align-self: stretch;
  color: #000;
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.96px;
  margin-top: 16px;
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .aboutpg-main-start3 {
    flex-direction: column;
    margin: 40px 30px;
    gap: 40px;
    padding: 10px;
  }

  .aboutpg-img3 {
    width: 100%;
    height: auto;
  }

  .aboupg-desc-head3 {
    font-size: 48px;
    width: 100%;
    text-align: center;
  }

  .aboutpg-main-desc3 {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
    text-align: justify;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .aboutpg-main-start3 {
    margin: 30px 15px;
    padding: 10px;
    gap: 30px;
  }

  .aboutpg-img3 {
    width: 100%;
    height: auto;
  }

  .aboupg-desc-head3 {
    font-size: 36px;
    text-align: center;
    width: 100%;
  }

  .aboutpg-main-desc3 {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}


/* ------------------------------------------- Aboutpg Members --------------------------------------------- */

.aboutpg-members-conteiner {
  margin-bottom: 91px;
}

.aboutpg-members-heading {
  color: #363940;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
  letter-spacing: -0.32px;
  margin-bottom: 27px;
}

.aboutpg-members-subhead {
  color: #95A1BB;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}

.aboutpg-members-main-container {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 20px;
  margin: 0px 150px 0px 250px;
  margin-top: 91px;
}

.about-members-sub-container {
  flex: 3 3 calc(30% - 30px); /* 4 columns with gap adjustment */
  /* padding: 20px; */
  text-align: left;
}

/* .about-members-sub-container:hover {
  transform: translateY(-5px);
} */

.aboutpg-members1 {
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  object-fit:initial;
  margin-bottom: 15px;
  box-shadow: none;
  border-radius: 0px;
}

.aboutpg-member-name {
  color: #363940;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 122.222% */
  margin-top: 10px;
}

.aboutpg-member-designation {
  color: #95A1BB;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 166.667% */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}

.aboutpg-member-desc {
  width: 280px;
  color: #95A1BB;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  margin-top: 22px;
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .aboutpg-members-main-container {
    margin: 60px 30px 0 30px;
    gap: 40px;
    justify-content: center;
  }

  .about-members-sub-container {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aboutpg-members1 {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }

  .aboutpg-member-desc {
    width: 100%;
    max-width: 90%;
    text-align: center;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .aboutpg-members-main-container {
    margin: 40px 15px 0 15px;
    gap: 30px;
  }

  .aboutpg-members-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .aboutpg-members-subhead {
    font-size: 14px;
    line-height: 20px;
    margin: 0 10px;
  }

  .aboutpg-members1 {
    width: 180px;
    height: 180px;
  }

  .aboutpg-member-name {
    font-size: 16px;
  }

  .aboutpg-member-designation {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .aboutpg-member-desc {
    font-size: 13px;
    max-width: 95%;
    line-height: 20px;
  }
}

/* -------------------------------- About page gallery --------------------------------------- */

.aboutpg-gallery-container {
  margin-bottom: 91px;
}

.aboutpg-gallery-heading {
  color: #363940;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
  letter-spacing: -0.32px;
  margin-bottom: 27px;
}

.aboutpg-gallery-subhead {
  color: #95A1BB;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}

.aboutpg-gallery-main-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; /* Optional for responsiveness */
  gap: 20px;
  padding: 20px;
  margin: 91px 150px 0px 150px;
}

.aboutpg-gallery {
  width: calc(25% - 15px); /* 4 images per row with gap adjustment */
  /* width: 312px; */
  height: 262px;
  flex-shrink: 0;
  border-radius: 0px;
  object-fit:initial;
  box-shadow: none;
  /* transition: transform 0.3s ease; */
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .aboutpg-gallery-main-container {
    margin: 60px 30px 0 30px;
    padding: 0;
    justify-content: center;
    gap: 20px;
  }

  .aboutpg-gallery {
    width: calc(50% - 10px); /* 2 images per row */
    height: auto;
    object-fit: cover;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .aboutpg-gallery-heading {
    font-size: 24px;
    line-height: 32px;
  }

  .aboutpg-gallery-subhead {
    font-size: 14px;
    line-height: 20px;
    margin: 0 10px;
  }

  .aboutpg-gallery-main-container {
    margin: 40px 15px 0 15px;
    gap: 15px;
  }

  .aboutpg-gallery {
    width: 100%; /* 1 image per row */
    height: auto;
    object-fit: cover;
  }
}

/* ------------------------------------------ Blogs Page Start --------------------------------------- */

.blogs-startline {
  margin-top: 128px;
  margin-left: 130px;
  margin-bottom: 40px;
  display: inline-flex;
  padding: 7px 8px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.20) 100%), rgba(255, 255, 255, 0.02);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  color: #395877;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 18;
  font-style: normal;
  font-weight: 400;
  line-height: 15.283px; /* 150% */
}

.blogs-title-container {
  margin-left: 150px;
  margin-bottom: 50px;
}

.main-title-blogs {
  color: #565656;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 50.942px; /* 121.29% */
  margin-bottom: 20px;
}

.sub-title-blogs {
  color: #565656;
  font-family: 'Roboto', sans-serif /* Remove var(--default-font-family) */;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 15.283px; /* 76.413% */
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .blogs-startline {
    margin: 80px 20px 30px 20px;
    font-size: 16px;
    line-height: 20px;
    padding: 6px 10px;
  }

  .blogs-title-container {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
  }

  .main-title-blogs {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 15px;
  }

  .sub-title-blogs {
    font-size: 20px;
    line-height: 24px;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .blogs-startline {
    margin: 60px 15px 25px 15px;
    font-size: 14px;
    line-height: 18px;
    padding: 5px 8px;
    text-align: center;
  }

  .blogs-title-container {
    margin: 0 15px 30px 15px;
    text-align: center;
  }

  .main-title-blogs {
    font-size: 28px;
    line-height: 36px;
  }

  .sub-title-blogs {
    font-size: 16px;
    line-height: 22px;
  }
}

.search-bar-blog {
  position: relative;
  width: 588px;
  height: 46px;
  margin-left: 180px;
  margin-bottom: 50px;
}

.search-bar-blog .search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #505050;
  font-size: 16px;
  pointer-events: none;
}

.search-bar-blog .search-input {
  width: 100%;
  height: 100%;
  padding: 0 15px 0 42px; /* Extra left padding for icon */
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
  color: #505050;
  outline: none;
  box-sizing: border-box;
}

/* Tablet view (max-width: 768px) */
@media (max-width: 768px) {
  .search-bar-blog {
    width: 90%;
    margin: 0 auto 40px auto; /* Centered and spaced */
    height: 46px;
  }

  .search-bar-blog .search-input {
    font-size: 14px;
  }

  .search-bar-blog .search-icon {
    font-size: 15px;
    left: 12px;
  }
}

/* Mobile view (max-width: 480px) */
@media (max-width: 480px) {
  .search-bar-blog {
    width: 90%;
    margin: 0 auto 30px auto;
    height: 44px;
  }

  .search-bar-blog .search-input {
    font-size: 13px;
    padding-left: 38px; /* Slightly reduce padding on mobile */
  }

  .search-bar-blog .search-icon {
    font-size: 14px;
    left: 10px;
  }
}

/* ----------------------------------------- Blogs Page Menu bar ------------------------------------------- */

.blogpg-main-container {
  margin-bottom: 86px;
}

.blogpg-menubar {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin-left: 160px;
  margin-right: 15px;
  position: relative;
}

.blogpg-menu {
  color: #565656;
  text-align: center;
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
  height: 32px;
  margin-left: 30px;
  cursor: pointer;
  position: relative; /* Needed for absolute positioning of underline */
}

/* Active menu style */
.blogpg-menu.active {
  color: #3758B2;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.16px;
}

.blogpg-border-line {
  margin-top: 29px;
  border: dashed #dddddd;
  margin-left: 190px;
  margin-right: 140px;
  border-width: 1.5px;
  position: relative;
  z-index: 1; /* Keep it behind */
}

/* Active underline effect (overlaying border-line) */
.blogpg-menu.active::after {
  content: "";
  position: absolute;
  bottom: -30px; /* Adjust this value to overlap perfectly */
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: #3758B2; /* Active underline color */
  z-index: 2; /* Ensure it is on the same level as the border-line */
}


.blogpg-content-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 49px;
  /* margin-bottom: 69px; */
  padding-left: 30px;
  padding-right: 100px;
  height: auto;
}

.blog-description-content {
  display: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-left: 150px;
}

/* --------------------------------------- Blogs Description content -------------------------------------- */

.blogs-section-container {
  display: flex;
  justify-content: space-between;
  /* padding: 40px 60px; */
  gap: 40px;
  margin-left: -10px;
  margin-top: -30px;
}

/* Left Side */
.blogs-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-card {
  display: flex;
  gap: 20px;
  /* border: 1px solid #ddd; */
  padding: 16px;
  border-radius: 8px;
  /* transition: box-shadow 0.3s ease;
  background-color: #fff; */
  width: 800px;
}

/* .blog-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
} */

.blog-image {
  width: 300px;
  height: 150px;
  /* object-fit: cover; */
  border-radius: 10px;
  box-shadow: none;
}

.blog-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 488px;
}

.blog-title {
  color: #505050;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.83px; /* 155.556% */
}

.blog-snippet {
  color: #505050;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.283px; /* 150% */
}

.know-more-blog {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  background-color: #032a52;
  width: 150px;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
}

.blogpg-blog-border {
  margin-top: 29px;
  border: solid #5a5a5a;
  /* margin-left: 230px;
  margin-right: 140px; */
  border-width: 1.6px;
  position: relative;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 6px 12px;
  border: 1px solid #F9FAFB;
  border-radius: 4px;
  text-decoration: none;
  color: #3B3B3B;
  transition: 0.3s;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.page-btn:hover {
  background-color: #b2b2b2;
  color: #3B3B3B;
}

.page-btn.active {
  background-color: #b2b2b2;
  color: #3B3B3B;
  pointer-events: none;
}

/* Right Side */
.blogs-right {
  flex: 1;
  /* background-color: #f9f9f9; */
  padding: 20px;
  /* border-radius: 8px;
  border: 1px solid #ddd; */
  margin-left: 30px;
  width: 300px;
}

.trending-header {
  color: #777E90;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; 
  margin-bottom: 20px;
}

.fa-blog {
  font-size: 23px;
  color: #fff;
  background-color: #777E90;
  border-radius: 50px;
  text-align: center;
  padding: 10px;
}

.blogpg-highlight-border {
  /* margin-top: 29px; */
  border: solid #828282;
  /* margin-left: 230px;
  margin-right: 170px; */
  border-width: 1.5px;
  position: relative;
  margin-bottom: 15px;
  width: 320px;
}

.trending-list {
  list-style: none;
  padding-left: 0;
}

.trending-list li {
  margin-bottom: 12px;
}

.highlights {
  flex: 2;
  display: flex;
  flex-direction: row;
  gap: 7px;
}

.blog-highlight-image {
  width: 130px;
  height: 70px;
  border-radius: 5px;
  box-shadow: none;
}

.highlight-blog-title {
  color: #777E90;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 157.143% */
  width: 200px;
}

.blog-date {
  color: #777E90;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 157.143% */
  width: 200px;
  margin-top: 10px;
}

.trending-list a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s ease;
}

/* .trending-list a:hover {
  color: #007bff;
} */

@media screen and (max-width: 768px) {

  html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  .blogpg-main-container {
    margin-bottom: 20px;
    padding: 10px;
    width: 80%;
    margin: 10px;
    margin-left: -100px;
  }

  .blogpg-content-wrapper {
    margin: 5px;
    width: 90%;
    padding: 10px;
    margin-left: 80px;
    /* align-items: center;
    justify-items: center; */
    justify-content: center;
  }

  .blogs-left {
    /* margin-left: 80px; */
    margin-top: 30px;
  }

  /* .blog-image {
    margin-left: -190px;
  } */

  .blog-title {
    font-size: 18px;
    width: 360px;
    margin-left: 80px;
  }

  .blog-snippet {
    width: 360px;
    margin-left: 80px;
  }

  .know-more-blog {
    margin-left: 80px;
  }

  .blogpg-blog-border {
    width: 95%;
  }
  
  .blogs-section-container {
    flex-direction: column;
  }
  .blogs-left,
  .blogs-right {
    width: 80%;
  }
  .blog-card {
    flex-direction: column;
    align-items: center;
  }

  .pagination {
    margin-left: 80px;
  }

  .blogs-right {
    margin-left: 210px;
  }
}

@media screen and (max-width: 480px) {
  .blog-snippet {
    width: 320px;
  }

  .blog-title {
    font-size: 16px;
    width: 320px;
  }
}


/* --------------------------------------- Blogs - News Letter ---------------------------------------------- */

.newsletter-container {
  margin-top: 81px;
  margin-bottom: 81px;
  position: relative;
}

.newletter-bg {
  width: 1100px;
  height: 350px;
  flex-shrink: 0;
  margin-left: 200px;
  border-radius: 100px;
  box-shadow: none;
}


.header-newsletter {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: var(--base-white, #FFF);
  font-family: 'Poppins', sans-serif !important;
  font-size: 40px;
}

.subscribe-form-container {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* .subscribe-form {
  width: 1500px;
  height: 100px;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
} */

.subscribe-form-name, .subscribe-form-email {
  width: 230px;
  height: 50px;
  margin-left: 5px;
  border-radius: 5px;
  padding: 10px;
  background-color: #848484;
  border:solid #fff;
  border-width: 2px;
}

.subscribe-form-name::placeholder,
.subscribe-form-email::placeholder {
  color: var(--base-white, #FFF);
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 16.556px; /* 162.5% */          
}

.subscribe-now {
  width: 230px;
  height: 50px;
  margin-left: 5px;
  border-radius: 5px;
  padding: 10px;
  background: var(--Base-02, #090914);
  border: none;
  color: var(--base-white, #FFF);
  font-family: 'Poppins', sans-serif !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 17.83px; /* 175% */
  letter-spacing: -0.127px;
}

/* -------------------------------------- Blog Details Page ------------------------------------------ */

.blog-detailpg-container {
  max-width: 1000px;           /* Optional: limit width for better readability */
  margin: 100px auto;          /* Centers horizontally and adds top/bottom spacing */
  padding: 20px;
}

.blog-detailpg-title {
  font-size: 35px;
  margin-bottom: 40px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-detailpg-img {
  width: 100%;
  max-width: 100%;            /* Ensures the image doesn't overflow */
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: none;
}

.blog-detailpg-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(57, 56, 56);
  text-align: justify;
  font-family: 'Roboto', sans-serif;
}

/* ----------------------------------------- Privacy Policy ---------------------------------------- */

/* Container Styling */
.privacy-policy-container {
    max-width: 900px;
    margin: 80px auto; /* centers the entire section */
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: #fff;
}

/* Heading Styling */
.heading-privacypolicy {
    text-align: center;
    margin-bottom: 30px;
}

.Privacy-Policy-style {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

/* Content Styling */
.privacy-policy-content {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    color: #444;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .privacy-policy-container {
        margin: 40px 15px;
        padding: 20px;
    }

    .Privacy-Policy-style {
        font-size: 24px;
    }

    .privacy-policy-content {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .privacy-policy-container {
        margin: 30px 10px;
        padding: 15px;
    }

    .Privacy-Policy-style {
        font-size: 20px;
    }

    .privacy-policy-content {
        font-size: 14px;
    }
}

/*---------------------------- Course-Form-Page -----------------------------------*/

.courseform-hero-container {
  position: relative;
  margin-top: -50px; /* Pulls content up so it overlaps */
  z-index: 1; /* Keeps it behind the logo */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  width: 100%; /* Full viewport width */
  height: 700px;
  margin: 0 auto;
  padding-top: 0;
  overflow: hidden;
  margin-bottom: 69px;
}

.courseform-main-frame {
  position: relative;
  margin-top: -50px; /* Pulls content up so it overlaps */
  z-index: 1; /* Keeps it behind the logo */
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%; /* Full viewport width */
  height: 700px;
  overflow: hidden;
}

.courseform-group {
  position: relative;
  width: 100vw;
  height: 650px;
}

.courseform-frame-1 {
  position: relative;
  width: 305px;
  height: 23.768px;
  margin: 157.617px 0 0 73.234px;
  z-index: 6;
  overflow: hidden;
}

.courseform-img-hero2 {
  position: absolute;
  width: 100%; 
  height: 700px; 
  top: 0;
  left: 0;
  object-fit: cover; 
  z-index: 4;
  border-radius: 0px;
}

.courseform-apply-tag {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(270deg, #182135 9.5%, #F3042C 100%);
  position: absolute;
  pointer-events: auto;
  top: 120px; /* Adjust this to move up/down */
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 40px;
  border-radius: 8px;
  z-index: 2;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.courseform-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  font-style: normal;
  width: 100vw;
  color: #ffffff;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 90px; 
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  line-height: 100%;
  text-align: center;
  white-space: nowrap;
  opacity: 0.99;
  z-index: 67;
}

.courseform-title{
  position: absolute;
  top: 260px; /* Adjust this to move up/down */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.courseform-main-title{
  font-size: 37.5px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-weight: 700;
  text-align: center;
}

.course-sub-intro{
  position: absolute;
  top: 330px; /* Adjust this to move up/down */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-intro{
  font-size: 15px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-weight: 400;
  width: 850px;
  color: #747579;
}

.course-sub-topics {
  position: absolute;
  top: 380px; /* Adjust this to move up/down */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.course-subtopic-heading {
  font-size: 15px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-weight: 400;
  width: 850px;
  color: #747579;
  margin-top: 20px;
}

.fa-circle {
  text-align: center;
  font-size: 8px;
}

.course-subtopic {
  font-size: 15px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-weight: 400;
  width: 850px;
  color: #747579;
  line-height: 30px;
}

.course-sub-intro,
.course-sub-topics {
  pointer-events: auto;  /* allow clicks by default */
}

.courseform-img-hero2,
.courseform-frame-1 {
  pointer-events: none;   /* background shouldn't block clicks */
}

/* ------------------ TABLETS (Screen width <= 992px) ------------------ */
@media (max-width: 992px) {
  .courseform-hero-container,
  .courseform-main-frame {
    height: auto;
  }

  .courseform-img-hero2 {
    height: 500px;
  }

  .courseform-apply {
    font-size: 48px;       /* Reduce size */
    padding: 12px 20px;
  }

  .courseform-title {
    top: 220px;
  }

  .course-sub-intro {
    top: 290px;
  }

  .course-subtopic-heading,
  .sub-intro {
    width: 90%;            /* Reduce width */
  }

  .course-sub-topics {
    top: 400px;
  }
}

/* ------------------ MOBILE (Screen width <= 576px) ------------------ */
@media (max-width: 576px) {
  .courseform-img-hero2 {
    height: 700px;
    /* object-fit: cover; */
  }

  .courseform-apply {
    font-size: 30px;               /* This solves “TOO BIG TEXT” issue */
    width: auto;
    white-space: normal;           /* Prevents overflow / wraps text */
    text-align: center;
    padding: 10px 20px;
  }

  .courseform-apply-tag {
    width: 100vw;
    border-radius: 0px;
  }

  .courseform-title {
    top: 230px;
  }

  .courseform-main-title {
    font-size: 24px;               /* Reduce title */
  }

  .course-sub-intro {
    top: 340px;
  }

  .sub-intro {
    font-size: 13px;
    width: 85%;
    text-align: left;
  }

  .course-sub-topics {
    top: 530px;
  }

  .course-subtopic-heading,
  .course-subtopic {
    width: 85%;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
  }

  .fa-circle {
    font-size: 6px;
  }
}

/* === Form Container === */
.course_form {
  padding: 40px 50px;
  width: 100%;
  max-width: 900px;
  margin-left: 300px;
  margin-top: -100px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
}

/* === Heading === */
.course_form_heading {
  text-align: left;
  margin-bottom: 30px;
  font-size: 21px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

.course_form_subheading {
  text-align: left;
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
  letter-spacing: 1px;
}

/* === Each Row (Label + Input beside each other) === */
.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 20px;
  margin-top: 24px;
}

/* Label Styling */
.form-row label {
  flex: 1;
  font-size: 16px;
  color: #333;
  font-weight: 700;
}

/* Input Styling */
.form-row input,
.form-row select {
  flex: 2;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
.form-row input:focus,
.form-row select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 4px rgba(0, 86, 179, 0.3);
}

/* DOB Select Fields */
.dob-select {
  display: flex;
  gap: 20px;
  flex: 2.1;
}

.dob-select select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #9A9EA4;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
}

/* Submit Button */
.course_form_save[type="submit"] {
  width: 80px;
  background-color: #066AC9;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.course_form_modify {
  width: 120px;
  background-color: #066AC9;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  padding: 8px 16px 8px 16px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.form-next-section {
  display: flex;
  justify-content:center;
  margin-bottom: 30px;   
}

.next-btn {
  background-color: #066AC9;
  color: white;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 5.2px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 150px;
  text-align: center;
  text-decoration: none;
}

.next-btn.disabled {
  background: gray;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.form-divider-section {
  width: 100%;
  max-width: 830px;
  height: 2px;
  background-color: #bdbec2; /* soft light grey */
  margin: 0px auto 20px auto;
  border-radius: 8px;
}

.course_additional_form {
  padding: 40px 50px;
  width: 100%;
  max-width: 900px;
  margin-left: 300px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
}

/* Add this in your style.css */
.course_additional_form .form-row .field-radio {
  display: flex;
  gap: 10px; /* balanced spacing between each option */
  align-items: center;
  justify-content:start; /* align to the left */
  flex-wrap: wrap; /* allows wrapping if many options */
}

.course_additional_form .form-row .field-radio label {
  display: flex;
  align-items: center;
  gap: 10px; /* small gap between radio button and label text */
  margin-right: 104px; /* small space between groups */
}

/* Add this in your style.css */
.course_additional_form .form-row .field-radio-family {
  display: flex;
  gap: 10px; /* balanced spacing between each option */
  align-items: center;
  justify-content:start; /* align to the left */
  flex-wrap: wrap; /* allows wrapping if many options */
}

.course_additional_form .form-row .field-radio-family label {
  display: flex;
  align-items: center;
  gap: 10px; /* small gap between radio button and label text */
  margin-right: 76px; /* small space between groups */
}

.form-row-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 20px;
  margin-top: 24px;
}

/* Container for both fields */
.form-row-inline {
  display: flex;
  justify-content: space-between;
  gap: 40px; /* space between the two sets */
  align-items: center;
  margin-bottom: 15px;
}

/* Each field group (label + input) */
.form-group-inline {
  display: flex;
  align-items: center;
  gap: 10px; /* space between label and input */
  flex: 1;
}

/* Make inputs align neatly and not shrink */
.form-group-inline input {
  flex: 1;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Optional: for better label alignment */
.form-group-inline label {
  min-width: 180px; /* adjust based on label length */
  font-weight: 700;
}

.form-input-group {
  display: flex;
  flex-direction: column;
  width: 66%;
}

.error-msg {
  color: red;
  margin-top: 4px;
  font-size: 13px;
}

.form-message {
  width: 100%;
  max-width: 820px;
  margin-left: 340px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 20px;
  background: #C8F7C5;
  color: #145A32;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 600;
}

.alert-danger {
  width: 100%;
  max-width: 820px;
  margin-left: 340px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-size: 20px;
}

/* ======================================================= */
/* RESPONSIVE DESIGN */
/* ======================================================= */

/* === Small Laptops (≤1024px) === */
@media (max-width: 1024px) {
  .course_form {
    max-width: 750px;
    margin-left: 100px;
    margin-top: -50px;
    padding: 35px 40px;
  }

  .course_additional_form {
    max-width: 750px;
    margin-left: 100px;
    margin-top: -50px;
    padding: 35px 40px;
  }

  .form-row label {
    font-size: 14px;
  }

  .form-row input,
  .form-row select {
    font-size: 14px;
  }
}

/* === Tablets (≤768px) === */
@media (max-width: 768px) {
  .course_form {
    max-width: 90%;
    margin: 40px auto;
    padding: 30px 25px;
  }

  .course_additional_form {
    max-width: 90%;
    margin: 40px auto;
    padding: 30px 25px;
  }

  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .form-row label {
    width: 100%;
    font-size: 15px;
  }

  .form-row input,
  .form-row select {
    width: 100%;
  }

  .dob-select {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .course_form_save[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }

  .course_form_modify[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }

  .form-message {
    max-width: 90%;
    margin: 20px auto;
    font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
    font-size: 16px;
    background: #C8F7C5;
    color: #145A32;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .alert-danger {
    max-width: 90%;
    margin: 20px auto;
    font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
    font-size: 16px;
  }
}

/* === Mobile Phones (≤480px) === */
@media (max-width: 480px) {
  .course_form {
    max-width: 90%;
    margin: 30px auto;
    padding: 25px 20px;
    box-shadow: none; /* optional – for clean mobile view */
  }

  .course_additional_form {
    max-width: 90%;
    margin: 30px auto;
    padding: 25px 20px;
    box-shadow: none; /* optional – for clean mobile view */
  }

  .course_form_heading h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
  }

  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .form-row label {
    font-size: 14px;
    font-weight: 600;
  }

  .form-row input,
  .form-row select {
    width: 100%;
    font-size: 14px;
    padding: 8px 10px;
  }

  .dob-select {
    flex-direction: column;
    gap: 8px;
  }

  .course_form_save[type="submit"] {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
  }

  .course_form_modify[type="submit"] {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
  }

  .form-message {
    max-width: 90%;
    margin: 20px auto;
    font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
    font-size: 16px;
    background: #C8F7C5;
    color: #145A32;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .alert-danger {
    max-width: 90%;
    margin: 20px auto;
    font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
    font-size: 16px;
  }
}

/* ------------------ Upload Documents --------------------- */

.uploaddocs-title{
  position: absolute;
  top: 300px; /* Adjust this to move up/down */
  left: 36%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.uploaddocs-main-title{
  font-size: 40px;
  font-family: 'Roboto', sans-serif; /* Remove var(--default-font-family) */;
  font-weight: 700;
  text-align: center;
}

/* ===== Upload Section Container ===== */
.upload-container {
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    margin-left: 320px;
    margin-top: -100px;
}

/* Heading */
.upload-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1b1b1b;
    text-align: left;
    margin-bottom: 20px;
}

/* ===== Dropzone Styling ===== */
.dropzone {
    border: 2px dashed #b5d6ff;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    transition: all 0.3s ease;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    height: 350px;
    width: 750px;
}

.dropzone.dragover {
    background-color: #ffffff;
    border-color: #007bff;
}

.icon img {
  height: 100px;
  width: 120px;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 40px;
    margin-top: 20px;
}

.dropzone p {
    margin: 5px 0;
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
}

.dropzone .formats {
    font-size: 20px;
    color: #777;
}

#browseLink {
    color: #007bff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* ===== File List Section ===== */
.file-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Each file item box */
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 750px;
}

/* .file-item:hover {
    background-color: #e6f0ff;
} */

/* File Name Link */
.file-item .file-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    word-break: break-word;
}

.file-item .file-link:hover {
    text-decoration: underline;
}

/* Delete Icon */
.file-item .remove-btn {
    background-color: rgb(255, 237, 204);
    padding: 6px 10px 6px 10px;
    border-radius: 100%;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s ease;
}

.file-item .remove-btn:hover {
    color: #d32f2f;
}

/* ===== Upload Button ===== */
.upload-btn {
    display: block;
    width: 300px;
    background: #007bff;
    color: white;
    font-weight: 600;
    border: none;
    padding: 14px 0;
    border-radius: 4px;
    margin-top: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-left: 220px;
}

.upload-btn:hover {
    background-color: #0056d6;
    transform: translateY(-2px);
}

.preview-btn {
  display: block;
  width: 500px;
  background-color: #0056d6;
  color: white;
  font-weight: 600;
  border: none;
  padding: 14px 0;
  border-radius: 4px;
  margin-top: 25px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-left: 120px;
}

.preview-btn:hover{
  background: #007bff;;
  transform: translateY(-2px);
}


/* ================================================= */
/* MOBILE VIEW (max-width: 576px) */
/* ================================================= */
@media (max-width: 576px) {

    /* Title section fix */
    .uploaddocs-title {
        top: 250px;             /* Moves title up */
        left: 50%;              /* Always center horizontally */
        transform: translateX(-50%);
        width: 100%;
    }

    .uploaddocs-main-title {
        font-size: 22px;        /* Reduce title size */
        text-align: center;
    }

    .course-sub-topics {
      margin-top: -100px;
    }

    /* Upload container */
    .upload-container {
        margin-left: 0;         /* Remove forced left alignment */
        margin-top: 20px;
        width: 90%;             /* Responsive width */
        padding: 25px;
        border-radius: 12px;
    }

    /* Dropzone */
    .dropzone {
        width: 100% !important;
        height: 240px;          /* Reduce height */
        padding: 30px 15px;
    }

    .dropzone p {
        font-size: 16px !important;
        margin-bottom: 10px;
    }

    .dropzone .formats {
        font-size: 13px;
    }

    .icon img {
        height: 70px;
        width: 90px;
        margin-bottom: 15px;
    }

    /* File list */
    .file-item {
        width: 100% !important;
        font-size: 13px;
        padding: 10px;
    }

    /* Upload button */
    .upload-btn {
        width: 80% !important;
        margin-left: 0;
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .preview-btn {
      width: 100% !important;
      margin-left: 0;
      padding: 12px 0;
      font-size: 0.95rem;
    }
}

/* ================================================= */
/* TABLET VIEW (max-width: 768px) */
/* ================================================= */
@media (max-width: 768px) {

    .upload-container {
        margin-left: 0;
        width: 95%;
        padding: 30px;
    }

    .dropzone {
        width: 100%;
        height: 300px;
    }

    .file-item {
        width: 100%;
    }

    .upload-btn {
        width: 80%;
    }

    .preview-btn{
      width: 100%;
    }
}

/* ---------------------- */
/* HERO SECTION LAYOUT FIX */
/* ---------------------- */

.courseform-hero-container-preview {
  position: relative;
  width: 100%;
  min-height: auto;     /* let height grow naturally */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  overflow: visible; 
  margin-top: -30px;
  margin-bottom: 0px;  /* clean small gap, not 2700px */
  box-shadow: none;
}

.courseform-main-frame-preview {
  width: 100%;
  min-height: 700px;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.courseform-group-preview {
  width: 100%;
  position: relative;
  box-shadow: none;
}

/* Background image */
.courseform-img-hero2-preview {
  position: absolute;
  width: 100%; 
  height: 700px; 
  top: 0;
  left: 0;
  object-fit: cover; 
  z-index: 1;
  box-shadow: none;
}

/* ---------------------- */
/* APPLY BANNER */
/* ---------------------- */

.courseform-apply-preview {
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  font-weight: 700;
  /* color: #fff; */
  text-align: center;
  margin: 0;
}

/* ---------------------- */
/* APPLICATION PREVIEW BOX */
/* ---------------------- */

.application-preview-container {
  position: relative;      /* CHANGED */
  margin-top: 250px;       /* replaces top: 250px absolute */
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
  padding-bottom: 10px;
}

.app-preview-main-container {
  width: 850px;
  padding: 40px;
  margin-bottom: 10px;
  font-family: 'Roboto', sans-serif;
}

/* ---------------------- */
/* HEADINGS */
/* ---------------------- */

.application-preview-header {
  width: 850px;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  right: 30%;
}

.preview-main-header {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
  color: #182135;
}

/* ---------------------- */
/* TEXT OVERRIDES */
/* ---------------------- */

.app-preview-main-container p {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 0 20px;
  line-height: 150%;
  font-family: 'Roboto', sans-serif;

}

.preview-data {
  font-size: 18px;
  font-weight: 400;
  margin-left: 20px;
  color: rgb(95, 93, 93);
}

hr {
  margin: 30px 0;
  border: none;
  height: 1px;
  /* background: #ddd; */
}

/* ---------------------- */
/* BUTTONS */
/* ---------------------- */

.finalize-submit {
  background: #182135;
  padding: 12px 20px;
  font-size: 16px;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
}

.btn-success:hover {
  background: #F3042C;
  transition: 0.3s ease;
}

/* Uploaded Documents */
.uploaded-docs-preview {
  padding-left: 20px;
  margin-top: 15px;
}

.uploaded-docs-preview li {
  margin-bottom: 10px;
}

.uploaded-docs-preview a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 1024px) {

  .courseform-img-hero2-preview {
    height: 550px;
  }

  .application-preview-container {
    margin-top: 220px;
  }

  .app-preview-main-container,
  .application-preview-header {
    width: 92%;
    padding: 30px;
  }

  .application-preview-header {
    font-size: 32px;
  }

  .preview-main-header {
    font-size: 26px;
  }

  .app-preview-main-container p,
  .preview-data {
    font-size: 16px;
  }

}

@media (max-width: 768px) {

  .courseform-img-hero2-preview {
    height: 450px;
  }

  .courseform-apply-preview {
    font-size: 32px;
  }

  .application-preview-container {
    margin-top: 180px;
  }

  .app-preview-main-container {
    width: 90%;
    padding: 25px;
  }

  .application-preview-header {
    width: 90%;
    font-size: 28px;
  }

  .preview-main-header {
    font-size: 24px;
  }

  .uploaded-docs-preview {
    padding-left: 10px;
  }

  .uploaded-docs-preview a {
    font-size: 15px;
  }

  .app-preview-main-container p,
  .preview-data {
    font-size: 15px;
    margin-left: 10px;
  }
}

@media (max-width: 480px) {

  .courseform-img-hero2-preview {
    height: 350px;
  }

  .courseform-apply-preview {
    font-size: 26px;
  }

  .application-preview-container {
    margin-top: 150px;
  }

  .app-preview-main-container {
    width: 94%;
    padding: 20px;
  }

  .application-preview-header {
    width: 94%;
    font-size: 24px;
  }

  .preview-main-header {
    font-size: 20px;
  }

  .app-preview-main-container p {
    font-size: 14px;
    margin: 12px 0 0 5px;
  }

  .preview-data {
    font-size: 14px;
    margin-left: 5px;
  }

  .uploaded-docs-preview li {
    margin-bottom: 8px;
  }

  .uploaded-docs-preview a {
    font-size: 14px;
    word-break: break-all;     /* Prevent long file names from overflowing */
    display: inline-block;     /* Allows wrapping */
  }

  .finalize-submit {
    width: 100%;
    font-size: 15px;
    padding: 12px;
  }
}
