/* Banner Section start*/
.banner-image {
  position: relative;
  width: 100%;
  height: 80.5vh;
  margin-top: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image with animation */
.banner-bg {
  position: absolute;
  top: 10px; 
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;  /* 👈 image hamesha upar se dikhayegi, niche se cut hogi */

  z-index: 0;
}


.banner-content {
  position: absolute;        
  top: 150px;                
  left: 40px;               
  z-index: 2;
  text-align: left;
  color: #00a0e3;
  max-width: 500px;
  animation: fadeSlideIn 1.5s ease-out forwards;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 0;                  
  margin-bottom: 15px;            
  color: #00a0e3;
  text-transform: capitalize;
  letter-spacing: 2px;
  text-align: left;               /* left align */

}


.banner-content h1 span {
  color: #00e5ff;
}

.banner-content p {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}

.banner-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #1976d2;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.banner-btn:hover {
  background: #0d47a1;
  transform: scale(1.05);
}

/* Animation Effects */
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomFade {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}




@media (min-width: 481px) and (max-width: 1024px) {
  .banner-image {
    height: 65vh; 
    margin-top: 60px;
  }

  .banner-bg {
    top: 0;
    object-position: center; 
  }

  .banner-content {
    top: 120px;      
    left: 25px;     
    max-width: 400px;  
    text-align: left;
  }

  .banner-content h1 {
    font-size: 45px;     
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .banner-content p {
    font-size: 18px;      /* thoda chhota paragraph */
    margin-bottom: 20px;
    line-height: 1.4;
  }

}





/* Mobile (up to 480px) */
@media (max-width: 480px) {
  .banner-image {
    height: 200px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding-left: 10px;        
  }

  .banner-content {
    position: relative;
    top: 25px;
    left: 0;
    text-align: left;   
    max-width: 95%;
    margin: 0;         
  }

  .banner-content h1 {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 1.3;
    margin: 0 0 8px 0;
  }
}

/* banar section End*/





/* Intro section start*/

.intro-section {
  margin-top: 1px;
  padding: 1px 10px;
  text-align: center;
  background: rgb(150, 114, 165);


  opacity: 0;
  transform: translateY(50px);
  
  animation: slideUp 1s forwards;
  animation-delay: 0.3s; 
}

/* Keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-content p {
  font-size: 22px;
  color: #ffffff;
  line-height: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3px;
  font-weight: 500;
  animation: fadeUp 1.5s ease-out;
}



/* Animations */
@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* Tablet (up to 768px) */
@media (max-width: 768px) {
  .intro-section {
    padding: 40px 6%;
  }

  .intro-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .intro-content p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 90%;
  }
}


/* Mobile (up to 480px) */
@media (max-width: 480px) {
  .intro-section {
    padding: 12px 15px;
    margin-top: -8px;
    box-sizing: border-box;
    width: 100%;
    text-align: center; 
  }

  .intro-content p {
    font-size: 13px;
    line-height: 1.6;
    width: 90%;            
    margin: 0 auto 8px;  
    word-break: normal;
    white-space: normal;
    text-align: center;   
  }
}


/* Intro section End*/





/* Container adjustments */
.showcase-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 1px; 
}

/* Grid: 3 items per row */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px; 
  align-items: start;
}

/* Showcase Item Styling with Border & Shadow */
.showcase-item {
  background: transparent;
  text-align: center;
  overflow: hidden;
  border: 1px solid #000000;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(209, 209, 209, 0.35);
}

.showcase-item img:hover {
  transform: scale(1.05);
}

/* Caption Styling */
.showcase-item figcaption {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
}

.showcase-item figcaption a {
  font-size: 19px;
  color: #1e4db7;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 20px; 
  display: inline-block; 
}
.showcase-item figcaption a:hover {
  color: magenta;
  text-decoration: underline;
}



/* Tablet (up to 1023px) */
@media (max-width: 1023px) {
  .showcase-section .container {
    padding: 40px 10px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    gap: 15px;
  }

  .showcase-item img {
    height: 280px; /* thoda chhota */
  }

  .showcase-item figcaption a {
    font-size: 17px;
  }
}

/* Mobile (up to 480px) */
@media (max-width: 480px) {
  .showcase-section .container {
    padding: 30px 8px;
  }

  .showcase-grid {
    grid-template-columns: 1fr; /* 1 item per row */
    gap: 12px;
  }

  .showcase-item {
    text-align: center;   /* better readability */
  }

  .showcase-item img {
    height: 350px; /* aur chhota */
  }

  .showcase-item figcaption {
    margin-top: 12px;
    font-size: 13px;
  }

  .showcase-item figcaption a {
    font-size: 16px;
  }
}

/* website photo and link section End*/




