/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  background: black; /* Fallback background color */
  font-family: Arial, sans-serif;
  color:#eee7d7;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
  z-index: -1; /* Ensure the video stays behind the navbar */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the container */
}
.celebrate {
  font-size: 30px;
  color: #ff4d4d;
  animation: pop 1s ease infinite;
}

@keyframes pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
/* Responsive Header */
@media screen and (max-width: 768px) {
  #menu {
    justify-content: center; /* Center the navbar items */
    margin-top: 10px;
  }

  .glitch {
    font-size: 40px; /* Adjust font size for smaller screens */
  }
}
.container {
  position: relative; /* Changed to relative for natural flow */
  margin: 30px auto; /* Center the slider and add spacing from the welcome text */
  width: 100%; /* Full width */
  max-width: 1000px; /* Limit the slider width */
  height: 500px;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb;
  overflow: hidden; /* Hide overflow content */
}

/* Slide Items */
.container .slide .item {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 30px 50px #505050;
  background-position: center;
  background-size: cover;
  display: inline-block;
  transition: 0.5s;
}

/* First and Second Items */
.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

/* Positioning Other Items */
.slide .item:nth-child(3) {
  left: 50%;
}
.slide .item:nth-child(4) {
  left: calc(50% + 220px);
}
.slide .item:nth-child(5) {
  left: calc(50% + 440px);
}

/* Items Beyond the Visible Range */
.slide .item:nth-child(n + 6) {
  left: calc(50% + 660px);
  opacity: 0;
}

/* Content Inside Items */
.item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}

/* Display Content for Second Item */
.slide .item:nth-child(2) .content {
  display: block;
}

/* Content Animations */
.content .name {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}

/* Animation Keyframes */
@keyframes animate {
  from {
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
  }
  to {
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}

/* Navigation Buttons */
.button {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.button button {
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
}

.button button:hover {
  background: #ababab;
  color: #fff;
}
/* Navbar Styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: transparent; /* Semi-transparent background */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative; /* Required for dropdown positioning */
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #00FFFF; /* Hover effect */
}

/* Dropdown Menu Styling */
.dropdown-menu {
  display: none; /* Hide dropdown by default */
  position: absolute;
  top: 100%; /* Position below the parent menu item */
  left: 0;
  background:transparent; /* Darker background for dropdown */
  list-style: none;
  padding: 10px 0;
  border-radius: 25px;
  z-index: 1000;
}

.dropdown-menu li {
  padding: 5px 40px;
}

.dropdown-menu a {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: #00FFFF; /* Hover effect for dropdown links */
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown when hovering over the parent */
}
.logo img {
  height: 40px;
}
/* Adding gradient color for About Us title */
#about h2 {
  font-family: Cinzel, serif;
  text-align: center;
  font-size: 40px;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}



.card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
}

.card .box {
  position: relative;
  width: 320px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 30px;
  transition: 0.5s;
}

.card .box::before,
.card .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 50%;
  height: 100%;
  background:linear-gradient(315deg, #ffbc00, #ff005998);;
  border-radius: 8px;
  transform: skewX(15deg);
  transition: 0.5s;
  filter: blur(30px);
}

.card .box:hover:before,
.card .box:hover:after {
  transform: skewX(0deg);
  left: 20px;
  width: calc(100% - 90px);
}

.card .box:nth-child(1):before,
.card .box:nth-child(1):after {
  background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.card .box span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}

.card .box .content {
  position: relative;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.card .box .content h2 {
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
}

.card .box .content p {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.4em;
}

.card .box .content a {
  display: inline-block;
  font-size: 1.1em;
  color: #111;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 5px;
}

.card .box .content a:hover {
  background: #ffcf4d;
  border: 1px solid rgba(255, 0, 88, 0.4);
  box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
}

@keyframes textTransition {
  0% { opacity: 0; transform: translateY(-20px); }
  50% { opacity: 0.5; }
  100% { opacity: 1; transform: translateY(0); }
}

.animated-text {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(to right, red, black);
  -webkit-background-clip: text;
  background-clip: text; /* Standard property */
  -webkit-text-fill-color: transparent;
  animation: textTransition 2s ease-in-out;
  text-align: center;
  margin-top: 100px;
}
.acard1-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  padding: 0 20px; /* Added padding for small screens */
}

.acard1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  width: 100%;
}

.acard1 .box1 {
  position: relative;
  width: 700px;
  max-width: 100%; /* Makes it responsive */
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.acard1 .box1:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.acard1 .box1 .content {
  position: relative;
  padding: 20px 40px;
  text-align: center;
  color: #fff;
}

.acard1 .box1 .content h2 {
  font-size: 1.8em;
  color: #fff;
  margin-bottom: 10px;
}

.acard1 .box1 .content p {
  font-size: 1.1em;
  margin-bottom: 10px;
  line-height: 1.4em;
}

.acard1 .box1 .content a {
  display: inline-block;
  font-size: 1.1em;
  color: #111;
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 5px;
}

.acard1 .box1 .content a:hover {
  background: #ffcf4d;
  border: 1px solid rgba(255, 0, 88, 0.4);
  box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
}

@keyframes textTransition {
  0% { opacity: 0; transform: translateY(-20px); }
  50% { opacity: 0.5; }
  100% { opacity: 1; transform: translateY(0); }
}

.animated-text {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(to right, red, black);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textTransition 2s ease-in-out;
  text-align: center;
  margin-top: 100px;
}

.acard1 .box1 .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  z-index: -1;
}

