/* =================================================================================
     ############ PAGE HEADER SECTION | KMO | CLINIC  ###############
    ================================================================================ */

.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

/* --- Background and Animation --- */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1);
    transition: transform 50s ease-out;
    animation: zoom-in-out 50s linear infinite alternate;
}

@keyframes zoom-in-out {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* --- Content Styling (Left-Center Alignment) --- */
.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 900px;
    color: #ffffff;
    z-index: 3;
    text-align: left;
}

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive scaling */
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* -------------------------- */
/*      RESPONSIVE DESIGN     */
/* -------------------------- */

/* Tablets */
@media (max-width: 992px) {
    .hero-fullscreen {
        height: 65vh;
    }

    .hero-content {
        left: 8%;
        max-width: 700px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    .hero-fullscreen {
        height: 60vh;
    }

    .hero-content {
        left: 5%;
        max-width: 90%;
    }

    .hero-heading {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-fullscreen {
        height: 55vh;
    }

    .hero-content {
        left: 5%;
        transform: translateY(-40%); /* moves text up for better visibility on small screens */
    }

    .hero-heading {
        font-size: 1.8rem;
    }
}


/* =================================================================================
     ############ HERO SECTION | KMO | CLINIC |  ###############
    ================================================================================ */

.eye-hero-banner {
  /* background: linear-gradient(135deg, #fffaf3, #fff1e6); */
  padding: 100px 20px;
  overflow: hidden;
  position: relative;
  font-family: "Syne", sans-serif;
}

.eye-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: center;
}

.eye-text-content {
  flex: 1;
}


.eye-hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.eye-hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.eye-hero-description {
  font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 25px;
  text-align: justify;
}
.eye-hero-description li{
   list-style: none;
  background-image: url(images/check-mark.png);
  background-repeat: no-repeat;
  background-position: 0 6px; 
  background-size: 16px 16px;
  padding-left: 25px; 
}
.eye-image-content {
  flex: 1;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}

.eye-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  
  border-radius: 35% 65% 45% 55% / 50% 40% 60% 50%;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  filter: drop-shadow(0 0 20px rgba(255,200,120,0.2));
  animation: liquidMorph 12s ease-in-out infinite, rotateSubtle 15s linear infinite;
  transform-origin: center center;
}

.glow-halo {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,120,0.25) 0%, transparent 70%);
  filter: blur(50px);
  animation: haloPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.shimmer-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  pointer-events: none;
  animation: shimmerSlide 4s infinite;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,200,120,0.2);
  animation: particleFloat 5s ease-in-out infinite alternate;
}

.particle-1 { width: 12px; height: 12px; top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { width: 8px; height: 8px; bottom: 15%; right: 10%; animation-delay: 1s; }
.particle-3 { width: 10px; height: 10px; top: 50%; right: 5%; animation-delay: 2s; }

@keyframes liquidMorph {
  0% {
    border-radius: 35% 65% 45% 55% / 50% 40% 60% 50%;
  }
  10% {
    border-radius: 60% 40% 55% 45% / 60% 30% 70% 40%;
  }
  20% {
    border-radius: 40% 60% 65% 35% / 50% 60% 40% 50%;
  }
  30% {
    border-radius: 55% 45% 35% 65% / 70% 50% 60% 40%;
  }
  40% {
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  }
  50% {
    border-radius: 65% 35% 50% 50% / 40% 60% 50% 60%;
  }
  60% {
    border-radius: 50% 50% 45% 55% / 55% 40% 60% 45%;
  }
  70% {
    border-radius: 40% 60% 50% 50% / 60% 50% 40% 55%;
  }
  80% {
    border-radius: 55% 45% 60% 40% / 50% 55% 50% 45%;
  }
  90% {
    border-radius: 45% 55% 35% 65% / 60% 45% 55% 50%;
  }
  100% {
    border-radius: 35% 65% 45% 55% / 50% 40% 60% 50%;
  }
}

@keyframes rotateSubtle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

@keyframes haloPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}

