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

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Navbar Logo */
header .logo img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  color: #c82333;
}

.quote-btn {
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #0d8aff;
}

.desktop-quote {
  display: inline-block;
}
/* Desktop contact info */
.desktop-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
  font-size: 14px;
  color: #333;
}

.desktop-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.desktop-contact span:hover {
  color: #c82333;
  cursor: default;
}

/* Hide desktop contact on smaller screens */
@media (max-width: 768px) {
  .desktop-contact {
    display: none;
  }
}

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #007bff;
  z-index: 1100;
}

/* Mobile Sidebar */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 1200;
  transition: left 0.3s ease;
}

.mobile-nav.active {
  left: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-header .logo img {
  height: 40px;
  width: auto;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  color: #007bff;
}

.mobile-nav ul {
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  list-style: none;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: black;
  padding: 8px 12px;
  display: block;
  border-radius: 5px;
}

.mobile-nav ul li a.active {
  background: #ffe6e6;
  color: #c82333;
}

.contact-info {
  font-size: 14px;
  color: #0056b3;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 6px 0;
}

.mobile-quote {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

/* Responsive nav */
@media (max-width: 768px) {
  .desktop-nav,
  .desktop-quote {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  padding: 0 10px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  word-break: break-word;
}

.hero-content h1 span {
  color: #c82333;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-content .btn {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin: 5px;
  transition: 0.3s;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-light {
  background: #fff;
  color: #333;
}

.btn-light:hover {
  background: #ddd;
}

/* Responsive typography for hero */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 56px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 20px;
  }
  .hero-content .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 44px;
    line-height: 1.4;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-content .btn {
    font-size: 15px;
    padding: 10px 16px;
  }
  header .logo img {
    max-height: 45px; /* shrink logo slightly */
  }
}
/* Why Choose Section */
.why-choose {
  padding: 80px 0; /* remove side padding so it can stretch */
  background: #f9f9f9;
  text-align: center;
}

.why-choose .container {
  width: 90%; /* stretch to 90% of viewport */
  max-width: 1400px; /* cap width so it doesn’t grow too wide */
  margin: 0 auto;
}

.why-choose h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}

.why-choose .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats cards */
.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.stat-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  width: 300px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: #fff;
  font-size: 28px;
}

.stat-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.stat-card p {
  font-size: 15px;
  color: #555;
}

/* Trusted Logos */
.trusted {
  margin-top: 40px;
}

.trusted h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #222;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff; /* optional */
}

.logo-track {
  display: flex;
  flex-wrap: nowrap;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: auto;
  max-height: 80px; /* adjust for large screens */
  width: auto;
  margin: 0 20px;
  object-fit: contain;
  flex-shrink: 0; /* prevent images from shrinking */
}

/* make logos smaller on tablets and mobiles */
@media (max-width: 1024px) {
  .logo-track img {
    max-height: 60px;
    margin: 0 15px;
  }
}

@media (max-width: 768px) {
  .logo-track img {
    max-height: 50px;
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .logo-track img {
    max-height: 40px;
    margin: 0 5px;
  }
}

/* keyframes for continuous scroll */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* assumes you duplicated logos */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .why-choose h2 {
    font-size: 28px;
  }
  .stats {
    gap: 20px;
  }
  .stat-card {
    width: 100%;
    max-width: 350px;
  }
}

/* services-section */
.services-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 50px;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* default 1 card */
  gap: 30px;
}

/* Tablet - 2 cards */
@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptop/Desktop - 3 cards */
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(200, 35, 51, 0.3),
    0 8px 20px rgba(0, 123, 255, 0.3);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #007bff;
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.service-card ul {
  margin: 0 0 0 15px;
  padding: 0;
}

.service-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.service-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c82333;
  font-weight: bold;
}
/* CTA Section with Parallax */
.cta-section {
  position: relative;
  background: url("assets/chan2.jpg") center center / cover no-repeat fixed;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-buttons .btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: #c82333;
  color: #fff;
}

.cta-buttons .btn-primary:hover {
  background: #a51a29;
  box-shadow: 0 8px 20px rgba(200, 35, 51, 0.4);
}

.cta-buttons .btn-light {
  background: #fff;
  color: #333;
}

.cta-buttons .btn-light:hover {
  background: #f1f1f1;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 16px;
  }
}

/* Section Layout */
.mc-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.mc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mc-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.mc-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.mc-highlights {
  list-style: none;
  margin-bottom: 25px;
  padding: 0;
}

.mc-highlights li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.mc-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #007bff;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #0056b3;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.btn-outline {
  background: #fff;
  border: 2px solid #007bff;
  color: #007bff;
}

.btn-outline:hover {
  background: #007bff;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

/* Video Thumbnail */
.video-thumbnail {
  position: relative;
  display: inline-block;
  width: 100%;
}

.video-thumbnail img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 123, 255, 0.9);
  color: #fff;
  font-size: 40px;
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #0056b3;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: -40px;
  right: -10px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .mc-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mc-buttons {
    justify-content: center;
  }
  .modal-content iframe {
    height: 300px;
  }
}

/* Contact Section */
.contact-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: #222;
}

.contact-section .subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #0056b3;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.contact-info-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box h3 {
  margin-bottom: 20px;
  color: #222;
}

.contact-info-box p {
  margin: 10px 0;
  font-size: 16px;
  color: #444;
}

.contact-info-box a {
  color: #007bff;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    padding-top: 0;
    margin-top: 0;
  }
}
/* gallery styling */
.gallery-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.gallery-title h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.gallery-title p {
  color: #555;
  margin-bottom: 40px;
}

.gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 10s linear infinite;
}

.gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  font-size: 1rem;
}

/* Animation */
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Faster animation & smaller cards on mobile */
@media (max-width: 768px) {
  .gallery-track {
    animation: scrollGallery 15s linear infinite;
  }

  .gallery-item {
    width: 220px;
    height: 150px;
  }

  .overlay {
    font-size: 0.9rem;
    padding: 6px;
  }
}

/* Optional: Pause animation on hover (desktop only) */
@media (hover: hover) {
  .gallery-track:hover {
    animation-play-state: paused;
  }
}

/* Footer Styling */
footer {
  background: #0d8aff; /* Blue background */
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h2,
.footer h3 {
  margin-bottom: 15px;
  font-weight: bold;
}

.footer h2 {
  color: #ff3b2f; /* Red title */
}

.footer p {
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #ff3b2f;
}

/* Links */
.footer-links li {
  list-style: none;
  margin: 8px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff3b2f;
}

/* Contact */
.contact-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #111;
}
.contact-info i {
  color: #ff3b2f;
  margin-right: 8px;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 10px;
}
.newsletter input {
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 5px 0 0 5px;
  flex: 1;
}
.newsletter button {
  background: #ff3b2f;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  transition: background 0.3s;
}
.newsletter button:hover {
  background: #e02d23;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 15px 10px 5px;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #ff3b2f;
}