/* --- Media Queries for Responsive --- */
@media (max-width: 1024px) {
  .acard1 .box1 {
    width: 90%; /* Tablet view */
    height: auto;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .acard1-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
  }

  .acard1 .box1 {
    width: 100%;
    height: auto; /* Allow height to adjust with content */
    margin: 10px 0;
    padding: 20px;
  }

  .acard1 .box1 .content h2 {
    font-size: 1.5em;
  }

  .acard1 .box1 .content p {
    font-size: 1em;
  }

  .animated-text {
    font-size: 24px;
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .acard1 .box1 {
    padding: 15px;
  }

  .acard1 .box1 .content {
    padding: 10px 20px;
  }

  .acard1 .box1 .content h2 {
    font-size: 1.3em;
  }

  .acard1 .box1 .content p {
    font-size: 0.95em;
  }

  .acard1 .box1 .content a {
    font-size: 1em;
    padding: 8px;
  }

  .animated-text {
    font-size: 20px;
    margin-top: 40px;
  }
}
@import url('https://fonts.googleapis.com/css?family=Cinzel');
.aicon-text {
  font-family: Cinzel, serif;
  text-align: center;
  font-size: 80px;
  letter-spacing: 6px;
  word-spacing: 1px;
  color: rgb(255, 0, 81);
  background-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 15px rgba(76, 13, 31, 0.9), 0 0 30px rgba(224, 4, 73, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 100%;
  z-index: 2;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out, text-shadow 0.5s ease-in-out;
}

.aicon-text.scrolled {
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
  text-shadow: 0 0 10px rgba(255, 20, 95, 0.6), 0 0 20px rgba(255, 20, 95, 0.4);
}
.intro-text {
  font-family: 'Cinzel', serif;
 /* Ensure text is centered */
  font-size: 24px;
  padding: 20px;
  color: white;
  background: transparent;
  border-radius: 10px;
  text-shadow: 0px 4px 10px rgba(255, 20, 95, 0.5);
  animation: fadeIn 2s ease-in-out;
  margin: 0 auto; /* Center the text block */ /* Optional: Limit the width for better alignment */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.glitch {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 2px 5px #ff0000, -2px -2px 5px #0000ff; }
  50% { text-shadow: -2px -2px 5px #ff0000, 2px 2px 5px #0000ff; }
  100% { text-shadow: 2px 2px 5px #ff0000, -2px -2px 5px #0000ff; }
}
.features-list {
  list-style: none;
  padding: 0;
  text-align: center;
  font-size: 20px;
}

.features-list li {
  padding: 0px;
  margin: 10px;
  background: transparent;
}

.features-list li:hover {
  transform: scale(1.05);
}
.contact-section {
  text-align: center;
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 20, 95, 0.7);
  margin: 50px auto;
  max-width: 800px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 2px 5px #ff0000, -2px -2px 5px #0000ff; }
  50% { text-shadow: -2px -2px 5px #ff0000, 2px 2px 5px #0000ff; }
  100% { text-shadow: 2px 2px 5px #ff0000, -2px -2px 5px #0000ff; }
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-box {
  background: linear-gradient(45deg, rgba(255, 20, 95, 0.8), rgba(255, 105, 180, 0.8));
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  color: white;
  box-shadow: 0 0 15px rgba(255, 20, 95, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.9);
}

.contact-box i {
  font-size: 30px;
  margin-bottom: 10px;
  color: white;
}
.countdown-calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: transparent;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
}

.countdown-item {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.number {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
  letter-spacing: 1px;
}
footer {
  width: 100%;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  margin-top: auto;
  padding: 0;
}

.footerContainer {
  width: 100%;
  padding: 40px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.socialIcons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.socialIcons a {
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
  color: black;
  font-size: 20px;
  transition: 0.3s ease;
}

.socialIcons a:hover {
  background-color: #00d8ff;
  color: white;
  transform: scale(1.2);
}

.footerNav {
  margin-bottom: 20px;
}

.footerNav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footerNav ul li {
  margin: 10px 20px;
}

.footerNav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.footerNav ul li a:hover {
  color: #00d8ff;
}

.footerBottom {
  text-align: center;
  padding: 20px 0;
  color: white;
  border-top: 1px solid #333;
  width: 100%;
}

.footerBottom .designer {
  font-weight: bold;
  color: #00d8ff;
}

@media (max-width: 600px) {
  .footerNav ul {
    flex-direction: column;
  }

  .footerNav ul li {
    margin: 10px 0;
  }
}
