/* ----------------------------------------------------GLOBAL----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

body, html {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-color: rgba(0,0,0,0.6);
    /* background-color: #fff; */
    background-size: cover;
}
html {
  scroll-behavior: smooth;
}


:root {
    --white-show:#fff;
    --forest-green:#345e42;
    --subset-orange:#ff911b;
    --slate-gray:#5c5c5c;
    --charcoal-black:#2e2e2e;
    --pg-color:#bcbcbc;
}

/* ----------------------------------------------------SECTION----------------------------------------------------- */

.section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 8%;
    gap: 50px;
    position: relative;
}

.section_page {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.After_effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    height: 200%;
    width: 20px;
    background-color: #fff;
    filter: blur(20px);
    transform: rotate(30deg);
    transition: .6s;
}

.After_effect:hover:after {
    left: 150%;
    transform: rotate(30deg) translateY(80px);
}

.section_page img {
    width: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.section_title {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    flex-direction: column;
    gap: 30px;
}

.section_title h1 {
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 6rem;
    color: var(--white-show);
    font-family: 'Marcellus', serif;
}

.section_title h2 {
    font-size: 2.5rem;
    font-family: 'Marcellus';
    color: #ff8400b8;
    text-shadow: 1.4px 1.4px var(--white-show);
    letter-spacing: 1px;
}

.section_title p {
    color: var(--pg-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 2rem;
}

/* ----------------------------------------------------NAVBAR SECTION----------------------------------------------------- */
nav {
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 5%;
    /* background-color: rgba(0,0,0,0.7); */
    background-color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.sticky_nav {
    box-shadow: 0 8px 10px #b3fbac57;
}

.logo {
    width: 200px;
    cursor: pointer;
}

.logo img {
    width: 140%;
    max-width: 600px;
    margin-left: -60px;
    object-fit: contain;
}

.ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ul li .button {
    background-color: transparent;
    font-family: 'Urbanist', sans-serif;
    color: var(--white-show);
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: 0.1s;
}

.button:before {
    content: '';
    border-radius: 1px;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: transparent;
    left: -10%;
    top: 19px;
    transform: rotate(225deg);
    transition: 0.3s;
    z-index: -1;
}

.button:hover:before {
    transform: rotate(0deg);
    width: 100%;
    height: 40px;
    top: -1px;
    left: -2px;
    border-radius: 3px;
    background-color: #fff;
}

.ul li .button .p {
    /* color: var(--white-show); */
    color: #0a0a0a;
    letter-spacing: 1px;
}

.ul li .button:hover .p {
    color: #222;
}

/* Enquire Button */
.btn1 {
    height: 50px;
    width: 200px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--subset-orange);
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--white-show);
    box-shadow: 4px 4px 3px #272727dd, inset 4px 4px 25px #ff7403dd;
    transform: scale(0.9);
    cursor: pointer;
}

.btn1:active {
    transform: scale(1.1);
}

/* Toggle Menu Icons */
.ri-menu-5-fill, .ri-close-large-line {
    font-size: 28px;
    /* color: var(--white-show); */
    color: #0a0a0a;
    cursor: pointer;
    display: none;
    z-index: 1000;
}
/* .ri-close-large-line{
  color:#ff8400b8;
} */

/* ------------------- MOBILE NAV ------------------- */

@media (max-width: 992px) {
    .ri-menu-5-fill {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .ri-close-large-line {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        /* color: var(--white-show); */
        color:#ff8400b8;
        cursor: pointer;
        z-index: 1002;
    }

    .ul.active ~ .ri-close-large-line {
        display: block;
    }

    .ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* background-color: rgba(0,0,0,0.95); */
        background-color: rgba(255,255,255,0.6);
        gap: 25px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .ul.active {
        right: 0;
    }
}

/* ----------------------------------------------------HERO/BANER SECTION----------------------------------------------------- */

.hero_slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* sab slides ek line me full screen */
.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%); /* by default sab right me */
  transition: transform 1s ease-in-out;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* 👈 transparent black */
  z-index: 1; /* image ke upar, text ke neeche */
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* full screen clear */
  z-index: 0;
}

/* Active slide beech me */
.slide.active {
  transform: translateX(0);
  z-index: 2;
}

/* Previous slide left side chala jaye */
.slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

/* =========================
   ========================= */
