/* ===== COMPLETE CSS FILE ===== */
:root {
  --teal: #50C7C7;
  --white: #FFFFFF;
  --dark-bg: rgba(0, 0, 0, 0.9);
  --section-bg: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --callout-bg: #e0f7fa;
  --callout-border: #50C7C7;
  --dark-teal: #00796b;
  --f4f4f4: #f4f4f4;
  --f9f9f9: #f9f9f9;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: var(--section-bg);
  font-size: 16px;
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--teal);
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s ease;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}

.skip-link:focus {
  top: 10px;
  clip: auto;
  overflow: visible;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 100;
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--dark-bg);
  padding: 15px 20px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
  max-width: 180px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== MOBILE MENU TOGGLE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

.hamburger.active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
  transform: rotate(-90deg) translate(-8px, 0);
}

.hamburger.active .hamburger-inner::after {
  opacity: 0;
}

/* ===== NAV MENU ===== */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 15px;
}

.nav-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background-color: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-item a:hover::after {
  transform: scaleX(1);
}

/* ===== MOBILE MENU STYLES ===== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-menu-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
  }

  .mobile-menu-logo {
    width: 80%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(80, 199, 199, 0.6));
  }

  .nav-item {
    margin: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }

  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered animation */
  .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.1s; }
  .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.15s; }
  .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.2s; }
  .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.25s; }
  .nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.3s; }
  .nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.35s; }

  .nav-item a {
    display: block;
    padding: 15px 30px;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-item a:hover {
    color: var(--teal);
    background: rgba(80, 199, 199, 0.1);
    padding-left: 35px;
  }

  .nav-item a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-item a:hover::before {
    opacity: 1;
    left: 25px;
  }

  .mobile-menu-footer {
    margin-top: auto;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
  }

  .nav-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
  }

  .social-icons a {
    color: #fff;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .social-icons a:hover {
    color: var(--teal);
    transform: translateY(-3px);
  }

  .mobile-menu-footer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
  }
}

