/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  font-family: "Georgia", serif;
  line-height: 1.6;
  background: #c2ddd0;
  color: #ffffff;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #12492e;
  padding: 1rem 2rem;
  color: white;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li {
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.nav-links li a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hover */
.nav-links li:hover {
  background-color: #148a75;
}

/* Active link */
.nav-links li a.active {
  border-left: 5px solid #ffdddd;
  background-color: #148a75;
  color: white;
  border-radius: 4px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 11;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background-color: #12492e;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-links li {
    padding: 1rem 2rem;
    text-align: right;
  }
}





footer {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #f4f4f4;
  text-align: center;
}

.social a {
  margin: 0 10px;
  color: #b42b51;
  text-decoration: none;
  font-weight: bold;
}

.map iframe {
  margin-top: 1rem;
  border-radius: 8px;
}

/* About and Contact Page */
.about-section, .contact-section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.about-img {
  width: 100%;
  margin-top: 1rem;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-section{
  color: #632121;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size:25px;
}

.contact-form button {
  background-color: #b42b51;
  color: white;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider {
    max-height: 250px;
  }
}




/* Slider container */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #124d66;
   /* Adds space below navbar */
  z-index: 0;
  
}

/* Slide wrapper */
.slides {
  position: relative;
  height: 100%;
}
/* Individual slides */
.slide {
  opacity: 0;
  pointer-events: none; /* prevents clicks on invisible slides */
  transition: opacity 1s ease-in-out;
  position: absolute;   /* stack slides on top of each other */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 0, 0, 0.5);
  border: none;
  color: white;
  padding: 12px;
  cursor: pointer;
  z-index: 2;
  font-size: 24px;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* Responsive slider heights */
.slider {
  height: 400px;
}

@media (max-width: 1024px) {
  .slider {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .slider {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 200px;
  }

  .learn-more {
    font-size: 14px;
    padding: 8px 16px;
  }
}



/*Centering the div */
.page-container {
  width: 100%;
  max-width: 1300px; /* You can adjust this value */
  margin: 0 auto; /* Centers the container */
  padding: 2rem 1rem; /* Space inside */
  box-sizing: border-box;
  background-color: #c2ddd0;
}


/*footer */

.site-footer {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  margin-top: 2rem;
  color: #8B0000;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer a {
  text-decoration: none;
  color: #8B0000;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #333;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-right {
  flex: 1;
  min-width: 300px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.profile {
  text-align: center;
  margin-bottom: 1rem;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile p{
  margin-top: 0.5rem;
  font-weight: bold;
  color: #8B0000;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
}

.social-icons a {
  color: #8B0000;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #333;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ccc;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    width: 100%;
    height: 250px;
  }
}


/* Dot navigation */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff6a95;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-color: #ffe6eb;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption style */
.caption {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}


/*video card section */
.vertical-video-section {
  margin: 4rem auto;
  padding: 1rem 2rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #b42b51;
  font-weight: bold;
}

.video-scroll-container {
  position: relative;
}

.video-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 1rem 2rem;
  -webkit-overflow-scrolling: touch;
}

.video-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  background: #12492e;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  width: 260px;
  transition: transform 0.3s ease;
}

.video-card video {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.video-card h4 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.video-card p.video-description {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  padding: 0.5rem;
  background: #f7f7f7;
  border-radius: 8px;
  min-height: 50px;
}




/* Cool Scroll Buttons */
.video-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(180, 43, 81, 0.8);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-scroll-btn:hover {
  transform: scale(1.15);
  background: rgba(180, 43, 81, 1);
}

.video-scroll-btn.left {
  left: 10px;
}

.video-scroll-btn.right {
  right: 10px;
}

@media (max-width: 768px) {
  .video-card {
    width: 220px;
  }
  .video-card video {
    height: 360px;
  }

  .video-scroll-btn {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background-color: #1ebe5d;
}

.whatsapp-float i {
  font-size: 22px;
}


/*ABOUT SECTION*/
.about-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
  background-color: #fffafc;
}

.about-section h1 {
  text-align: center;
  color: #8B0000;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-text {
  flex: 2;
  min-width: 300px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.about-text .highlight {
  font-weight: bold;
  color: #b42b51;
}

.about-text h3 {
  margin-top: 1.5rem;
  color: #8B0000;
  font-size: 1.2rem;
}

.about-text ul {
  list-style: disc inside;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.about-text ul li {
  margin-bottom: 0.4rem;
}

.about-image {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Responsive */
 @media (max-width: 768px) {
  .about-section h1 {
    font-size: 2rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    margin-bottom: 1rem;
  }
} 