@keyframes shimmerSlide {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes particleFloat {
  0%   { transform: translate(0,0) rotate(0deg); opacity: 0.6; }
  50%  { transform: translate(4px,-8px) rotate(20deg); opacity: 1; }
  100% { transform: translate(0,0) rotate(0deg); opacity: 0.6; }
}


@media(max-width: 768px) {
  .eye-hero-content { flex-direction: column; text-align: center; }
  .image-wrapper { margin-top: 40px; }
  .eye-hero-title { font-size: 2.5rem; }
  .eye-hero-subtitle { font-size: 1.25rem; }
  .eye-hero-description { font-size: 1.05rem; }
  .particle { display: none; }
}
@media (max-width: 480px) {
  .eye-hero-banner {
    padding:20px 15px;
  }

  .eye-hero-title {
    font-size: 1.8rem;
  }

  .eye-hero-subtitle {
    font-size: 1rem;
  }

  .eye-hero-description {
    font-size: 0.95rem;
  }
}
/* =================================================================================
     ############ BENIFIT SECTION | KMO | CLINIC |  ###############
    ================================================================================ */
.container-of-benifit{
  background-color: #e2e2e255;
  width: 100%;
}
    .benifit-section-header {
    text-align: center;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-title {
    font-size: 2.4rem;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    
    max-width: 80%;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
}

/* ===== Realistic Cloud CSS ===== */
.cloud-container {
    width: 350px;
    height: 140px;
    /* background: var(--accent); */
    /* background: -webkit-linear-gradient(-90deg, var(--accent) 5%, var(--light-gray) 100%); */
    border-radius: 100px;
    background-color: #fff;
    position: relative;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    padding-top: 50px;
}

.cloud-container:before,
.cloud-container:after {
    content: '';
    position: absolute;
    /* background: var(--accent); */
    background-color: #ffffff;
        box-shadow: 0 0 25px 8px rgba(201, 201, 201, 0.068);

    z-index: -1;
}

.cloud-container:after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 50px;
    border-radius: 100px;
}

.cloud-container:before {
    width: 180px;
    height: 180px;
    top: -90px;
    right: 50px;
    border-radius: 200px;
}

.cloud-shadow {
    width: 350px;
    position: absolute;
    bottom: -10px;
    background: var(--dark);
    z-index: -1;
    box-shadow: 0 0 25px 8px rgba(0, 0, 0, 0.212);
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition);
}

/* Cloud Content */
.cloud-content {
    text-align: center;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

/* Icon on Top of Cloud */
.cloud-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cloud-icon i {
    font-size: 24px;
    color: var(--white);
}

.cloud-title {
    font-size: 1.2rem;
    font-weight: 700;
    color:#666666;
    margin-bottom: 8px;
    line-height: 1.3;
}

.cloud-description {
    font-size: 1rem;
    color:#666666;
    line-height: 1.7;
}

/* Hover Effects */
.cloud-container:hover {
    transform: translateY(-10px);
}

.cloud-container:hover .cloud-shadow {
    opacity: 0.2;
    transform: scale(0.95);
}

.cloud-container:hover .cloud-icon {
    background: var(--secondary);
    transform: translateX(-50%) scale(1.1);
}

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 40px;
    /* max-width: 1300px; */
    margin: 0 auto;
    padding: 20px;
}

/* ===== Floating Animation ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.cloud-container {
    animation: float 6s ease-in-out infinite;
}

.cloud-container:nth-child(1) { animation-delay: 0s; }
.cloud-container:nth-child(2) { animation-delay: 1s; }
.cloud-container:nth-child(3) { animation-delay: 2s; }
.cloud-container:nth-child(4) { animation-delay: 3s; }
.cloud-container:nth-child(5) { animation-delay: 4s; }
.cloud-container:nth-child(6) { animation-delay: 5s; }

.cloud-container:hover {
    animation-play-state: paused;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .cloud-container {
        width: 320px;
        height: 200px;
    }
    
    .cloud-shadow {
        width: 320px;
    }
}

@media (max-width: 480px) {
    .cloud-container {
        width: 300px;
        height: 180px;
    }
    
    .cloud-shadow {
        width: 300px;
    }
    
    .cloud-container:after {
        width: 80px;
        height: 80px;
        top: -40px;
        left: 40px;
    }
    
    .cloud-container:before {
        width: 140px;
        height: 140px;
        top: -70px;
        right: 40px;
    }
    
    .cloud-content {
        padding: 0 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
}
/* =================================================================================
     ############ WHY SHOUDE SECTION | KMO | CLINIC |  ###############
    ================================================================================ */

