body {
  margin: 0;
  background-color: #f7fbff; /* fallback bluish-white */
  overflow-x: hidden;
}

/*Background container */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

/* 🎨 Rainbow bars */
.rainbow {
  height: 100vh;
  width: 0;
  top: 0;
  position: absolute;
  transform: rotate(10deg);
  transform-origin: top right;
  animation: slide 45s linear infinite;
}

/* 🌀 Basic animation */
@keyframes slide {
  from {
    right: -25vw;
  }
  to {
    right: 125vw;
  }
}

/* Example light pastel color sets with varying delays */
.rainbow:nth-child(1) {
  animation-delay: -1s;
  box-shadow: -130px 0 80px 40px white, -50px 0 50px 25px #cfeaff, 0 0 50px 25px #c4e5f7, 50px 0 50px 25px #ffe7be, 130px 0 80px 40px white;
}
.rainbow:nth-child(2) {
  animation-delay: -3s;
  box-shadow: -130px 0 80px 40px white, -50px 0 50px 25px #b7e4fd, 0 0 50px 25px #fae5c1, 50px 0 50px 25px #cfeaff, 130px 0 80px 40px white;
}
/* Repeat up to nth-child(25) with different delays and light color mixes */


.highlight-orange {
  color: #F5901D;
  font-weight: 600;
}

#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: #248ef8; /* Brand Blue */
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* Custom Scrollbar for WebKit Browsers */
::-webkit-scrollbar {
  width: 12px;               /* Adjust thickness */
}

::-webkit-scrollbar-track {
  background: #f8f8f8;       /* Track color (light background) */
}

::-webkit-scrollbar-thumb {
  background-color: #d62828; /* Scroll thumb color */
  border-radius: 6px;
  border: 2px solid #f8f8f8; /* Adds padding-like effect */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b81f1f; /* Slightly darker on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #d62828 #f8f8f8;
}


