/* BODY */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  background-color: black;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

#loader {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #1c1c1c;
z-index: 9999;
display: none; /* Initially hidden */
justify-content: center;
align-items: center;
color: #e0c97f;
font-family: 'Cinzel', serif;
}

.spinner {
border: 8px solid rgba(255, 255, 255, 0.2);
border-top: 8px solid #e0c97f;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.loader-text {
margin-top: 20px;
font-size: 1.5rem;
font-family: 'Cinzel', serif;
color: #e0c97f;
text-transform: uppercase;
letter-spacing: 2px;
animation: fadeIn 1.5s ease-in-out infinite;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
}

/* Home Section */
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg,rgba(0, 0, 0, 0.404) , rgba(0, 0, 0, 0.678));
  background-color: wheat ;
  color: #fff;
}

/* Navbar */
.navbar {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), black);
}

.nav-item {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.nav-item:hover {
  transform: translateY(-4px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Nav Links */
.nav-link {
  font-size: 18px;
  transition: color 0.3s ease;
  color: #ccc;
}

.nav-link:hover {
  color: #fff;
}

/* Underline Animation */
.underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: goldenrod;
  transition: width 0.4s ease;
}

.nav-item:hover .underline {
  width: 100%;
}

/* Account Icon Animation */
.account {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.account i {
  transition: transform 0.4s ease;
}

.login-status {
  position: absolute;
  left: 50px;
  opacity: 0;
  font-size: 1rem;
  color: #ff8c00;
  font-weight: 700;
  background-color: transparent;
  padding: 5px;
  border-radius: 5px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(-20px);
}

.account:hover .login-status {
  opacity: 1;
  transform: translateX(0);
}

.account:hover i {
  transform: translateX(-8px);
}
.logout-button {
  cursor: pointer;
  font-weight: 500;
  border: 1px solid white;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  padding:  5px 20px 5px 20px;
  transition: background-color 0.3s ease, transform 0.5s ease;
}
.logout-button:hover {
  transform: translateY(-5px);
  background-color: white;
  color: black;
}

/* Visitor Counter */

/* Visitor Counter */
.visitor-counterr {
position: absolute;
top: 10px;
left: -10px;


}

/* Visitor Counter Section */
.counter-number {
background-color: #1a1a1a;
color: #ddd;
text-align: center;
padding: 5px 10px;
border-radius: 12px;
box-shadow: 0 4px 5px rgba(255, 215, 0, 0.3);
border: 1px solid goldenrod;

}



.counter-number {
font-family: 'Poppins', sans-serif;
font-size: 1.1rem;
color: #ff8c00;
font-weight: bold;
}


.account:hover .visitor-counter {
transform: scale(1.1);
background-color: #ffd700;
}


/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 20px;
  margin-top: 50px;
}

.hero-title {
  
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: goldenrod;
  text-shadow: 0 4px 10px rgba(255, 140, 0, 0.6);
  margin-bottom: 20px;
  animation: fadeInDown 1.2s ease;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ddd;
  animation: fadeIn 1.8s ease;
}

/* Fade Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
}

/* Our Team Section */
.our-team {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.team-heading {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.team-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-members {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-member {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.member-role {
  font-size: 1rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 10px;
}

.member-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}


/* Our Mission Section */
.our-mission {
  padding: 60px 20px;
  background-color: #f5f5f5; /* Light background */
}

.mission-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content {
  flex: 1;
  text-align: left;
}

.mission-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.mission-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mission-image {
  flex: 1;
}

.mission-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Dark Theme for Alternate Look */
.our-mission.dark {
  background-color: #333;
  color: #f5f5f5;
}

.our-mission.dark .mission-heading {
  color: #fff;
}

.our-mission.dark .mission-description {
  color: #ddd;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .mission-container {
    flex-direction: row;
  }

  .mission-content {
    text-align: left;
    padding-right: 20px;
  }
}


/* FOOTER */

/* fooooter */
.footer_section {
  background-color: #000;
  color: #ffffff;
  padding: 75px 40px 0px;
  text-align: center;
}

.footer_section h4 {
  font-size: 28px;
}
a{
  
}
.contact_link_box a{
  text-decoration: none;
}
.footer_section p {
  color: #dbdbdb;
}


.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: #ffbe33;
}