.treatments-section-container {
    margin: 0;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 60px 0 60px 0;
}


.treatments-section-perfect {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    grid-template-rows: 1fr;
    max-width: 1200px;
    position: relative;
    min-height: 400px; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
}

.treatments-section-perfect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%; 
    height: 100%;
    background-color: #ebb574;
    z-index: 1; 
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
    transform: translate(-30px, -30px); 
}

.content-box-perfect {
    grid-column: 5 / 13; 
    grid-row: 1 / 2;
    background-color: #fff;
    padding: 60px 50px 50px 200px;
    z-index: 2; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    position: relative;
}
.content-box-perfect ul li {
  list-style: none;
  background-image: url(images/check-mark.png);
  background-repeat: no-repeat;
  background-position: 0 6px; 
  background-size: 16px 16px;
  padding-left: 25px; 
}
.image-wrapper-perfect {
    grid-column: 1 / 6; 
    grid-row: 1 / 2;
    z-index: 3; 
    position: relative;
    
    align-self: center; 
    transform: translateX(40px);
    margin:0 0px 0px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
}

.image-wrapper-perfect img {
    display: block;
    width: 100%;
    height: 550px; 
    object-fit: cover;
    object-position: top;
}


.title-perfect {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 25px;
}

.content-box-perfect ul,
.description-perfect {
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
    font-size: 1rem;
}
/* ---------- RESPONSIVE STYLES ---------- */

@media (max-width: 1100px) {
    .content-box-perfect {
        padding: 60px 40px 50px 120px;
    }

    .image-wrapper-perfect img {
        height: 480px;
    }

    .title-perfect {
        font-size: 2.2em;
    }
}

