/* Color Theme */
:root {
  --blue: #121B65;
  --white: #ffffff;
  --red: #F20000;
  --font-main: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--blue);
  color: var(--white);
}

header {
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
}

.logo-title img {
  max-width: 100%;
  height: auto;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

nav ul li a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
  padding: 8px 14px;
  transition: 0.3s ease;
}

nav ul li a:hover {
  background-color: var(--red);
  border-radius: 5px;
}

.announcement-banner {
  background-color: var(--red);
  color: var(--white);
  padding: 8px;
  font-weight: bold;
  text-align: center;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #101651;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: var(--red);
  color: var(--white);
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #c70000;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.highlight {
  background-color: #162378;
  padding: 20px;
  border-left: 5px solid var(--red);
  border-radius: 10px;
}

.highlight h2 {
  color: var(--red);
  margin-bottom: 10px;
}

footer {
  background-color: #0e1345;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

.page-banner {
  text-align: center;
  background-color: #101651;
  padding: 50px 20px;
}

.page-banner h1 {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1.1rem;
  color: var(--white);
}

.about-content {
  padding: 40px 20px;
  background-color: #162378;
}

.about-section {
  max-width: 900px;
  margin: 0 auto 30px;
  background-color: #1e2a8a;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-section h2 {
  color: var(--red);
  margin-bottom: 10px;
}

.about-section p,
.about-section ul {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

.about-section ul {
  padding-left: 20px;
}

.about-section li {
  margin-bottom: 8px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background-color: #162378;
}

.course-card {
  background-color: #1e2a8a;
  border-left: 5px solid var(--red);
  padding: 20px;
  border-radius: 10px;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card h2 {
  color: var(--red);
  margin-bottom: 10px;
}

.form-section {
  padding: 40px 20px;
  background-color: #162378;
}

.inquiry-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #1e2a8a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inquiry-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--white);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.inquiry-form textarea {
  height: 100px;
  resize: vertical;
}

.inquiry-form .btn {
  margin-top: 20px;
  width: 100%;
  background-color: var(--red);
  color: var(--white);
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.inquiry-form .btn:hover {
  background-color: #c70000;
}

.gallery-section {
  padding: 40px 20px;
  background-color: #162378;
  text-align: center;
}

.gallery-section h2 {
  color: var(--red);
  margin-bottom: 20px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.gallery-grid img {
  width: 250px;  /* or adjust as needed */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.video-grid video {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


📁 your-website-folder/
│
├── index.html
├── about.html
├── courses.html
├── inquiry.html
├── gallery.html
├── style.css
├── GOOGLE FORM HEADER.png
└── 📁 media/
    ├── photo1.jpg
    ├── photo2.jpg
    ├── ...
    ├── video1.mp4
    └── video2.mp4

.contact-section {
  padding: 40px 20px;
  background-color: #162378;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.contact-box,
.map-box {
  background-color: #1e2a8a;
  padding: 25px;
  width: 90%;
  max-width: 600px;
  color: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.map-box iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
}



/* Login form */
.login-section {
  padding: 40px 20px;
  background-color: #162378;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form {
  background-color: #1e2a8a;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.login-form button {
  background-color: #F20000;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.login-form button:hover {
  background-color: #c80000;
}

.forgot-link {
  text-align: center;
}

.forgot-link a {
  color: #F20000;
  text-decoration: none;
  font-size: 14px;
}

.site-footer {
  background-color: #121B65;
  color: white;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
}

.footer-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-btn {
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  transition: background-color 0.3s;
}

.call-btn {
  background-color: #F20000;
  color: white;
}

.insta-btn {
  background-color: white;
  color: #F20000;
}

.call-btn:hover {
  background-color: #c40000;
}

.insta-btn:hover {
  background-color: #ffe5e5;
}
.map-btn {
  background-color: #ffffff;
  color: #121B65;
  border: 2px solid #121B65;
}

.map-btn:hover {
  background-color: #e0e0ff;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 26px;
  padding: 12px 15px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border-radius: 50%;
  z-index: 999;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img.whatsapp-logo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover img.whatsapp-logo {
  transform: scale(1.1);
}

.nav-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.nav-icon:hover {
  transform: scale(1.1);
}
.image-slider {
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  position: relative;
}

.slider {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  height: auto;
  max-height: 600px; /* ✅ Keeps it controlled on big screens */
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  display: none;
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.slide.active {
  display: block;
}



.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
  user-select: none;
  z-index: 1000;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.arrow.prev {
  left: 10px;
}

.arrow.next {
  right: 10px;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #F20000;
}

.video-wrapper {
  max-width: 600px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* Prevents right click and pause */
}

.video-container {
  position: relative;
  width: 220px; /* Matches photo card width */
  height: 330px; /* Approx height for portrait videos */
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

.custom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 10px 16px;
  cursor: pointer;
}

.play-button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.btn,
.btn.secondary {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #F20000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 220px;
  text-align: center;
}

.btn.secondary {
  background-color: #F20000;
}

.btn.secondary:hover,
.btn:hover {
  background-color: #c70000;
}

.hero-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: fadeIn 1.2s ease-in-out;
}

.btn,
.btn.secondary {
  display: inline-block;
  padding: 10px 25px;
  font-size: 16px;
  color: #fff;
  background-color: #F20000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  width: 220px;
  text-align: center;
}

.btn.secondary {
  background-color: #F20000;
}

.btn:hover,
.btn.secondary:hover {
  background-color: #c70000;
}

/* 🔥 Smooth Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-links a {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-links a:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-links a:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-links a:nth-child(3) {
  animation-delay: 0.6s;
}
.hero-links a:nth-child(4) {
  animation-delay: 0.8s;
}
.hero-links a:nth-child(5) {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.video-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.video-container {
  flex: 1 1 calc(25% - 20px); /* 4 per row on large screens */
  max-width: 240px;
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  background-color: #000;
}

@media (max-width: 1024px) {
  .video-container {
    flex: 1 1 calc(33.33% - 20px); /* 3 per row */
  }
}

@media (max-width: 768px) {
  .video-container {
    flex: 1 1 calc(50% - 20px); /* 2 per row */
  }
}

@media (max-width: 500px) {
  .video-container {
    flex: 1 1 100%; /* 1 per row on very small devices */
  }
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 20px;
  padding: 0 10px;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
  will-change: transform;
}

.custom-video {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  opacity: 0.8;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.play-button:hover {
  opacity: 1;
}

.ceremony-video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 10px 20px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  background: #000;
}

.home-video {
  width: 100%;
  height: auto;
  display: block;
}

.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.custom-play-button:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .custom-play-button {
    font-size: 40px;
  }
}

.gallery-toggle-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-toggle-buttons button {
  padding: 10px 20px;
  margin: 0 10px;
  background-color: #F20000;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.gallery-toggle-buttons button:hover {
  background-color: #c10000;
}

.topper-banner-link {
  display: block;
  text-align: center;
  margin-top: 20px;
}

.topper-image-container {
  display: inline-block;
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.topper-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.topper-image-container:hover {
  transform: scale(1.03);
}

.bg-image-card {
  width: 250px;
  height: 330px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 10px;
  pointer-events: none;
}

img, video {
  user-drag: none;
  -webkit-user-drag: none;
  pointer-events: auto;
}
img, video {
  -webkit-user-drag: none;
  user-drag: none;
}

img, .bg-image-card {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: none;
}

.image-protected {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.card {
  width: 250px;
  height: 330px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

img, video {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

img, video {
  -webkit-user-drag: none;
  user-drag: none;
}

img, video, .bg-image-card {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: none;
}

.blur-temp {
  filter: blur(8px);
  transition: filter 0.4s ease;
}

#image-warning {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F20000;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  animation: fadeout 2s forwards;
}

@keyframes fadeout {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; display: none; }
}

img, video, .bg-image-card {
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: none;
}

.blur-temp {
  filter: blur(8px);
  transition: filter 0.4s ease;
}

#image-warning {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F20000;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  animation: fadeout 2s forwards;
}

@keyframes fadeout {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; display: none; }
}
