/* Reset default margins and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  background: #fff;
}

/* Header styling */
.header {
  background: #fff;
  border-bottom: 2px solid #ddd;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

/* Container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: fit-content;
  padding: 10px 30px; 
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
} 

/* Logo */
.logo img {
  height: 50px;
  width: auto;
  display: block;
  animation: logoFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  will-change: opacity, transform;
}

@keyframes logoFadeIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* Navigation Links & Icons */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none; /* Mobile Hidden */
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  right: 0;
  width: 220px;
  border-left: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

nav ul.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  display: flex;           /* Added for icon alignment */
  align-items: center;     /* Centers icon and text vertically */
  gap: 12px;               /* Precise spacing between icon and text */
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific Icon Styling */
nav ul li a i {
  font-size: 18px;
  width: 20px;            /* Fixed width so text aligns perfectly */
  text-align: center;
  color: #ae00ff;         /* Brand color for icons */
  transition: transform 0.3s ease;
}

/* Hover Effects */
nav ul li a:hover {
  color: #000;
  background-color: rgba(174, 0, 255, 0.05);
}

nav ul li a:hover i {
  transform: scale(1.2);  /* Subtle icon pop on hover */
}

/* Hamburger Styles */
.hamburger {
  display: block;
  background: #ffdd1b;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 4px;
}

/* Desktop View: Horizontal Navigation */
@media (min-width: 1400px) {
  .hamburger { display: none; }

  nav ul {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    border: none;
    opacity: 1;
    transform: none;
  }

  nav ul li a {
    padding: 10px 15px;
  }

  /* Underline effect for desktop */
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: #ae00ff;
    transition: width 0.3s ease;
  }

  nav ul li a:hover::after {
    width: calc(100% - 30px);
  }
}


/* Hero Section Styling */
.hero {
  position: relative;
  max-width: 1920px;
  margin-top: 70px; /* Offset for fixed header height */
  height: calc(100vh - 70px); /* Adjust height to account for header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  z-index: 1;
  padding: 1.25rem 7.5rem;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: none;
  box-sizing: border-box;
}

.tagline {
  font-size: 1.5em;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; /* Smoother easing, longer duration */
  animation-delay: 0.2s;
  max-width: 90%;
  overflow-wrap: break-word;
  will-change: opacity, transform;
}

h1 {
  font-size: 3em;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, h1Zoom 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite; /* Smoother easing, longer duration */
  animation-delay: 0.4s, 1.4s;
  max-width: 90%;
  overflow-wrap: break-word;
  will-change: opacity, transform;
}

.highlight {
  color: #f4a261;
}

.slogan {
  font-size: 1.3em;
  margin-bottom: 35px;
  width: 60%;
  line-height: 1.5;
  text-align: justify;
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards; /* Smoother easing, longer duration */
  animation-delay: 0.6s;
  will-change: opacity, transform;
}

.buttons {
  display: flex;
  gap: 20px;
}

.cta-btn, .contact-btn {
  padding: 12px 25px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transitions */
  animation: zoomLoop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite; /* Smoother easing, longer duration */
  will-change: transform;
}

.cta-btn {
  background-color: #b39909;
}

.cta-btn:hover {
  background-color: #d4b80a;
  transform: scale(1.15);
  filter: brightness(1.2);
}

.contact-btn {
  background-color: #2a9d8f;
}

.contact-btn:hover {
  background-color: #3ab8a8;
  transform: scale(1.15);
  filter: brightness(1.2);
}

.hero-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #560869, rgba(0, 0, 0, 0));
  z-index: 0;
}

/* Spinning Circular Animation for Icons */
.con1, .con2, .icon3, .icon4, .icon5, .icon6 {
  position: absolute;
  animation: spinCircular var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1) infinite; /* Smoother easing */
  --animation-duration: 4.5s; /* Slightly longer for smoother motion */
  z-index: 2;
  will-change: transform;
}

/* Individual icon variations for staggered spinning circular motion and sizes */
.con2 {
  --animation-duration: 4.8s;
  animation-delay: 0.3s;
  top: 20%;
  right: 80%;
}

.con2 img {
  width: 70px;
  height: 50px;
  display: block;
}

.icon3 {
  --animation-duration: 4.6s;
  animation-delay: 0.6s;
  top: 77%;
  left: 20%;
}

.icon3 img {
  width: 50px;
  height: 40px;
  display: block;
}

.icon6 {
  --animation-duration: 4.9s;
  animation-delay: 1.5s;
  top: 50%;
  right: 35%;
}

.icon6 img {
  width: 70px;
  height: 50px;
  display: block;
}

