* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}


/* ===== LOADING SCREEN ===== */
#loader {
    position: fixed;
    inset: 0;
    background: #fff; /* dark background */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

/* CENTER WRAP */
.wrap {
    text-align: center;
}

/* TEXT */
.text {
    color: #a40000;
    display: inline-block;
    margin-left: 6px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* BALL */
.bounceball {
    position: relative;
    display: inline-block;
    height: 37px;
    width: 15px;
}

.bounceball::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px; /* <-- shift the ball left */
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #a40000;
    transform-origin: 50%;
    animation: bounce 0.5s alternate infinite ease;
}

/* ANIMATION */
@keyframes bounce {
    0% {
        top: 30px;
        height: 5px;
        border-radius: 60px 60px 20px 20px;
        transform: scaleX(2);
    }

    35% {
        height: 15px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}



/* ===== TOP HEADER ===== */
.top-header {
  background: #070707;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 80px 5px 80px;
}

/* LEFT */
/* ===== SOCIAL ICONS COLORS ===== */
.top-left i {
  font-size: 22px;
  margin-right: 18px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Facebook */
.top-left .fa-facebook-f {
  color: #1877f2;
}

/* LinkedIn */
.top-left .fa-linkedin-in {
  color: #0a66c2;
}

/* Instagram */
.top-left .fa-instagram {
  color: #e4405f;
}

/* WhatsApp */
.top-left .fa-whatsapp {
  color: #25d366;
}

/* Hover effect (professional & subtle) */
.top-left i:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}



/* CENTER */
.top-center{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* TEXT UNDER LOGO */
.logo-subtext{
  font-size:9px;
  margin-left: 240px;
  font-weight:100;
  letter-spacing:1px;
  color:#ffffff;
  line-height:1;
  transform: translateY(-20px);

}



/* CENTER */
.top-center img {
  width: 120px;
  height: 100px;
  margin-left: 240px;  
}



/* RIGHT */
.top-right {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.btn.blue {
  background: #a40000;
  color: #fff;
}

.btn.yellow {
  background: #a40000;
  color: #fff;
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang img {
  width: 18px;
}

:root {
      --mh-black: #070707;
      --mh-black-light: #111;
      --mh-white: #ffffff;
    }

    /* Hide mobile header on desktop */
    .mobile-header {
      display: none;
    }

    /* Remove underline for mobile nav links */
.mobile-header .mobile-nav__link,
.mobile-header .mobile-dropdown__link {
  text-decoration: none;
}

    /* ================= MOBILE HEADER ================= */
    @media (max-width: 425px) {

      .top-header {
        display: none;
      }

      /* HEADER */
      .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        background: var(--mh-black);
        z-index: 9999;
        font-family: "Montserrat", sans-serif;
      }

      /* Scoped reset only inside mobile header */
      .mobile-header * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      /* CONTAINER */
      .mobile-header .mobile-container {
        margin: 0;
        padding: 0 16px; /* padding inside container */
      }

      /* NAV */
      .mobile-header .mobile-nav {
        height: 86px;
      }

      .mobile-header .mobile-nav__data {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      /* LEFT: SOCIAL ICONS */
      .mobile-header .mobile-top-left {
        display: flex;
        align-items: center;
        gap: 9px;
      }

      .mobile-header .mobile-top-left i {
        font-size: 17px;
        cursor: pointer;
        transition: transform 0.2s ease, opacity 0.2s ease;
      }

      .mobile-header .mobile-top-left .fa-facebook-f { color: #1877f2; }
      .mobile-header .mobile-top-left .fa-linkedin-in { color: #0a66c2; }
      .mobile-header .mobile-top-left .fa-instagram { color: #e4405f; }
      .mobile-header .mobile-top-left .fa-whatsapp { color: #25d366; }

      .mobile-header .mobile-top-left i:hover {
        transform: translateY(-2px);
        opacity: 0.85;
      }

      /* CENTER: LOGO */
      .mobile-header .mobile-top-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        pointer-events: none;
        transform: translateX(-15px);
      }

      .mobile-header .mobile-top-center img {
        width: 72px;
        height: auto;
      }

      .mobile-header .mobile-logo-subtext {
        font-size: 9px;
        font-weight: 400;
        letter-spacing: 1px;
        color: var(--mh-white);
        text-align: center;
        line-height: 1.2;
        display: inline-block;
        transform: translateY(-9px);
      }

      /* RIGHT: TOGGLE */
      .mobile-header .mobile-nav__toggle {
        width: 32px;
        height: 32px;
        position: relative;
        cursor: pointer;
      }

      .mobile-header .mobile-nav__burger,
      .mobile-header .mobile-nav__close {
        position: absolute;
        inset: 0;
        margin: auto;
        color: var(--mh-white);
        font-size: 22px;
        transition: 0.3s;
      }

      .mobile-header .mobile-nav__close {
        opacity: 0;
      }

      .mobile-header .show-icon .mobile-nav__burger {
        opacity: 0;
      }

      .mobile-header .show-icon .mobile-nav__close {
        opacity: 1;
      }

      /* MENU */
      .mobile-header .mobile-nav__menu {
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        height: calc(100vh - 86px);
        background: var(--mh-black);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        overflow-x: hidden;
      }

      .mobile-header .mobile-nav__menu ul {
        width: 100%;
        list-style: none;
        overflow-x: hidden;
      }

      .mobile-header .show-menu {
        opacity: 1;
        pointer-events: auto;
      }

      .mobile-header .mobile-nav__link {
        color: var(--mh-white);
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--mh-black);
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
      }

      .mobile-header .mobile-nav__link:hover {
        background: var(--mh-black-light);
      }

      .mobile-header .mobile-nav__menu li {
        width: 100%;
        overflow-x: hidden;
      }

      /* DROPDOWN */
      .mobile-header .mobile-dropdown__menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
      }

      .mobile-header .mobile-dropdown__link {
        padding: 14px 16px 14px 32px;
        color: var(--mh-white);
        background: var(--mh-black-light);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
      }

    } /* end mobile */





/* ===== NAV MENU ===== */
.main-nav {
  background: #070707;
  padding: 1px 40px 15px 40px;
  display: flex;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  color: #acabab;
  text-decoration: none;
  font-size: 20px;
}

.main-nav a:hover {
  color: #ffffff;
}



/* ================= HERO CONTACT SECTION ================= */
.hero-contact {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("/Client/assets/images/landing-2.jpg") center center / cover no-repeat !important;
  display: flex;
  align-items: center;
}

.hero-About {
  position: relative;
  width: 100%;
  height: 500px;
  background: url("/Client/assets/images/landing-2.jpg") center center / cover no-repeat !important;
  display: flex;
  align-items: center;
}


.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  padding-left: 9%;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  margin: 0;
}



/* =================End HERO CONTACT SECTION ================= */




/* ================= HOME HERO SLIDER ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 475px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: 0;        /* remove left push */
  max-width: 720px;

  margin: 0 auto;         /* CENTER horizontally */
  text-align: center;     /* center text */
  align-items: center;    /* center flex items */
}


.hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1.6;
}


/* ===== HERO READ MORE BUTTON ===== */
/* ===== HERO BUTTON ===== */
.hero-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center; /* changed from flex-start to center */
  margin-top: 25px;
}

.hero-btn {
  background: #a40000;
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #000;
}




/* Initial state: hidden and moved slightly down */
.hero-content h1,
.hero-content p,
.hero-content .hero-btn-wrap {
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards; /* Keep final state after animation */
}

/* Animation keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate each element with delays */
.hero-slide.active .hero-content h1 {
  animation: fadeInUp 1s ease forwards 0.3s; /* 0.3s delay */
}

.hero-slide.active .hero-content p {
  animation: fadeInUp 1s ease forwards 0.8s; /* 0.8s delay */
}

.hero-slide.active .hero-content .hero-btn-wrap {
  animation: fadeInUp 1s ease forwards 1.3s; /* 1.3s delay */
}



 @media (max-width: 425px) {

  .hero-content h1 {
  font-size: 35px;
}


.hero-content p {
  font-size: 17px;
  line-height: 1.6;
}

 }

/* =================End HOME HERO SLIDER ================= */



/* ======================= Why Choose ==================== */

.why-choose {
  padding: 50px 10%;
  text-align: center;
  background: #ffffff;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 60px;
}

.why-items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.why-item {
  flex: 1;
  min-width: 220px;
}

.circle {
  width: 70px;
  height: 70px;
  background: #111111;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-item h4 {
  font-size: 18px;
  color: #a40000;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.why-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}


/* ===== INITIAL STATES ===== */
.why-choose h2,
.why-item .circle,
.why-item h4,
.why-item p {
  opacity: 0;
  transform: translateY(20px); /* start slightly lower */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== WHEN SECTION IS IN VIEW ===== */
.why-choose.show h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* Circles: staggered */
.why-choose.show .why-item:nth-child(1) .circle { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.why-choose.show .why-item:nth-child(2) .circle { opacity: 1; transform: translateY(0); transition-delay: 1.1s; }
.why-choose.show .why-item:nth-child(3) .circle { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
.why-choose.show .why-item:nth-child(4) .circle { opacity: 1; transform: translateY(0); transition-delay: 1.7s; }

/* h4 titles: after circles */
.why-choose.show .why-item:nth-child(1) h4 { opacity: 1; transform: translateY(0); transition-delay: 1.1s; }
.why-choose.show .why-item:nth-child(2) h4 { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
.why-choose.show .why-item:nth-child(3) h4 { opacity: 1; transform: translateY(0); transition-delay: 1.7s; }
.why-choose.show .why-item:nth-child(4) h4 { opacity: 1; transform: translateY(0); transition-delay: 2.0s; }

/* p paragraphs: after h4 */
.why-choose.show .why-item:nth-child(1) p { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
.why-choose.show .why-item:nth-child(2) p { opacity: 1; transform: translateY(0); transition-delay: 1.7s; }
.why-choose.show .why-item:nth-child(3) p { opacity: 1; transform: translateY(0); transition-delay: 2.0s; }
.why-choose.show .why-item:nth-child(4) p { opacity: 1; transform: translateY(0); transition-delay: 2.3s; }

/* =======================End Why Choose ==================== */


/* ======================= Product-Categories ==================== */


.product-categories {
  padding: 50px 8%;
  background: #ffffff;
  text-align: center;
}

.product-categories h2 {
  font-size: 30px;
  color: #2b2b2b;
  margin-bottom: 50px;
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 15px;
}

.category-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden; /* required */

  display: flex;
  flex-direction: column;
}


.category-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 8px 8px 0 0;
}


.category-card h4 {
  font-size: 15px;
  color: #a40000;
  margin: 15px 0 10px;
  font-weight: 600;
  padding: 0 15px;
}

.category-card p {
  font-size: 13px;
  color: #2b2b2b;
  line-height: 1.6;
  padding: 0 15px 15px;
  margin: 0; /* 🔥 removes extra space */

    /* 🔥 forces same height */
  min-height: 80px;
}


/* ===== READ MORE BUTTON ===== */
.read-more{
  margin: 0 15px 18px;
  padding: 9px 0;
  width: calc(100% - 30px);
  background: #a40000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: auto;
}

.read-more:hover{
  background: #7e0000;
}

/* ===== MODAL ===== */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9999;
}

.modal-overlay.active{
  opacity: 1;
  visibility: visible;
}

.modal-box{
  background: #fff;
  max-width: 420px;
  width: 90%;
  padding: 30px;
  border-radius: 8px;
  position: relative;
}

.modal-box h3{
  color: #a40000;
  margin-bottom: 12px;
}

.modal-box p{
  font-size: 14px;
  line-height: 1.6;
  color: #2b2b2b;
}

.modal-close{
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}




.category-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When in view, add a class */
.category-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: stagger effect */
.category-card:nth-child(1).show { transition-delay: 0.2s; }
.category-card:nth-child(2).show { transition-delay: 0.4s; }
.category-card:nth-child(3).show { transition-delay: 0.6s; }
.category-card:nth-child(4).show { transition-delay: 0.8s; }
.category-card:nth-child(5).show { transition-delay: 1s; }



/* =======================End Product-Categories ==================== */



/* ================ COUNTER SECTION ==================== */
.counter-section {
  background: #ffffff;
  padding: 30px 0;
}

.counter-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

/* Individual box */
.counter-box {
  padding: 20px 10px;
}

/* Remove last border */
.counter-box:last-child {
  border-right: none;
}

/* Numbers */
.counter-box h2 {
  font-size: 40px;
  font-weight: 550;
  color: #a40000;
  margin-bottom: 6px;
}

/* Labels */
.counter-box p {
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 1.5px;
  color: #111111;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .counter-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-box {
    border-right: none;
    border-bottom: 1px solid #e2e2e2;
  }

  .counter-box:nth-child(3),
  .counter-box:nth-child(4) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .counter-container {
    grid-template-columns: 1fr;
  }

  .counter-box {
    border-bottom: 1px solid #e2e2e2;
  }

  .counter-box:last-child {
    border-bottom: none;
  }
}




/* ================End COUNTER SECTION ==================== */


/* ===================== MAP SECTION ================= */
/* ================= MAP SECTION ================= */
.map-section {
  background: #ffffff;
  padding: 40px 0 60px;
}

/* Title above map */
.map-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 20px;
}

/* Wrapper to create side spacing */
.map-wrapper {
  max-width: 1300px;   /* controls left/right space */
  margin: 0 auto;     /* center the map */
  padding: 0 20px;    /* small inner spacing */
}

/* Actual map container */
#worldMap {
  width: 100%;
  height: 480px;
  background: #eaf2f5; /* fallback background */
  border-radius: 4px;
  overflow: hidden;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  #worldMap {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    padding: 0 15px;
  }

  #worldMap {
    height: 360px;
  }
}