.hero_title {
  position: absolute;
  top: 70%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  max-width: 500px;
}

.hero_title h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px; /* line ke liye gap */
}

.hero_title h1::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 1px;
  height: 140%;
  background: #ff7403dd; /* orange line */
}

.hero_title p {
  font-size: 1rem;
  margin-left: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #ddd;
  line-height: 1.6;
}

.hero_title .btn1 {
  background: #ff7403dd;
  color: #fff;
  /* padding: 14px 28px; */
  padding: 12px 20px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero_title .btn1:hover {
  background: #ff7403dd;
}

/*-----------------SOCIAL ICONS--------------*/

.social-icons {
  position: fixed;
  top: 30%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--subset-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 20px;
}

.social-icons a:hover {
  background: #fff;
  color: var(--subset-orange);
}

/*---------------------ENQUIRY MODAL---------------------*/


/* Form ke andar sabhi elements par apply hoga */
.enquiry-modal, 
.enquiry-modal input, 
.enquiry-modal select, 
.enquiry-modal button {
font-family: 'Poppins', sans-serif; 
}

/* Agar aap Google Fonts use karna chahte hain */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.enquiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
}

.enquiry-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-modal {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s ease;
    
}

.enquiry-overlay.show .enquiry-modal {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    background: var(--subset-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 18px;
    position: relative;
    color: #fff;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.close-enquiry {
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.close-enquiry:hover {
    color: #ffdddd;
}

.enquiry-modal form { 
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.enquiry-modal input,
.enquiry-modal textarea,
.enquiry-modal select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s;
}

.enquiry-modal input:focus,
.enquiry-modal textarea:focus,
.enquiry-modal select:focus {
    border-color: var(--subset-orange);
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.4);
}

.enquiry-modal button {
    background: var(--subset-orange);
    color: #fff;
    border: none;
    padding: 14px 0;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    width: 60%;
    max-width: 250px;
    align-self: center;
    text-align: center;
    transition: background 0.3s;
}

.enquiry-modal button:hover {
    background: #ff7403dd;
}

/*-----------------------------------------------------ABOUT SECTION-----------------------------------------------------*/

.about-section {
    color: #fff;
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../Uploads/about.png") no-repeat center center/cover;
    filter: brightness(0.6);
    z-index: 0;
}

.about-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5%;
    height: 100%;
    z-index: 2;
}

.about-image {
    flex: 1.2;
    height: 100%;
}

