/* General Reset */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
  }
  
/* General Font Styling */
body {
  font-family: 'Poppins', sans-serif; /* Default font for body text */
  color: #333; /* Adjust color as needed */
}

h1,h4, h5, h6 {
  font-family: 'Montserrat', sans-serif; /* Font for headings */
  font-weight: 700; /* Bold weight for headings */
  color: #f2efef; /* Adjust color as needed */
}

h2, h3{
  color: #333;
}

/* Optional: Specific Card Title Styling */
.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #333;
}

/* Optional: Paragraph Styling Inside Cards */
.card-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #555;
}


.container > h2{
  color: white;
}




  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .hero-section {
    position: relative;
    background: url('./assets/hero_img.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;

  }
  
  .hero-section p {
    font-size: 1.25rem;
    z-index: 1;
  }
  






  
  .about-section img {
    border: 5px solid #ddd;
  }
  
  .projects-section .card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .testimonials-section blockquote {
    font-size: 1rem;
    color: #555;
  }
  
  .contact-section input, .contact-section textarea {
    border-radius: 0;
  }
  
  .contact-section button {
    background-color: #007bff;
    border: none;
  }
  










  /* Hero Section Styles */
.hero-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .hero-slide h1 {
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
    animation: fadeInDown 1s ease-out;
  }
  
  .hero-slide p {
    font-size: 1.25rem;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
  }



  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .parallax-section {
    position: relative;
    background: url('./assets/b.jpeg') no-repeat center center/cover; /* Replace with your image */
    height: 400px; /* Adjust height as needed */
    background-attachment: fixed; /* Parallax effect */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.parallax-overlay {
    background: rgba(0, 0, 0, 0.6); /* Adds a dark overlay for better text visibility */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.parallax-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.parallax-section p {
    font-size: 1.25rem;
}





/* Parallax 2 starts here */

.parallax-section-vision {
  position: relative;
  background: url('./assets/c.jpeg') no-repeat center center/cover; /* Replace with your image */
  height: 400px; /* Adjust height as needed */
  background-attachment: fixed; /* Parallax effect */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.parallax-overlay {
  background: rgba(0, 0, 0, 0.6); /* Adds a dark overlay for better text visibility */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.parallax-section-vision h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-in-out;
}

.parallax-section-vision p {
  font-size: 1.25rem;
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}


/* parallax 2 ends here */

/* Counter Section Styles */
.counter-section {
  background: #f9f9f9;
}

.counter {
  border: none;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.counter:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.counter h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #152332;
  margin: 0;
}

.counter p {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}


/* Stylish Underline for Mission and Vision */
h3 {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

h3::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #152332; /* Color of the underline */
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

h3:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

social-links a {
  font-size: 1.2rem; /* Adjust icon size */
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff; /* Highlight color on hover */
}










  


  .hero-slide h1, .hero-slide p {
    z-index: 1;
    color: white; /* Ensure text remains white */
    opacity: 1; /* Fix opacity during transition */
}

/* If the animation is affecting opacity, ensure it's not causing the issue */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  