/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #222;
  padding-top: 70px; /* Prevent content hiding behind fixed navbar */
}


/* ================= NAVBAR ================= */
/* Navbar stays fixed at the very top */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000; /* stays above hero */
}

/* Push page content down so navbar doesn't overlap */
body {
  margin: 0;
  padding: 0;
}

/* Hero starts at very top (behind navbar) */
.hero {
  position: relative;
  height: 100vh;
  margin-top: 0; /* remove any offset */
  z-index: 1;
}

/* When scrolled */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.34);
  width: 100%;
  height: 13%;
}



.nav-container {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 3%; /* use percentage instead of fixed px */
  box-sizing: border-box; /* ensures padding doesn’t exceed 100% */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 70px;
  animation: shake 0.5s ease-in-out infinite;
}

.logo img:hover {
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(-3px, 0) rotate(-2deg); }
  40%  { transform: translate(3px, 0) rotate(2deg); }
  60%  { transform: translate(-3px, 0) rotate(-2deg); }
  80%  { transform: translate(3px, 0) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.company-name {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
  white-space: nowrap;
}

.menu {
  margin-left: auto;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
  padding-right: 2px;
}

.menu ul li a:hover,
.menu ul li a.active {
  color: #f44336;
}

.menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #f44336;
  transition: width 0.3s ease;
}
.menu ul li a:hover::after,
.menu ul li a.active::after {
  width: 100%;
}

/* HAMBURGER */
.menu-btn {
  display: none;
  font-size: 28px;
  color: #af1010;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-btn.open {
  transform: rotate(90deg);
  color: #f44336;

}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #111111;
    padding: 20px 0;
    text-align: center;
    border-radius: 0 0 8px 8px;
    z-index: 999;
  }

  .menu.show {
    display: block;
  }

  .menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .menu ul li {
    padding: 10px 0;
  }

  .menu ul li a {
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
    transition: background 0.3s;
  }

  .menu ul li a:hover {
    background: #f44336;
    color: #fff;
  }

  .menu-btn {
    display: block;
  }
}
/* navbar underline animation */
.menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #f44336;
  transition: width 0.3s ease;
}
.menu ul li a:hover::after,
.menu ul li a.active::after {
  width: 100%;
}
.menu-btn {
  display: none;
  font-size: 35px;
  color:#000000;
  cursor: pointer;
}

.hero {
  position: relative;
  max-width: 100%;
  width: 100vw; /* corrected from 500% */
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Fade-in */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* fills the hero fully without distortion */
  transform: translate(-50%, -50%);
  z-index: -2;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: 'Inter', Times, serif;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: bolder;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  padding: 0 1rem;
}


/* GENERAL SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f44336;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: 0.5s;
  text-align: center;
  text-decoration: none;
  font-size: 1.0rem;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  color: #f44336;
}

/* PRODUCT */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 15px;
  max-width: 1200px;
  margin: auto;
}
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}
.product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #b30000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #800000;
}

/* PRODUCT CARD LINKS */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
/* Apply this to your product cards or images */
.product-card:hover,
.product-item:hover,
.products img:hover {
  animation: shake 0.5s ease-in-out;
  animation-iteration-count: 1; /* run once on hover */
}

