body {
    margin: 0;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
     
  }

  h1,h2,h3{
    color: #8B0000;
  }
.navbar-bottom{
  color: #ffffff;
  background-color: #8B0000;
  padding: 5px;
  font-optical-sizing: auto;


}


  
  .navbar-top {
    background: #222;
    color: #8B0000;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }
  





  
 /* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
     height: 100%;
    overflow: hidden;
  }
  
  .slides-container {
    display: flex;
    width: 100%;
    animation: slideShow 12s infinite;
  }
  
  .slide {
    width: 100%;
    flex-shrink: 0;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  
  /* Keyframes for auto sliding */
  @keyframes slideShow {
    0% { transform: translateX(0%); }
    33.33% { transform: translateX(0%); }
    36% { transform: translateX(-100%); }
    66.66% { transform: translateX(-100%); }
    69% { transform: translateX(-200%); }
    99.99% { transform: translateX(-200%); }
    100% { transform: translateX(0%); }
  }
  
  /* Make it Responsive */
  @media (max-width: 768px) {
    .hero-slider {
      max-height: 250px;
    }
  }
.card-section1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
    gap: 20px;
    background: #ffe3e3;
    padding: 80px 10px;
}
  
  /* Cards Section */
.card-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
    background: #ffe3e3;
  }
  .pink{
    background: #ffe3e3; 
  }
  
  /* Individual Card */
  .card {
    background: #2b0000;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
  }
    .card1 {
    background: #2b0000;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 10px;
     
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
  }
  .card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .card1 img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
    .text-dark-card{
    color: #ffff;  
    }
  .card1 h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #fff;
  }
  /* Initial state */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

/* Animation active */
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.wave-delay-1 { transition-delay: 0.3s; }
.wave-delay-2 { transition-delay: 0.6s; }
.wave-delay-3 { transition-delay: 0.9s; }
.wave-delay-4 { transition-delay: 1.2s; }

/* Optional card styles */
.card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px;
}
.card {
  width: 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}
.text-dark-card {
  color: #222;
  font-size: 18px;
  margin-top: 10px;
}

  
.zoom-in-on-scroll {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.zoom-in-on-scroll.active {
  transform: scale(1);
  opacity: 1;
}
  .about-section {
    padding: 60px 20px;
    background-color: #ffffff;
  }
  
  .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
  }
  
  .about-col {
    flex: 1 1 45%;
    min-width: 280px;
  }
  
  .about-img img {
    width: 100%;
    border-radius: 10px;
    
  }
  
  .about-text h2 {
    font-size: 32px;
     
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
   
   
  
  /* Responsive: Stack on small screens */
  @media (max-width: 768px) {
    .about-row {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text h2 {
      font-size: 26px;
    }
  }
  
  
  .card-section2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
    padding: 20px;
    background-color: #ffe3e3; /* Light pink */
  }

  .banner-card {
    width: calc(45% - 40px);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }

  .banner-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ✅ Mobile Responsive */
  @media (max-width: 768px) {
    .banner-card {
      width: 100%;
    }
  }



.about-us {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}

.about-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
   
}

.about-container p {
  font-size: 1rem;
 
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Responsive Typography */
@media (max-width: 600px) {
  .about-container h2 {
    font-size: 1.5rem;
  }

  .about-container p {
    font-size: 0.95rem;
  }
}






.video-gallery {
  padding: 40px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.video-header h2 {
  font-size: 2rem;
   
  margin-bottom: 10px;
}

.video-header p {
  font-size: 1rem;
   
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-item {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #000;
}

.video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}






  .contact-section {
    background-color: #f2f2f2;
    padding: 60px 20px;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
  }
  
  .contact-info, .contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .contact-info h2,
  .contact-form h2 {
    font-size: 26px;
    margin-bottom: 20px;
 
  }
  
  .contact-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    resize: none;
  }
  
  .contact-form button {
 
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
  }
  
   
  
  /* Mobile Responsive: Stack on small screens */
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  }

  .map{
    width: 100%;
    height: 400px;

  }












  .footer {
    background-color: #2b0000;
    color: #eee;
    padding: 60px 20px 20px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-column h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
  }
  
  .footer-column p,
  .footer-column li {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column a {
    color: #ccc;
    text-decoration: none;
  }
  
  .footer-column a:hover {
    color: #fff;
  }
  
  /* Newsletter Form */
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 4px;
  }
  
  
  /* Bottom Footer */
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    border-top: 1px solid #444;
    margin-top: 40px;
    color: #888;
  }
  
  .circular-glow-border::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    gold,
    #8B4513,
    gold
  );
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
  filter: blur(6px);
  opacity: 0.8;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
iframe{
  height: 400px;
  width: 100%;
}