/* Features of the Recreated Header */ 

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
button:focus {
    outline: none;
    border: none; /* optional, if you want no border */
    box-shadow: none; /* removes blue glow in some browsers */
    appearance: none; /* removes default styling in most browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
  }
body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* Top Info Bar Styles */
.top-info-bar {
  background: linear-gradient(135deg, #2c3e50, #1e5799);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.top-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}


.contact-info {
  display: flex;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  color: #fff;
}

.contact-item:hover {
  transform: translateY(-2px);
  color: #74b9ff;
}

.contact-icon {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Main Header Styles */
.main-header {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.academy-logo {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #3498db, #2980b9); */
  color: white;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.academy-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.academy-logo:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.academy-logo:hover:before {
  left: 100%;
}

.academy-logo:hover {
  transform: rotate(5deg);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.logo-inner {
  font-size: 20px;
  font-weight: bold;
}

.academy-brand-name {
  display: flex;
  flex-direction: column;
}

.academy-name {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 0.5px;
  line-height: 1.2;
  background: linear-gradient(to right, #2c3e50, #3498db);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.academy-tagline {
  font-size: 14px;
  color: #7f8c8d;
  font-weight: 400;
  transition: all 0.3s ease;
}

.brand:hover .academy-name {
  background-position: right center;
}

.brand:hover .academy-tagline {
  color: #3498db;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem; /* increase clickable area */
}

.toggle-icon {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  background-color: #2c3e50;
  transition: background-color 0.3s ease;
}

.toggle-icon:before,
.toggle-icon:after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #2c3e50;
  transition: all 0.3s ease;
}

.toggle-icon:before {
  top: -8px;
}

.toggle-icon:after {
  bottom: -8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .top-info-container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .header-container {
    padding: 8px 20px;
  }

  .academy-logo {
    width: 60px;
    height: 60px;
  }

  .logo-inner {
    font-size: 16px;
  }

  .academy-name {
    font-size: 20px;
  }

  .academy-tagline {
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 576px) {
  .brand {
    gap: 12px;
  }

  .academy-logo {
    /* width: 44px;
    height: 44px; */
    width: 54px;
    height: 54px;

  }

  .logo-inner {
    font-size: 14px;
  }

  .academy-name {
    font-size: 18px;
  }

  .academy-tagline {
    font-size: 11px;
  }
}

/* Mobile navigation menu */
.main-nav {
  display: flex;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #3498db;
}

.nav-link:hover:after {
  width: 100%;
}

.active-link {
  color: #3498db;
}

.active-link:after {
  width: 100%;
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.4s ease;
  }

  .main-nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
    text-align: center;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-link {
    display: block;
    padding: 12px 0;
  }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Banner Slider Container */
.premium-hero-banner-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    max-height: 800px;
    overflow: hidden;
}

@media (max-width: 768px) {
  .premium-hero-banner-slider {
    position: relative;
    width: 100%;
    height: 40vh;
    max-height: 800px;
    overflow: hidden;
}
}

/* Slider Panels */
.hero-slider-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items:end;
    /* _______________________________CHNAGES OF TEXT R */
    padding: 30px;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity 1s ease-in-out,
        visibility 1s ease-in-out;

    background-size: cover;
    background-position: center;
    object-position: top center;
    background-repeat: no-repeat;
}

.hero-slider-panel.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Content Animations */
@keyframes slideTextIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


    /* Slide Navigation */
    /* .hero-slider-navigation {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 10;
    }

    .hero-slider-nav-btn {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .hero-slider-nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }
    .hero-slider-nav-btn.active {
        background-color: rgba(255, 255, 255, 1);
    } */


/* Slide Content */
.hero-slider-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    color: white;
}

.hero-slider-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slider-panel.active .hero-slider-title,
.hero-slider-panel.active .hero-slider-subtitle {
    animation: slideTextIn 1s forwards;
}

.hero-slider-panel.active .hero-slider-subtitle {
    animation-delay: 0.5s;
}

/* Hover Button */
.hero-slider-action-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    opacity: 0;
    transition: 
        opacity 0.3s ease,
        transform 0.2s ease,
        background-color 0.3s ease;
    transform: translateY(20px);
}

.hero-slider-panel.active .hero-slider-action-btn {
    animation: slideTextIn 1s 0.7s forwards;
}

.hero-slider-panel:hover .hero-slider-action-btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-action-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hero-slider-action-btn:active {
    transform: scale(0.95);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero-slider-title {
        font-size: 2.5rem;
    }

    .hero-slider-subtitle {
        font-size: 1.2rem;
    }

    .hero-slider-action-btn {
        padding: 12px 25px;
    }
}


        /* Specific Background Images */
        .hero-slider-panel-1 {
            /* background-image: url(''); */
            /* background-color: rgba(0,0,123,0.7); */
            /* background-blend-mode: Landscape; */
        }

        .hero-slider-panel-2 {
            /* background-image: url('/images/slide/slide6.jpg'); */
            /* background-color: rgba(123,0,0,0.7); */
            /* background-blend-mode: Landscape; */
        }

        .hero-slider-panel-3 {
            /* background-image: url('/images/slide/slide8.jpg'); */
            /* background-color: rgba(0,123,0,0.7); */
            /* background-blend-mode: Landscape; */
        }
/* ----------------------------------abacus-hero-section----------------------------------- */
/* Abacus Hero Section */

    /* Hero Section */
    .abacus-hero-section {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9; /* Matches your image ratio */
      min-height: 300px;
      max-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      margin: 0 auto;
  }

  .abacus-hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
        background-image: url('./../images/slide/Brain-Development-cam.jpg'); /* Replace with your image path */
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-color: #f8f9fa;
        /* z-index: 1; */
        transition: transform 0.3s ease;
    }

    .abacus-hero-section:hover .abacus-hero-background {
        transform: scale(1.02);
    }

    .abacus-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            rgba(0, 0, 0, 0.3) 0%, 
            rgba(0, 0, 0, 0.1) 50%, 
            rgba(0, 0, 0, 0.3) 100%); 
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .abacus-hero-section:hover .abacus-overlay {
        opacity: 0.8;
    }

    .abacus-hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: white;
        padding: 3rem 2rem;
        max-width: 900px;
        margin: 0 auto;
        backdrop-filter: blur(8px);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .abacus-hero-section:hover .abacus-hero-content {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    .abacus-title-main {
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        letter-spacing: 0.15em;
        background: linear-gradient(135deg, #ffffff, #e3f2fd);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.3s ease;
    }

    .abacus-title-main:hover {
        transform: scale(1.05);
    }

    .abacus-subtitle {
        font-size: clamp(1rem, 3vw, 1.8rem);
        margin-bottom: 2.5rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        opacity: 0.95;
        font-weight: 300;
        letter-spacing: 0.05em;
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
        transition: all 0.3s ease;
    }

    .abacus-subtitle:hover {
        opacity: 1;
        transform: translateY(-2px);
    }

    .enroll-now-btn {
        display: inline-block;
        padding: 18px 45px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: clamp(1rem, 2vw, 1.2rem);
        text-shadow: none;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
    }

    .enroll-now-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .enroll-now-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }

    .enroll-now-btn:hover::before {
        left: 100%;
    }

    .enroll-now-btn:active {
        transform: translateY(-2px);
    }

    /* Responsive design for abacus image */
    @media (max-width: 1200px) {
        .abacus-hero-section {
            aspect-ratio: 16/9;
            max-height: 80vh;
        }
    }

    @media (max-width: 768px) {
        .abacus-hero-section {
            aspect-ratio: 16/9;
            min-height: 250px;
            max-height: 60vh;
            /* margin: 0 1rem; */
            /* border-radius: 12px; */
        }
        
        .abacus-hero-background {
            /* border-radius: 12px; */
        }
    }

    @media (max-width: 480px) {
        .abacus-hero-section {
            min-height: 200px;
            max-height: 50vh;
            /* margin: 0 0.5rem; */
            /* border-radius: 8px; */
        }
        
        .abacus-hero-background {
            /* border-radius: 8px; */
        }
    }

    /* Very small screens */
    @media (max-width: 320px) {
        .abacus-hero-section {
            min-height: 180px;
            max-height: 45vh;
        }
    }

    /* Ultra-wide screens */
    @media (min-width: 1920px) {
        .abacus-hero-section {
            /* max-height: 1080px;
            max-width: 1920px; */
        }
    }

    /* Alternative overlay styles you can use */
    .gradient-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    }

    .colored-overlay {
        background: linear-gradient(135deg, rgba(66, 165, 245, 0.3), rgba(156, 39, 176, 0.3));
    }
      
      /* Responsive Styles */
      /* @media screen and (max-width: 992px) {
        .abacus-title-main {
          font-size: 3rem;
        }
        
        .abacus-subtitle {
          font-size: 1.25rem;
        }
      }
      
      @media screen and (max-width: 768px) {
        .abacus-hero-section {
          height: 70vh;
        }
        
        .abacus-hero-content {
          text-align: center;
        }
        
        .abacus-title-main {
          font-size: 2.5rem;
        }
        
        .abacus-subtitle {
          font-size: 1.125rem;
          margin: 0 auto 2rem auto;
        }
      }
      
            @media screen and (max-width: 576px) {
        .abacus-hero-section {
          height: 60vh;
          min-height: 400px;
        }
        
        .abacus-title-main {
          font-size: 2rem;
        }
        
        .abacus-overlay {
          background: linear-gradient(135deg, rgba(249, 249, 249, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
        }
        
        .enroll-now-btn {
          padding: 12px 30px;
          font-size: 1rem;
        }
      } */

  /* ------------------------Custom styling for Abacus course sections----------------- */
  .abacus-basic-wrapper,
  .abacus-advanced-wrapper {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .abacus-basic-wrapper {
    background-color: rgba(240, 248, 255, 0.5);
    border-left: 5px solid #4285f4;
  }

  .abacus-advanced-wrapper {
    background-color: rgba(255, 248, 240, 0.5);
    border-left: 5px solid #ea4335;
    margin-top: 4rem;
  }

  .abacus-section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    text-align: center;
  }

  .abacus-basic-wrapper .abacus-section-heading {
    color: #4285f4;
  }

  .abacus-advanced-wrapper .abacus-section-heading {
    color: #ea4335;
  }

  .abacus-section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: currentColor;
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .abacus-basic-wrapper,
    .abacus-advanced-wrapper {
      padding: 1.5rem 1rem;
    }

    .abacus-section-heading {
      font-size: 1.5rem;
    }
  }

  /* ---------------------What We Offer?   Add image aside-------------------------------*/
  
/* Main Container */
.bda-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* Row Wrappers - Mobile First Approach */
.bda-top-row-container, 
.bda-bottom-row-container {
  display: flex;
  flex-direction: column; /* Image first, then content on mobile */
  width: 100%;
  margin-bottom: 30px; /* Reduced margin between sections */
}

/* Content Columns */
.bda-text-column, 
.bda-offer-text-column {
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
}

.bda-text-inner, 
.bda-offer-text-inner {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
}

.bda-text-inner {
  background-color: #f8f9fa;
}

/* Image Columns */
.bda-portrait-column, 
.bda-feature-image-column {
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center; /* Center images vertically */
  justify-content: center; /* Center images horizontally */
}

.bda-portrait-wrapper, 
.bda-feature-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bda-portrait-wrapper:hover, 
.bda-feature-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Images */
.bda-portrait-image, 
.bda-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bda-portrait-image:hover, 
.bda-feature-image:hover {
  transform: scale(1.03);
}

/* Service Items */
.bda-service-item-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

/* Media Queries for Responsive Layout */
@media (min-width: 768px) {
  /* Desktop Layout - Side by Side */
  .bda-top-row-container,
  .bda-bottom-row-container {
    flex-direction: row;
    align-items: stretch;
    gap: 30px; /* Add space between columns */
    margin-bottom: 30px; /* Consistent spacing */
  }

  /* Content columns with flexible height */
  .bda-text-column,
  .bda-offer-text-column {
    width: 50%;
    display: flex;
    flex-direction: column;
  }

  /* Image columns with height that adapts to content but remains smaller */
  .bda-portrait-column,
  .bda-feature-image-column {
    width: 40%; /* Make image column slightly narrower than text */
    align-self: center; /* Center the image column vertically */
  }

  /* First Row: Content Left, Image Right */
  .bda-top-row-container {
    flex-direction: row;
  }

  /* Second Row: Image Left, Content Right */
  .bda-bottom-row-container {
    flex-direction: row;
  }

  /* Set image wrapper heights to be proportional to content but not full height */
  .bda-portrait-wrapper
   {
    height: auto; /* Auto height based on content */
    min-height: 350px; /* Minimum height for images */
    max-height: 400px; /* Maximum height for images */
  }

  .bda-feature-image-wrapper {
    height: auto; /* Auto height based on content */
    min-height: 350px; /* Minimum height for images */
    max-height: 700px; /* Maximum height for images */
  }
  
  /* Match image heights to content proportion */
  .bda-portrait-image,
  .bda-feature-image {
    height: 100%;
    object-position: center;
  }
}

/* Animation for content appearance */
@keyframes fadeInUpGrow {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations */
.bda-text-inner, 
.bda-offer-text-inner {
  animation: fadeInUpGrow 0.8s ease forwards;
}

/* Adjust vertical spacing for mobile */
@media (max-width: 767px) {
  .bda-top-row-container,
  .bda-bottom-row-container {
    gap: 0; /* Remove gap on mobile */
  }
  .bda-bottom-row-container{
    display: flex;
    flex-direction: column-reverse; /* Image first, then content on mobile for BOTH rows */
    width: 100%;
    margin-bottom: 30px; /* Reduced margin between sections */
  }
  

  .bda-portrait-column,
  .bda-feature-image-column {
    margin-bottom: 5px; /* Reduced margin on mobile */
  }

  .bda-portrait-wrapper,
  .bda-feature-image-wrapper {
    height: 300px; /* Controlled image height on mobile */
  }
}

/* Row Wrappers - Mobile First Approach */