.about-image img {
    margin-top: 60px;
    width: 100%;
    height: 80%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.about-content {
    flex: 1;
    margin-top: -40px;
}

.about-content h3 {
    color: #ff7403dd;
    font-size: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
}


.about-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content .highlight {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #eee;
}

.about-content p {
    margin-bottom: 15px;
    color: #ddd;
    line-height: 1.6;
}

.learn-btn {
    padding: 14px 34px;
    background-color: #ff7403dd;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-btn:hover {
    background-color: #ff7403dd;
    transform: scale(1.05);
}

/* ------------------- MEDIA QUERIES ------------------- */

@media (max-width: 992px){
    .section, .hero_wrapper {
        padding: 50px 5%;
    }
    .section_title, .section_page,
    .about-image, .about-content {
        width: 100%;
        margin: 0;
    }
    .about-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 900px){
    .hero_title h1 {
        font-size: 32px;
        line-height: 1.4;
    }
    .hero_title p {
        font-size: 16px;
    }
}


@media (max-width: 576px) {
  .hero_title {
    top: 55%; 
    left: 5%;
    max-width: 90%;
    transform: translateY(-50%);
    position: absolute;
    display: flex;
    flex-direction: column; 
    gap: 12px; 
  }
  .about-content h1 {
        font-size: 26px;
    }
  .about-content p {
        font-size: 15px;
    }
   
  .learn-btn{
    width: 100%;
   }

  .hero_title h1 {
    font-size: 27px;
    padding-left: 15px;
    margin-bottom: 0; 
  }
  
  .hero_title p {
    font-size: 14px;
    margin: 0; 
    text-align: left; 
    line-height: 1.5;
    padding-left: 10px;
  }

  .hero_title .btn1 {
    width: 70%;
    padding: 10px 20px;
    font-size: 14px;
    align-self: flex-start; 
    margin-left: -10px;
  }
}


@media (max-width: 576px) {
  .about-container {
    flex-direction: column;      
    align-items: center;          
    gap: 20px;
    padding: 0 10px;
  }

  .about-content {
    width: 100%;                  
    text-align: center;
  }

  .learn-btn {
    margin-bottom: 10px;
    margin-left: 120px;
    display: block;               
    width: 40%;                  
    max-width: 100%;
    padding: 14px 0;              
    box-sizing: border-box;
    font-size: 16px;
  }
}

/*-------------WhatsApp Floating Button--------------------*/

  .whatsapp-float {
    position: fixed;
    bottom: 20px;  
    left: 20px;
    z-index: 1000;
  }

  .whatsapp-float img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    background: #25D366; 
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .whatsapp-float img:hover {
    transform: scale(1.1);
  }

  @media (max-width: 600px) {
    .whatsapp-float img {
      width: 40px;
      height: 40px;
      padding: 6px;
    }
  }

  /*---------------------------------------------------Phone Icon Section----------------------------------------*/
 .phone-float {
  position: fixed;
  left: 20px;
  bottom: 90px;
  background: #ff6a00;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}
.phone-float:hover {
  background: #e65c00;
  transform: scale(1.1);
}

/* ----------------------------------------------------CONTAINER SECTION----------------------------------------------------- */

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 50px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 45px;
    }
    

    /* Left Text Section */
    .text-section {
      flex: 1 1 500px;
      animation: fadeInLeft 1s ease-in-out;
    }

    .text-section h1 {
      font-size: 2.5rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif; /* Heading font */
      margin-bottom: 20px;
      color: #fff;
    }

    .text-section span {
      color: #ff7403dd;
    }
    .text-section p {
      font-size: 1.08rem;
      margin-bottom: 30px;
      color: #fff;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: #ff7403dd;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      font-family: 'Open Sans', sans-serif;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background: #111;
      transform: translateY(-3px);
    }

    /* Right Image Section */
    .image-section {
      flex: 1 1 500px;
      position: relative;
      animation: fadeInRight 1s ease-in-out;
    }

    .image-section img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.4s ease;
    }

    .image-section img:hover {
      transform: scale(1.05);
    }

    .image-section .small-img {
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 50%;
      border: 4px solid #fff;
      border-radius: 8px;
      animation: float 3s ease-in-out infinite;
    }

    /* Stats Section */
  .stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 20px auto;
  padding: 30px 20px;
  max-width: 1550px;
  /* max-width: 1000px; */
  border-radius: 16px;

  /* 🔹 White Transparent Background */
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1.5s ease;
  transition: all 0.3s ease;
}

