/* Home Page Specific Styles */

/* Hero Section */
.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.1)), url('../images/const.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
.hero-content {
    position: relative;
    z-index: 1;
    transform: translateY(-20%);
}
  .highlight{
    color: #0093d0;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    max-width: 600px;
    padding: 0 5%;
    z-index: 1;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  /* About Section */
  .about-section {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .about-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #352c87;
    margin-bottom: 40px;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
  }
  
  .about-image {
    flex: 1;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .about-button {
    margin-top: 10px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero {
      height: 400px;
    }
    
    .hero-content h2 {
      font-size: 2rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .about-content {
      flex-direction: column;
    }
    
    .about-text {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      height: 350px;
    }
    
    .hero-content h2 {
      font-size: 1.5rem;
    }
  }
  .social-icon {
    height: 24px;
    width: 24px;
  }