@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    font-family: "Roboto Slab", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* NAVBAR START */
header {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Top Bar */
.top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #535353;
  color: #fff;
  padding: 8px 40px;
  flex-wrap: wrap;
  width: 1000px;
  height: 50px;
  border-radius: 20px;
  margin-top: -10px;
}

.top-inner .info {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.top-inner .info li {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 6px;
}

.top-inner .info a {
  color: #fff;
  text-decoration: none;
}

.top-inner .social {
  display: flex;
  gap: 15px;
}

.top-inner .social img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Navbar */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  height: 60px;
}

.logo {
  display: flex;            
  align-items: center;       
  gap: 10px;                  
}

.logo img {
  height: 55px;             
  width: auto;
  display: block;            
}

.logo h4 {
  font-size: 20px;            
  font-weight: 600;
  color: #333;                
  margin: 0;                  
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color:  #E30613; /* highlight color */
}

.enquiry-btn {
  background:  #E30613;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 5px;
  transition: 0.3s;
}

.enquiry-btn:hover {
  background:  #cc2933;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .top-inner {
    width: 100%;
    height: auto;
    border-radius: 0;
    padding: 8px 20px;
  }

  nav {
    padding: 10px 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .logo h4 {
    font-size: 18px;
  }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
  /* Top Bar */
  .top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 15px;
    display: none;
  }

  .top-inner .info {
    flex-direction: column;
    gap: 8px;
  }

  .top-inner .social {
    justify-content: flex-start;
  }

  /* Navbar */
  nav {
    height: auto;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: flex; /* show hamburger */
  }

  .nav-links {
    position: absolute;
    top: 60px; /* below navbar */
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ddd;
    display: none; /* hidden by default */
  }

  .nav-links.show {
    display: flex; /* show when active */
  }

  .nav-links a {
    font-size: 16px;
  }

  .enquiry-btn {
    width: fit-content;
  }
}

/* Very Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .logo h4 {
    font-size: 16px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .enquiry-btn {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* NAVBAR END */

/* HERO START */

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SLIDE IMAGES */
.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100vh;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, 0.7);
  color: #000;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s;
}

.arrow:hover {
  background: gold;
}

.arrow.prev {
  left: 15px;
}

.arrow.next {
  right: 15px;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dots button.active {
  background: gold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .arrow {
    font-size: 1.5rem;
    padding: 5px 10px;
  }

  .dots button {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }

  .arrow {
    font-size: 1.2rem;
    padding: 4px 8px;
  }

  .dots {
    bottom: 15px;
  }
}

/* ICON SECTION START */
/* SOCIAL ICONS IN HERO */
.icon-floating {
  position: fixed;          /* floating on screen */
  bottom: 20px;             /* distance from bottom */
  right: 20px;              /* distance from right */
  z-index: 1000;            /* above other elements */
}

.icon-floating .social {
  display: flex;
  flex-direction: column;   /* stack icons vertically */
  gap: 15px;
}

.icon-floating .social a img {
  width: 35px;              /* icon size */
  height: 35px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .icon {
    bottom: 15px;
    left: 35px;
  }
  .social a {
    width: 30px;
    height: 30px;
  }
  .social a img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .icon {
    display: flex;
    top: 25px;
    left: 35px;
  }
  .social {
    flex-direction: column;   /* on very small screens make it row */
    gap: 8px;
  }
}
/* ICON SECTION END */

/* ABOUT SECTION START */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 8%;
  background: linear-gradient(to right, #f9f9f9, #ffffff);
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem;
  color: #E30613;
  line-height: 1.8;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 992px) {
  .about {
    padding: 40px 6%;
    gap: 25px;
  }

  .about-text h1 {
    font-size: clamp(22px, 5vw, 32px);
  }
}

@media (max-width: 768px) {
  .about {
    flex-direction: column; /* stack */
    text-align: center;
  }

  .about-text {
    order: 1; /* text first */
  }

  .about-img {
    order: 2; /* image below text */
  }

  .about-text p {
    text-align: start;
    font-size: 12px;
  }
}
/* ABOUT SECTION END */

/* ===== Feature Section ===== */
/* Base Styles */
.features {
  padding: 80px 8%;
  background: url(images/slider/3.webp) no-repeat center/cover;
  text-align: center;
  height: auto; /* let height adjust */
}

.section-title h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #474747;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 40px;
  justify-items: center; /* center cards */
}

.feature-card {
  background: #ebebeb;
  border-radius: 50%;
  height: 210px;
  width: 210px;
  padding: 20px 10px;
  position: relative;
  top: -20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
}

.feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #000000;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet (2 columns) */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card {
    width: 180px;
    height: 180px;
  }

  .feature-card img {
    width: 60px;
    height: 60px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 24px;
  }
}


/* FEATURE SECTION END */

/* SERVICE SECTION START */
        /* .service {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}

/* Slider container */
/* Container & Section */
.service {
  padding: 50px 20px;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
}

/* Slider */
.service-slider {
  overflow: hidden;
  position: relative;
}