@media (max-width: 900px) {
    .treatments-section-perfect {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 0;
    }

    .treatments-section-perfect::before {
        width: 100%;
        height: 160px;
        clip-path: none;
        transform: translate(0, 0);
        z-index: 0;
    }

    .image-wrapper-perfect {
        width: 100%;
        transform: none;
        order: 1;
        height: 330px;
        margin-bottom: 30px;
        box-shadow: none;
    }

    .image-wrapper-perfect img {
        height: 100%;
    }

    .content-box-perfect {
        order: 2;
        padding: 35px 20px;
        box-shadow: none;
        margin-top: -40px;
    }

    .title-perfect {
        font-size: 2rem;
        text-align: center;
    }

    .description-perfect,
    .content-box-perfect ul {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .title-perfect {
        font-size: 1.8rem;
    }

    .image-wrapper-perfect {
        height: 280px;
    }

    .content-box-perfect {
        padding: 30px 15px;
    }

    .description-perfect,
    .content-box-perfect ul {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 420px) {
  .treatments-section-container{
    padding: 20px 0;
  }
    .image-wrapper-perfect {
        height: 240px;
    }

    .title-perfect {
        font-size: 1.6rem;
    }

    .content-box-perfect {
        margin-top: -30px;
    }
}


/* =================================================================================
     ############ PROCESS SECTION | KMO | CLINIC |  ###############
    ================================================================================ */

.process-container {
  background: linear-gradient(
      rgba(255, 255, 255, 0.142),
      rgba(219, 219, 219, 0.181)
    ),
    url(images/h2-background.png);
  /* background-image: url(images/h2-background.png); */
  background-size: cover;
  background-position: bottom;
  padding: 50px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.benifit-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

.first-column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.am-header h1 {
  font-size: 2.5rem;
  color: var(--dark);
  /* margin-bottom: 20px; */
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.peocess-description {
  font-size: 1.1rem !important;
  color: #777;
  margin-top: 10px;
}
.accent-line {
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.cta-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.second-column,
.third-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.second-column {
  margin-top: 120px;
}

/* Cards */
.am-service-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 25% 0 25% 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  min-height: 220px;
}

/* Decorative cut-curve before with numbers */
.am-service-card::before {
  content: attr(data-number);
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 0 0 0 100px;
  color: var(--dark);
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

/* Removed ::after as requested */

.am-service-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--accent), var(--light));
}

/* Card icon */
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.am-service-card:hover .card-icon {
  transform: scale(1.2) rotate(15deg);
  background: var(--white);
  color: var(--primary);
}

.am-service-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 14px;
  z-index: 1;
}
.am-service-card p {
  color: var(--gray);
  font-size: 1rem;
  z-index: 1;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .second-column {
    margin-top: 0;
  }
  .am-header h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .process-container {
    padding: 60px 24px;
  }
  .am-header h1 {
    font-size: 2.2rem;
  }
  .am-service-card {
    padding: 32px 28px;
  }
  .card-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .process-container {
    background-position: right bottom;
  }
}
@media (max-width: 480px) {
  .am-header h1 {
    font-size: 1.8rem;
  }
  .cta-button {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  .am-service-card h3 {
    font-size: 1.15rem;
  }
  .am-service-card p {
    font-size: 0.95rem;
  }
  .treatments-section-container.section-refined{
    padding:20px 0 !important;
  }
}

/* =================================================================================
     ############ GALLERY SECTION | KMO | CLINIC |  ###############
    ================================================================================ */
:root {
  --transition: all 0.3s ease-in-out;
  --white: #ffffff;
  --gap-size: 15px;
  /* Defined Heights (500px tall image) */
  --tall-image-height: 500px;
  /* (500px - 15px gap) / 2 = 242.5px */
  --short-image-height: 242.5px;
}

.bridal-portfoli-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 40px 0;
  overflow-x: hidden;
  margin-top: 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-header p {
  max-width: 1000px;
  margin: 0 auto;

  font-size: 1rem;
   line-height: 1.6;
   color: #666666;
}

.portfolio-title {
  font-size: 2em;
  font-weight: normal;
  color: #333;
  margin-bottom: 30px;
  padding-top: 20px;
}

/* --- Structural Layout using Flexbox for Columns --- */
.portfolio-container {
  display: flex;
  gap: var(--gap-size);
  max-width: 1100px;
  width: 90%;
  /* Set the fixed height for the entire section */
  height: var(--tall-image-height);
}

/* The three main columns */
.column-left,
.column-center,
.column-right {
  display: flex;
  flex-direction: column;
  gap: var(--gap-size);
  height: 100%;
}

/* Column Widths (Control by flex ratio) */
/* Adjusted width ratio for visual balance */
.column-left {
  flex: 1;
}
.column-center {
  flex: 0.5;
}
.column-right {
  flex: 1;
}

/* --- Gallery Item and Image Styles --- */
.gallery-item {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  display: block;
}

/* --- FIXED HEIGHT DEFINITIONS --- */

/* Item 1 (Left) and Item 5 (Right) - Set to 500px */
.column-left .gallery-item,
.column-right .gallery-item {
  height: var(--tall-image-height); /* 500px */
}

/* Items 2 and 4 (Center) - Set to 242.5px each */
.column-center .gallery-item {
  height: var(--short-image-height); /* 242.5px */
  width: 350px;
}

/* --- HOVER EFFECTS --- */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

/* --- MODAL STYLES (Unchanged) --- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow: hidden;
}
.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 30px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1001;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1001;
}
.prev-btn {
  left: 30px;
}
.next-btn {
  right: 30px;
}
.action-buttons {
  position: absolute;
  top: 20px;
  right: 80px;
  display: flex;
  gap: 15px;
  z-index: 1001;
}
.action-btn {
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.1rem;
  padding: 5px 15px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}

/* --- RESPONSIVENESS --- */
/* ---------- RESPONSIVE STYLES ---------- */

/* Medium screens (tablets) */
@media (max-width: 992px) {
  :root {
    --tall-image-height: 420px;
    --short-image-height: 200px;
  }

  .column-center .gallery-item {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .portfolio-container {
    flex-direction: column;
    width: 95%;
    height: auto;
    gap: 20px;
  }

  .column-left,
  .column-center,
  .column-right {
    flex: none;
    width: 100%;
    height: auto;
    gap: 20px;
  }

  /* Unified height for mobile items */
  .column-left .gallery-item,
  .column-center .gallery-item,
  .column-right .gallery-item {
    height: 280px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  :root {
    --tall-image-height: 300px;
    --short-image-height: 150px;
  }

  .column-left .gallery-item,
  .column-center .gallery-item,
  .column-right .gallery-item {
    height: 240px;
  }
/* 
  .section-header h2 {
    font-size: 1.6rem;
  } */

  .section-header p {
    font-size: 0.9rem;
  }
}

/* =================================================================================
     ############ FAQ/A SECTION | KMO | CLINIC |  ###############
    ================================================================================ */

        :root {
            --color-accent: #00bcd4; /* Aqua Blue Accent */
            --color-text-dark: #333333; 
            --color-text-subtle: #666666;
            --color-background-white: #ffffff;
            --color-background-soft: #f4f8fb; 
            --color-border-light: #e0e0e0;
            --font-body: 'Syne', sans-serif !important;
            --transition-speed: 0.4s;
            --padding-vertical: 20px;
        }

        .faq-section{
            background-color: #f1f1f1;
            padding: 40px 50px;
        }

        .faq-section-heading{
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
        }

        .faq-section-heading h2 {
            font-size: 2.5em;
            margin-bottom: 1em;
            text-align: center;
            font-weight: 700;
            color: var(--dark);
        }

        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 40px;
            color: var(--color-text-subtle);
            font-size: 1.1em;
        }

        .faq-accordion {
            border-radius: 12px;
            background-color: var(--color-background-white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
        }

        .faq-item {
            border-bottom: 1px solid var(--color-border-light);
            list-style: none;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-item:first-child { border-top-left-radius: 12px; border-top-right-radius: 12px; }
        .faq-item:last-child { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }

        .faq-question-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: 600;
            color: var(--color-text-dark);
            transition: color 0.3s;
            list-style: none;
        }
        .faq-question-header::-webkit-details-marker,
        .faq-question-header::marker {
            display: none;
        }
        
        .faq-item:hover .faq-question-header {
            color: var(--color-accent);
        }

        .faq-item[open] .faq-question-header {
            color: var(--color-accent);
            background-color: var(--color-background-soft);
        }

        .faq-icon {
            font-size: 1.1em;
            color: var(--color-text-subtle);
            transition: transform var(--transition-speed) ease, color 0.3s;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(180deg);
            color: var(--color-accent);
        }

        .faq-answer-content {
            padding: 0 25px;
            color: var(--color-text-subtle);
            max-height: 0; 
            overflow: hidden;
            transition: max-height var(--transition-speed) ease-in-out, padding var(--transition-speed) ease-in-out;
        }
        
        .faq-answer-content p {
            margin: 0;
            padding-bottom: 20px;
        }

        /* Responsive Adjustments */
      /* ---------- RESPONSIVE STYLES ---------- */

@media (max-width: 768px) {
    .faq-section {
        padding: 35px 20px;
    }

    .faq-section-heading h2 {
        font-size: 2.2em;
    }

    .section-subtitle {
        font-size: 1em;
        max-width: 500px;
    }

    .faq-question-header {
        padding: 18px 22px;
        font-size: 1.05em;
    }

    .faq-answer-content {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 30px 15px;
    }

    .faq-section-heading h2 {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 0.95em;
        padding: 0 10px;
    }

    .faq-question-header {
        padding: 15px 18px;
        font-size: 1em;
    }

    .faq-answer-content p {
        padding-bottom: 15px;
        font-size: 0.95em;
    }
}

@media (max-width: 420px) {
    .faq-section {
        padding: 25px 12px;
    }

    .faq-section-heading h2 {
        font-size: 1.8em;
    }

    .faq-question-header {
        padding: 14px 15px;
        font-size: 0.95em;
    }

    .section-subtitle {
        font-size: 0.9em;
    }
}


/* =================================================================================
     ############ CTA SECTION | KMO | CLINIC |  ###############
    ================================================================================ */
.cta-section {
  background-size: cover !important;
  background-position: center !important;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 860px;
  margin: 0 auto 30px;
  font-size: 1rem;
  font-family: "Syne", sans-serif !important;
}
.cta-section .container .greeting-box-banner{
    background-color: rgba(190, 81, 50, 0.4) !important;
}
.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.cta-btn:hover {
  background: black;
  transform: translateY(-3px);
}

/* =================== Responsive Adjustments =================== */

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .cta-section {
    padding: 80px 20px;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .cta-section p {
    font-size: 0.95rem;
    max-width: 700px;
  }

  .cta-btn {
    padding: 14px 35px;
  }
}

/* Small screens (mobile tablets / large phones) */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .cta-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  .cta-section {
    padding: 50px 10px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .cta-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}
