/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  border-radius: 10px;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  color: #ff4d4d;
}

/* HERO */
.hero {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, #111, #333);
  color: white;
}

.hero-logo {
  width: 120px;
  margin-bottom: 15px;
  border-radius: 20px;
}

.hero h1 {
  font-size: 40px;
}

.hero p {
  margin: 10px 0 20px;
  color: #ccc;
}

.hero-btn {
  padding: 12px 25px;
  border: none;
  background: #ff4d4d;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.hero-btn:hover {
  background: #e60000;
}

/* PRODUCTS */
.section-title {
  text-align: center;
  margin: 40px 0 20px;
}

/* PRODUCT GRID */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

/* CARD */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.enquire-btn {
  margin: 10px 0 15px;
  padding: 10px;
  border: none;
  background: #111;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.enquire-btn:hover {
  background: #ff4d4d;
}

/* MAP */
.location {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.location h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.location p {
    margin-bottom: 20px;
    color: #555;
}

/* MAP FIX */
.map-box {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {
    .map-box {
        height: 250px;
    }

    .location h2 {
        font-size: 22px;
    }
}

iframe {
  width: 80%;
  height: 300px;
  border-radius: 10px;
  border: none;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: white;
  margin-top: 30px;
}

.contact-box {
  text-align: center;
  background: #f5f5f5;
  padding: 20px;
  margin: 20px auto;
  width: 80%;
  border-radius: 10px;
  font-size: 16px;
}

/* CONTACT SECTION */
.contact {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e1e2f, #2c2c54);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

/* CARD LAYOUT */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* CARD DESIGN */
.contact-card {
    background: white;
    color: #333;
    padding: 20px;
    border-radius: 15px;
    width: 250px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.8s ease forwards;
}

.contact-card:hover {
    transform: translateY(-8px);
}

/* GLOW EFFECT */
.contact-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0,255,255,0.3), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

/* MAIN WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.05);
}

/* FLOATING WHATSAPP */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-card {
        width: 100%;
        max-width: 300px;
    }

    .contact h2 {
        font-size: 24px;
    }
}

/* SLIDER */
.slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* SLIDES */
.slides {
    display: flex;
    width: 300%;
    animation: slideAnimation 12s infinite;
}

/* EACH SLIDE */
.slide {
    width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* TEXT ON IMAGE */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
}

/* ANIMATION */
@keyframes slideAnimation {
    0% { transform: translateX(0); }
    30% { transform: translateX(0); }

    35% { transform: translateX(-100%); }
    65% { transform: translateX(-100%); }

    70% { transform: translateX(-200%); }
    100% { transform: translateX(-200%); }
}

/* MOBILE */
@media (max-width: 768px) {
    .slider {
        height: 250px;
    }

    .slide img {
        height: 250px;
    }

    .caption h2 {
        font-size: 18px;
    }

    .caption p {
        font-size: 14px;
    }
}
/* SLIDER WRAPPER */
.product-slider {
  overflow: hidden;
  width: 100%;
  padding: 20px;
}

/* MOVING TRACK */
.product-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollProducts 15s linear infinite;
}

/* CARD (same but fixed width for slider) */
.product-card {
  min-width: 250px;
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* HOVER */
.product-card:hover {
  transform: scale(1.05);
}

/* AUTO SCROLL */
@keyframes scrollProducts {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .product-card {
    min-width: 220px;
  }
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 32px;
  margin: 40px 0;
}

/* GRID */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px;
}

/* CARD */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f5f7ff);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ICON */
.icon {
  font-size: 40px;
  margin-bottom: 10px;
  animation: floatIcon 2s infinite ease-in-out;
}

/* TITLE */
.service-card h3 {
  margin: 10px 0;
  font-size: 18px;
}

/* TEXT */
.service-card p {
  font-size: 14px;
  color: #666;
}

/* ICON FLOAT ANIMATION */
@keyframes floatIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* GLOW EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0,255,255,0.2), transparent);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}