.service-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Cards */
.service-card {
  flex: 0 0 auto; /* prevent shrinking */
  width: 250px; /* card width */
  margin-right: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 18px;
  color: #E30613;
  margin: 10px 0 5px;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* Buttons */
.btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#prevBtn, #nextBtn {
  background-color: #0066cc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

#prevBtn:hover, #nextBtn:hover {
  background-color: #004999;
} 

/* Responsive */
@media screen and (max-width: 1024px) {
  .service-card {
    width: 220px;
  }
}

@media screen and (max-width: 768px) {
  .service-card {
    width: 180px;
  }
}

@media screen and (max-width: 480px) {
  .service-card {
    width: 140px;
  }
}

/* SATISFICATION SECTION START */
.satisfication {
  background-image: url(images/slider/3.webp);
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
}

.satisfications-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.satisfication-cards {
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  /* optional for readability */
}

.satisfication-cards:hover {
  transform: translateY(-8px);
}

.satisfication-cards img {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.satisfication-cards h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #9c0606;
  margin: 10px 0;
}

.satisfication-cards p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
}

/* ========= Responsive ========= */

/* Tablet: 2 per row */
@media (max-width: 1024px) {
  .satisfications-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .satisfication-cards h1 {
    font-size: 2rem;
  }

  .satisfication-cards p {
    font-size: 1.2rem;
  }
}

/* Mobile: 1 per row */
@media (max-width: 600px) {
  .satisfications-main {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .satisfication-cards {
    padding: 20px 15px;
  }

  .satisfication-cards img {
    width: 70px;
    height: 70px;
  }

  .satisfication-cards h1 {
    font-size: 1.8rem;
  }

  .satisfication-cards p {
    font-size: 1rem;
  }
}

/* SATISFICATION SECTION END */

/* GALLERY SECTION START  */
.gallery {
  padding: 50px 20px;
  text-align: center;
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.gallery-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.gallery-container {
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  overflow: hidden;
  animation: scrollGallery 30s linear infinite;
  gap: 20px;
  width: max-content;
}
.gallery-cards {
  flex: 0 0 auto; /* prevent shrinking */
}
.gallery-cards img {
  width: 50%;
  width: 180px;   
  height: 280px;  
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.gallery-cards img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Lightbox Popup */
.lightbox {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center; 
  align-items: center; 
  flex-direction: column;
  padding: 20px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 75%;
  border-radius: 10px;
}

.caption {
  margin-top: 15px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
  .gallery-cards img {
    height: 180px;
  }
}

/* GALLERY SECTION END */

/* FORM SECTION */
/* Contact Section */
.contact {
  padding: 60px 20px;
  background: #d8d7d7;
  
}

.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
  max-width: 1200px;
  margin: auto;
}

/* Left side form */
.form-container {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

/* Submit button */
.sub-btn {
  width: 100%;
  padding: 12px;
  background: #c00202;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.sub-btn:hover {
  background: #9b0101;
}

/* Right side contact info */
.contact-home {
  flex: 1;
  min-width: 280px;
  max-width: 450px;
  height: auto; /* remove fixed height for flexibility */
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-home h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000000;
  text-align: center;
}

.contact-home p {
  margin: 10px 0;
  font-size: 18px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-home i {
  color: #c00202;
  font-size: 18px;
}

/* ========== Responsive Breakpoints ========== */

/* Tablet */
@media (max-width: 992px) {
  .contact .container {
    flex-direction: column; /* stack vertically */
    align-items: center;
  }

  .form-container, 
  .contact-home {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .contact {
    padding: 40px 15px;
  }

  .form-container {
    padding: 20px;
  }

  .contact-home {
    padding: 20px;
  }

  .contact-home h4 {
    font-size: 20px;
  }

  .contact-home p {
    font-size: 16px;
  }
}


/* <!-- FOOTER SECTION START --> */
.footer {
    background: #0f0c0c;
    color: #ecf0f1;
    padding: 40px 20px 20px;
}

/* Footer Container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Columns */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #E30613;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #ecf0f1;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #E30613;
    transition: 0.3s;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column i {
    margin-right: 8px;
    color: #E30613;
}

/* QR Code */
.qr-code img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid #E30613;
    background: #fff;
    padding: 5px;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 15px;
    border-top: 1px solid #394755;
    margin-top: 20px;
    font-size: 13px;
    color: #c4e2f7;
}

/* ========= Responsive Breakpoints ========= */

/* Tablets */
@media (max-width: 1024px) {
    .footer-container {
        gap: 20px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-column ul li a,
    .footer-column p {
        font-size: 13px;
    }

    .qr-code img {
        width: 100px;
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* stack columns */
        text-align: start;
        gap: 20px;
        margin-left: 20px;
    }

    .footer-column p,
    .footer-column a {
        text-align: start;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }

    .qr-code img {
        margin: 0 auto;
    }

    .footer-column ul {
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column p,
    .footer-column a {
        font-size: 12px;
    }

    .qr-code img {
        width: 80px;
        height: 80px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}
/* <!-- FOOTER SECTION END --> */