* {
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #FCDD06;
  --secondary-color: #FBA919;
  --third-color: #efda20;
  --white-color: #ffff;
  --black-color: #0000;
}

/* SECTION */
.about-section {
  position: relative;
  background: var(--third-color);
  padding: 120px 0;
  overflow: hidden;
}

/* LEFT DOT PATTERN */
.about-section::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(#fff2cf 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.6;
}

/* RIGHT CURVED SHAPE */
.about-section::after {
  content: '';
  position: absolute;
  right: -140px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: linear-gradient(180deg, #fff2e1, #ffefe8);
  border-radius: 50% 0 50% 50%;
}

/* CONTENT BOX */
.about-content {
  position: relative;
  z-index: 2;
}

/* INNER RECTANGLE SHAPE */
.about-content::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: linear-gradient(180deg, #facc15, #ffffff);
  border-radius: 20px;
  opacity: 0.8;
  z-index: -1;
}

/* TEXT */
.about-content h2 {
  font-size: 44px;
  font-weight: 700;
  color: #2b1a5a;
  margin-bottom: 20px;
}

.about-content h1 {
    font-size: 44px;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  color: #4b3c7a;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 30px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-section::after {
    width: 260px;
    height: 260px;
    right: -100px;
  }
}

@media (max-width: 576px) {

  .about-section::before,
  .about-content::after {
    display: none;
  }
}



/* ==================about us academy =================== */

.academy-section {
  background: #fff;
}

/* Image Collage */
.image-collage {
  position: relative;
  border: 1px solid red;
}

/* Main Image */
.main-img {
  width: 100%;
  border-radius: 12px;
  position: relative;
}


/* Absolute Image – Bottom Right */
.small-img {
  position: absolute;
  right: -10px;
  bottom: -10px;

  width: 180px;
  height: 160px;

  border-radius: 12px;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(5px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.432);
  z-index: 5;
}


.small-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

/* Positioning small images */
.img1 {
  top: 10%;
  left: -30px;
}

.img2 {
  top: 40%;
  left: -50px;
}

.img3 {
  bottom: 10%;
  left: -30px;
}

.img4 {
  top: 25%;
  right: -40px;
}

.img5 {
  bottom: 15%;
  right: -30px;
}

/* Text styling */
.academy-section h2 {
  color: #0b0d39;
}

.academy-section p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 991px) {
  .small-img {
    width: 100%;
    left: 0%;
    background: linear-gradient(rgba(255, 255, 255, 0.247), wheat);
  }
}


/* ===============why choose us section================= */

.why-choose-section {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* Heading */
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0b0d39;
  margin-bottom: 25px;
}

.section-title span {
  display: block;
}

/* Text */
.why-choose-section p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15.5px;
}

/* CV Points */
.cv-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.cv-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
}

.cv-points i {
  color: #00c853;
  font-size: 16px;
}

/* Image Area */
.image-wrap {
  position: relative;
  display: inline-block;
}

.trainer-img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Decorative background */
.image-wrap::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 360px;
  background: #fbb034;
  border-radius: 50% 50% 20% 20%;
  z-index: 1;
}

/* Dots */
.dot {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
}

.dot.blue {
  width: 12px;
  height: 12px;
  background: yellow;
  top: 60px;
  left: -10px;
}

.dot.cyan {
  width: 18px;
  height: 18px;
  background: orange;
  top: 90px;
  left: 15px;
}

/* Badge */
.badge-box {
  position: absolute;
  right: -30px;
  top: 40%;
  background: #000;
  color: #fff;
  padding: 12px 14px;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  text-align: center;
  font-size: 11px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-box strong {
  font-size: 12px;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .image-wrap::before {
    display: none;
  }

  .badge-box {
    right: 0;
  }
}


/* =================get place Dream company================ */

.dream-section {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

/* Heading */
.dream-title {
  font-size: 44px;
  font-weight: 800;
  color: #0b0d39;
  margin-bottom: 20px;
}

/* Text */
.dream-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.dream-section p strong {
  color: #0b0d39;
}


/* Video Frame */
.video-frame {
  position: relative;
  display: inline-block;
  border-radius: 24px;
  background: #111;
  padding: 10px;
}

.video-img {
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  display: block;
}


/* Responsive */
@media (max-width: 991px) {
  .dream-title {
    font-size: 34px;
  }

  .video-img {
    max-width: 100%;
  }
}



/* ==================our Teachers======================  */


/* Section */
.team-section {
  background: linear-gradient(180deg, #ffffff, #f4f5ff);
}

/* Badge */
.team-badge {
  background: #fffde6;
  color: #000000;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Title */
.team-title {
  font-size: 36px;
  font-weight: 800;
  color: #1b1b3a;
}

.team-title span {
  color: #111111;
}

/* Card */
.team-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

/* Image */
.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(249, 171, 70, 0.2),
    rgba(249, 222, 70, 0.95)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s ease;
  text-align: center;
}

.team-overlay h5 {
  font-size: 22px;
  font-weight: 700;
}

.team-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Social */
.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  margin: 0 6px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: #000;
  color: #fff;
}

/* Hover */
.team-card:hover img {
  transform: scale(1.12);
}

.team-card:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .team-title {
    font-size: 28px;
  }
}
