* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}


@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');


.ceo-container {
   
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 500px;
}

.ceo-left-section {
    flex: 1;
    padding: 40px;
    font-family: 'Raleway', sans-serif; 
    position: relative;
    overflow: hidden;
    background-image: url('/images/minimal\ background.webp');
    background-size: cover;
    background-position: center;
}

.ceo-right-section {
    flex: 1;
  
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('/images/Elegant\ Charcoal\ Background.png');
    background-size: cover;
    background-position: center;
    
}

.person-image {
    width: 300px;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.profile-info {
    text-align: center;
    color: white;
    font-family: 'Raleway', sans-serif; 
}

.profile-info h2 {
    margin-bottom: 10px;
}

.profile-info p {
    font-weight: lighter;
}

.text-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.8);
}

/* Background pattern overlay */



/* Background color overlay for better text readability */


.ceo-right-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(128, 128, 128, 0.7);
    z-index: 0;
}

.text-content {
    position: relative;
    z-index: 1;
}

.profile-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .ceo-container {
        flex-direction: column-reverse;
    }
    
    .ceo-left-section, .ceo-right-section {
        width: 100%;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
}



.hero-container {
    min-height: 89vh; /* Better on mobile than 100vh */
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          position: relative;
          overflow: hidden;
      }


      /* For tablets and medium devices */
@media (max-width: 1024px) {
  .hero-container {
      min-height: 80vh;
  }
}

/* For small tablets and large phones */
@media (max-width: 768px) {
  .hero-container {
      min-height: 70vh;
  }
}

/* For smaller phones */
@media (max-width: 480px) {
  .hero-container {
      min-height: 60vh;
  }
}
      
      .background-image {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 1;
          background-image: url("/images/CEO_Office.png"); /* Replace with your actual image path */
          background-size: cover;
          background-position: center;
      }
      
      .overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
         
          z-index: 2;
      }
      
      .hero-text {
          z-index: 3;
          position: relative;
          padding: 0 2rem;
          color: #f8f8f8;
      }
      
      .hero-text h1 {
          font-size: 3rem;
          color: #f8f8f8;
          font-weight: 400;
          margin-bottom: 1rem;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .hero-text h2 {
          font-size: 2.5rem;
          font-weight: 400;
          text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .red-text {
          color: #ff0000;
      }
      
      @media (max-width: 768px) {
          .hero-text h1 {
              font-size: 2rem;
          }
          
          .hero-text h2 {
              font-size: 1.6rem;
          }
      }

