/* ================================
   HERO SECTION
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: left;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
}

.hero__content h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero__content h1 span {
  color: #f57b20;
}

.hero__content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-explore {
  display: inline-block;
  padding: 12px 24px;
  background: #f57b20;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-explore:hover {
  background: #100d51ff;
}

/* Consultation Form */
.hero__contact {
  background: rgba(255, 255, 255, 0.15); /* transparent white */
  backdrop-filter: blur(12px);           /* adds frosted glass effect */
  -webkit-backdrop-filter: blur(12px);   /* safari support */
  color: #fff;                           /* switch text color to white for readability */
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.25); /* subtle border */
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero__contact h2 {
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #fff; /* white to stand out on transparent bg */
  text-align: center;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.36);
  color: #111;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #444;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  background: #f57b20;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 50px;
}

.contact-form button:hover {
  background: #0d1254;
  transform: translateY(-2px);
}

/* ================================
   SERVICES SECTION
================================ */
.services-horizontal {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #555;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.services-row {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.services-row-inner {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 15px;
  min-width: 250px;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: transform 0.3s ease;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 15px 10px 5px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  margin: 0 10px 15px;
  color: #666;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

/* Hide arrows on small screens */
@media (max-width: 768px) {
  .carousel-arrow {
    display: none;
  }
}

/* Scrollbar Styling */
.services-row::-webkit-scrollbar {
  height: 8px;
}

.services-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.services-row::-webkit-scrollbar-track {
  background: transparent;
}

/* ================================
   GALLERY
================================ */
.gallery-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
  transition: 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
  position: relative;
  padding: 80px 0; /* remove side padding */
  background: #f8f8f8;
  text-align: center;
}

.video-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.video-section .section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #666;
}

.video-wrapper {
  position: relative;
  width: 80%;              /* wider */
  max-width: 1100px;       /* large desktop */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #000;
}

/* Hover effect */
.video-wrapper:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }

  .video-section .section-title {
    font-size: 1.6rem;
  }

  .video-section .section-subtitle {
    font-size: 1rem;
  }

  .video-wrapper {
    width: 95%;
    border-radius: 12px;
  }

  .video-wrapper video {
    border-radius: 12px;
  }
}

/* ================================
   ABOUT SECTION
================================ */
.about {
  padding: 80px 20px;
  background: #fff;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about__text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about__text p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #555;
}

.btn-primary {
  padding: 12px 24px;
  background: #f9b233;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #d99720;
}

.about__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ================================
   RESPONSIVENESS
================================ */
@media (max-width: 992px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content h1 {
    font-size: 2.2rem;
  }
  .hero__contact {
    max-width: 400px;
    margin: 20px auto 0;
  }

  .carousel-arrow {
    display: none; /* keep arrows hidden on tablet/mobile */
  }

  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero__content h1 {
    font-size: 1.8rem;
  }
  .hero__content p {
    font-size: 1rem;
  }
  .service-card {
    flex: 0 0 80%;
    margin: auto;
  }
}
