/* Minimal Custom CSS */
:root {
  --primary-blue: #3a84b1;
  --primary-red: #d72329;
  --blue-hover: #2c6a8d;
  --red-hover: #b51d23;
}

.navbar {
  min-height: 70px;
  transition: all 0.3s ease;
}

.navbar-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
  height: 55px;
  width: auto;
}

.brand-main {
  font-weight: 700;
  font-size: 1.3rem;
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 500;
}

.nav-link {
  font-weight: 500;
  position: relative;
  margin: 0 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* .btn-parent {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.btn-parent:hover {
  background-color: var(--blue-hover);
  border-color: var(--blue-hover);
  color: white;
}

.btn-tutor {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: white;
}

.btn-tutor:hover {
  background-color: var(--red-hover);
  border-color: var(--red-hover);
  color: white;
} */

/* Demo sections */
section {
  padding-top: 120px;
}

.nav-link:hover,
.nav-link.active {
  color: #3a84b1 !important;
}


/* 9999999999999999999999999999999999999999999999999999999999999 */

/* ============================
   Parent Button - Premium Blue (Unique)
   ============================ */
.btn-parent-unique {
  --pcolor1: #2d9cdb;
  --pcolor2: #0a74bb;

  background: linear-gradient(135deg, var(--pcolor1), var(--pcolor2));
  color: #fff;
  padding: 6px 18px;
  border-radius: 14px;
  border: none;
  font-weight: 400;

  box-shadow: 0 8px 22px rgba(45, 155, 219, 0.35);
  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;
}

.btn-parent-unique:hover {
  background: linear-gradient(135deg, #0f5c9b, #0a74bb);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(45, 155, 219, 0.45);
}

.btn-parent-unique::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.65s ease;
  pointer-events: none;
  /* FIX */
}

.btn-parent-unique:hover::before {
  left: 120%;
}


/* ============================
   Tutor Button - Premium Red (Unique)
   ============================ */
.btn-tutor-unique {
  --tcolor1: #ff4b5c;
  --tcolor2: #d7263d;

  background: linear-gradient(135deg, var(--tcolor1), var(--tcolor2));
  color: #fff;
  padding: 6px 18px;
  border-radius: 14px;
  border: none;
  font-weight: 400;

  box-shadow: 0 8px 22px rgba(215, 38, 38, 0.35);
  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;
}

.btn-tutor-unique:hover {
  background: linear-gradient(135deg, #b81c2c, #d7263d);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(215, 38, 38, 0.45);
}

.btn-tutor-unique::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.65s ease;
  pointer-events: none;
  /* FIX */
}

.btn-tutor-unique:hover::before {
  left: 120%;
}


/* 9999999999999999999999999999999999999999999999999999999999999 */



/* hero section   ------------------------------- */

/* Custom Color Variables */
:root {
  --blue: #3a84b1;
  --red: #d72329;
  --blue-hover: #2c6a8d;
  --red-hover: #b51d23;
  --light-blue: #e8f4fd;
  --light-red: #fde8e9;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-red) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Bubble Background */
.bubble-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(58, 132, 177, 0.1), rgba(215, 35, 41, 0.1));
  animation: float 6s ease-in-out infinite;
}

.bubble-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.bubble-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.bubble-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 25%;
  animation-delay: 3s;
}

.bubble-5 {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 5%;
  animation-delay: 4s;
}