/* Spinning Circular Animation Keyframes */
@keyframes spinCircular {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(90deg); /* Reduced distance for smoother motion */
  }
  50% {
    transform: translate(0, -20px) rotate(180deg);
  }
  75% {
    transform: translate(-10px, -10px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Fade-In Animation for Tagline, h1, and Slogan */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zoom-In Zoom-Out Animation for Buttons */
@keyframes zoomLoop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Zoom-In Zoom-Out Animation for h1 */
@keyframes h1Zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
  .hero-content {
    padding: 1rem 4rem;
  }

  h1 {
    font-size: 2.5em;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, h1Zoom 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.4s, 1.4s;
  }

  .tagline {
    font-size: 1.3em;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
  }

  .slogan {
    font-size: 1.1em;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
  }

  .cta-btn, .contact-btn {
    padding: 10px 20px;
    font-size: 1em;
    animation: zoomLoop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .con1, .con2, .icon3, .icon4, .icon5, .icon6 {
    --animation-duration: 4.2s; /* Slightly longer for smoother motion */
  }

  .con1 img { width: 120px; height: 100px; }
  .con2 img { width: 70px; height: 52px; }
  .icon3 img { width: 60px; height: 30px; }
  .icon4 img { width: 50px; height: 50px; }
  .icon5 img { width: 54px; height: 54px; }
  .icon6 img { width: 44px; height: 44px; }

  .con2 { top: 17%; right: 75%; }
  .icon3 { top: 82%; left: 25%; }
  .icon6 { top: 50%; right: 30%; }

  @keyframes spinCircular {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(8px, -8px) rotate(90deg); }
    50% { transform: translate(0, -16px) rotate(180deg); }
    75% { transform: translate(-8px, -8px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
}

@media (max-width: 768px) {
  .header {
    padding: 8px 20px;
  }

  .container {
    padding: 8px 20px;
  }

  .logo img {
    height: 40px;
    animation: logoFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  nav ul {
    top: 60px;
    width: 180px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger i {
    animation: colorLoop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero {
    margin-top: 60px;
    height: calc(100vh - 60px);
    min-height: 500px;
  }

  .hero-content {
    padding: 1.5rem 2rem;
    align-items: center;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.8em;
    max-width: 90%;
    margin: 0 auto 15px;
    line-height: 1.4;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, h1Zoom 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.4s, 1.4s;
  }

  .tagline {
    font-size: 1em;
    max-width: 90%;
    margin: 0 auto 10px;
    line-height: 1.5;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
  }

  .slogan {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .cta-btn, .contact-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
    animation: zoomLoop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero-image img {
    object-position: center;
  }

  .con1, .con2, .icon3, .icon4, .icon5, .icon6 {
    --animation-duration: 4s;
  }

  .con1 img { width: 48px; height: 48px; }
  .con2 img { width: 52px; height: 52px; }
  .icon3 img { width: 46px; height: 46px; }
  .icon4 img { width: 50px; height: 50px; }
  .icon5 img { width: 54px; height: 54px; }
  .icon6 img { width: 44px; height: 44px; }

  .con1 { top: 8%; left: 60%; }
  .con2 { top: 18%; right: 6%; }
  .icon3 { top: 30%; left: 10%; }
  .icon4 { top: 42%; right: 8%; }
  .icon5 { top: 55%; left: 15%; }
  .icon6 { top: 65%; right: 5%; }

  @keyframes h1Zoom {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }

  @keyframes spinCircular {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(7px, -7px) rotate(90deg); }
    50% { transform: translate(0, -14px) rotate(180deg); }
    75% { transform: translate(-7px, -7px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
}

@media (max-width: 480px) {
  .header {
    padding: 6px 15px;
  }

  .container {
    padding: 6px 15px;
  }

  .logo img {
    height: 35px;
    animation: logoFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  nav ul {
    top: 55px;
    width: 160px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger {
    width: 40px;
    height: 25px;
    font-size: 18px;
  }

  .hamburger i {
    animation: colorLoop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero {
    margin-top: 55px;
    height: calc(100vh - 55px);
    min-height: 450px;
  }

  .hero-content {
    padding: 1.25rem 1.5rem;
    max-width: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.6em;
    max-width: 92%;
    margin: 0 auto 12px;
    line-height: 1.4;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, h1Zoom 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.4s, 1.4s;
  }

  .tagline {
    font-size: 0.9em;
    max-width: 92%;
    margin: 0 auto 10px;
    line-height: 1.5;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
  }

  .slogan {
    font-size: 0.85em;
    max-width: 92%;
    margin-bottom: 18px;
    line-height: 1.6;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
  }

  .buttons {
    gap: 12px;
    max-width: 270px;
  }

  .cta-btn, .contact-btn {
    padding: 8px;
    font-size: 0.85em;
    animation: zoomLoop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero::before {
    background: linear-gradient(to right, rgba(86, 8, 105, 0.8), rgba(0, 0, 0, 0.2));
  }

  .con1, .con2, .icon3, .icon4, .icon5, .icon6 {
    --animation-duration: 3.8s;
  }

  .con1 img { width: 44px; height: 44px; }
  .con2 img { width: 48px; height: 48px; }
  .icon3 img { width: 40px; height: 40px; }
  .icon4 img { width: 46px; height: 46px; }
  .icon5 img { width: 50px; height: 50px; }
  .icon6 img { width: 40px; height: 40px; }

  .con1 { top: 10%; left: 58%; }
  .con2 { top: 16%; right: 5%; }
  .icon3 { top: 28%; left: 8%; }
  .icon4 { top: 40%; right: 6%; }
  .icon5 { top: 52%; left: 12%; }
  .icon6 { top: 62%; right: 4%; }

  @keyframes h1Zoom {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
  }

  @keyframes spinCircular {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(6px, -6px) rotate(90deg); }
    50% { transform: translate(0, -12px) rotate(180deg); }
    75% { transform: translate(-6px, -6px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
}

@media (max-width: 320px) {
  .header {
    padding: 5px 10px;
  }

  .container {
    padding: 5px 10px;
  }

  .logo img {
    height: 30px;
    animation: logoFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  nav ul {
    top: 50px;
    width: 150px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger {
    width: 35px;
    height: 20px;
    font-size: 16px;
  }

  .hamburger i {
    animation: colorLoop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero {
    margin-top: 50px;
    height: calc(100vh - 50px);
    min-height: 400px;
  }

  .hero-content {
    padding: 1rem 1rem;
    max-width: 100%;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  h1 {
    font-size: 1.4em;
    max-width: 95%;
    margin: 0 auto 10px;
    line-height: 1.4;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards, h1Zoom 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 0.4s, 1.4s;
  }

  .tagline {
    font-size: 0.8em;
    max-width: 95%;
    margin: 0 auto 8px;
    line-height: 1.5;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
  }

  .slogan {
    font-size: 0.75em;
    max-width: 95%;
    margin-bottom: 15px;
    line-height: 1.6;
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
  }

  .buttons {
    gap: 10px;
    max-width: 260px;
  }

  .cta-btn, .contact-btn {
    padding: 7px;
    font-size: 0.8em;
    animation: zoomLoop 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  .hero::before {
    background: linear-gradient(to right, rgba(86, 8, 105, 0.8), rgba(0, 0, 0, 0.2));
  }

  .con1, .con2, .icon3, .icon4, .icon5, .icon6 {
    --animation-duration: 3.6s;
  }

  .con1 img { width: 40px; height: 40px; }
  .con2 img { width: 40px; height: 40px; }
  .icon3 img { width: 36px; height: 36px; }
  .icon4 img { width: 42px; height: 42px; }
  .icon5 img { width: 46px; height: 46px; }
  .icon6 img { width: 34px; height: 34px; }

  .con1 { top: 8%; left: 55%; }
  .con2 { top: 15%; right: 5%; }
  .icon3 { top: 28%; left: 8%; }
  .icon4 { top: 38%; right: 6%; }
  .icon5 { top: 50%; left: 10%; }
  .icon6 { top: 60%; right: 4%; }

  @keyframes h1Zoom {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
  }

  @keyframes spinCircular {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(5px, -5px) rotate(90deg); }
    50% { transform: translate(0, -10px) rotate(180deg); }
    75% { transform: translate(-5px, -5px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
  }
}
/* Our Story Section */
.about-card-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(90deg, #ffffff, #ffffff34);
  min-height: 60vh;
  overflow: hidden;
  padding: 60px 5%;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.966);
}

.about-card-section .fa-info-circle {
  font-size: 200px;
  color: #560869;
  position: absolute;
  left: 0;
  margin-left: -15%;
  top: 50%;
  transform: translateY(-50%);
  animation: slideLoop 4s infinite ease-in-out;
  text-shadow: 0 0 25px rgba(1, 1, 10, 0.4);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

@keyframes slideLoop {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(20px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

@media (hover: hover) {
  .about-card-section .fa-info-circle:hover {
    animation-play-state: paused;
    color: #1a73e8;
    text-shadow: 0 0 35px rgb(132, 26, 232);
    transform: translateY(-50%) scale(1.1) rotate(10deg);
    cursor: default;
  }
}

.about-card {
  max-width: 85%;
  margin-left: auto;
  text-align: left;
  padding-left: 270px;
  position: relative;
}

.about-card h3 {
  font-size: 2.8rem;
  color: #070602;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  animation: titleLoop 3s infinite ease-in-out;
}

@keyframes titleLoop {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}

.about-card h4 {
  font-size: 2rem;
  color: #f8f8f8;
  margin-bottom: 25px;
  font-weight: 500;
  background-color: rgb(142, 9, 160);
  background-size: contain;
  padding: 5px 10px;
  border-radius: 4px;
}

.about-card p {
  font-size: 1.6rem;
  color: #000000;
  line-height: 1.8;
  text-align: justify;
  position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-card-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    min-height: 100vh;
  }

  .about-card-section .fa-info-circle {
    position: static;
    font-size: 120px;
    margin-bottom: 20px;
    margin-left: -20px;
    animation: float 3s infinite ease-in-out;
    text-shadow: 10px 10px 20px rgb(161, 9, 221);
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  }

  @media (hover: hover) {
    .about-card-section .fa-info-circle:hover {
      color: #e81ad7;
      text-shadow: 0 0 25px rgba(0, 4, 8, 0.986);
      transform: translateY(-5px);
    }
  }

  .about-card {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .about-card h3 {
    font-size: 2.2rem;
    animation: titleLoop 3s infinite ease-in-out;
    justify-content: center;
  }

  .about-card h4 {
    font-size: 1.6rem;
    background-color: rgb(120, 6, 143);
    padding: 5px 10px;
    border-radius: 4px;
  }

  .about-card p {
    font-size: 1.3rem;
  }

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

@media (max-width: 480px) {
  .about-card-section {
    padding: 1.5rem 1%;
    min-height: 60vh;
  }

  .about-card-section .fa-info-circle {
    margin-left: -1%;
  }

  .about-card {
    padding: 1rem;
    max-width: 95%;
    min-height: 350px;
  }

  .about-card h3 {
    font-size: 1.8rem;
    animation: titleLoop 3s infinite ease-in-out;
  }

  .about-card h4 {
    font-size: 1.4rem;
    background-color: rgb(174, 9, 207);
    padding: 5px 10px;
    border-radius: 4px;
  }

  .about-card p {
    font-size: 1.1rem;
  }
}

/* Accessibility: Focus States */
.about-card-section .fa-info-circle:focus,
.about-card h3:focus,
.about-card h4:focus,
.about-card p:focus {
  outline: 2px solid #d2e009;
  outline-offset: 2px;
}

/* Touch-Friendly Adjustments */
@media (hover: none) {
  .about-card-section .fa-info-circle:hover {
    transform: none;
    color: inherit;
    text-shadow: inherit;
  }
}


/* Why Choose Us Section */
.about {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  background: #560869;
  display: block;
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.about-container h2 {
  font-size: 2.5rem;
  color: #EAB50E;
  margin-bottom: 0.75rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  animation: whyTitleLoop 3s infinite ease-in-out;
}

@keyframes whyTitleLoop {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
}



.about-container p {
  color: rgb(250, 250, 250);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ec0020;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


.section-container p {
  color:white
}
.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.why-card {
  flex: 0 0 calc(25% - 0.75rem);
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  animation: cardPulseGlow 5s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
/* Staggered animation delays for each card */
.why-card:nth-child(1) {
  animation-delay: 0s;
}
.why-card:nth-child(2) {
  animation-delay: 0.2s;
}
.why-card:nth-child(3) {
  animation-delay: 0.4s;
}
.why-card:nth-child(4) {
  animation-delay: 0.6s;
}

@media (hover: hover) {
  .why-card:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(238, 255, 0, 0.4), 0 4px 8px rgb(207, 2, 207);
    background: linear-gradient(135deg, #d1e8ff, #f0faff);
    animation-play-state: paused;
  }

  .why-card:hover .icon-wrapper {
    transform: scale(1.15);
  }

  .why-card:hover i {
    transform: translateY(-6px) rotate(5deg);
  }

  .why-card:hover h3 {
    color: #053975;
  }
}

.why-card[data-feature="personalized"] .icon-wrapper i {
  color: #131200;
}

.why-card[data-feature="expertise"] .icon-wrapper i {
  color: #28a745;
}

.why-card[data-feature="innovation"] .icon-wrapper i {
  color: #ff4d4d;
}

.why-card[data-feature="accessibility"] .icon-wrapper i {
  color: #e6c50b;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.801);
  animation: pulse 2s infinite ease-in-out;
  transition: transform 0.3s ease, background 0.3s ease;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.why-card i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.why-card h3 {
  font-size: 1.5rem;
  color: #1a0a75;
  margin-bottom: 0.75rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.why-card p {
  font-size: 1rem;
  color: #0c0c0c;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .why-choose-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .why-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .about {
    padding: 1.25rem 0.75rem;
  }

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

  .why-card {
    padding: 1.5rem;
    flex: 0 0 calc(50% - 0.75rem);
    animation: cardPulseGlow 5s infinite ease-in-out;
  }

  .why-card:nth-child(1) {
    animation-delay: 0s;
  }
  .why-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .why-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  .why-card:nth-child(4) {
    animation-delay: 0.6s;
  }

  .why-card h3 {
    font-size: 1.3rem;
  }

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

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .why-card i {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .about-container h2 {
    font-size: 1.4rem;
  }

  .why-card {
    padding: 1.25rem;
    flex: 0 0 calc(100% - 0.75rem);
    animation: cardPulseGlow 5s infinite ease-in-out;
  }

  .why-card:nth-child(1) {
    animation-delay: 0s;
  }
  .why-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .why-card:nth-child(3) {
    animation-delay: 0.4s;
  }
  .why-card:nth-child(4) {
    animation-delay: 0.6s;
  }

  .why-card h3 {
    font-size: 1.2rem;
  }

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

  .section-subtitle {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .why-card i {
    font-size: 1.6rem;
  }
}


/* Touch-Friendly Adjustments */
@media (hover: none) {
  .why-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgb(0, 0, 0), 0 2px 6px rgb(0, 0, 0);
    background: linear-gradient(135deg, #810967, #810967);
  }

  .why-card:hover .icon-wrapper {
    transform: none;
  }

  .why-card:hover i {
    transform: none;
  }

  .why-card:hover h3 {
    color: #222;
  }
}


/* Services Section */
.service-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  min-height: 600px;
  background: linear-gradient(to right, #e6f7ff, #fcfcfc);
  display: block;
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease-in-out infinite;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.966);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-container h2 {
  font-size: 2.5rem;
  color: #053975;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
  animation: serviceTitleLoop 3s infinite ease-in-out;
}

@keyframes serviceTitleLoop {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-5px) translateX(3px) scale(1.02);
  }
}

.service-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #EAB50E;
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #608D14;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Carousel Styling */
.carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.carousel-inner {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.25rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.carousel-inner::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(33.33% - 0.833rem);
  min-width: 300px;
  opacity: 0.85;
  transform: scale(0.95);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out, scale 0.6s ease-in-out;
}

/* Active card (assumes JavaScript adds .active class to visible cards) */
.carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-card {
  background: linear-gradient(135deg, #720792, #720792, #720792, #c70b88);
  background-size: 400% 400%;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgb(0, 0, 0), 0 2px 6px rgb(0, 0, 0);
  text-align: left;
  border: 1px solid transparent;
  animation: cardGradientFlow 10s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-image 0.3s ease;
}

/* Staggered animation delays for card gradients */
.carousel-item:nth-child(3n+1) .carousel-card {
  animation-delay: 0s;
}
.carousel-item:nth-child(3n+2) .carousel-card {
  animation-delay: 0.5s;
}
.carousel-item:nth-child(3n+3) .carousel-card {
  animation-delay: 1s;
}

@keyframes cardGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (hover: hover) {
  .carousel-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.5), 0 6px 10px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #d1e8ff, #f0faff);
    animation-play-state: paused;
  }

  .carousel-card:hover h3 {
    color: #053975;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .carousel-card:hover h3 i {
    color: #053975;
  }

  .carousel-card:hover p {
    color: #333;
  }

  .carousel-card:hover ul li {
    color: #333;
  }

  .carousel-card:hover .delivery-container {
    background: linear-gradient(135deg, #ff00aa, #a100ff); /* Reversed gradient for vibrancy */
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8); /* Brighter glow */
    transform: scale(1.02);
    animation: pulse 1.5s ease-in-out infinite; /* Pulse on hover */
  }
}

.carousel-card:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(153, 0, 255, 0.801), 0 4px 8px rgba(0, 123, 255, 0.2);
}

.carousel-card h3 {
  font-size: 1.5rem;
  color: #f8f6f6;
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.carousel-card h3 .title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-card h3 i {
  font-size: 1.4rem;
  color: #f8f6f6;
  transition: color 0.3s ease;
}

.carousel-card .service-number {
  font-size: 1.2rem;
  color: #07d807;
  font-weight: 400;
}

.carousel-card p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.carousel-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.carousel-card ul li {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.carousel-card p strong {
  color: #0cfc04;
  font-weight: 600;
}

.carousel-control {
  position: absolute;
  bottom: 1rem;
  background: rgb(0, 0, 0);
  color: #ffffff;
  border: none;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-control.prev {
  left: calc(50% - 60px);
}

.carousel-control.next {
  right: calc(50% - 60px);
}

@media (hover: hover) {
  .carousel-control:hover {
    transform: scale(1.2);
    background: #2a9df4;
  }
}

/* Screen-reader-only text for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Delivery Container Styling - Vibrant Design */
.delivery-container {
  background: linear-gradient(135deg, #a100ff, #ff00aa); /* Vibrant purple-pink gradient */
  border: 2px solid #ff00aa; /* Bold solid border */
  border-radius: 12px; /* Slightly rounder for energy */
  padding: 1rem;
  margin-top: 1rem;
  animation: fadeIn 1s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 0, 170, 0.6); /* Glowing shadow */
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.delivery-container p {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500; /* Bolder for emphasis */
  color: #ffd700; /* Vibrant gold/yellow */
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Depth for readability */
}

.delivery-container strong {
  font-weight: 800;
  color: #ffffff; /* Bright white for contrast */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-container {
    min-height: 500px;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 0.833rem);
    min-width: 280px;
  }

  .carousel-card h3 {
    font-size: 1.4rem;
  }

  .carousel-card h3 i {
    font-size: 1.3rem;
  }

  .carousel-card p,
  .carousel-card ul li {
    font-size: 0.95rem;
  }

  .delivery-container {
    padding: 0.75rem;
    box-shadow: 0 0 8px rgba(255, 0, 170, 0.5); /* Reduced glow */
    border: 1.5px solid #ff00aa; /* Slightly thinner border */
  }

  .delivery-container p {
    font-size: 0.9rem;
  }

  .carousel-control {
    bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .service-container {
    padding: 1.25rem 0.75rem;
    min-height: 400px;
  }

  .service-container h2 {
    font-size: 1.75rem;
  }

  .carousel-item {
    flex: 0 0 calc(100% - 0.833rem);
    min-width: 260px;
  }

  .carousel-card h3 {
    font-size: 1.3rem;
  }

  .carousel-card h3 i {
    font-size: 1.2rem;
  }

  .carousel-card p,
  .carousel-card ul li {
    font-size: 0.9rem;
  }

  .delivery-container {
    padding: 0.5rem;
    box-shadow: 0 0 6px rgba(255, 0, 170, 0.4);
    border: 1.5px solid #ff00aa;
  }

  .delivery-container p {
    font-size: 0.85rem;
  }

  .carousel-control {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    bottom: 0.5rem;
  }

  .carousel-control.prev {
    left: calc(50% - 50px);
  }

  .carousel-control.next {
    right: calc(50% - 50px);
  }
}

@media (max-width: 480px) {
  .service-container {
    min-height: 300px;
  }

  .service-container h2 {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .carousel-item {
    flex: 0 0 calc(100% - 0.833rem);
    min-width: 240px;
  }

  .carousel-card h3 {
    font-size: 1.2rem;
  }

  .carousel-card h3 i {
    font-size: 1.1rem;
  }

  .carousel-card p,
  .carousel-card ul li {
    font-size: 0.85rem;
  }

  .delivery-container {
    padding: 0.5rem;
    box-shadow: 0 0 4px rgba(2, 1, 2, 0.836);
    border: 1px solid #ff00aa; /* Thinner for small screens */
  }

  .delivery-container p {
    font-size: 0.8rem;
  }

  .carousel-card .service-number {
    font-size: 1rem;
  }

  .carousel-control {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    bottom: 0.5rem;
  }

  .carousel-control.prev {
    left: calc(50% - 40px);
  }

  .carousel-control.next {
    right: calc(50% - 40px);
  }
}

/* Accessibility: Focus States */
.carousel-card:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(153, 0, 255, 0.801), 0 4px 8px rgba(0, 123, 255, 0.2);
}

.carousel-control:focus {
  outline: 2px solid #2a9df4;
  outline-offset: 2px;
}

/* Touch-Friendly Adjustments */
@media (hover: none) {
  .carousel-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    border-image: linear-gradient(45deg, #2a9df4, #ff4d4d) 1;
  }

  .carousel-card:hover h3 {
    color: #222;
    text-shadow: none;
  }

  .carousel-card:hover h3 i {
    color: #222;
  }

  .carousel-card:hover p,
  .carousel-card:hover ul li {
    color: #555;
  }

  .carousel-card:hover .delivery-container {
    background: linear-gradient(135deg, #ff00aa, #a100ff); /* Maintain vibrancy */
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
  }

  .carousel-control:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.5);
  }
}


/* Learning Options Section */
.learning-options {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 600px;
  background: linear-gradient(45deg, #720792, #720792);
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 20px;
}


.learning-options h2 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: serviceTitleLoop 3s infinite ease-in-out;
  margin: 0;
}

.learning-options h2 i {
  font-size: 2rem;
  color: #d6f42a;
  margin-right: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}


@media (hover: hover) {
  .learning-options h2:hover i {
    transform: scale(1.1);
    color: #00060c;
  }
}

@keyframes serviceTitleLoop {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-5px) translateX(3px) scale(1.02);
  }
}


.learning-options .section-subtitle {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.7;
  max-width: 800px;
  text-align: center;
  margin: 0;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1900px;
  margin: 0 auto;
}

.option {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #feffff, #fae102, #ec04ba, #e90692);
  background-size: 400% 400%;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.973), 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  animation: cardGradientFlow 10s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-image 0.3s ease;
  width: 100%;
}

/* Staggered animation delays for card gradients */
.option:nth-child(4n+1) {
  animation-delay: 0s;
}
.option:nth-child(4n+2) {
  animation-delay: 0.5s;
}
.option:nth-child(4n+3) {
  animation-delay: 1s;
}
.option:nth-child(4n+4) {
  animation-delay: 1.5s;
}

@keyframes cardGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.option i {
  font-size: 2rem;
  color: #000000;
  margin-right: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.option-text {
  display: flex;
  flex-direction: column;
}

.option-text h5 {
  font-size: 1.3rem;
  color: #221185;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.option-text p {
  font-size: 1rem;
  color: #fffbfb;
  line-height: 1.6;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .option:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.5), 0 6px 10px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #d1e8ff, #f0faff);
    border-image: linear-gradient(45deg, #ff4d4d, #e6c50b) 1;
    animation-play-state: paused;
  }

  .option:hover i {
    color: #053975;
    transform: scale(1.1);
  }

  .option:hover h5 {
    color: #053975;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .option:hover p {
    color: #333;
  }
}

.option:focus {
  outline: 3px solid #dc2af4;
  outline-offset: 4px;
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(136, 5, 197, 0.836), 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .learning-options {
    min-height: 550px;
  }

  .learning-options h2 {
    font-size: 2.25rem;
  }

  .learning-options h2 i {
    font-size: 1.8rem;
  }

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

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .option {
    padding: 1.25rem;
  }

  .option i {
    font-size: 1.8rem;
  }

  .option-text h5 {
    font-size: 1.2rem;
  }

  .option-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .learning-options {
    padding: 1.5rem 0.75rem;
    min-height: 500px;
  }

  .learning-options h2 {
    font-size: 1.75rem;
  }

  .learning-options h2 i {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
  }

  .options-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .option {
    padding: 1rem;
  }

  .option i {
    font-size: 1.6rem;
  }

  .option-text h5 {
    font-size: 1.1rem;
  }

  .option-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .learning-options {
    min-height: 450px;
  }

  .learning-options h2 {
    font-size: 1.4rem;
  }

  .learning-options h2 i {
    font-size: 1.4rem;
    margin-right: 0.4rem;
  }

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

  .option i {
    font-size: 1.4rem;
    margin-right: 0.75rem;
  }

  .option-text h5 {
    font-size: 1rem;
  }

  .option-text p {
    font-size: 0.85rem;
  }
}

/* Accessibility: Focus States */
.learning-options h2:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
}

.option:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
}

/* Touch-Friendly Adjustments */
@media (hover: none) {
  .option:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    border-image: linear-gradient(45deg, #2a9df4, #ff4d4d) 1;
  }

  .option:hover i {
    color: #2a9df4;
    transform: none;
  }

  .option:hover h5 {
    color: #222;
    text-shadow: none;
  }

  .option:hover p {
    color: #555;
  }

  .learning-options h2:hover i {
    transform: none;
    color: #2a9df4;
  }
}

/* Testimonials Section */
.testimonials {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  min-height: 700px;
  background: linear-gradient(to right, #ffffff, #fffeff);
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.966);
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #053975;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: serviceTitleLoop 3s infinite ease-in-out;
  margin: 0;
  position: relative;
}


.testimonials h3 {
  font-size: 1.75rem;
  color: #222222;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.testimonials p {
  font-size: 1.1rem;
  color: #6dd60a;
  line-height: 1.7;
  max-width: 900px;
  text-align: center;
  margin: 0;
}

.testimonials .carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials .carousel-inner {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1.25rem;
  padding: 1rem 0;
  scrollbar-width: none;
}

.testimonials .carousel-inner::-webkit-scrollbar {
  display: none;
}

.testimonials .carousel-item {
  flex: 0 0 calc(33.33% - 0.833rem);
  min-width: 160px;
  min-height: 480px;
  opacity: 0.85;
  transform: scale(0.95);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out, scale 0.6s ease-in-out;
}

.testimonials .carousel-item.active {
  opacity: 1;
  transform: scale(1);
}

.testimonials .carousel-card {
  background: linear-gradient(135deg, #6608d3, #6608d3, #f42aea, #ff4d4d);
  background-size: 400% 400%;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-image 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  .testimonials .carousel-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 12px 24px rgba(8, 8, 8, 0.5), 3px 5px 5px 5px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #d1e8ff, #f0faff);
  }

  .testimonials .carousel-card:hover h3 {
    color: #053975;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .testimonials .carousel-card:hover p {
    color: #333;
  }

  .testimonials .carousel-card:hover ul li {
    color: #333;
  }
}

.testimonials .carousel-card:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(153, 0, 255, 0.801), 0 4px 8px rgba(200, 255, 0, 0.918);
}

.testimonials .carousel-card h3 {
  font-size: 1.5rem;
  color: #0f1180;
  margin-bottom: 0.75rem;
  font-weight: 700;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.testimonials .carousel-card .service-number {
  font-size: 1.2rem;
  color: #2a9df4;
  font-weight: 400;
}

.testimonials .carousel-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  flex-grow: 0;
}

.testimonials .carousel-card .rating {
  font-size: 1.4rem;
  color: #e6c50b;
  margin-bottom: 0.5rem;
}

.testimonials .carousel-card h4 {
  font-size: 1.3rem;
  color: #222;
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials {
    min-height: 650px;
  }
  .testimonials h2 {
    font-size: 2.25rem;
  }
  .testimonials h3 {
    font-size: 1.6rem;
  }
  .testimonials p {
    font-size: 1rem;
  }
  .testimonials .carousel-item {
    flex: 0 0 calc(50% - 0.833rem);
    min-width: 140px;
    min-height: 440px;
  }
  .testimonials .carousel-card h3 {
    font-size: 1.4rem;
  }
  .testimonials .carousel-card p,
  .testimonials .carousel-card .rating,
  .testimonials .carousel-card h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 1.25rem 0.75rem;
    min-height: 600px;
  }
  .testimonials h2 {
    font-size: 1.75rem;
  }
  .testimonials h3 {
    font-size: 1.4rem;
  }
  .testimonials p {
    font-size: 0.95rem;
    max-width: 90%;
  }
  .testimonials .carousel-item {
    flex: 0 0 calc(100% - 0.833rem);
    min-width: 120px;
    min-height: 420px;
  }
  .testimonials .carousel-card h3 {
    font-size: 1.3rem;
  }
  .testimonials .carousel-card p,
  .testimonials .carousel-card .rating,
  .testimonials .carousel-card h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .testimonials {
    min-height: 550px;
  }
  .testimonials h2 {
    font-size: 1.4rem;
  }
  .testimonials h3 {
    font-size: 1.2rem;
  }
  .testimonials p {
    font-size: 0.9rem;
  }
  .testimonials .carousel-item {
    flex: 0 0 calc(100% - 0.833rem);
    min-width: 100px;
    min-height: 400px;
  }
  .testimonials .carousel-card h3 {
    font-size: 1.2rem;
  }
  .testimonials .carousel-card p,
  .testimonials .carousel-card .rating,
  .testimonials .carousel-card h4 {
    font-size: 0.85rem;
  }
  .testimonials .carousel-card .service-number {
    font-size: 1rem;
  }
}

/* Accessibility: Focus States */
.testimonials h2:focus,
.testimonials h3:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
}

.testimonials .carousel-card:focus {
  outline: 3px solid #2a9df4;
  outline-offset: 4px;
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(153, 0, 255, 0.801), 0 4px 8px rgba(0, 123, 255, 0.2);
}

/* Touch-Friendly Adjustments */
@media (hover: none) {
  .testimonials .carousel-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #e6f7ff, #ffffff);
    border-image: linear-gradient(45deg, #2a9df4, #ff4d4d) 1;
  }

  .testimonials .carousel-card:hover h3 {
    color: #222;
    text-shadow: none;
  }

  .testimonials .carousel-card:hover p,
  .testimonials .carousel-card:hover ul li {
    color: #555;
  }
}


/* GET STARTED */
.get-started {
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 2rem;
}

.get-started h2 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.get-started .btn a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
}

.get-started .btn {
  background-color: #ffee04;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
}

.get-started .btn:hover {
    background-color: #F20530; /* Changed to red for vibrancy */
    transform: scale(1.05);
}
/* Footer */
.footer {
    background: linear-gradient(45deg, #7206A1, #1F0A85); /* Aligned with body gradient */
    padding: 1rem 1rem;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Adjusted shadow */
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-title {
    font-size: 1.5rem;
    color: #FDB12A; /* Changed to yellow for emphasis */
    font-weight: 600;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #e6f0ff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #F20530; /* Changed to red for vibrancy */
    transform: scale(1.2);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .social-media {
        gap: 1rem;
    }

    .social-title {
        font-size: 1.3rem;
    }

    .social-link {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .social-media {
        flex-direction: row;
        gap: 0.8rem;
    }

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

    .social-link {
        font-size: 1.2rem;
    }
}