@keyframes shake {
  0% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-3px, 0) rotate(-2deg); }
  40% { transform: translate(3px, 0) rotate(2deg); }
  60% { transform: translate(-3px, 0) rotate(-2deg); }
  80% { transform: translate(3px, 0) rotate(2deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}


/* Product Details */
.product-details img {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease-out, transform 0.5s ease-out;
  cursor: pointer;
}
.product-details img.visible {
  opacity: 1;
  transform: scale(1);
}
.product-details img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.product-list-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* 📱 Medium screens */
@media (max-width: 768px) {
  .product-list-page {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    padding: 15px;
  }
  .product-item img {
    height: 140px;
  }
}

/* 📱 Small phones */
@media (max-width: 480px) {
  .product-list-page {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .product-item img {
    height: 200px;
  }
}







/* ================= MAP ================= */
.embed-map-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* keeps it responsive */
  overflow: hidden;
}

.embed-map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



/* ================= SERVICES ================= */
.services {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.services-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full-width fit */
  display: block; 
  z-index: -2;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* darker for better text contrast */
  z-index: -1;
}

.services-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding: 60px 20px;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 30px 20px;
  color: #fff;
  font-weight: bold;
  transition: transform 0.2s, background 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.service h3 {
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4b2b, #ff1a1a);
  display: block; /* make it a full-width block */
  width: fit-content; /* shrink it back to fit the text */
  margin: 9rem auto 3rem; /* centers it horizontally */
  padding: 12px 40px;
  border-radius: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}


.service h3:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

.service-card h3 {
  font-size: 1.8rem;
  color: #810000;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}


/* Gallery Below Cards */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(127, 38, 38, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}



/* ================= LIGHTBOX ================= */
.lightbox {
  display: none;
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
  z-index:2000;
  flex-direction: column;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}
.lightbox.active {
  display:flex;
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transform: translateY(-50%);
}
.lightbox .prev { left: 30px; }
.lightbox .next { right: 30px; }
.lightbox .prev:hover,
.lightbox .next:hover,
.lightbox .close:hover {
  color: #f44336;
}

/* CONTACT PAGE */
.contact-page {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}
.contact-page h2 {
  font-size: 2rem;
  padding-top: 5%;
  margin-bottom: 30px;
  color: #f44336;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  margin-bottom: 40px;
}
.contact-info {
  text-align: left;
}
.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.9rem;
  color: #333;
}
.contact-info p {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #141414;
}
.contact-info i {
  margin-right: 10px;
  color: #f44336;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.contact-form button {
  padding: 12px;
  background: #b30000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #800000;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f0f0f, #380000);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 25px;
  width: 240px;
  color: #fff;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.stat.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 70, 70, 0.4);
}

.stat i {
  font-size: 48px;
  color: #ff4b2b;
  margin-bottom: 15px;
  animation: pulse 2s infinite ease-in-out;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.stat .desc {
  font-size: 0.9rem;
  color: #fff9f9;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.stat.visible .desc {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { text-shadow: 0 0 0 #ff1a1a; }
  50% { text-shadow: 0 0 20px #ff1a1a; }
  100% { text-shadow: 0 0 0 #ff1a1a; }
}


/* VIDEO */
.company-video {
  padding: 60px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}

.company-video h2 {
  font-size: 2rem;
  color: #f44336;
  margin-bottom: 20px;
}

/* Responsive video container */
.video-player {
  width: 100%;           /* full width of container */
  max-width: 1000px;     /* optional, to limit on large screens */
  aspect-ratio: 16 / 9;  /* keeps 16:9 ratio for height */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: block;
  margin: 20px auto;
  background: #000;
  object-fit: cover;
}


/* FOOTER - Sticky Full Width */


footer p {
  margin: 0;
  font-size: 0.95rem;
}
footer .social-links {
  margin-top: 15px;
}
footer .social-links a {
  color: #fff;
  margin: 0 12px;
  font-size: 20px;
  transition: 0.3s;
}
footer .social-links a:hover {
  color: #f44336;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px) {
  .menu {
    display: none;
    position: absolute;
    top: 65px;
    right: 15px;
    background: #111;
    padding: 20px;
    border-radius: 8px;
  }
  .menu ul {
    flex-direction: column;
    gap: 10px;
  }
  .menu-btn {
    display: block;
  }
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info {
    text-align: center;
  }
  .stats {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  footer .social-links a {
    font-size: 18px;
    margin: 0 8px;
  }
}

/* ============================= */
/* PRODUCTS PAGE (Grid View)     */
/* ============================= */
.products-page {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.products-page h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #b30000;
  margin-top: 5rem;
}

.product-grid {
  display: grid;
  font-size: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.product-card .btn {
  margin-top: 10px;
}

/* ============================= */
/* PRODUCT DETAIL PAGE           */
/* ============================= */
/* PRODUCT DETAIL PAGE */
.product-detail-page {
  max-width: 1200px;
  margin: 100px auto 0; /* pushes content below header */
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}


.product-detail-page img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.product-info {
  text-align: left;
}

.product-info h2 {
  font-size: 2rem;
  margin: 0 auto;
  padding-top: 40px; /* matches your navbar height */
  color: #b30000;
}

.product-info p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  margin: 0 auto 25px auto;
  color: #444444;
  line-height: 1.6;
  text-align: center;
  max-width: 800%;
  padding: 0 15px;
}


.specs {
  margin-top: 20px;
}

.specs h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #222;
}

.specs ul {
  list-style: disc;
  margin-left: 20px;
  color: #080808;
}

.specs ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-detail-page {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-info {
    text-align: center;
  }
  .specs ul {
    text-align: left;
    display: inline-block;
  }
}


.back-btn {
  display: block;
  margin: 25px auto;     /* smaller margin for tighter screens */
  padding: 12px 24px;    /* bigger tap target for fingers */
  font-size: 1rem;       /* readable size on phones */
  background: #000000;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  min-width: 150px;      /* ensures button isn’t too tiny */
  transition: 0.3s;
}

.back-btn:hover {
  background: #c90c0c;
}

/* Extra tweaks for very small screens */
@media (max-width: 480px) {
  .back-btn {
    width: 80%;          /* make it span nicely across the screen */
    font-size: 1.1rem;
    padding: 14px;
  }
}

.product-card h3 a {
  color: #222;          /* change this to whatever color you like */
  text-decoration: none; /* removes underline */
}

.product-card h3 a:hover {
  color: #d32f2f;        /* hover effect (optional) */
  text-decoration: underline; /* add underline on hover (optional) */
}

.product-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.05); /* zooms entire card */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.product-detail-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.product-detail-page img {
  max-width: 400px;
  border-radius: 10px;
  position: relative;
}

.magnifier-container { position: relative; display: inline-block; }
#magnifier-container img { display: block; width: 100%; }
#lens {
  display: none;
  position: absolute;
  border: 2px solid #aaa;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  cursor: none;
  pointer-events: none;
  z-index: 10;
}

/* Buttons Inline */
.product-buttons {
  display: flex;             /* make buttons inline */
  justify-content: center;   /* center horizontally */
  gap: 10px;                 /* spacing between buttons */
  flex-wrap: wrap;           /* wrap on small screens */
}

.product-buttons .btn {
  flex: 1;                   /* optional: same width buttons */
  min-width: 100px;          /* prevents shrinking too small on mobile */
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  align-items: stretch; /* ensures all cards same height */
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes button to bottom */
}

footer {
  width: 100vw;       /* full viewport width */
  margin: 0;          /* remove any spacing */
  padding: 40px 20px 20px;
  background: #111;
  color: #fff;
  box-sizing: border-box;
}



/* Footer top section - horizontal contact info */
.footer-top {
  display: flex;
  justify-content: center;
  gap: 60px; /* spacing between contact blocks */
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  min-width: 220px;
}

.footer-contact i {
  color: #f44336;
  font-size: 30px;
  min-width: 24px;
}

.footer-contact div {
  line-height: 1.6;
}

.footer-contact a {
  color: #f44336;
  text-decoration: none;
}
.footer-contact a:hover {
  text-decoration: underline;
}

/* Bottom section - copyright + social links */
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.footer-bottom .social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 25px;
  transition: color 0.3s;
}
.footer-bottom .social-links a:hover {
  color: #f44336;
}

/* Responsive - stack top section on small screens */
@media(max-width:768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-contact {
    justify-content: center;
    text-align: center;
  }
}

    /* Toast popup */
    #formPopup {
      display: none;
      position: fixed;
      top: 20px;
      right: -300px;
      padding: 15px 25px;
      color: #fff;
      font-weight: bold;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      cursor: default;
      transition: all 0.5s ease;
      z-index: 1000;
    }
    #formPopup.success { background: #28a745; }
    #formPopup.error { background: #dc3545; }
    #formPopup.show {
      display: block;
      right: 20px;
      opacity: 1;
    }
    #formPopup.hide {
      right: -300px;
      opacity: 0;
    }

    /* Contact section */
    .contact-page {
      max-width: 1200px;
      margin: 40px auto;
      padding: 20px;
    }
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
    }
    .contact-info {
      flex: 1 1 300px;
    }
    .contact-form {
      flex: 1 1 400px;
    }
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    .contact-form button {
      padding: 12px;
      border: none;
      background: #f44336;
      color: #fff;
      font-weight: bold;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }
    .contact-form button:hover {
      background: #d32f2f;
    }

/* full-width background */
.about-section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  background: url('images/about-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: clip; /* newer and safer than hidden */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* overlay padding */
.about-overlay {
  width: 100%;
  padding: 60px 20px;
}

/* center box */
.about-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  color: #fff;
}

/* left image */
.about-content img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  flex: 1 1 300px;
}

/* right text */
.about-text {
  flex: 1;
  padding: 40px;
}

.about-text h2 {
  padding-top: 4%;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fbfbfb;
}

.about-text p {
  padding-top: 5%;
  font-size: 1.2rem;
  line-height: 1.6;
}




/* responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}



.full-width-img {
  width: 100vw;   /* force to full viewport width */
  height: auto;
  display: block;
  object-fit: cover;
}
/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

