@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px; /* Horizontal scrollbar width */
  height: 12px; /* Vertical scrollbar height */
}

::-webkit-scrollbar-track {
  background: #333; /* Dark gray track */
  border-radius: 10px; /* Rounded corners for track */
}

::-webkit-scrollbar-thumb {
  background-color: #864141; /* Lighter gray thumb */
  border-radius: 10px;
  border: 3px solid #222; /* Border to match the background */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #c73e3e; /* Lighter gray when hovering */
}

::-webkit-scrollbar-button {
  display: none; /* Remove arrows from scrollbar */
}

/* CSS Variables */
:root {
  --primary: #dc3545;
  --light: #f8f9fa;
  --dark: #000;
  --bg-dark: rgba(0, 0, 0, 0.95);
  --bg-light: #fff;
  --spacing: clamp(1rem, 2vw, 2rem);
  --container: 1200px;
  --nav-height: 70px;
  --transition: 0.3s ease;
  --hero-overlay: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  --animation-slow: 2s;
  --animation-medium: 1.5s;
  --animation-fast: 0.5s;
  --about-bg: #f8f9fa;
  --about-accent: #4a90e2;
  --text-dark: #000;
  --text-light: #fff;
}

/* Add smooth scrolling to html */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Cinzel", serif;
  line-height: 1.5;
  color: var(--bg-dark);
  background: var(--bg-dark);
  padding-top: var(--nav-height) ;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  padding: 0 var(--spacing);
  transition: var(--transition);
}

/* Shrinking effect styles */
.navbar.shrink {
  padding: 0; /* Reduced padding when scrolled */
  background: var(--bg-dark);
  height: 60px; /* Reduced height when scrolled */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* Stronger shadow */
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: rotate(360deg);
}

.nav-title {
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 1rem;
  margin-top: 10px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: var(--light);
  transition: var(--transition);
}

/* Dropdown Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-dark);
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  padding: 0;
}

.dropdown-menu.active {
  display: flex;
}

.dropdown-item {
  color: var(--light);
  padding: 0.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item.active {
  background: var(--primary);
  color: var(--light);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-mobile {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  color: var(--light);
  z-index: 1;
}

/* Background Carousel Animation */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  animation: backgroundCarousel 15s infinite ease-out;
}

@keyframes backgroundCarousel {
  0%, 100% {
    background: url("/assets/bg.jpg") center center/cover;
  }
  34%, 66% {
    background: url("/assets/bg3.jpg") center center/cover;
  }
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  color: var(--light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
  padding: 1rem;
  align-items: center;
  animation: fadeInUp var(--animation-medium) ease-out;
}

/* Title and Subtitle Animations */
.hero-title, .hero-subtitle {
  opacity: 0;
  animation: fadeInUp var(--animation-medium) ease-out forwards;
}

.hero-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  animation-delay: 0.6s;
}

/* Hero Text */
.hero-text {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp var(--animation-medium) ease-out forwards;
  animation-delay: 0.9s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 51%;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 2;
  animation: fadeIn var(--animation-medium) ease-out forwards;
  animation-delay: 1.5s;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll var(--animation-slow) ease-out infinite;
}

.arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--light);
  border-bottom: 2px solid var(--light);
  transform: rotate(45deg);
  margin: 1rem auto 0;
  animation: bounce var(--animation-slow) infinite;
}

/* Fade-in and Scroll Animation */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Services Section */
.services-section {
  padding: 2rem 2rem;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
    linear-gradient(-45deg, rgba(74, 144, 226, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.services-container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  transition: height 0.5s ease;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
  position: relative;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  transition: transform 0.5s ease;
}

.service-card:hover .service-content {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-description {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.service-card:hover .service-description {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    transform: translateY(0);
  }

  .service-description {
    opacity: 1;
    transform: translateY(1);
  }
}

/* About Section */
.about-section {
  position: relative;
  background: var(--about-bg);
  overflow: hidden;
  min-height: 100vh;
  background: var(--bg-light);
  padding:  2rem 2rem;
  color: var(--text-dark);
}

.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
}

.about-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing);
  position: relative;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
  font-weight: bold;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 2.5rem;
  font-weight: bold;
}

.darksection-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 2.5rem;
  font-weight: bold;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto;
  position: relative;
}

.title-underline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s ease-out;
}

