/* Slider and Hero Section Styles */

/* Main Slider Container */
.slider {
  background-color: rgba(255, 255, 255, 0.9);
}

.slider-inner {
  padding: 100px 0 40px 0;
}

/* Slide Content */
.slide.bg-white-section.full-vh {
  position: relative;
  top: 0;
  padding: 20px;
}

/* Flex Top Section Layout */
.flex-top-section {
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  padding: 40px 60px;
  min-height: 350px;
  box-sizing: border-box;
}

/* Left Column */
.flex-left {
  flex: 0 1 70%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Video Cover Image */
.flex-left img {
  width: 100%;
  max-width: 700px;
  margin-bottom: 30px;
}

/* Right Column */
.flex-right {
  flex: 0 1 30%;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.description-slide {
  width: 100%;
}

.heading-title.center {
  text-align: left;
}

/* Quote Text */
.small-desd {
  line-height: 26pt;
  color: rgb(0, 51, 102);
  font-size: 38px;
  font-family: 'Amatic SC', cursive;
  text-transform: capitalize;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .flex-top-section {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  
  .flex-left,
  .flex-right {
    flex: 1;
    min-width: auto;
  }
  
  .small-desd {
    font-size: 28px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .flex-top-section {
    padding: 10px;
  }
  
  .small-desd {
    font-size: 24px;
  }
} 

@media (max-width: 375px) {
  .slider-inner {
    padding: 30px 0 40px 0;
  }
} 

@media (max-width: 320px) {
  .slider {
    margin-top: 30px !important;
  }
} 

@media (max-width: 425px) {
  .slider-inner {
    padding: 20px 0 40px 0;
  }
} 