/* Reset and Base Styles */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background: #ffffff;
  --light-background: #f8fafc;
  --border-color: #e2e8f0;
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #2563eb, #1e40af);
  --gradient-hover: linear-gradient(135deg, #1e40af, #2563eb);
  --gradient-text: linear-gradient(to right, #2563eb, #1e40af);
  --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 15px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background);
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo span {
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
  animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.3)
    );
  }
  100% {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.4)
    );
  }
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  animation: zoomEffect 20s ease-in-out infinite alternate;
}

@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  transform: translateY(-100%);
  transition: var(--transition);
}

.cta-button:hover::after {
  transform: translateY(0);
}

/* Services Section */
.services {
  padding: 6rem 1.5rem;
  background-color: var(--light-background);
}

.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
}

.services-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 0 0 2.5rem 0;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.service-card .service-image-placeholder {
  width: 100%;
  height: 180px;
  background: #f4f4f4;
  border-radius: 16px 16px 0 0;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
  font-size: 0.9rem;
  text-align: center;
  margin: 0 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(30, 64, 175, 0.05) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

/* Gallery Section */
.gallery {
  padding: 6rem 1.5rem;
  background-color: var(--light-background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 600;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  overflow-y: auto;
  padding: 1rem;
}

.gallery-item {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  min-height: 200px;
  max-height: 350px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  cursor: pointer;
}

.gallery-item.video-item {
  background: #000;
  position: relative;
  min-height: 200px;
  max-height: 350px;
  overflow: visible;
}

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
  cursor: pointer;
  pointer-events: auto !important;
}

/* Video hover effect */
.gallery-item.video-item:hover video {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Ensure video controls are clickable */
.gallery-item.video-item video:focus {
  outline: none;
}

.gallery-item.video-item video:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Remove gallery caption styles */
.gallery-caption {
  display: none;
}

.video-error {
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* About Section */
.about {
  padding: 6rem 1.5rem;
  background-color: var(--light-background);
}

.about h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 600;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-panel {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.about-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(30, 64, 175, 0.05) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.about-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-panel:hover::after {
  opacity: 1;
}

.about-panel h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.about-panel p {
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-panel p:last-child {
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  padding: 6rem 1.5rem;
  background-color: var(--light-background);
}

.contact h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
  font-weight: 600;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--light-text);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.contact-form:hover::before {
  transform: scaleX(1);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.submit-button {
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  transform: translateY(-100%);
  transition: var(--transition);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: var(--gradient-hover);
}

.submit-button:hover::before {
  transform: translateY(0);
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background-color: var(--background);
  color: var(--text-color);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.social-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.social-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--light-text);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 1.5rem;
  }

  .about-panel h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero-content {
    padding: 1rem;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  margin: 4px 0;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Utility Classes */
.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
}

/* Add padding to main content to account for fixed header */
main {
  padding-top: 0;
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
  backdrop-filter: blur(5px);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  right: 25px;
  top: 15px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: rotate(90deg);
}

/* Custom Video Player */
.custom-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.custom-video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 1;
  transition: opacity 0.3s ease;
  touch-action: none;
}

.custom-video-player:hover .video-controls {
  opacity: 1;
}

.play-pause,
.fullscreen {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.play-pause:hover,
.fullscreen:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  touch-action: none;
}

.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.progress-bar:hover .progress {
  background: var(--secondary-color);
}

@media (max-width: 768px) {
  .video-controls {
    padding: 12px;
    gap: 12px;
  }

  .play-pause,
  .fullscreen {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    padding: 6px;
  }

  .progress-bar {
    height: 8px;
  }
}

/* Video error state */
.video-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  width: 80%;
}

/* Fullscreen styles */
.custom-video-player:fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}

.custom-video-player:fullscreen video {
  object-fit: contain;
}


/* FAQ Section */
.faq {
  padding: 3rem 1.5rem;
  background-color: #f9f9f9;
  border-top: 2px solid #ddd;
}

.faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #333;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  padding: 1.2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faq-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.hero-buttons .cta-button {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border-radius: 1.2rem;
  min-width: 90px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
  .hero-buttons .cta-button {
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
    min-width: 70px;
  }
}

.hero-social-icons {
  display: flex;
  gap: 1.5rem;
  margin-left: 1.2rem;
  align-items: center;
}
.hero-social-icons div {
  padding-left: 50px;
  padding-right: 50px;
}