/*Navigation Bar CSS starts here*/
.navbar-custom {
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar-custom.scrolled {
  background-color: white;
}

.navbar .nav-link {
  font-family: 'poppins',sans-serif;
  font-weight: bold;
  color: #333;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #d62828;
}

.dropdown-menu {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(5, 70, 118, 0.1);
  min-width: 200px;
}

.dropdown-item {
  font-family: 'Poppins', sans-serif;
  padding: 10px 20px;
  color: #054676;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #eaf4ff;
  color: #f5901d;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.btn-danger {
  background: radial-gradient(circle, #1663af, #1867b6);
  border: none;
  transition: background 0.3s ease;
}

.btn-danger:hover {
  background-color: #1e5aca;
}

/*AUNO strip*/
.auno-strip-wrapper {
  font-family: 'poppins',sans-serif;
  height: 40px;
  position: absolute;
  top: 89px;
  display: flex;
  align-items: center;
  width: 100%;
  background: #f7fafc;
  border-top: 1px solid #aad3ff;
  border-bottom: 1px solid #aad3ff;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 6px 16px rgba(5, 70, 118, 0.15);
}

.strip-title {
  flex-shrink: 0;
  padding: 12px 16px;
  font-weight: 600;
  background-color: #d62828c4;
  color: #ffffff;
  white-space: nowrap;
  border-right: 2px solid #aad3ff;
}

.auno-strip-container {
  overflow: hidden;
  flex: 1;
  position: relative;
}

.auno-strip {
  display: flex;
  animation: scroll-strip 25s linear infinite;
  width: max-content;
}

.strip-content {
  display: flex;
}

.strip-item {
  flex: none;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 1rem;
  color: #003e66;
  font-weight: 500;
  border-right: 1px solid #b8e0ff;
}

/* Scrolling Animation */
@keyframes scroll-strip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .strip-item {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
  .strip-title {
    font-size: 0.9rem;
    padding: 10px;
  }
}


/*Hero Section*/
.carousel,
.carousel-item {
  height: 100vh;
}

.hero-slide {
  position: relative;
  background-color: #d6edfcfa;
  display: flex;
  align-items: center;
  padding: 40px 20px;
}

.hero-slide-1 {
background: linear-gradient(to bottom, rgba(177, 221, 255, 0.562), rgba(132, 189, 245, 0.692), rgba(220, 240, 255, 0.801));

}

.hero-slide h1 {
  font-family: 'poppins';
  font-size: 3.7rem;
  font-weight: 1000;
  margin-bottom: 20px;
  letter-spacing: -0.15rem;
}

.hero-slide p {
  font-family: 'poppins';
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
}

/* Bubbles */
.bubble {
  font-family: 'poppins',sans-serif;
  position: absolute;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  animation: float 6s ease-in-out infinite;
  z-index: 900;
}

.bubble.green {
  background-color: #d6fbe4;
  color: #007b55;
  top: 30px;
  left: 10%;
  animation-delay: 0s;
}

.bubble.blue {
  background-color: #fff4dd;
  color: #b87100;
  top: 430px;
  right: 40%;
  animation-delay: 1.5s;
}

.bubble.orange {
  background-color: #fff4dd;
  color: #b87100;
  top: 480px;
  right: 13%;
  animation-delay: 3s;
}

.bubble.purple {
  background-color: #fff4dd;
  color: #b87100;
  top: 160px;
  right: 8%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
.bubble {
  position: absolute;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  animation: float 6s ease-in-out infinite;
}

.bubble.blue {
  opacity: 0;
}  

.bubble.orange {
  opacity: 0;
}  

.bubble.purple {
 opacity: 0;
}  
}

.hero-image {
  position: relative;
  margin-top: 40px;
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  position: relative; /* or absolute/fixed depending on your layout */
  z-index: 1000;         /* higher than surrounding elements */
}

/* Floating animation for image */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-slide {
    text-align: center;
    padding-top: 150px;
  }

  .hero-slide h1 {
    font-size: 2rem;
  }

  .hero-slide p {
    font-size: 1rem;
  }

  .hero-image {
    margin-top: 20px;
  }

  .btn {
    margin-bottom: 20px;
  }
}

/*About  Section Background */
.about-section {
  background-color: #ffffff00;
  position: relative;
  overflow: hidden;
  padding: 20px 20px;
}

/* Main Translucent Box */
.about-box {
  font-family: 'poppins';
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(5, 70, 118, 0.15);
  color: #0e0e0e;
  transition: all 0.3s ease-in-out;
  padding: 60px 30px;
  margin-top: 10px;
}

/* Headline */
.about-box h2 {
  color: #054676;
  font-weight: 600;
  font-size: 2rem;
}

/* Paragraph Text */
.about-box p {
  position: relative;
  font-family: 'poppins';
  font-size: 1rem;
  color: #1f1f1f;
  margin-bottom: 10px;
}

/* Student Images (Desktop only) */
.student-img-left {
  position: absolute;
  top: 70px;
  left: 25px;
  max-width: 200px !important;
  height: auto;
  transform: scale(1.05);
}

.student-img-right {
  position: absolute;
  top: 80px;
  right: 20px;
  max-width: 220px !important;
  height: auto;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  /* For tablets */
  .about-section {
    padding: 40px 25px;
  }

  .about-box {
    margin-top: 40px;
    padding: 24px;
  }

  .about-box h2 {
    font-size: 1.75rem;
  }

  .about-box p {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  /* For mobile */
  .about-section {
    padding: 30px 20px;
  }

  .about-box {
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(5, 70, 118, 0.1);
  }

  .about-box h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .about-box p {
    font-size: 0.9rem;
    text-align: justify;
  }

  /* Ensure student images are completely hidden if somehow visible */
  .student-img-left,
  .student-img-right {
    display: none !important;
  }
}


/*why AUNO Stats*/
.why-auno-section {
  background-color: #f7f9fb00;
  font-family: 'Poppins', sans-serif;
  padding: 20px 20px;
}

.why-box {
  background: linear-gradient(135deg, #054676, #0f9acb, #8cc6ec);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 15px 15px;

}

.why-box h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 2rem;
}

.why-box p {
  font-size: 1rem;
}

.counter {
  font-family: 'poppins';
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-para {
   font-family: 'poppins';
   font-size: 2rem;
}

@media (max-width: 991px) {
  .why-box h2 {
    font-size: 1.75rem;
  }

  .why-box p {
    font-size: 0.95rem;
  }

  .counter {
    font-size: 2.5rem;
  }

  .stat-para {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .why-box {
    padding: 2rem;
  }

  .why-box h2 {
    font-size: 1.5rem;
  }

  .why-box p {
    font-size: 0.9rem;
  }

  .counter {
    font-size: 2rem;
  }

  .stat-para {
    font-size: 1.25rem;
  }

  .why-box .row > div {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
}

/*AUNO Features and benefits*/

.auno-why-section {
    font-family: 'poppins';
  background-color: #f7f9fb00;
}

.auno-why-heading {
  font-size: 3rem;
  color: #1a407e;
  font-weight: 700;
}

.auno-why-card {
  background-color: #ffffff;
  border-radius: 15px;
  border-color: #4395e7;
  border-style: solid;
  border-width: 2px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  height: 100%;
}

.auno-why-card:hover {
  background: linear-gradient(135deg, #57aeec, #3ec5fa, #54baff);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-width: 0px;
}

.auno-why-card:hover h4,
.auno-why-card:hover p {
  color: #ffffff;
}

.auno-why-icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}

.auno-why-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.auno-why-card:hover .auno-why-icon {
  transform: scale(1.1) rotate(3deg);
}

.auno-why-card h4 {
  font-family: 'poppins';
  font-size: 1.15rem;
  font-weight: 600;
  color: #054676;
  margin-bottom: 10px;
}

.auno-why-card p {
  font-family: 'poppins';
  font-size: 0.95rem;
  color: #242021;
}

/* Responsive improvements */
@media (max-width: 575.98px) {
  .auno-why-card {
    padding: 20px 15px;
  }

  .auno-why-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .auno-why-card h4 {
    font-size: 1.05rem;
  }

  .auno-why-card p {
    font-size: 0.9rem;
  }
}



.exam-heading-section {
  width: 100%;
  padding: 30px 20px 5px;
  text-align: center;
  background: #f5f7fa00;
}

.exam-heading-section h2 {
  font-size: 3rem;
  color: #1e293b;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.exam-subheading {
  font-size: 1.2rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .exam-heading-section h2 {
    font-size: 2rem;
  }

  .exam-subheading {
    font-size: 1rem;
  }
}


.section-row-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 30px;
}

.funnel-section,
.chalkboard-section {
  flex: 1 1 100%;
  box-sizing: border-box;
  padding: 30px;
}

/* Desktop view side-by-side */
@media (min-width: 992px) {
  .funnel-section,
  .chalkboard-section {
    flex: 1 1 50%;
    max-width: 50%;
    height: 100%;
  }
}


  .funnel-section {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #ffffff00, #ffffff00);
    padding: 40px 20px;
    text-align: center;
  }

  .funnel-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #222;
  }

  .funnel-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 40px;
    position: relative;
  }

  .funnel-box {
    background: #4a90e2;
    margin: auto;
    color: #fff;
    max-width: 500px;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .funnel-box:hover {
  transform: rotate(-1.5deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

  .funnel-box.level1 {
    background: linear-gradient(135deg, #357aac, #2a98c4, #3993cf);
  }

  .funnel-box.level2 {
    background-color: #d62828; /* Scroll thumb color */
  }

  .arrow-down {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #888;
    margin: 0 auto 20px;
  }

  .qualify-note {
    font-weight: 600;
    margin-bottom: 20px;
    color: #222222;
  }

  .funnel-info {
    font-size: 1rem;
    margin: 5px 0;
  }

    .chalkboard-section {
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    padding: 50px 20px;
    font-family: 'poppins', cursive, sans-serif;
    text-align: center;
  }

  .chalkboard-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px #000;
    padding: 40px 40px;
  }

  .chalkboard-table {
    max-width: 700px;
    margin: 20px auto;
    border-collapse: collapse;
    width: 100%;
  
    background: #124477 url('https://www.transparenttextures.com/patterns/blackboard.png');
    border: 2px solid #fff;
    border-radius: 10px;
    overflow: hidden;
  }

  .chalkboard-table th,
  .chalkboard-table td {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 8px;
    text-align: center;
    font-size: 1rem;
  }

  .chalkboard-table th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    font-size: 1.1rem;
  }

  .chalkboard-table td {
    color: #e0f7fa;
  }

@media (max-width: 768px) {
  .section-row-wrapper {
    flex-direction: column;
    padding: 20px 16px;
  }

  .funnel-section,
  .chalkboard-section {
    padding: 24px 16px;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .funnel-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .funnel-container {
    padding: 0 16px;
  }

  .funnel-box {
    font-size: 0.9rem;
    padding: 16px;
    margin-bottom: 16px;
  }

  .funnel-box h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .funnel-info {
    font-size: 0.9rem;
  }

  .arrow-down {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #888;
    margin-bottom: 16px;
  }

  .qualify-note {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .chalkboard-section h2 {
    font-size: 1.4rem;
    padding: 20px 0;
  }

  .chalkboard-table {
    font-size: 0.85rem;
    border-width: 1px;
  }

  .chalkboard-table th,
  .chalkboard-table td {
    font-size: 0.82rem;
    padding: 10px 5px;
  }

  .chalkboard-table th {
    font-size: 0.9rem;
  }

  .chalkboard-table td {
    font-size: 0.8rem;
  }
}



 

.dashboard-section {
  padding: 40px 120px;
  background-color: #dbdbdb00;
}

.dashboard-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Reduced the gap */
  flex-wrap: wrap;
}

.dashboard-video {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.tablet-frame.landscape {
  width: 500px;
  height: 320px;
  border: 16px solid #000;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #000;
}

.tablet-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-text {
  font-family: 'poppins',sans-serif;
  flex: 1 1 360px;
  max-width: 500px;

}

.dashboard-text h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #222;
}

.dashboard-text ul {
  list-style: none;
  padding: 0;
}

.dashboard-text ul li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

.dashboard-text ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #1e90ff;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dashboard-section {
    padding: 20px 16px; /* reduced side padding */
  }

  .dashboard-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .dashboard-video {
    justify-content: center;
  }

  .tablet-frame.landscape {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border: 12px solid #000;
    border-radius: 20px;
  }

  .dashboard-text {
    flex: unset;
    max-width: 100%;
  }

  .dashboard-text h2 {
    font-size: 22px;
    text-align: center;
  }

  .dashboard-text ul li {
    font-size: 15px;
    padding-left: 24px;
  }

  .dashboard-text ul li::before {
    font-size: 16px;
  }
}


.gallery-section {
  font-family: 'poppins',sans-serif;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  background-color: #f9f9f931;
}

.gallery-box {
  display: flex;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  width: 100%;
  flex-wrap: wrap;
  height: 280px; /* 👈 Fixed height for the entire box */
}

/* Left side (Image slideshow) */
.gallery-left {
  flex: 1;
  min-width: 300px;
  background: #ffeaa7;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* 👈 Fill full height of gallery-box */
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-img {
  width: 100%;
  height: auto;
  display: none;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

.slide-img.active {
  display: block;
}

/* Right side (Text content) */
.gallery-right {
  flex: 1;
  padding: 40px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-right h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.gallery-right p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.gallery-btn {
  background: radial-gradient(circle, #1663af, #1867b6);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  width: fit-content;
}

@media (max-width: 768px) {
  .gallery-box {
    flex-direction: column;
    height: auto; /* Allow natural height */
    border-radius: 12px;
  }

  .gallery-left,
  .gallery-right {
    width: 100%;
    height: auto;
  }

  .gallery-left {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0;
  }

  .slideshow-container {
    height: auto;
    max-height: 220px;
  }

  .slide-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .gallery-right {
    padding: 24px 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .gallery-right h2 {
    font-size: 20px;
    text-align: center;
  }

  .gallery-right p {
    font-size: 15px;
    text-align: center;
  }

  .gallery-btn {
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 15px;
  }
}



.ambassador-section {
  background: #f8f9fa00;
  font-family: 'Poppins', sans-serif;
  padding: 30px 120px;
}

.mobile-frame {
  width: 290px;
  height: 520px;
  padding: 10px;
  background: #000;
  border-radius: 40px;
  border: 8px solid #333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-inside {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.text-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.text-box h4 {
  color: #054676;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #242021;
}

.notepad-wrapper {
  display: flex;
  align-items: stretch;
  position: relative;
  background: #fffbe6;
  border-radius: 10px;
  box-shadow: 6px 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.notepad-wrapper:hover {
  transform: translateY(-5px) rotateX(1deg);
}

.spiral-binding {
  background: #e0e0e0;
  width: 30px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 20px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.spiral-ring {
  width: 8px;
  height: 20px;
  background: #555;
  border-radius: 4px;
  margin: 6px 0;
  box-shadow: inset 0 -1px 1px #333;
}

.text-box.notepad {
background: repeating-linear-gradient(
  to bottom,
  #f7faff,        /* base white-blue background */
  #f7faff 32px,
  #e6f0fa 33px     /* soft bluish line */
);
  padding: 30px;
  flex: 1;
  border-left: 2px dashed #ccc;
  border-radius: 0 10px 10px 0;
  transition: background 0.3s ease;
}

.text-box.notepad:hover {
  background: repeating-linear-gradient(
    to bottom,
    #fffaf2,        /* base white-orange background */
    #fffaf2 32px,
    #ffeeda 33px     /* soft orange line */
  );
}

@media (max-width: 768px) {
  .ambassador-section {
    padding: 20px 16px;
  }

  .row.flex-column-reverse {
    gap: 2rem;
  }

  .mobile-frame {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 9 / 16;
    border: 6px solid #333;
    border-radius: 30px;
    padding: 8px;
    margin-bottom: 10px;
  }

  .video-inside {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .notepad-wrapper {
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 4px 6px 14px rgba(0, 0, 0, 0.1);
  }

  .spiral-binding {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border-radius: 10px 10px 0 0;
  }

  .spiral-ring {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }

  .text-box.notepad {
    padding: 20px;
    border-left: none;
    border-top: 2px dashed #ccc;
    border-radius: 0 0 10px 10px;
  }

  .text-box h4,
  .text-box h5 {
    text-align: center;
  }

  .feature-list {
    padding-left: 0;
    text-align: center;
  }

  .btn {
    display: block;
    margin: 0 auto;
    font-size: 15px;
    padding: 10px 20px;
  }
}




.award-section {
  font-family: 'poppins',sans-serif;
  background: linear-gradient(135deg, #054676, #0f9acb, #2b62b4);
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 0 !important; /* Remove space at bottom */
  margin-bottom: 0;
  border-top-left-radius: 100% 100px;
  border-top-right-radius: 100% 100px;
}

.podium-container {
  gap: 40px;
  margin-bottom: 0;
  padding-bottom: 0px;
}

.podium-block {
  width: 240px;
  height: 280px;
  padding: 60px 15px 40px 20px; 
  border-radius: 16px 16px 0 0;
  background: #ffffff1a;
  position: relative;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  overflow: visible;
  transform: scaleY(1);                /* Default scale */
  transform-origin: bottom center;     /* Scale from base */
  transition: transform 0.4s ease;     /* Smooth scale effect */
}

.podium-block:hover {
  transform: scaleY(1.20);             /* Slight increase in height */
}


/* Podium image floats above the block */
.podium-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.podium-icon img {
  width: 100px;
  height: 100px;
}

/* Specific block heights */
.block-first {
  height: 240px;
  background: #ffffff;
}

.block-second {
  height: 190px;
  background: #eeecec;
}

.block-third {
  height: 160px;
  background: #c4c3c2;
}

/* Text inside podiums */
.podium-block h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 30px;
  color: #be1b1b;
}

.podium-block p {
  font-size: 0.9rem;
  color: #222;
}

@media (max-width: 768px) {
  .podium-container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 30px;
  }

  .podium-block {
    width: 100%;
    max-width: 280px;
    height: auto;
    padding: 70px 20px 30px 20px;
    border-radius: 16px;
    transform: none;
  }

  .podium-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }

  .podium-icon img {
    width: 60px;
    height: 60px;
  }

  .block-first,
  .block-second,
  .block-third {
    height: auto;
  }

  .podium-block:hover {
    transform: none;
  }

  .podium-block h5 {
    font-size: 1rem;
    margin-top: 20px;
  }

  .podium-block p {
    font-size: 0.9rem;
  }
}


/*FAQ section*/
.faq-section .nav-pills .nav-link {
  font-family: 'poppins';
  background-color: #e6eff700;
  color: #055276;
  margin: 0 5px;
  border-radius: 20px;
}

.faq-section .h2 {
  font-family: 'poppins',sans-serif;
  color: #000;
}

.faq-section .nav-pills .nav-link.active {
  background-color: #054676;
  font-family: 'poppins';
  color: #fff;
}
.accordion-button:not(.collapsed) {
  font-family: 'poppins';
  background-color: #f1f8ff00;
  color: #054676;
  font-weight: bold;
}

.accordion-button.collapsed {
  font-family: 'Poppins';
  background-color: #ffffff; /* Or any background for collapsed state */
  color: #333333;            /* A different color than expanded state */
  font-weight: normal;       /* Optional: lighter than bold */
  transition: all 0.3s ease; /* Smooth visual transition */
}

.accordion-body {
  background-color: #b6d4f38f;
  font-family: 'poppins';
  color: #252525;
}


/*footer section*/
.custom-footer {
  background: radial-gradient(circle, #124477, #0d457c);
  color: #e2e8f0;
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  width: 200px;
  height: auto;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 8px;
}

.footer-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.custom-footer ul li {
  margin-bottom: 8px;
  display: block  !important;
}

.custom-footer ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer ul li a:hover {
  color: #ffffff;
}

.custom-footer .bi {
  color: #fcd34d;
  font-size: 1rem;
}

.register-section {
  background: transparent;
  padding: 20px 20px;
  margin: 0;
}

.register-btn {
  background: radial-gradient(circle, #1663af, #1867b6);
  color: white !important;
  padding: 12px 28px !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  border: none;
  border-radius: 6px !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
  text-decoration: none !important;
}

.register-btn:hover {
  background: radial-gradient(circle, #145a9a, #165ca1);
  transform: translateY(-3px) !important;
  color: #fff !important;
}

.register-section h2,
.register-section p {
  font-family: 'Poppins', sans-serif;
  color: #165ca1;
}

.tilt-zoom {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.tilt-zoom:hover {
  transform: perspective(800px) rotateX(6deg) rotateY(-6deg) scale(1.2);
}

@media (max-width: 992px) {
    .my-nav {
        background-color: #fff;
        padding: 1rem;
        border-radius: 10px;
    }
}
