
/* === About Page CSS === */

.about-hero {
    background: linear-gradient(135deg, #d4145a, #932091);
    color: white;
    text-align: center;
    padding: 120px 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .about-hero-overlay h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin: 0;
  }
  
  /* Launch Section */
  .about-launch {
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 80px 60px;
  }
  
  .about-launch-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .about-text {
    flex: 1 1 50%;
    max-width: 50%;
  }
  
  .about-text h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #012233;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .carousel-main {
    flex: 1 1 50%;
    max-width: 50%;
  }
  
  .carousel-main img {
    width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
  }
  
  /* Carousel Section */
  .carousel-wrapper {
    margin-top: 40px;
    text-align: center;
  }
  
  .carousel-thumbnails {
    margin: 30px 0 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .carousel-thumbnails .thumb {
    width: 100px;
    height: auto;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .carousel-thumbnails .thumb:hover,
  .carousel-thumbnails .thumb.active {
    opacity: 1;
    transform: scale(1.05);
  }
  
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: #e91e63;
  }
  
  .about-us-section {
    padding: 60px 20px 40px 20px; 
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  
  .about-us-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-us-title {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    color: #012233;
    margin-bottom: 10px;
  }
  
  .about-us-line {
    width: 40px;
    height: 2px;
    background-color: #f7b733;
    margin: 0 auto 30px auto;
  }
  
  .about-us-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #012233;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  
  .about-us-container p {
    font-size: 15px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  

  .team-section {
    background: #fff !important;
    padding: 40px 60px 80px 60px !important;
    font-family: 'Poppins', sans-serif !important;
    margin-top: 0 !important;
  }
  
  .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #012233;
    margin-bottom: 10px;
  }
  
  .underline {
    width: 60px;
    height: 2px;
    background-color: #f3b35c;
    margin: 10px auto 40px;
  }
  
  .team-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #012233;
    margin-bottom: 40px;
    margin-top: 60px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 15px;
  }
  
  .team-subtitle:first-of-type {
    margin-top: 0;
  }
  
  .team-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #f3b35c, #f7b733);
    border-radius: 2px;
  }
  
  .team-member {
    display: flex !important;
    align-items: flex-start !important;
    gap: 40px !important;
    margin-bottom: 50px !important;
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
    padding: 20px !important;
    background: #fafafa !important;
    border-radius: 15px !important;
    border: 1px solid #e9ecef !important; border-top: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  }
  
  .team-member img {
    width: 280px !important;
    height: 320px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border: 3px solid #fff !important;
  }
  
  .team-info {
    flex: 1 !important;
    padding-left: 0 !important;
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
  }
  
  .team-info h4 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #012233 !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }
  
  .team-member-title {
    margin: 0 0 15px 0 !important;
    font-size: 16px !important;
    color: #667eea !important;
    font-style: italic !important;
    font-weight: 500 !important;
    text-align: left !important;
  }
  
  .team-info p {
    font-size: 15px !important;
    color: #444 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    text-align: justify !important;
    flex-grow: 1 !important;
  }
  .about-us-section + .team-section {
    margin-top: 0;
  }

  html {
    scroll-behavior: smooth;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 960px) {
    .about-launch-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-text,
    .carousel-main {
      max-width: 100%;
    }
  
    .carousel-main img {
      width: 90%;
    }
    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    
      .team-info {
        max-width: 100%;
      }
    }
  
/* Fix for Our Team section title to ensure center alignment */
.team-section .section-title {
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    width: 100% !important;
    display: block !important;
}