@media (min-width: 993px) {
  .mobile-menu-header,
  .mobile-menu-footer {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  margin-top: 0;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Hero Inline Logo */
.hero-logo-inline {
  margin: 25px 0;
  text-align: center;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero-logo-inline img {
  width: 200px;
  height: auto;
  max-width: 80%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: all 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== CTA BUTTONS ===== */
.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(80, 199, 199, 0.3);
}

.cta-button.pulse {
  animation: pulse 2s infinite;
}

.cta-button.secondary {
  background: white;
  color: var(--teal);
  border: 2px solid white;
}

/* Specific styling for the CTA button within the main content block */
.cta-in-content {
    margin-top: 30px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(80,199,199,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(80,199,199,0); }
  100% { box-shadow: 0 0 0 0 rgba(80,199,199,0); }
}

/* New, specific class for the contact form submit button */
.form-submit-button {
    display: block;
    width: 100%;
    padding: 15px 40px;
    background-color: var(--teal, #50C7C7);
    color: var(--white, #ffffff);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-submit-button:hover {
    background-color: var(--dark-teal, #00796b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 121, 107, 0.3);
}


/* ===== MAIN CONTENT SECTION ===== */
.content-section {
  background-color: #ffffff;
  padding: 80px 20px;
  color: #333;
}

/* Corrected and consistent H2 styling for all main sections */
.content-section h2, .why-choose-us h2, .testimonials h2, .mission-section h2, .faq-section h2, .contact-form-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600; /* Bolder font weight */
  margin-bottom: 40px;
  color: var(--teal);
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
}

/* Pseudo-element for the line under all the H2 tags */
.content-section h2::after, .why-choose-us h2::after, .testimonials h2::after, .mission-section h2::after, .faq-section h2::after, .contact-form-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

/* Special case for Testimonials H2 to have a white line on a colored background */
.testimonials h2 {
  color: white;
  margin-bottom: 60px;
}
.testimonials h2::after {
  background-color: white;
}

/* This is the correct rule for the highlight class to be used inside an h2 */
.highlight {
  color: var(--teal);
}

/* New class for inline text emphasis, similar to the highlight but for paragraphs */
.highlight-text {
  color: var(--teal);
  font-weight: 600;
}


/* Responsive grid layout - Mobile first (single column) */
.content-grid-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.content-grid-container .text-content-column {
  order: 1;
}

.content-grid-container .image-gallery-column {
  order: 2;
  margin-top: 40px; /* Add margin for mobile view */
}

/* Desktop layout */
@media (min-width: 992px) {
  .content-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
  }
  .content-grid-container .image-gallery-column {
    margin-top: 0;
  }
  .content-grid-container.reverse .text-content-column {
    order: 2;
  }
  .content-grid-container.reverse .image-gallery-column {
    order: 1;
  }
}

/* Text Content & Callout Styles */
.text-content h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-content .intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
}

.callout {
  background-color: var(--callout-bg);
  border-left: 4px solid var(--callout-border);
  padding: 20px;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 500;
  color: #555;
  border-radius: 4px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 600px;
}

.benefits-list li {
  display: flex;
  gap: 15px;
  text-align: left;
  margin-bottom: 25px;
  position: relative;
  align-items: center;
}

.benefits-list .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 1px #50c7c7);
}

.benefits-list h3 {
  color: #50C7C7;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.benefits-list p {
  color: #555;
  line-height: 1.6;
}

/* Image Collage Styles (Mobile) */
.image-collage-mobile {
  display: grid;
  grid-template-areas:
    "image1 image1"
    "image2 image3"
    "image4 image4";
  gap: 20px;
  margin-top: 40px;
}

.image-collage-mobile .collage-item {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.image-collage-mobile .collage-item[data-collage="1"] {
  grid-area: image1;
  height: 500px;
}

.image-collage-mobile .image-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-collage-mobile .collage-item[data-collage="2"] {
  height: 300px;
}

.image-collage-mobile .collage-item[data-collage="3"] {
  height: 300px;
}

.image-collage-mobile .collage-item[data-collage="4"] {
  grid-area: image4;
  height: 500px;
}

/* Image Collage Styles (Desktop) */
.image-collage-desktop {
  display: none;
}

@media (min-width: 992px) {
  .image-collage-mobile {
    display: none;
  }
  
  .image-collage-desktop {
    display: block;
    position: relative;
    min-height: 600px;
  }
  
  .text-content-column {
    order: 1;
  }
  
  .image-gallery-column {
    order: 2;
  }

  .image-collage-desktop .collage-item {
    position: absolute;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease-out;
    opacity: 0;
  }

  /* Image 1 */
  .image-collage-desktop .collage-item[data-collage="1"] {
    top: 50%;
    left: 20%;
    width: 250px;
    height: 350px;
    transform: translate(-50%, -50%) rotate(-7deg);
    z-index: 2;
  }
  
  /* Image 2 */
  .image-collage-desktop .collage-item[data-collage="2"] {
    top: 10%;
    left: 70%;
    width: 200px;
    height: 280px;
    transform: translate(-50%, -50%) rotate(5deg);
    z-index: 1;
  }
  
  /* Image 3 */
  .image-collage-desktop .collage-item[data-collage="3"] {
    top: 70%;
    left: 80%;
    width: 220px;
    height: 300px;
    transform: translate(-50%, -50%) rotate(3deg);
    z-index: 3;
  }
  
  /* Image 4 */
  .image-collage-desktop .collage-item[data-collage="4"] {
    top: 55%;
    left: 45%;
    width: 300px;
    height: 420px;
    transform: translate(-50%, -50%) rotate(-2deg);
    z-index: 4;
  }

  .image-collage-desktop .collage-item.animated {
    opacity: 1;
  }
  
  .image-collage-desktop .collage-item[data-collage="1"].animated { transform: translate(-50%, -50%) rotate(-7deg); }
  .image-collage-desktop .collage-item[data-collage="2"].animated { transform: translate(-50%, -50%) rotate(5deg); }
  .image-collage-desktop .collage-item[data-collage="3"].animated { transform: translate(-50%, -50%) rotate(3deg); }
  .image-collage-desktop .collage-item[data-collage="4"].animated { transform: translate(-50%, -50%) rotate(-2deg); }
}

/* Other Sections (No Changes) */
.why-choose-us {
  background-color: var(--section-bg);
  padding: 100px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.why-choose-us h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  color: var(--teal);
  position: relative;
  display: inline-block;
}

.why-choose-us h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 50px;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.badges-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.badge-item, .badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

/* Remove hover effect from badges */
.badge-item:hover img {
  filter: none;
  transform: none;
}
.badge-item img {
  transition: none;
}

.badge-wrapper {
  min-height: 150px;
}

/* Desktop badges */
@media (min-width: 769px) {
  .badges-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonials {
  background-color: var(--teal);
  padding: 100px 20px;
  position: relative;
  color: white;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 60px;
  color: white;
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

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

.stars {
  color: #FFC107;
  font-size: 24px;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 700;
  color: var(--teal);
}

.client-detail {
  font-size: 14px;
  color: #666;
}

.service-area {
  background: linear-gradient(135deg, #f5fcff 0%, #e6f7ff 100%);
  padding: 60px 20px;
  text-align: center;
}

.service-area h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight {
  color: var(--teal);
}

.service-area .intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.location-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px auto;
  max-width: 500px;
}

.location-tag {
  display: inline-block;
  padding: 8px 18px;
  background: white;
  color: var(--teal);
  border: 1px solid rgba(80,199,199,0.3);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.location-tag.animated {
  opacity: 1;
  transform: translateY(0);
}

.location-tag:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 15px rgba(80,199,199,0.3);
}

.cta-and-callout-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-area .callout {
  margin-bottom: 0;
}

.service-area .callout a {
  color: var(--teal);
  font-weight: bold;
}

.service-area .cta-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-area-visual {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-area-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== NEW PARALLAX SECTION STYLES ===== */
.parallax-section {
    position: relative;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.parallax-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.parallax-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.parallax-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.parallax-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 3px;
    background-color: var(--teal);
}

.parallax-list h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 5px;
}

.parallax-list p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.video-text-parallax .cta-button {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Desktop Styles for Parallax */
@media (min-width: 992px) {
    .video-text-parallax .parallax-content {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        text-align: left;
    }

    .video-text-parallax .parallax-column {
        flex: 1;
        padding: 0 40px;
        max-width: 50%;
    }

    .video-text-parallax .text-center-mobile {
        text-align: left;
    }

    .video-text-parallax .list-right {
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .video-text-parallax .parallax-list {
        margin: 0;
    }

    .video-text-parallax .parallax-list li {
        margin-bottom: 40px;
    }
}

/* =============================================
   Events Page Styles
   ============================================= */
.events-cards-section {
    background-color: var(--f4f4f4);
}

.events-cards-section h2 {
    margin-bottom: 60px;
    text-align: center;
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.event-card {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.event-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.event-card-image.hidden {
    opacity: 0;
}

.event-card-content {
    padding: 30px;
    text-align: left;
    color: var(--text-dark);
}

.event-card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 15px;
}

.event-card-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.event-details-list h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-details-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.event-details-list li::before {
    content: '✦';
    color: var(--teal);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.event-card-button {
    width: auto;
    display: inline-block;
    text-align: center;
}

/* Desktop-specific styles for event cards */
@media (min-width: 768px) {
    .event-card {
        flex-direction: row;
    }

    .event-card-image-wrapper {
        flex-shrink: 0;
        width: 45%;
        aspect-ratio: 16 / 9;
    }

    .event-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .event-card:nth-child(even) .event-card-content {
        text-align: left;
    }

    .event-card:nth-child(even) .event-details-list {
        flex-direction: row;
    }

    .event-card:nth-child(even) .event-details-list li {
        text-align: left;
        padding-left: 15px;
    }

    .event-card:nth-child(even) .event-details-list li::before {
        left: 0;
        right: auto;
    }

    .event-card-content {
        width: 55%;
    }
    
    .event-details-list {
        flex-direction: row;
        gap: 50px;
    }

    .event-details-list .bullets-column,
    .event-details-list .services-column {
        flex: 1;
    }

    .event-details-list li {
        padding-left: 15px;
    }
}

/* Two-column images section for events page */
.events-intro-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.events-intro-images .single-collage-item {
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

/* New styling for the horizontal event list */
.event-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 40px auto;
    max-width: 700px;
}

.event-nav-list a {
    display: inline-block;
    padding: 8px 18px;
    background: var(--f4f4f4);
    color: var(--teal);
    border: 1px solid rgba(80, 199, 199, 0.3);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.event-nav-list a:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(80, 199, 199, 0.3);
}


/* Video Parallax Section - Events Page */
.video-text-parallax {
    height: auto;
    padding: 100px 20px;
}

.video-text-parallax .parallax-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-text-parallax .parallax-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.video-text-parallax .parallax-list {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.parallax-list li {
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}

.parallax-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 3px;
    background-color: var(--teal);
}

.parallax-list h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 5px;
}

.parallax-list p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.video-text-parallax .cta-button {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Desktop Styles for Parallax */
@media (min-width: 992px) {
    .video-text-parallax .parallax-content {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
        text-align: left;
    }

    .video-text-parallax .parallax-column {
        flex: 1;
        padding: 0 40px;
        max-width: 50%;
    }

    .video-text-parallax .text-center-mobile {
        text-align: left;
    }

    .video-text-parallax .list-right {
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .video-text-parallax .parallax-list {
        margin: 0;
    }

    .video-text-parallax .parallax-list li {
        margin-bottom: 40px;
    }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 80px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.footer-brand .brand-text {
  font-size: 1rem;
  color: var(--white);
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact input {
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
}

.footer-contact input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact .cta-button {
  width: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons .follow-text {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.social-icons a {
  color: var(--white);
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: var(--teal);
  transform: translateY(-3px);
}

.footer-ribbon {
  background-color: #000000;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 15px 20px;
  font-size: 0.8rem;
}

.footer-ribbon a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-ribbon a:hover {
  color: var(--teal);
}

/* Mobile-first: Stack all footer content */
.footer-column {
  text-align: center;
  align-items: center;
}

/* Desktop: Re-enable grid layout */
@media (min-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
  
  .footer-column {
    text-align: left;
    align-items: flex-start;
  }
}

/* =============================================
   Contact Form Styles
   ============================================= */
.contact-form-section {
    background-color: var(--f4f4f4, #f4f4f4);
    color: var(--text-dark, #333333);
    padding: 60px 20px;
    font-size: 1rem;
}

.contact-form-section .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #333333);
    margin-bottom: 8px;
}

.dual-input {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dual-input .input-group {
    flex: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark, #333333);
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: var(--f9f9f9, #f9f9f9);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    border-color: var(--teal, #50C7C7);
    box-shadow: 0 0 0 3px rgba(80, 199, 199, 0.2);
    outline: none;
}

/* Specific styling for the event type dropdown */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2350C7C7"%3e%3cpath d="M7 10l5 5 5-5z"/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 30px;
}

/* Custom Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-light, #666666);
    user-select: none;
}

.checkbox-group input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--teal, #50C7C7);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--teal, #50C7C7);
    border-color: var(--teal, #50C7C7);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '\2713'; /* Checkmark unicode character */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

/* Placeholder Styling */
input::placeholder,
textarea::placeholder {
    color: #a9a9a9;
    font-style: italic;
}

/* Media query for desktop layout */
@media (min-width: 768px) {
    .contact-form-section {
        padding: 80px 20px;
    }
    .dual-input {
        flex-direction: row;
    }
}

/* ===== FAQ SECTION STYLES ===== */
.faq-section {
    padding: 80px 20px;
    background-color: var(--section-bg);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
}

/* Mobile-first: single column */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Desktop: 2-column grid */
@media (min-width: 768px) {
    .faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.faq-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 1px var(--teal));
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--teal);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* This rule is for unordered lists inside the FAQ answers */
.faq-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    text-align: left;
}

.faq-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.faq-item ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

/* =============================================
   Services Page Styles
   ============================================= */
.services-section {
    background-color: var(--f4f4f4);
    padding: 80px 20px;
    color: var(--text-dark);
}

.services-section h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(2rem, 5vw, 3rem);
    width: 100%;
    margin-bottom: 40px;
}

.services-section h2 .h2-icon {
    height: clamp(30px, 7vw, 40px);
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    filter: drop-shadow(0 0 5px rgba(80, 199, 199, 0.8));
}

.services-section h2::after {
    content: none;
}

.premium-features-list {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: left;
}

.premium-feature {
    display: flex;
    gap: 20px;
}

.service-icon-wrapper {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-feature .service-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 1px var(--teal));
}

.premium-feature h3 {
    font-size: 1.2rem;
    color: var(--dark-teal);
    margin-bottom: 5px;
}

.premium-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .premium-features-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 40px;
    }
}

.service-cards-grid {
    display: grid;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    text-align: left;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 15px;
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-details-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ideal-for {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-teal);
    margin-bottom: 20px;
    background-color: var(--e0f7fa);
    padding: 15px;
    border-left: 4px solid var(--teal);
    border-radius: 4px;
}

.service-details-grid h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details-grid li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.service-details-grid li::before {
    content: '✦';
    color: var(--teal);
    position: absolute;
    left: 0;
    font-weight: 600;
}

.service-card-button {
    margin-top: 30px;
    display: inline-block;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .service-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .service-card:nth-child(odd) {
        grid-template-areas: "image content";
    }

    .service-card:nth-child(even) {
        grid-template-areas: "content image";
    }

    .service-image-wrapper {
        grid-area: image;
        height: 100%;
    }

    .service-content {
        grid-area: content;
        padding: 40px;
    }

    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-card-button {
        width: auto;
    }
}

/* =============================================
   Gallery Page Styles
   ============================================= */
.gallery-section {
    background-color: var(--f4f4f4);
}

.gallery-section h2 {
    margin-bottom: 60px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    /* Enforce 1:1 aspect ratio */
    aspect-ratio: 1 / 1;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.1);
}

.video-item video {
    pointer-events: none;
}

/* ===== Gallery Modal Styles ===== */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    padding: 20px;
}

.modal-content img, .modal-content video {
    max-width: 100%;
    max-height: 100%;
    display: none;
    border-radius: 8px;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    transition: transform 0.2s ease;
}

.close-button:hover {
    transform: scale(1.2) rotate(90deg);
}

/* Placeholder Styling for Cross-Browser Compatibility */
input::placeholder,
textarea::placeholder { /* Standard syntax */
    color: #a9a9a9;
    font-style: italic;
}

::-webkit-input-placeholder { /* WebKit browsers (Chrome, Safari) */
    color: #a9a9a9;
    font-style: italic;
}

::-moz-placeholder { /* Mozilla Firefox */
    color: #a9a9a9;
    font-style: italic;
    opacity: 1; /* Fixes Firefox's default lower opacity */
}

:-ms-input-placeholder { /* Internet Explorer */
    color: #a9a9a9;
    font-style: italic;
}


/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
  background-color: var(--section-bg);
  padding: 100px 20px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.why-choose-us h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 40px;
  color: var(--teal);
  position: relative;
  display: inline-block;
}

.why-choose-us h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.intro-text {
  max-width: 800px;
  margin: 0 auto 50px;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.badges-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

/* Mobile first: Remove padding and set exact size */
.badge-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 216px;
  padding: 0 !important; /* Remove all padding */
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.badge-item:hover {
  transform: translateY(-5px);
}

.badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ProvenExpert specific styling - Mobile size */
#proven-expert-badge {
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
}

#proSealWidget {
  width: 120px !important;
  height: 216px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
}

/* Desktop: 150px × 246px - Remove padding */
@media (min-width: 768px) {
  .badges-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 35px;
  }
  
  .badge-item {
    width: 150px;
    height: 246px;
    padding: 0 !important;
  }
  
  #proSealWidget {
    width: 150px !important;
    height: 246px !important;
    padding: 0 !important;
  }
}

/* Special handling for very small screens */
@media (max-width: 480px) {
  .badges-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .badge-item {
    margin: 0 auto;
  }
}

/* Force all child elements to fill container */
.badge-item > *,
#proSealWidget > * {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Force ProvenExpert badge to scale properly */
#proSealWidget .pe-pro-seal,
#proSealWidget .pe-pro-seal-container,
#proSealWidget .pe-pro-seal-container > * {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

#proSealWidget .pe-pro-seal-container img,
#proSealWidget .pe-pro-seal-container iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure all badge items have consistent alignment */
.badge-item picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

/* Optional: Add subtle hover animation for badges */
.badge-item {
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.2));
}

/* Focus styles for accessibility */
.badge-item:focus-within {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .badge-item,
  .badge-item:hover {
    transition: none;
    transform: none;
  }
}

/* ===== Corporate Clients Section ===== */
.corporate-section {
    background-color: var(--teal);
    padding: 100px 0 0; /* Adjusted padding for new structure */
    color: white;
    text-align: center;
}

.corporate-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add side padding here for text on mobile */
}

.corporate-section .corporate-heading {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.corporate-section .corporate-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
}

.corporate-section .corporate-text {
    max-width: 800px;
    margin: 40px auto 0; /* Removed bottom margin */
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-wrapper {
    background-color: #e0f7fa;
    padding: 45px 0; /* Increased vertical padding to make it taller */
    position: relative;
    overflow: hidden;
    margin-top: 60px; /* Space between text and carousel */
}

.carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px; /* Wider fade effect */
    height: 100%;
    background: linear-gradient(to right, #e0f7fa, transparent);
    z-index: 2;
}

.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px; /* Wider fade effect */
    height: 100%;
    background: linear-gradient(to left, #e0f7fa, transparent);
    z-index: 2;
}

.logo-carousel {
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-200px * 6)); } 
}

.logo-slide {
    width: 200px;
    padding: 0 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 120px;
    height: auto;
    max-height: 75px; /* Increased logo height */
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.carousel-wrapper:hover .logo-track {
    animation-play-state: paused;
}

.logo-slide:hover img {
    filter: grayscale(0%) opacity(1);
}