/* Hover effect for glow */
.stats:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

    .stat {
      text-align: center;
      flex: 1 1 200px;
    }

    .stat h2 {
      font-size: 2.8rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
      margin-bottom: 8px;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .stat h2:hover {
      transform: scale(1.2);
      color: #ff7403dd;
    }

    .stat p {
      color: #fff;
      font-size: 1.05rem;
      font-weight: 500;
      font-family: 'Open Sans', sans-serif;
    }

    /* Divider Line */
    .divider {
      width: 180px;
      height: 4px;
      margin: 20px auto 60px;
      border-radius: 2px;
      background: linear-gradient(90deg, #ff6b00, #ff9900, #ff6b00);
      animation: growLine 1.5s ease;
    }

    /* Animations */
    @keyframes fadeInLeft {
      from {opacity: 0; transform: translateX(-50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeInRight {
      from {opacity: 0; transform: translateX(50px);}
      to {opacity: 1; transform: translateX(0);}
    }

    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(40px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    @keyframes growLine {
      from { width: 0; opacity: 0; }
      to { width: 180px; opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .text-section h1 {
        font-size: 2.5rem;
      }
      .stat h2 {
        font-size: 2.4rem;
      }
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        text-align: center;
      }

      .image-section {
        margin-top: -150px;
      }

      .image-section .small-img {
        position: static;
        width: 70%;
        margin: 20px auto 0;
        display: block;
      }

      .text-section h1 {
        font-size: 2rem;
      }

      .stat h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 480px) {
      .text-section h1 {
        font-size: 1.7rem;
      }
      .stat h2 {
        font-size: 2rem;
      }
      .stat p {
        font-size: 0.95rem;
      }
    }

/*----------------------------------------------------SERVICES CONTAINER-----------------------------------------------------*/

.services-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding: 20px 0;
  /* background: linear-gradient(135deg, #f9f9f9, #f1f1f1); */
}

.services-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 25s linear infinite;
  will-change: transform;
}

.service-card {
  min-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card .content {
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  color: #ff7403dd;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Auto Scroll Animation */
@keyframes scroll {
  0% {
     transform: translateX(0);
     }
  100% {
     transform: translateX(-50%);
     }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .service-card {
    min-width: 280px;
  }

  .service-card img {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .service-card {
    min-width: 240px;
  }

  .service-card img {
    height: 170px;
  }
}

/* ----------------------------------------------------SERVICES SECTION------------------------------------------------------*/

    .services-section {
      padding: 80px 5%;
      background: url('../Uploads/services1.jpg') no-repeat center/cover;
      position: relative;
      min-height: 400px;
    }

    .services-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
    }

    .services-content {
      position: relative;
      z-index: 2;
    }

    .services-heading {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 60px;
      font-weight: 700;
      color: #fff;
      animation: fadeDown 1s ease-out;
    }

    .services-heading span {
      color: #ff7403dd;
    }

    .services-container {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 40px;
      align-items: center;
    }

    /* Service Box */
    .services-box {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s forwards;
    }

    .services-box:nth-child(1) { animation-delay: 0.3s; }
    .services-box:nth-child(2) { animation-delay: 0.6s; }
    .services-box:nth-child(3) { animation-delay: 0.9s; }
    .services-box:nth-child(4) { animation-delay: 1.2s; }
    .services-box:nth-child(5) { animation-delay: 1.5s; }
    .services-box:nth-child(6) { animation-delay: 1.8s; }

    @keyframes fadeUp {
      to { 
        opacity: 1; transform: translateY(0);
       }
    }
    @keyframes fadeDown {
      from {
         opacity: 0; transform: translateY(-40px);
         }
      to {
         opacity: 1; transform: translateY(0); 
        }
    }

    .services-icon {
      background: #ff7403dd;
      color: #111;
      font-size: 1.5rem;
      padding: 12px;
      border-radius: 6px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .services-box:hover .services-icon {
      transform: scale(1.2) rotate(5deg);
    }

    .services-text h3 {
      font-size: 1.3rem;
      margin-bottom: 6px;
      color: #fff;
    }

    .services-text p {
      font-size: 0.98rem;
      line-height: 1.5;
      color: #ccc;
    }

  /* Center Image */
 .services-image {
  text-align: center;
  position: relative;
  display: inline-block;
  animation: zoomIn 1.5s ease forwards;
}

.services-image img {
  width: 100%;
  height: 430px; 
  max-width: 350px;
  border-radius: 4px;
  position: relative;
  z-index: 1; /* image neeche */
}

/* Border box image ke upar overlap kare */
.services-image::after {
  content: "";
  position: absolute;
  top: -20px;    /* 🔥 thoda neeche aayega (image ke upar overlap) */
  left: 20px;   /* 🔥 thoda side shift */
  right: -27px; /* thoda bahar niklega */
  bottom: 20px;
  border: 4px solid #ff7403dd;
  border-radius: 4px;
  z-index: 2; /* image ke upar */
  pointer-events: none;
}

    @keyframes zoomIn {
      0% { transform: scale(0.7); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    @keyframes borderAnim {
      from { border-color: #ff7403dd; }
      to { border-color: #ffcc66; }
    }

    /* Responsive */
    @media(max-width: 992px) {
      .services-container {
        grid-template-columns: 1fr;
      }
      .services-image {
        margin: 40px auto;
      }
    }
    
  @media(max-width: 576px) {
  .services-image::after {
    top: -10px;   
    left: 10px;
    right: -12px;
    bottom: 10px;
  }
}




/* ----------------------------------------------------PRODUCTS SECTION------------------------------------------------------*/
 /* .product-section {
      width: 90%;
      max-width: 1200px;
      text-align: center;
      color: #fff;
      position: relative;
      padding: 50px 0;
    }

    .product-section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
    }

    .swiper {
      width: 100%;
      padding: 40px 0;
      position: relative;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      width: 100%;
      max-width: 300px;
      border-radius: 8px;
    }

    
    .swiper-button-next,
    .swiper-button-prev {
      color: #ff7403dd;
      width: 50px;
      height: 50px;
      top: 10px; 
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 25px;
      font-weight: bold;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      color: #ff7403dd;
    }

    @media (max-width: 1024px) {
      .swiper-slide img {
        max-width: 250px;
      }
    }

    @media (max-width: 768px) {
      .swiper-slide img {
        max-width: 200px;
      }
    }

    @media (max-width: 480px) {
      .swiper-slide img {
        max-width: 100%;
      }
    }
    */

/* ----------------------------------------------------PRODIUCTS SECTION------------------------------------------------------*/

   .gallery-section {
      width: 80%;
      margin: 40px auto 0 auto;
      text-align: center;
      min-height: 600px;
      min-height: auto;
      padding-bottom: 50px;
    }

    .gallery-section h2 {
      font-size: 36px;
      margin-bottom: 40px;
      font-weight: 700;
      background: linear-gradient(90deg, #fff); 
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      position: relative;
      display: inline-block;
      transition: transform 0.6s ease, text-shadow 0.6s ease;
      animation: zoomIn 1s ease forwards;
    }

    /* Scroll zoom-in effect */
    @keyframes zoomIn {
      0% { transform: scale(0.8); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .image-carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
      gap: 15px;
    }

    .carousel-item {
      flex: 0 0 calc((100% / 3) - 10px);
      box-sizing: border-box;
        gap: 15px;   
    }
    

    .carousel-item img {
      width: 100%;
      height: 270px;
      object-fit: cover;
      display: block;
    }

    /* Arrows */
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      color: #fff;
      border: none;
      padding: 12px;
      cursor: pointer;
      z-index: 5;
      border-radius: 50%;
      font-size: 18px;
    }
    .carousel-arrow:hover { background: rgba(0,0,0,0.8); }
    .carousel-arrow-left { left: 10px; }
    .carousel-arrow-right { right: 10px; }

    /* Responsive */
    @media(max-width: 992px) {
      .carousel-item { flex: 0 0 calc(50% - 10px); }
    }
    @media(max-width: 576px) {
      .carousel-item { flex: 0 0 100%; }
    }

/* ----------------------------------------------------STORE LOCATION SECTION------------------------------------------------------*/

 .store-section {
  /* background: linear-gradient(135deg, #111, #222); */
  color: #fff;
  text-align: center;
  padding: 80px ;
  margin-top: -60px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  animation: fadeInDown 1s ease;
}

.section-title .title-icon {
  font-size: 40px;
  color: #ff7403dd; /* same as card */
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #fff); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  transition: transform 0.6s ease, text-shadow 0.6s ease;
  animation: zoomIn 1s ease forwards;
}

.store-card {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  color: #333;
  padding: 50px 30px;
  border-radius: 16px;
  max-width: 650px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.store-icon {
  font-size: 50px;
  color: #ff7403dd; /* same red/orange */
  margin-bottom: 20px;
}

.store-card p {
  font-size: 18px;
  line-height: 1.6;
}

.store-card h3 {
  margin-top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #ff7403dd;
}

.call-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #ff7403dd);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.call-btn:hover {
  background: linear-gradient(135deg, #ff5722, #ff9800);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .call-btn {
    padding: 10px 22px;   /* slightly smaller */
    font-size: 16px;      /* reduce text size */
  }

  .store-card {
    padding: 30px 20px;   /* optional: reduce card padding */
  }

  .store-card h3 {
    font-size: 24px;      /* smaller heading */
  }

  .store-card p {
    font-size: 16px;      /* slightly smaller paragraph */
  }

  .section-title h2 {
    font-size: 28px;      /* smaller section title */
  }
}

/* ----------------------------------------------------CONTACT US SECTION------------------------------------------------------*/

 .visit-section {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 5%;
  gap: 15px;
  position: relative;
  margin-top: -20px; */
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* reduced from 30px or 40px */
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

/* Center Heading */
.visit-section .section-heading {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  transition: transform 0.6s ease, text-shadow 0.6s ease;
  animation: zoomIn 1s ease forwards;
}



.map-box {
  flex: 1 1 400px; /* reduced width */
  min-width: 300px; /* ensures readability on mobile */
  max-width: 450px; /* optional: limits max width */
  height: 340px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.map-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.map-box iframe {
  width: 100%;
  height: 340px; 
  border: none;
  border-radius: 6px;
}

.form-box {
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 400px;
  /* max-width: 450px; */
  background: #fff;
  padding: 20px 25px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.form-box h2 {
  color: #ff7403dd;
  margin-bottom: 20px;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
}
.form-group {
   margin-bottom: 15px; 
  }
.form-group label {
   display: block;
    margin-bottom: 6px; 
    font-size: 14px; 
    color: #666;
     letter-spacing: 1px;
     }
.form-group input, .form-group select { 
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 1px solid #aaa; 
    font-size: 14px; outline: none; 
  }
.submit-btn {
  display: inline-block;
  background: #ff7403dd;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  transition: background 0.3s ease;
}
.submit-btn:hover { background: #ff7403dd; }

/* Responsive Media Queries */
@media(max-width: 1024px) {
  .visit-section {
    gap: 25px;
    padding: 40px 5%;
  }

  .visit-section .section-heading {
    font-size: 32px;
  }

  .map-box h2 {
    font-size: 28px;
  }

  .form-box h2 {
    font-size: 24px;
  }
}

@media(max-width: 768px) {
  .visit-section {
    flex-direction: column;
    padding: 30px 15px;
    align-items: center; /* centers map & form container */
  }

  .map-box {
    flex: 1 1 100%;
    max-width: 500px;
    text-align: center; 
  }

  .map-box iframe {
    margin: 0 auto; 
    display: block;
  }

  .form-box {
    flex: 1 1 100%;
    max-width: 500px;
    text-align: left; /* keep form content left-aligned */
  }

  .visit-section .section-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
}


@media(max-width: 480px) {
  .visit-section .section-heading {
    font-size: 24px;
  }

  .map-box h2, .form-box h2 {
    font-size: 20px;
  }

  .map-box iframe {
    height: 220px;
  }
}


/* ----------------------------------------------------CONTACT US SECTION------------------------------------------------------*/

footer {
  margin-top: 30px;
  background: #111;
  color: #fff;
  padding: 60px 8% 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}


.footer-logo {
  max-height: 80px;
  display: flex;
  align-items: center;
}

.footer-logo img {
  margin-left: -60px;
  height: 170px;
  width: auto;
  object-fit: contain;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.social-icon a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}
.social-icon a:hover {
  color: #ff6600;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 20px;
}
.back-to-top:hover {
  background: #ff7403dd;
  color: #0d4946;
  border-color: #ff7403dd;
}

.footer-links {
  display: flex;
  gap: 50px;
  flex: 1;
  min-width: 280px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #ff6600;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #0a0a0a;
  font-size: 13px;
  color: #999;
  margin-top: 30px;
}


@media (max-width: 992px) {
  .footer-container {
    margin-top: 30px;
    flex-direction: column;   
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  
  .footer-logo {
    justify-content: center;
    width: 100%;
  }

  .footer-logo img {
    margin: 0 auto;        
    display: block;        
    height: 150px;        
    width: auto;
  }

  .footer-left {
    text-align: center;
  }

  .social-icon {
    text-align: center;
  }

  .back-to-top {
    margin: 20px auto 0;
    display: inline-flex;
  }

  
  .footer-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    width: 100%;
  }

  .footer-col {
    width: 100%;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%); 
  }
}











  .video-gallery-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.video-gallery-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.video-gallery-heading::before,
.video-gallery-heading::after {
  content: "";
  flex: 1;
  height: 3px;
  background-color: orange;
  margin: 0 15px;
}

.video-gallery-heading h2 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-container:hover {
  transform: scale(1.03);
}

.video-container video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Overlay Play/Pause Button Center */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px; /* 👈 screenshot जैसा छोटा size */
  background: rgba(0,0,0,0.5); /* हल्का dark circle पीछे */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
}

.overlay.hide {
  opacity: 0;
  visibility: hidden;
}


  .youtube-link {
  text-align: center;
  margin-top: 40px;
}

.youtube-link a {
  display: inline-block;
  background: #ff7403dd;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.youtube-link a i {
  margin-right: 10px;
  font-size: 20px;
}

.youtube-link a:hover {
  background: #ff7403dd;
  transform: scale(1.05);
}

  @media(max-width: 900px) {
    .video-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media(max-width: 600px) {
    .video-grid {
      grid-template-columns: 1fr;
    }
  } 