.bubble-6 {
  width: 90px;
  height: 90px;
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

.bubble-7 {
  width: 110px;
  height: 110px;
  bottom: 10%;
  left: 15%;
  animation-delay: 6s;
}

.bubble-8 {
  width: 50px;
  height: 50px;
  top: 15%;
  right: 5%;
  animation-delay: 7s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Hero Content */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-heading {
  font-size: 4rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
}

.tech-text {
  color: var(--red);
}

.gen-text {
  color: var(--blue);
}

.home-tuitions-text {
  color: #2c3e50;
  font-weight: 700;
  display: block;
  font-size: 3.5rem;
  margin-top: 0.5rem;
}

.hero-subheading {
  font-size: 1.8rem;
  color: #34495e;
  font-weight: 600;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #7f8c8d;
  font-style: italic;
  font-weight: 500;
}

/* Hero Buttons */
/* .hero-buttons {
  margin-top: 1rem;
} */

.btn-parent {
  background: linear-gradient(45deg, var(--blue), #4a9bcc);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 15px;
  /* font-weight: 400; */
  box-shadow: 0 8px 25px rgba(58, 132, 177, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-parent:hover {
  background: linear-gradient(45deg, var(--red), #e74c3c);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(215, 35, 41, 0.4);
}

.btn-tutor {
  background: linear-gradient(45deg, var(--red), #e74c3c);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 15px;
  /* font-weight: 400; */
  box-shadow: 0 8px 25px rgba(215, 35, 41, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-tutor:hover {
  background: linear-gradient(45deg, var(--blue), #4a9bcc);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 132, 177, 0.4);
}

/* Button Hover Effects */
.btn-parent::before,
.btn-tutor::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-parent::before,
.btn-tutor::before {
  pointer-events: none;
}

.btn-parent:hover::before,
.btn-tutor:hover::before {
  left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  40% {
    transform: rotate(45deg) translateY(-10px);
  }

  60% {
    transform: rotate(45deg) translateY(-5px);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.8rem;
  }

  .home-tuitions-text {
    font-size: 2.5rem;
  }

  .hero-subheading {
    font-size: 1.4rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-buttons {
    text-align: center;
  }

  .btn-parent,
  .btn-tutor {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
  }

  .me-3 {
    margin-right: 0 !important;
  }
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 2.2rem;
  }

  .home-tuitions-text {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1.2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }
}


/* ================================================================================================== */

/* Custom Color Variables */
:root {
  --blue: #3a84b1;
  --red: #d72329;
  --blue-hover: #2c6a8d;
  --red-hover: #b51d23;
  --light-blue: #e8f4fd;
  --light-red: #fde8e9;
  --dark-gray: #2c3e50;
  --medium-gray: #34495e;
  --light-gray: #7f8c8d;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/* Header Styles */
.about-header {
  position: relative;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--medium-gray);
  font-weight: 500;
  margin-bottom: 2rem;
}

.header-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.divider-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  position: relative;
}

.divider-dot::before,
.divider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.divider-dot::before {
  right: 100%;
  margin-right: 15px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.divider-dot::after {
  left: 100%;
  margin-left: 15px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

/* Main Content */
.about-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.content-block {
  padding-right: 2rem;
}

.main-text {
  font-size: 1.1rem;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.main-text strong {
  color: var(--dark-gray);
  font-weight: 700;
}

/* Vision Highlight */
.vision-highlight {
  background: linear-gradient(135deg, var(--light-blue), var(--light-red));
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.vision-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.vision-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(58, 132, 177, 0.3);
}

.vision-title {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.vision-text {
  color: var(--medium-gray);
  font-size: 1.1rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Key Points */
.key-points {
  padding: 1rem 0;
}

.key-point {
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.key-point:hover {
  transform: translateY(-5px);
}

.key-point i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: block;
}

.key-point h5 {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.key-point p {
  color: var(--light-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Closing Statement */
.closing-statement {
  background: linear-gradient(135deg, var(--light-blue), var(--light-red));
  padding: 2rem 2.5rem;
  border-radius: 15px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.closing-statement::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.statement-content p {
  font-size: 1.2rem;
  color: var(--medium-gray);
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

.statement-content strong {
  color: var(--red);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .about-content {
    padding: 2rem;
  }

  .content-block {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .vision-highlight {
    padding: 2rem 1.5rem;
  }

  .key-point {
    margin-bottom: 1.5rem;
  }

  .statement-content p {
    font-size: 1.1rem;
  }

  .divider-dot::before,
  .divider-dot::after {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

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

  .about-content {
    padding: 1.5rem;
  }

  .vision-highlight {
    padding: 1.5rem 1rem;
  }

  .closing-statement {
    padding: 1.5rem;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */

/* Custom Color Variables */
:root {
  --blue: #3a84b1;
  --red: #d72329;
  --blue-hover: #2c6a8d;
  --red-hover: #b51d23;
  --light-blue: #e8f4fd;
  --light-red: #fde8e9;
  --dark-gray: #2c3e50;
  --medium-gray: #34495e;
  --light-gray: #7f8c8d;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-gray);
  margin-bottom: 0.8rem;
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--medium-gray);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.header-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2rem;

}

.divider-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  position: relative;
}

.divider-dot::before,
.divider-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.divider-dot::before {
  right: 100%;
  margin-right: 12px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.divider-dot::after {
  left: 100%;
  margin-left: 12px;
  background: linear-gradient(90deg, transparent, var(--blue));
}

/* Premium Service Cards */
/* Premium Service Cards */
.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 3.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 90%;
  cursor: pointer;
  margin: 15px;
  /* Added equal margin on all sides */
  backdrop-filter: blur(10px);
  transform: translateY(0);
}


.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(58, 132, 177, 0.12);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Service Icon */
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(58, 132, 177, 0.25);
}

/* Service Content */
.service-title {
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  background: linear-gradient(135deg, var(--red), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-description {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.service-detail {
  color: var(--light-gray);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Service Features */
.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0.8rem;
}

.service-features span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--medium-gray);
  font-size: 0.8rem;
  padding: 4px 8px;
  background: var(--light-blue);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-card:hover .service-features span {
  background: linear-gradient(135deg, var(--light-red), var(--light-blue));
  color: var(--dark-gray);
  transform: translateX(2px);
}

.service-features i {
  color: var(--blue);
  font-size: 0.7rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-features i {
  color: var(--red);
}

/* Service Note */
.service-note {
  color: var(--light-gray);
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--light-blue), var(--light-red));
  padding: 1.5rem 2rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.cta-title {
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--blue), #4a9bcc);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(58, 132, 177, 0.25);
  display: inline-block;
}

.btn-primary-cta:hover {
  background: linear-gradient(135deg, var(--blue-hover), #3a8bb8);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 132, 177, 0.35);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary-cta:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 132, 177, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-cta,
  .btn-secondary-cta {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }

  .divider-dot::before,
  .divider-dot::after {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 30px 0;
  }

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

  .service-card {
    padding: 1.2rem 0.8rem;
  }

  .cta-section {
    padding: 1.2rem 1rem;
  }

  .service-features span {
    font-size: 0.75rem;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */

:root {
  --blue: #3a84b1;
  --red: #d72329;
  --light-blue: #f0f8ff;
  --light-red: #fde8e9;
  --dark-gray: #2c3e50;
  --medium-gray: #6c757d;
}

.courses-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 20px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--dark-gray);
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.single-info-box {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--blue);
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.info-content {
  color: var(--medium-gray);
  font-size: 1rem;
  line-height: 1.8;
}

.category-title {
  color: var(--blue);
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
  font-size: 1.1rem;
}

.category-content {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--light-red);
}

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

  .single-info-box {
    padding: 2rem;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */

:root {
  --blue: #3a84b1;
  --red: #d72329;
  --light-blue: #f0f8ff;
  --light-red: #fde8e9;
  --dark-gray: #2c3e50;
  --medium-gray: #6c757d;
}

.testimonials-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 20px 0;
  height: 400px;
  overflow: hidden;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--blue);
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  margin: 0 10px;
}

.profile-section {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.profile-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.profile-info h5 {
  color: var(--dark-gray);
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.profile-info p {
  color: var(--medium-gray);
  margin: 0;
  font-size: 0.9rem;
}

.quote-icon {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.testimonial-content {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--red);
  opacity: 1;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--blue);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators .active {
  background-color: var(--red);
}

@media (max-width: 768px) {
  .testimonials-section {
    height: 450px;
    padding: 40px 0;
  }

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

  .testimonial-card {
    height: 350px;
    padding: 1.5rem;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */
/* Scoped CSS for community section only */
.community-section {
  --blue: #3a84b1;
  --red: #d72329;
  --light-blue: #f0f8ff;
  --light-red: #fde8e9;
  --dark-gray: #2c3e50;
  --medium-gray: #6c757d;

  background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%233a84b1" fill-opacity="0.03" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,192C672,181,768,139,864,138.7C960,139,1056,181,1152,192C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.community-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.community-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
}

.community-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-section .text-blue {
  color: var(--blue) !important;
}

.community-section .text-red {
  color: var(--red) !important;
}

.community-section .community-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 320px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  perspective: 1000px;
  overflow: hidden;
  z-index: 1;
}

.community-section .community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.community-section .community-card:hover::before {
  transform: scaleX(1);
}

.community-section .community-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.community-section .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.community-section .community-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.community-section .card-front,
.community-section .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.community-section .card-back {
  transform: rotateY(180deg);
}

.community-section .community-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.community-section .community-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.community-section .community-icon:hover::before {
  transform: scale(1);
}

.community-section .whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.community-section .instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.community-section .telegram {
  background: linear-gradient(135deg, #0088cc, #005c8a);
  color: white;
}

.community-section .community-title {
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
}

.community-section .community-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.community-section .community-card:hover .community-title::after {
  width: 80px;
}

.community-section .community-description {
  color: var(--medium-gray);
  font-size: 1rem;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

.community-section .qr-code {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid var(--light-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.community-section .qr-code::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 132, 177, 0.05), rgba(215, 35, 41, 0.05));
  z-index: 0;
}

.community-section .qr-code i {
  font-size: 4rem;
  color: var(--blue);
  z-index: 1;
  position: relative;
}

.community-section .scan-text {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

.community-section .join-button {
  background: linear-gradient(135deg, var(--blue), #2c6a8d);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  margin-top: 1.5rem;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(58, 132, 177, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.community-section .join-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red), #b51d23);
  z-index: -1;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.community-section .join-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.community-section .join-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(215, 35, 41, 0.4);
}

.community-section .mobile-tap-hint {
  display: none;
  color: var(--blue);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 15px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* Floating animation for cards */
@keyframes community-float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.community-section .community-card {
  animation: community-float 6s ease-in-out infinite;
}

.community-section .community-card:nth-child(2) {
  animation-delay: 1s;
}

.community-section .community-card:nth-child(3) {
  animation-delay: 2s;
}

.community-section .community-card:nth-child(4) {
  animation-delay: 3s;
}

/* Mobile-specific styles */
@media (max-width: 992px) {
  .community-section .section-title {
    font-size: 2.5rem;
  }

  .community-section .community-card {
    height: 300px;
    padding: 2rem 1.5rem;
  }

  .community-section .community-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .community-section .qr-code {
    width: 130px;
    height: 130px;
  }

  .community-section .qr-code i {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .community-section {
    padding: 60px 0;
  }

  .community-section .section-title {
    font-size: 2.2rem;
  }

  .community-section .community-card {
    height: 280px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .community-section .community-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .community-section .community-title {
    font-size: 1.3rem;
  }

  .community-section .qr-code {
    width: 110px;
    height: 110px;
  }

  .community-section .qr-code i {
    font-size: 3rem;
  }

  .community-section .mobile-tap-hint {
    display: block;
  }
}

@media (max-width: 576px) {
  .community-section {
    padding: 50px 0;
  }

  .community-section .section-title {
    font-size: 1.8rem;
  }

  .community-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .community-section .community-card {
    height: 250px;
    padding: 1.5rem 1rem;
  }

  .community-section .community-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .community-section .community-title {
    font-size: 1.1rem;
  }

  .community-section .community-description {
    font-size: 0.9rem;
  }

  .community-section .qr-code {
    width: 90px;
    height: 90px;
  }

  .community-section .qr-code i {
    font-size: 2.5rem;
  }

  .community-section .join-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Prevent text selection on mobile */
.community-section .community-card {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ======================================================================================================== */
/* ======================================================================================================== */

/* contact section */

:root {
  --blue: #3a84b1;
  --red: #d72329;
}


.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  border-left: 3px solid var(--blue);
  text-align: center;
}

.box-title {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.box-content {
  color: #6c757d;
  font-size: 0.8rem;
  line-height: 1.3;
}

.whatsapp-logo {
  color: #25D366;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  background: linear-gradient(135deg, var(--blue), #2c6a8d);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: linear-gradient(135deg, var(--red), #b51d23);
  color: white;
  transform: translateY(-1px);
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.5rem;
}

.whatsapp-btn:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-btn {
    width: 200px;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */

/* Floating Sidebar */
.social-float {
  position: fixed;
  top: 85%;
  right: 20px;
  /* Change to left: 20px; if you want on left side */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Icon Wrapper */
.social-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;

  animation: floatAnim 2.5s infinite ease-in-out;

  text-decoration: none !important;
}

/* WhatsApp Green */
.wa-chat {
  background: #25d366;
  color: #fff;
}

.wa-community img {
  width: 32px;
  height: 32px;
}

/* Instagram Gradient */
.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* Hover Effects */
.social-icon:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Floating Pulse Animation */
@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */


:root {
  --blue: #3a84b1;
  --red: #d72329;
  --light-blue: #f0f8ff;
  --light-red: #fde8e9;
  --dark-gray: #2c3e50;
  --medium-gray: #6c757d;
}

.contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 20px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.text-red {
  color: var(--red) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--blue);
  border-right: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 132, 177, 0.15);
}

.contact-list {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: var(--light-blue);
  border-radius: 8px;
  border-left: 4px solid var(--blue);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--light-red);
  transform: translateX(3px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.05);
}

.contact-info h6 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.contact-info p {
  color: var(--medium-gray);
  margin: 0;
  line-height: 1.4;
  font-size: 0.9rem;
}

.whatsapp-link {
  color: var(--blue);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.whatsapp-link:hover {
  color: var(--red);
}

.map-container {
  height: 100%;
  /* 50% reduced height */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(58, 132, 177, 0.15);
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.social-section {
  height: auto;
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--red);
}

.social-title {
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.whatsapp-comm {
  background: #25D366;
}

.whatsapp-chan {
  background: #128C7E;
}

.telegram {
  background: #0088cc;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.youtube {
  background: #FF0000;
}

.email {
  background: #EA4335;
  /* Official Gmail Red */
  /* Gmail red */
}

.business-hours {
  background: var(--light-blue);
  padding: 0.8rem;
  border-radius: 8px;
  /* border-left: 4px solid var(--red); */
  margin-bottom: 1.2rem;
}

.business-hours-red {
  border-left: 4px solid var(--red);
}

.business-hours-blue {
  border-left: 4px solid var(--blue);
}

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

  .contact-card {
    padding: 1.5rem;
  }

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

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .map-container {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .social-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.4rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */
/* Isolated styles for carousel only */
.carousel-containerRecord {
  --blue: #3a84b1;
  --red: #d72329;
  --white: #ffffff;
  --light-blue: #e8f2f9;
  --dark-blue: #2a6a94;
  --light-red: #f9e8e8;
}

.assignments-container {
  margin: auto;
  height: auto;
  width: 100%;
  padding: 30px 0;
  justify-content: center;
  align-items: center;

  /* border: solid green 5px; */
}

.carousel-containerRecord * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.carousel-containerRecord {
  width: 90%;
  height: 200px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.carousel-containerRecord .carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-containerRecord .carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  position: relative;
}

.carousel-containerRecord .slide-content {
  text-align: center;
  max-width: 80%;
  z-index: 2;
}

.carousel-containerRecord .slide-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.carousel-containerRecord .slide-subtitle {
  font-size: 1.1rem;
  color: var(--dark-blue);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

.carousel-containerRecord .highlight {
  color: var(--red);
  font-weight: 700;
}

.carousel-containerRecord .slide-cta {
  display: inline-block;
  background: linear-gradient(to right, var(--blue), var(--dark-blue));
  color: white;
  padding: 8px 22px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(58, 132, 177, 0.4);
  transition: all 0.3s ease;
  animation: carousel-pulse 2s infinite;
  letter-spacing: 0.5px;
}

.carousel-containerRecord .slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 132, 177, 0.5);
}

.carousel-containerRecord .carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-containerRecord .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(58, 132, 177, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-containerRecord .indicator.active {
  background-color: var(--blue);
  transform: scale(1.3);
}

.carousel-containerRecord .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid rgba(58, 132, 177, 0.1);
}

.carousel-containerRecord .carousel-nav:hover {
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.carousel-containerRecord .carousel-nav.prev {
  left: 20px;
}

.carousel-containerRecord .carousel-nav.next {
  right: 20px;
}

.carousel-containerRecord .carousel-nav i {
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: bold;
}

/* Stationery Background Elements */
.carousel-containerRecord .stationery-bg {
  position: absolute;
  z-index: 1;
  opacity: 0.08;
  opacity: 0.5;
}

.carousel-containerRecord .pen {
  width: 120px;
  height: 8px;
  background: linear-gradient(to right, var(--blue), var(--dark-blue));
  border-radius: 4px;
  transform: rotate(30deg);
  top: 20%;
  right: 15%;
}

.carousel-containerRecord .pencil {
  width: 100px;
  height: 6px;
  background: linear-gradient(to right, var(--red), #b81d22);
  border-radius: 3px;
  transform: rotate(-15deg);
  bottom: 25%;
  left: 10%;
}

.carousel-containerRecord .notebook {
  width: 80px;
  height: 100px;
  border: 2px solid var(--blue);
  border-radius: 5px;
  top: 15%;
  left: 8%;
  transform: rotate(-5deg);
}

.carousel-containerRecord .notebook::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: var(--blue);
  top: 0;
  left: 0;
  border-radius: 3px 3px 0 0;
}

.carousel-containerRecord .ruler {
  width: 130px;
  height: 6px;
  background: repeating-linear-gradient(90deg,
      var(--blue),
      var(--blue) 5px,
      transparent 5px,
      transparent 10px);
  border: 1px solid var(--blue);
  border-radius: 2px;
  bottom: 20%;
  right: 10%;
  transform: rotate(10deg);
}

.carousel-containerRecord .paper {
  width: 70px;
  height: 90px;
  background-color: white;
  border: 1px solid var(--blue);
  border-radius: 3px;
  top: 60%;
  left: 15%;
  transform: rotate(5deg);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-containerRecord .paper::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, rgba(58, 132, 177, 0.1), transparent);
  top: 0;
  left: 0;
}

.carousel-containerRecord .highlighter {
  width: 80px;
  height: 10px;
  background: linear-gradient(to right, #ffeb3b, #fbc02d);
  border-radius: 5px;
  top: 30%;
  right: 25%;
  transform: rotate(-20deg);
  opacity: 0.6;
}

.carousel-containerRecord .calendar {
  width: 90px;
  height: 80px;
  background-color: white;
  border: 1px solid var(--blue);
  border-radius: 5px;
  top: 10%;
  right: 5%;
  transform: rotate(5deg);
}

.carousel-containerRecord .calendar::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: var(--red);
  top: 0;
  left: 0;
  border-radius: 4px 4px 0 0;
}

.carousel-containerRecord .calendar::after {
  content: '15';
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--blue);
}

.carousel-containerRecord .clock {
  width: 60px;
  height: 60px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
}

.carousel-containerRecord .clock::before,
.carousel-containerRecord .clock::after {
  content: '';
  position: absolute;
  background-color: var(--blue);
}

.carousel-containerRecord .clock::before {
  width: 3px;
  height: 20px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-containerRecord .clock::after {
  width: 3px;
  height: 15px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}

.carousel-containerRecord .college {
  width: 80px;
  height: 60px;
  background-color: var(--blue);
  border-radius: 5px;
  top: 70%;
  right: 8%;
  transform: rotate(-3deg);
}

.carousel-containerRecord .college::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 20px solid var(--dark-blue);
  top: -20px;
  left: 0;
}

.carousel-containerRecord .college::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 30px;
  background-color: var(--dark-blue);
  top: -10px;
  left: 10px;
  border-radius: 3px;
}

.carousel-containerRecord .writing-person {
  width: 40px;
  height: 60px;
  top: 25%;
  left: 20%;
}

.carousel-containerRecord .writing-person::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--blue);
  border-radius: 50%;
  top: 0;
  left: 10px;
}

.carousel-containerRecord .writing-person::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 40px;
  border: 2px solid var(--blue);
  border-radius: 15px 15px 0 0;
  top: 20px;
  left: 5px;
}

.carousel-containerRecord .books {
  width: 70px;
  height: 50px;
  bottom: 15%;
  right: 20%;
  transform: rotate(10deg);
}

.carousel-containerRecord .books::before,
.carousel-containerRecord .books::after {
  content: '';
  position: absolute;
  border: 2px solid var(--blue);
  border-radius: 3px;
}

.carousel-containerRecord .books::before {
  width: 60px;
  height: 40px;
  background-color: rgba(58, 132, 177, 0.1);
  bottom: 0;
  left: 0;
}

.carousel-containerRecord .books::after {
  width: 50px;
  height: 35px;
  background-color: rgba(215, 35, 41, 0.1);
  bottom: 5px;
  left: 10px;
}

.carousel-containerRecord .deadline {
  width: 80px;
  height: 30px;
  background-color: var(--red);
  border-radius: 15px;
  top: 40%;
  left: 5%;
  transform: rotate(-5deg);
}

.carousel-containerRecord .deadline::after {
  content: 'DEADLINE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

.carousel-containerRecord .eraser {
  width: 50px;
  height: 25px;
  background-color: #f5deb3;
  border: 1px solid #d2b48c;
  border-radius: 3px;
  bottom: 30%;
  right: 30%;
  transform: rotate(15deg);
}

.carousel-containerRecord .scissors {
  width: 40px;
  height: 40px;
  top: 50%;
  right: 35%;
  transform: rotate(45deg);
}

.carousel-containerRecord .scissors::before,
.carousel-containerRecord .scissors::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.carousel-containerRecord .scissors::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
}

.carousel-containerRecord .scissors::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}

.carousel-containerRecord .accent-line {
  height: 5px;
  width: 50px;
  background: linear-gradient(to right, var(--blue), var(--red));
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 3px;
  z-index: 2;
}

@keyframes carousel-pulse {
  0% {
    box-shadow: 0 5px 15px rgba(58, 132, 177, 0.4);
  }

  50% {
    box-shadow: 0 5px 20px rgba(58, 132, 177, 0.6);
  }

  100% {
    box-shadow: 0 5px 15px rgba(58, 132, 177, 0.4);
  }
}

@keyframes carousel-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-containerRecord .animate-in {
  animation: carousel-fadeInUp 0.7s ease forwards;
}

.carousel-containerRecord .floating {
  animation: carousel-float 6s ease-in-out infinite;
}

@keyframes carousel-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* ======================================================================================================== */

.carousel-containerRecord {
  width: 90%;
  height: 200px;
  /* Fixed height causing issues on mobile */
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

/* Add these responsive fixes */
@media (max-width: 768px) {
  .carousel-containerRecord {
    height: auto;
    /* Change from fixed to auto height */
    min-height: 180px;
    /* Minimum height for mobile */
    padding: 20px 0;
    /* Add padding for better spacing */
  }

  .carousel-containerRecord .carousel-slide {
    padding: 20px 30px;
    /* Reduce padding on mobile */
    min-height: 180px;
    /* Ensure slides have minimum height */
  }

  .carousel-containerRecord .slide-title {
    font-size: 1.4rem;
    /* Smaller font for mobile */
    margin-bottom: 6px;
  }

  .carousel-containerRecord .slide-subtitle {
    font-size: 0.9rem;
    /* Smaller font for mobile */
    margin-bottom: 10px;
  }

  .carousel-containerRecord .slide-cta {
    padding: 6px 18px;
    font-size: 0.85rem;
  }

  .carousel-containerRecord .carousel-nav {
    width: 36px;
    /* Smaller nav buttons */
    height: 36px;
  }

  .carousel-containerRecord .carousel-nav.prev {
    left: 10px;
    /* Move closer to edges */
  }

  .carousel-containerRecord .carousel-nav.next {
    right: 10px;
    /* Move closer to edges */
  }
}

@media (max-width: 480px) {
  .carousel-containerRecord {
    width: 95%;
    /* Use more width on very small screens */
    min-height: 160px;
  }

  .carousel-containerRecord .carousel-slide {
    padding: 15px 20px;
  }

  .carousel-containerRecord .slide-title {
    font-size: 1.2rem;
    /* Even smaller for very small screens */
  }

  .carousel-containerRecord .slide-subtitle {
    font-size: 0.8rem;
  }

  .carousel-containerRecord .slide-content {
    max-width: 90%;
    /* Use more width for content */
  }

  /* Hide some stationery elements on very small screens to reduce clutter */
  .carousel-containerRecord .stationery-bg:nth-child(n+7) {
    display: none;
  }
}

/* ======================================================================================================== */
/* ======================================================================================================== */
/* ======================================================================================================== */
/* ======================================================================================================== */
/* ======================================================================================================== */
/* ======================================================================================================== */
/* ======================================================================================================== */
/* ======================================================================================================== */