@media (max-width: 480px) {
  #worldMap {
    height: 300px;
  }

  .map-title {
    font-size: 16px;
  }
}



/* =====================END MAP SECTION ================= */



/* ================= FOOTER ================= */
.footer {
  background: #070707;
  color: #cccccc;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Footer columns */
.footer-col h4 {
  color: #a40000;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}


/* Links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* Icons */
.footer-col i {
  margin-right: 8px;
  color: #ffffff;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a i {
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Brand Colors */
.footer-social a.facebook i { color: #1877F2; }   /* Facebook Blue */
.footer-social a.linkedin i { color: #0A66C2; }   /* LinkedIn Blue */
.footer-social a.instagram i { 
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-social a.whatsapp i { color: #25D366; }   /* WhatsApp Green */

/* Optional hover effect */
.footer-social a:hover i {
  transform: translateY(-3px);
  opacity: 0.8;
}



/* Bottom Bar */
.footer-bottom {
  background: #a40000;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
  color: #aaaaaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social a {
    margin: 0 8px;
  }
}



/* =================End FOOTER ================= */




/* ================= Contact section ================= */

.contact-section {
  padding: 70px 20px;
  background: #fff;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT FORM */
.contact-form {
  max-width: 650px;
}

.form-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 13px;
  color: #333;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.form-row textarea {
  resize: vertical;
}

/* RIGHT INFO CARD */
.contact-info {
  background: #fafafa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.contact-info h3 {
  font-size: 16px;
  margin-bottom: 25px;
  color: #111;
  line-height: 1.5;
}

/* Info rows */
.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.info-icon {
  width: 36px;
  height: 36px;
  background: #a40000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.info-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* SOCIAL */
.social-box {
  margin-top: 30px;
}

.social-box p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icons a:hover {
  background: #a40000;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row label {
    margin-bottom: 4px;
  }
}



/* ===== INITIAL STATES ===== */
.contact-form,
.contact-info,
.contact-info .info-item,
.contact-info .social-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== WHEN SCROLL INTO VIEW ===== */
.contact-section.show .contact-form {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.contact-section.show .contact-info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Info items staggered using nth-of-type so h3 doesn't interfere */
.contact-section.show .contact-info .info-item:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.contact-section.show .contact-info .info-item:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.contact-section.show .contact-info .info-item:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/* Social box appears last */
.contact-section.show .contact-info .social-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

/* Optional: form input focus */
.contact-form input,
.contact-form textarea {
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a40000;
  box-shadow: 0 0 6px rgba(164,0,0,0.4);
}


/* =================End Contact section ================= */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* SECTION */
.vm-section {
  width: 100%;
  position: relative;
  padding: 40px 0; /* space top & bottom */
}

/* WRAPPER */
.vm-wrapper {
  display: flex;
  width: 100%;
  min-height: 420px;
  position: relative;
}

/* LEFT */
.vm-left {
  width: 50%;
  background: #a40000;
  color: #fff;
  padding: 140px 80px;
}

/* RIGHT */
.vm-right {
  width: 50%;
  background: #ffffff;
  color: #111111;
  padding: 140px 80px;
}

/* TEXT SHIFT TO RIGHT */
.vm-content {
  margin-left: 50px;
}

/* TEXT STYLES */
.vm-content h2 {
  font-size: 28px;
  margin-bottom: 7px;
}

.vm-content p {
  max-width: 420px;
  line-height: 1.7;
  font-size: 16px;
}

/* CENTER COIN */
.vm-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* FLIP CARD */
.flip-card {
  width: 140px;
  height: 140px;
  perspective: 1000px;
}

.flip-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}

.flip-card.flip .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
  background: radial-gradient(circle, #fff, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.flip-front img,
.flip-back img {
  width: 170px;
  transform: translateX(-5px); /* move logo slightly LEFT */
}

.flip-back {
  transform: rotateY(180deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vm-wrapper {
    flex-direction: column;
  }

  .vm-left,
  .vm-right {
    width: 100%;
    padding: 60px 30px;
  }

  .vm-content {
    margin-left: 0;
  }

  .vm-center {
    position: relative;
    transform: none;
    margin: 40px auto;
  }
}



@media (max-width: 425px) {

  .vm-content p {
  max-width: 420px;
  font-size: 14px;
}

.vm-content h2 {
  font-size: 22px;
  margin-bottom: 7px;
}

.vm-center {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* FLIP CARD */
.flip-card {
  width: 110px;
  height: 110px;
}

.flip-front img,
.flip-back img {
  width: 140px;
  transform: translateX(-2px); /* move logo slightly LEFT */
}


}



/* ===== INITIAL STATES ===== */
.vm-left,
.vm-right {
  opacity: 0;
  transform: translateY(20px); /* slide up slightly */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Center coin stays in place, only fades */
.vm-center {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* ===== WHEN SECTION SCROLLS INTO VIEW ===== */
.vm-section.show .vm-left {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.vm-section.show .vm-right {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.vm-section.show .vm-center {
  opacity: 1; /* fade only */
  transition-delay: 0.6s;
}



/* ================= ABOUT INFO SECTION ================= */

.about-info {
  background: #fff;
  padding: 70px 8%;
}

.about-container {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.about-box {
  flex: 1;
  color: #111111;
}

.about-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.about-box p {
  line-height: 1.8;
  font-size: 15px;
}

.about-box ul {
  padding-left: 18px;
  line-height: 1.9;
  font-size: 15px;
}



/* ===== INITIAL STATES ===== */
.about-box {
  opacity: 0;
  transform: translateY(20px); /* start slightly lower */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== WHEN SECTION SCROLLS INTO VIEW ===== */
.about-info.show .about-box:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.about-info.show .about-box:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.about-info.show .about-box:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* =================End ABOUT INFO SECTION ================= */




/* ================= MK WHY SECTION ================= */


.mk-why-section {
  width: 100%;
  background: #ffffff;
  padding-bottom: 80px;
}

.mk-why-header {
  background: #a40000;
  padding: 25px 0;
  text-align: center;
}

.mk-why-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

/* Grid */
.mk-why-grid {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}

/* Card */
.mk-why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon Circle */
.mk-why-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Individual Icon Sizes */
.icon-clock {
  width: 120px;  /* adjust as needed */
  height: 120px;
}

.icon-rd {
  width: 120px;  /* adjust as needed */
  height: 120px;
}

.icon-design {
  width: 120px;  /* adjust as needed */
  height: 120px;
}

/* Text */
.mk-why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #111111;
  max-width: 320px;
}

/* Responsive */
@media (max-width: 900px) {
  .mk-why-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}



/* ===== INITIAL STATES ===== */
.mk-why-header h2,
.mk-why-card .mk-why-icon,
.mk-why-card p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== WHEN SECTION SCROLLS INTO VIEW ===== */
.mk-why-section.show .mk-why-header h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Icons: staggered */
.mk-why-section.show .mk-why-card:nth-child(1) .mk-why-icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.mk-why-section.show .mk-why-card:nth-child(2) .mk-why-icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.mk-why-section.show .mk-why-card:nth-child(3) .mk-why-icon {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

/* Text: after icons */
.mk-why-section.show .mk-why-card:nth-child(1) p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.mk-why-section.show .mk-why-card:nth-child(2) p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}
.mk-why-section.show .mk-why-card:nth-child(3) p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}


/* =================End MK WHY SECTION ================= */






/* =============== SEND YOUR DESIGN SECTION ================= */
.design-request-section {
  background: #eef0f3;
  padding: 80px 20px;
}

.design-container {
  max-width: 700px;
  margin: auto;
}

.design-title {
  text-align: center;
  font-size: 34px;
  color: #a40000;
  margin-bottom: 20px;
}

.design-desc {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

/* ===== FORM ===== */
.design-form {
  width: 100%;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}

.form-row label span {
  color: red;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  outline: none;
}

.form-row input[type="file"] {
  padding: 7px;
  background: #fff;
}

.form-row textarea {
  resize: none;
}

/* ===== SUBMIT BUTTON ===== */
.form-submit {
  text-align: right;
  margin-top: 25px;
}

.form-submit button {
  background: #a40000;
  color: #FFF;
  border: none;
  padding: 10px 26px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 3px;
}

.form-submit button:hover {
  background: #e0a800;
}


/* ================= DESIGN REQUEST ANIMATION ================= */

/* Initial hidden state */
.design-title,
.design-desc,
.design-form .form-row,
.design-form .form-submit {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Title */
.design-request-section.show .design-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Description */
.design-request-section.show .design-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Form rows – staggered */
.design-request-section.show .form-row:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.design-request-section.show .form-row:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}
.design-request-section.show .form-row:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}
.design-request-section.show .form-row:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}
.design-request-section.show .form-row:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.design-request-section.show .form-row:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.35s;
}

/* Submit button */
.design-request-section.show .form-submit {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.55s;
}


/* ===============END SEND YOUR DESIGN SECTION ================= */



/* =====================================================
   ELEVATOR BUILDER (PREVIEW + SELECTORS TOGETHER)
===================================================== */

.elevator-builder {
  background: #fff;
  padding: 60px 0 80px;
}

/* ================= ELEVATOR PREVIEW ================= */

.elevator-preview-section {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

/* WRAPPER */
.elevator-wrapper {
  position: relative;
  width: 320px;
  height: 520px;
}

/* ================= CEILING ================= */

.elevator-ceiling {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.elevator-ceiling img {
  width: 285px;
  display: block;
  pointer-events: none;
}


/* Move specific ceilings slightly down */
.elevator-ceiling img[src*="Ceiling-13.png"],
.elevator-ceiling img[src*="Ceiling-14.png"],
.elevator-ceiling img[src*="Ceiling-15.png"],
.elevator-ceiling img[src*="Ceiling-16.png"],
.elevator-ceiling img[src*="Ceiling-17.png"]
{
  position: relative;   /* allow offset without breaking layout */
  top: 8px;             /* move down 5px, adjust as needed */
}

.elevator-ceiling img[src*="Ceiling-17.png"]
{
  position: relative;   /* allow offset without breaking layout */
  top: 4px;             /* move down 5px, adjust as needed */
}
.elevator-ceiling img[src*="Ceiling-18.png"] {
  position: relative;   /* allow offset without breaking layout */
  top: 6px;             /* move down 5px, adjust as needed */
}


/* ================= WALLS ================= */

.elevator-walls {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.elevator-walls img {
  width: 280px;
  height: 340px;
  display: block;
  pointer-events: none;
  
}

/* ================= FLOOR ================= */

.elevator-floor {
  position: absolute;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.elevator-floor img {
  width: 280px;
  display: block;
  pointer-events: none;
}


/* Move specific floors slightly */
.elevator-floor img[src*="Floor-17.png"] {
  position: relative;
  top: -16px;   /* moves floor 16 slightly up */
  left: -1px; /* slight left shift to compensate for wider floor */
  transform: rotate(-2deg); /* negative = left/counterclockwise */
}

.elevator-floor img[src*="Floor-22.png"] {
  position: relative;
   width: 290px;
   left: -5px; /* slight left shift to compensate for wider floor */
  top: -11px;   /* moves floor 21 slightly up */
  transform: rotate(-2deg); /* negative = left/counterclockwise */

}

.elevator-floor img[src*="Floor-24.png"] {
  position: relative;
  width: 300px;
  top: -12px;   /* moves floor 22 slightly up */
  transform: rotate(-2deg); /* negative = left/counterclockwise */
}


/* ================= SELECTORS ================= */

.elevator-selectors {
  text-align: center;
  padding: 0 20px;
}

/* TITLES */
.selector-title {
  font-size: 30px;
  color: #0b2a6a;
  margin: 35px 0 15px;
  font-weight: 500;
}

/* ROWS */
.selector-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* THUMBNAILS */
.selector-row img {
  width: 125px;
  height: 90px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 4px;
}

.selector-row img:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ACTIVE STATE (FOR JS LATER) */
.selector-row img.active {
  outline: 2px solid #a40000;
  outline-offset: 3px;
}

/* WALLS THUMBNAILS ARE WIDER */
.walls-row img {
  width: 105px;
  height: 120px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .elevator-wrapper {
    width: 260px;
    height: 440px;
  }

  .elevator-ceiling img,
  .elevator-floor img {
    width: 240px;
  }

  .elevator-walls img {
    width: 235px;
  }
}


@media (max-width: 425px) {

/* ================= CEILING ================= */

.elevator-ceiling {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.elevator-ceiling img {
  width: 245px;
  display: block;
  pointer-events: none;
}


/* Move specific ceilings slightly down */
.elevator-ceiling img[src*="Ceiling-13.png"],
.elevator-ceiling img[src*="Ceiling-14.png"],
.elevator-ceiling img[src*="Ceiling-15.png"],
.elevator-ceiling img[src*="Ceiling-16.png"],
.elevator-ceiling img[src*="Ceiling-17.png"]
{
  position: relative;   /* allow offset without breaking layout */
  top: 8px;             /* move down 5px, adjust as needed */
}

.elevator-ceiling img[src*="Ceiling-17.png"]
{
  position: relative;   /* allow offset without breaking layout */
  top: 4px;             /* move down 5px, adjust as needed */
}
.elevator-ceiling img[src*="Ceiling-18.png"] {
  position: relative;   /* allow offset without breaking layout */
  top: 6px;             /* move down 5px, adjust as needed */
}


/* ================= WALLS ================= */

.elevator-walls {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.elevator-walls img {
  width: 245px;
  height: 340px;
  display: block;
  pointer-events: none;
  
}

/* ================= FLOOR ================= */

.elevator-floor {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.elevator-floor img {
  width: 245px;
  display: block;
  pointer-events: none;
}


/* Move specific floors slightly */
.elevator-floor img[src*="Floor-17.png"] {
  position: relative;
  top: -16px;   /* moves floor 16 slightly up */
  left: -1px; /* slight left shift to compensate for wider floor */
  transform: rotate(-2deg); /* negative = left/counterclockwise */
}

.elevator-floor img[src*="Floor-22.png"] {
  position: relative;
   width: 290px;
   left: -5px; /* slight left shift to compensate for wider floor */
  top: -11px;   /* moves floor 21 slightly up */
  transform: rotate(-2deg); /* negative = left/counterclockwise */

}

.elevator-floor img[src*="Floor-24.png"] {
  position: relative;
  width: 300px;
  top: -12px;   /* moves floor 22 slightly up */
  transform: rotate(-2deg); /* negative = left/counterclockwise */
}


}




/* ===================== Elevator HERO SECTION ================= */

/* ================= HERO CLONE ================= */

/* ===== HERO WRAPPER ===== */
.mkCloneHero{
  position:relative;
  height:520px;
  background:#efefef;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:Arial, sans-serif;
}

/* ===== CONTENT ===== */
.mkCloneHero-content{
  position:relative;
  z-index:5;
  max-width:850px;
  padding:20px;
  transform: translateY(-10px);
}

.mkCloneHero-content h1{
  font-size:34px;
  color:#a40000;
  margin-bottom:14px;
}

.mkCloneHero-content p{
  color:#333;
  line-height:1.6;
}

/* ===== TOP LEFT RED CIRCLE ===== */
.mkCloneHero-top{
  position:absolute;
  top:-60px;
  left:60px;
  width:160px;
  height:160px;
  background:#a40000;
  border-radius:50%;
  z-index:3;
}

/* ===== TOP LEFT GREY CIRCLE (NEW) ===== */
.mkCloneHero-topGrey{
  position:absolute;
  top:-30px;
  right:-30px;
  width:160px;
  height:160px;
  background:#8893b2;
  border-radius:50%;
  opacity:0.5;
  z-index:2;
}

/* ===== YELLOW DOT GRID ===== */
.mkCloneHero-dotGrid{
  position:absolute;
  top:70px;
  left:140px;
  width:120px;
  height:120px;
  background-image:radial-gradient(#111111 4px, transparent 4px);
  background-size:18px 18px;
  z-index:4;
}

/* ===== LEFT GREY FLOATING CIRCLE ===== */
.mkCloneHero-greyCircle{
  position:absolute;
  top:90px;
  left:20px;
  width:120px;
  height:120px;
  background:#8893b2;
  border-radius:50%;
  opacity:.7;
  animation: floatSide 15s ease-in-out infinite;
}

/* FLOAT KEYFRAMES */
@keyframes floatSide{
  0%{ transform:translateX(0); }
  50%{ transform:translateX(80px); }
  100%{ transform:translateX(0); }
}

/* ===== RIGHT DASHED CIRCLES ===== */
.mkCloneHero-dashed{
  position:absolute;
  right:70px;
  top:120px;
  width:160px;
  height:160px;
}

.mkCloneHero-dashed span{
  position:absolute;
  border:2px dashed #111111;
  border-radius:50%;
  animation: rotateCW 70s linear infinite;
}

/* OUTER – clockwise */
.mkCloneHero-dashed span:nth-child(1){
  width:160px;
  height:160px;
  top:0;
  left:0;
}

/* MIDDLE – counter clockwise */
.mkCloneHero-dashed span:nth-child(2){
  width:110px;
  height:110px;
  top:25px;
  left:25px;
  animation: rotateCCW 70s linear infinite;
}

/* INNER – clockwise */
.mkCloneHero-dashed span:nth-child(3){
  width:60px;
  height:60px;
  top:50px;
  left:50px;
}

/* ROTATION */
@keyframes rotateCW{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

@keyframes rotateCCW{
  from{ transform:rotate(360deg); }
  to{ transform:rotate(0deg); }
}



/* ===== BOTTOM DOT LINE (MOVED UP) ===== */
/* .alamxCloneHero-bottomDots{
  position:absolute;
  right:40px;
  bottom:90px;
  width:220px;
  height:8px;
  background-image:radial-gradient(#111111 3px, transparent 3px);
  background-size:20px 8px;
} */


@media (max-width: 425px) {

  
.mkCloneHero-top{
 display: none;
}



.mkCloneHero-topGrey{
 display: none;
}


.mkCloneHero-dotGrid{
display: none;

}


.mkCloneHero-dashed{
display: none;
}


.mkCloneHero-greyCircle{
display: none;
}


}



/* =====================End Elevator HERO SECTION ================= */
