#hero-title,
#hero-subtitle {
  transition: all 0.6s ease;
}

/* Custom Styles & Utilities */
body {
  background-color: #09090b; /* Updated background */
  color: #e2e8f0;
  overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: rgba(24, 24, 27, 0.7); /* Updated based on brand.card */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-header {
  background: rgba(9, 9, 11, 0.85); /* Updated based on brand.dark */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header > div.items-center > a {
  width: 30%;
}

.head-logo {
  width: 70%;
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(
    to right,
    #10b981,
    #14b8a6
  ); /* Updated Emerald -> Teal */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Slider Styles */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition:
    opacity 1s ease-in-out,
    transform 10s ease;
  transform: scale(1.05);
  pointer-events: none;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  z-index: 1;
}
.slide-content {
  z-index: 10;
}

/* Ambient Light Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3; /* Slightly lowered opacity for new colors */
  z-index: -1;
}

/* Testimonial Transition */
.testimonial-card {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.testimonial-card.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#why-choose-us div.flex > div.flex.gap-12 {
  gap: 4.5rem;
  margin-right: 1rem;
}

footer ul li a {
  display: flex;
  justify-content: start;
  align-items: center;
  align-content: center;
  gap: 10px;
}

.footer-navigation {
  padding-left: 70px;
}

/* @media only screen and (min-width:1366px) and (max-width:1420px) {}
@media only screen and (min-width:1280px) and (max-width:1365px) {}
@media only screen and (min-width:1180px) and (max-width:1279px) {} */

@media only screen and (min-width: 1024px) and (max-width: 1179px) {
  .max-w-\[1250px\] {
    width: 100%;
    max-width: 1024px;
  }
  .h-screen {
    height: 60vh !important;
    min-height: 400px;
  }

  section.relative.h-screen > div.relative.z-10 {
    padding-top: 2rem;
  }
  #why-choose-us
    > div
    > div
    > div.glass-panel.reveal.relative.active
    > div.absolute.transform.rotate-6 {
    right: -0.5rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .max-w-\[1250px\] {
    width: 100%;
    max-width: 1024px;
  }
  .h-screen {
    height: 60vh !important;
    min-height: 400px;
  }

  section.relative.h-screen > div.relative.z-10 {
    padding-top: 2rem;
  }
  #why-choose-us
    > div
    > div
    > div.glass-panel.reveal.relative.active
    > div.absolute.transform.rotate-6 {
    right: -0.5rem;
  }
  footer > div > div.grid {
    gap: 10px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 767px) {
  .py-24 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .h-screen {
    height: 60vh !important;
    min-height: 100px;
  }

  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 30px !important;
  }

  .h-screen p {
    margin-bottom: 15px;
  }

  .mb-16 {
    margin-bottom: 2rem !important;
  }

  section.relative.h-screen > div.relative.z-10 {
    padding-top: 0rem;
  }

  #about > div.mx-auto.px-6.relative > div > div:nth-child(2) > div {
    gap: 0.75rem !important;
  }
  #why-choose-us > div > div > div.glass-panel.reveal.active {
    padding: 1.5rem;
  }

  #why-choose-us
    > div
    > div
    > div.glass-panel.reveal.relative.active
    > div.absolute.transform.rotate-6 {
    right: -0.5rem;
  }
  #why-choose-us div.flex.text-sm.font-bold {
    align-items: center;
    justify-content: flex-end;
    /* gap: 10px !important; */
  }

  #why-choose-us div.flex.text-sm.font-bold > span:nth-child(2) {
    width: 50%;
  }

  footer > div > div.grid {
    gap: 10px;
  }
  .footer-navigation {
    padding: 0px;
  }
  footer button {
    display: none !important;
  }

  #header > div.items-center > a {
    width: 70%;
  }

  .head-logo {
    width: 70%;
  }

body > footer > div{
  padding-right: 1rem;
  padding-left: 1rem;
}

  .footer-logo {
    width: 60%;
  }
}
