@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #2c3e50, #1a1a1a);
  color: #fff;
  text-align: center;
  padding: 20px;
}


/* Background Slideshow Container */
.background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: fade 1s ease-in-out;
  will-change: opacity, transform;
  z-index: -2;
  opacity: 0;
  transition: opacity 2.5s ease-in-out, transform 2.5s ease-in-out;
  will-change: opacity, transform;
}

.background-slideshow.active {
  opacity: 1;
  z-index: -1;
}

/* Common transition */
.bg-transition {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}



/* Effects */
.fade        { transform: scale(1); }
.slide-left  { transform: translateX(-20px); }
.slide-right { transform: translateX(20px); }
.zoom-in     { transform: scale(1.05); }
.zoom-out    { transform: scale(0.95); }

/* Keyframes */
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideLeft {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(1.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes zoomOut {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Optional: fade effect between images */
@keyframes fade {
  from { opacity: 0.7; }
  to { opacity: 1; }
}


/* Greenish Overlay */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 7, 0, 0.35); /* Green overlay with transparency */
  z-index: 0;
  pointer-events: none;
}




.container {
  max-width: 480px;
  margin: auto;
  padding: 20px;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #e0f2f1; /* light cyan for good contrast on green */
  margin: 10px 0;
  animation: fadeSlideUp 1.5s ease forwards;
  opacity: 0;
}

.tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #b2dfdb; /* lighter greenish tint */
  margin-bottom: 25px;
  animation: fadeSlideUp 2s ease forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

/* Buttons */
.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #124d00;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.link-btn i {
  font-size: 18px;
  margin-right: 10px;
}

.link-btn:hover {
  background: #ff9800;
  color: white;
  transform: scale(1.03);
}

/* Social Icons */
.social-icons {
  margin: 20px 0;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
  color: #1500ff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ff9800;
}

.social-icons a {
  font-size: 24px;
  margin: 0 10px;
  color: #4c00ff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ff9800;
}

/* CTA */
.cta-btn {
  display: inline-block;
  background: #ff9800;
  color: white;
  margin-top: 10px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
    background: #00796b;
  color: #e0f2f1;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,121,107,0.4);
}

.cta-btn:hover {
  background: #004d40;
  box-shadow: 0 6px 20px rgba(0,77,64,0.7);
}




/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: slideIn 0.3s ease;
}

.modal-content iframe {
  width: 100%;
  height: 80vh;
  border: none;
}

.close {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

@keyframes slideIn {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }

  .tagline {
    font-size: 13px;
  }

  .link-btn {
    font-size: 14px;
    padding: 10px 14px;
  }

  .cta-btn {
    padding: 12px 20px;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


h1 {
  text-shadow: 0 0 10px rgba(224, 242, 241, 0.8);
}


.link-btn:hover, .cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #00bfa5;
}