.about-section:hover .title-underline::before {
  transform: scaleX(1);
  transform-origin: left;
}

.about-content {
  display: grid;
  gap: 4rem;
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-dark);
}

.about-lead {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  font-size: 1.2rem;
  color: var(--text-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-section {
  padding:  2rem 2rem;
  min-height: 100vh;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
    linear-gradient(-120deg, rgba(74, 144, 226, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 1rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.3s ease;
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  transition: height 0.5s ease;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transform: scale(0.98);
  transition: all 0.5s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--text-light);
  transition: all 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  bottom: 0;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.lightbox.active .lightbox-image {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-light);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
}

/* Contact Section */
.contact-section {
  padding:  2rem 2rem;
  background: var(--bg-light);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(220, 53, 69, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(74, 144, 226, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.contact-form {
  background: var(--bg-dark);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(20px);
  opacity: 0;
  animation: slideIn 0.6s ease-out forwards;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--primary);
  background: var(--bg-dark);
  outline: none;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -20px;
  font-size: 0.8rem;
  color: var(--primary);
}
/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  color: var(--text-light);
  transition: transform 0.3s ease;
  text-align: center;
}

.map-container {
  flex-grow: 1;
  min-height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.contact-info {
  display: grid;
  gap: 2rem;
  transform: translateY(20px);
  opacity: 0;
  animation: slideIn 0.6s ease-out forwards 0.3s;
}

.info-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 15px;
  color: var (--text-light);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.map-container {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-mobile {
    display:  flex dle;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .hero-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    padding: 0 2rem;
  }

  .about-image-gallery {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .darksection-title {
    font-size: 2rem;
  }

  .about-lead {
    font-size: 1.5rem;
  }

  .stat-item {
    margin-bottom: 1rem;
  }

  .feature-item {
    margin-bottom: 1rem;
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(5px, 5px);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .filter-btn {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
  }
}

/* Gallery Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .info-card {
    padding: 0rem;
  }
}

@media (max-width: 576px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-info {
    padding: 2rem;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* General Footer Styling */
.footer {
  background: linear-gradient(135deg, #0d0d0d, #333);
  color: #f0f0f0;
  padding: 3rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 2rem;
  text-align: center;
}

/* Brand Section */
.footer-brand h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ff4b5c;
}

.footer-brand p {
  font-size: 1rem;
  color: #ccc;
}

/* Links Section */
.footer-links h3,
.footer-social h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff4b5c;
}

/* Social Section */
.footer-social div {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  text-decoration: none;
  color: #f0f0f0;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #ff4b5c;
  transform: scale(1.1);
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #bbb;
}

.contact-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.contact-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: all 0.3s ease;
  z-index: -1;
}

.contact-btn:hover::before,
.contact-btn.active::before {
  left: 0;
}

.contact-btn:hover,
.contact-btn.active {
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: linear-gradient(45deg, #d32525, #580c0c);
  transition: all 0.3s ease;
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: inherit;
  border-radius: 50px;
  z-index: -1;
  animation: pulse 2s infinite;
  opacity: 0.7;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(211, 37, 37, 0.3);
}

/* Phone Call Button */
.phone-call-btn {
  background: linear-gradient(45deg, #d32525, #580c0c);
  transition: all 0.3s ease;
  position: fixed;
  bottom: 24px; /* Same as WhatsApp button */
  left: 24px; /* Moves it slightly to the left of WhatsApp */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 50px;
  color: white;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.phone-call-btn::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: inherit;
  border-radius: 50px;
  z-index: -1;
  animation: pulse 2s infinite;
  opacity: 0.7;
}

.phone-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 85, 211, 0.3);
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.7; }
}

/* Scroll to Top Button */
.scroll-top-btn {
  background: #00000000;
  border: 2px solid #ff4444;
  color: #ff4444;
  transition: all 0.3s ease;
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}



.scroll-top-btn:hover {
  background: #ff4444;
  color: white;
  transform: translateY(-3px);
}

.scroll-top-btn i {
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover i {
  transform: translateY(-2px);
}

/* Show Scroll Button when Scrolling */
.show-scroll {
  opacity: 1;
  visibility: visible;
}

.captcha-code {
  width: 40%;
  padding: 1rem;
  background: transparent;
  font-family: "Montserrat", serif;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  
  font-size: 1rem;
  transition: all 0.3s ease;
}

.refresh-captcha {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
}
