* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Header */

.header {
  position: relative;
  z-index: 1000;
}



.header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Navbar */
.navbar {

     position: relative;
  z-index: 1000;
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* 🔻 Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}






.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* Slides wrapper */
.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark overlay */
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  z-index: 1;
  pointer-events: none;
}

/* Text */
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* Mobile */
@media (max-width: 768px) {
  .hero-slider { height: 60vh; }
  .hero-content h1 { font-size: 2rem; }
}




/* Categories Section */
.categories {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.category-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-decoration: none; /* remove underline for <a> */
  color: inherit;        /* keep text color */
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card h3 {
  padding: 15px;
  font-size: 1.2rem;
}


.video-carousel {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.carousel-wrapper {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 15px;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 calc((100% - 30px) / 3); /* 3 videos per view with gap */
  border-radius: 8px;
  overflow: hidden;
}

.carousel-item video {
  width: 100%;
  height: 600px; /* fixed height for professional look */
  object-fit: cover;
  border-radius: 8px;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  color: #333;
  font-size: 2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 10;
  transition: background 0.3s, transform 0.2s;
}

.carousel-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Responsive */
@media (max-width: 900px) {
  .carousel-item { flex: 0 0 calc((100% - 15px)/2); }
  .carousel-item video { height: 180px; }
}

@media (max-width: 600px) {
  .carousel-item { flex: 0 0 100%; }
  .carousel-item video { height: 200px; }
}


html {
  scroll-behavior: smooth;
}


/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* CONTACT SECTION */
.contact-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 32px 28px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* HEADINGS */
.contact-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  color: #0a3cff;
  margin-bottom: 6px;
}

.contact-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 32px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* FORM GROUP */
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6px;
}

/* LABEL */
.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 16px; /* prevents mobile zoom */
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* SELECT ARROW FIX */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* TEXTAREA */
.form-group textarea {
  resize: vertical;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0a3cff;
  box-shadow: 0 0 0 3px rgba(10, 60, 255, 0.15);
}

/* SUBMIT BUTTON */
.submit-btn {
  margin-top: 10px;
  padding: 14px;
  background: linear-gradient(135deg, #0a3cff, #ff1e1e);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

/* MOBILE FIX */
@media (max-width: 480px) {
  .contact-section {
    margin: 30px 12px;
    padding: 22px 16px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .submit-btn {
    font-size: 0.95rem;
    padding: 13px;
  }
}




.site-footer {
  background: #222;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 20px;
}

.site-footer p {
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: invert(100%); /* makes icon white for dark footer */
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}



/* LOCATION SECTION */
.location-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.location-section h2 {
  font-size: 2rem;
  color: #0a3cff;
  margin-bottom: 30px;
}

/* Individual Branch */
.branch {
  margin-bottom: 40px;
}

.branch h3 {
  font-size: 1.4rem;
  color: #ff1e1e; /* red for branch title */
  margin-bottom: 12px;
}

/* Map container */
.map-container iframe {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  min-height: 280px;
}

/* MOBILE */
@media (max-width: 768px) {
  .location-section {
    padding: 15px;
  }

  .branch h3 {
    font-size: 1.2rem;
  }

  .map-container iframe {
    height: 250px;
  }
}
