/* ================= RESET ================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: Arial, sans-serif;
}

body{
background:#f4f4f4;
}

.container{
width:90%;
margin:auto;
}

/* ================= TOP BAR ================= */

.top-bar{
background:#c69214;
color:#fff;
padding:8px 0;
font-size:14px;
}

.top-flex{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
}

.top-bar .contact-info a {
text-decoration: none !important;
color: white;
}

/* Mobile view me location hide kare */
@media (max-width: 768px) {
    .location-info {
        display: none;
    }
}

/* ================= HEADER ================= */

.main-header{
background:#ffffff;
padding:18px 0;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
position:relative;
z-index:1000;
}

.header-flex{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:28px;
font-weight:bold;
color:#c69214;
}

/* ================= MENU ================= */

.nav-menu ul{
list-style:none;
display:flex;
align-items:center;
}

.nav-menu ul li{
position:relative;
margin:0 18px;
}

.nav-menu ul li a{
text-decoration:none;
color:#222;
font-weight:500;
font-size:16px;
transition:0.3s;
}

.nav-menu ul li a:hover{
color:#c69214;
}

/* ===== FIXED DROPDOWN ===== */

.nav-menu ul ul{
display:none;
flex-direction:column;
}

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
width:220px;
background:#fff;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
padding:8px 0;
display:none;
z-index:999;
}

/* Show dropdown */
.dropdown:hover > .dropdown-menu{
display:block;
}

.dropdown-menu li{
display:block;
width:92%;
}

.dropdown-menu li a{
display:block;
padding:10px 18px;
font-size:14px;
color:#333;
text-decoration:none;
}

.dropdown-menu li a:hover{
background:#f5f5f5;
color:#c69214;
padding-left:22px;
}



/* Mobile dropdown fix */
@media (max-width: 768px) {

  .dropdown-menu {
    max-height: 250px;   /* height control */
    overflow-y: auto;    /* scroll enable */
  }

}

.dropdown-menu {
  scrollbar-width: thin;
}

.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: #c69214;
}





/* ================= BUTTON ================= */

.btn{
background:#c69214;
color:#fff;
padding:10px 8px;
border-radius:5px;
text-decoration:none;
font-weight:600;
}

.btn:hover{
background:#a9780f;
}

/* Hide mobile elements desktop */
.menu-toggle,
.close-btn{
display:none;
}

/* Overlay */
.overlay{
display:none;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

.nav-menu{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100%;
background:#fff;
box-shadow:-5px 0 25px rgba(0,0,0,0.1);
transition:0.4s;
padding:30px 20px;
z-index:999;
}

.nav-menu ul{
flex-direction:column;
align-items:flex-start;
}

.nav-menu ul li{
margin:15px 0;
width:100%;
}

.dropdown-menu{
position:static;
box-shadow:none;
display:none;
padding-left:10px;
}

.dropdown.open .dropdown-menu{
display:block;
}

.header-btn{
display:none;
}

.menu-toggle{
display:block;
font-size:26px;
cursor:pointer;
}

.close-btn{
display:block;
font-size:22px;
text-align:right;
cursor:pointer;
margin-bottom:20px;
}

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
z-index:998;
}

}

.mobile-header{
display:flex;
justify-content:space-between;
align-items:center;
padding-bottom:15px;
border-bottom:1px solid #eee;
}

.mobile-header img{
height:40px;
}

.mobile-header span{
font-size:22px;
cursor:pointer;
color:#333;
}

/* Mobile header default hide */
.mobile-header{
display:none;
}

/* Sirf mobile me show */
@media(max-width:992px){
.mobile-header{
display:flex;
}
}


/* ===== POPUP FORM ===== */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
z-index:2000;
}

.popup-form{
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90%;
max-width:400px;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 20px 40px rgba(0,0,0,0.2);
display:none;
z-index:2001;
animation:popupFade 0.3s ease;
}

@keyframes popupFade{
from{transform:translate(-50%,-60%);opacity:0;}
to{transform:translate(-50%,-50%);opacity:1;}
}

.popup-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.popup-header span{
cursor:pointer;
font-size:18px;
}

.popup-form input,
.popup-form textarea{
width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #ddd;
border-radius:6px;
font-size:14px;
}

.popup-form textarea{
resize:none;
height:80px;
}

.popup-form button{
width:100%;
padding:10px;
background:#c69214;
color:#fff;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
}

.popup-form button:hover{
background:#a9780f;
}


/* ===== BANNER SECTION ===== */

.main-banner{
width:100%;
overflow:hidden;
}

.banner-slider{
position:relative;
width:100%;
height:523px
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
opacity:0;
transition:opacity 0.8s ease-in-out;
}

.slide img{
width:100%;
height:auto;
object-fit:cover;
display:block;
}

.slide.active{
opacity:1;
z-index:2;
}

/* Arrows */
.prev, .next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:#fff;
border:none;
font-size:15px;
padding:10px 15px;
cursor:pointer;
border-radius:4px;
z-index:3;
}

.prev{ left:10px; }
.next{ right:10px; }

.prev:hover, .next:hover{
background:#c69214;
}

/* Mobile */
@media(max-width:992px){
.banner-slider{
height:144px;
}
}


/* ========== CATAGORY SLIDER ========== */

.product-section {
  padding: 40px 0;
  background: #f8f8f8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.product-card {
  background: #eaf1f7;
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  border: 1px solid #d3dde7;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #f5b400; /* OMTEK yellow */
}

.product-img {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 27px;
}

.product-img img {
  width: 100%;
  height: 100%;   /* Pehle 160px tha */
  object-fit: contain;
}

.product-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-img img {
    height: 120px;
  }
}


/* ===== ABOUT SECTION ===== */

.about-section {
  padding: 40px 0;
  background: #fdf6f7f7;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about-content {
  flex: 1;
}

.sub-title {
  color: #d4a017;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.main-title span {
  color: #d4a017;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d4a017;
  font-weight: bold;
}

.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: #d4a017;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #b8860b;
}

/* ===== RIGHT IMAGE SAME SIZE ===== */

.about-image {
  flex: 1;
}

.about-image img {
  object-fit: cover;
  border-radius: 15px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-image img {
    height: 100%;
    width: 100%;
  }

  .main-title {
    font-size: 28px;
  }
}

/* ===== FEATURES SECTION ===== */

.features-section {
  padding: 20px 0;
  background: #f9f2f3;
}

.features-wrapper {
  display: flex;
  gap: 30px;
}

.feature-card {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 2px solid transparent;
}

.feature-icon {
  display: flex;
  align-items: center;   /* center vertically */
  justify-content: center;
  min-width: 70px;
}

.feature-icon img {
  width: 70px;
  height: auto;
  display: block;
}

.feature-content h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(
    45deg,
    #d4a017,
    #ffcc00,
    #d4a017,
    #ffcc00
  );
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
  animation: glowBorder 3s linear infinite;
}

@keyframes glowBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


/* Responsive */
@media (max-width: 992px) {
  .features-wrapper {
    flex-direction: column;
  }
}


/* ===== HERO SECTION ===== */

.hero-section {
  padding: 60px 0;
  background: #ffffff; /* outer light bg */
}

/* Box inside container */
.hero-box {
  position: relative;
  background: url('img/ups-banner.jpg') no-repeat center center/cover;
  padding: 44px 60px;
  border-radius: 12px;
  overflow: hidden;
}

/* Yellow gradient left side */
.hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(212,160,23,0.9) 0%,
    rgba(212,160,23,0.7) 35%,
    rgba(212,160,23,0.3) 55%,
    rgba(0,0,0,0) 75%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #ffcc00;
  display: block;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #d4a017;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 992px) {
  .hero-box {
    padding: 15px 25px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}


/* ===== PRODUCTS ===== */

.equipment-section {
  padding: 80px 0;
  background: #f5f5f5;
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin-bottom: 50px;
}

.section-title span {
  color: #d4a017;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.equipment-card {
  background: #fff;
  padding: 12px;
  border-radius: 25px;
  border: 1.5px solid #b0b0b0;   /* 🔥 Black Border */
  transition: 0.3s ease;
}

.equipment-card:hover {
  transform: translateY(-8px);
}

.equipment-img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.equipment-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Hover Zoom */
.equipment-card:hover .equipment-img img {
  transform: scale(1.1);
}

.equip-btn {
  background: #d4a017;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

@media (max-width: 768px) {

  .equipment-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .equipment-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.5s ease;
  }

  .equipment-card {
    flex: 0 0 100vw !important;   /* 👈 change */
    max-width: 100vw !important;  /* 👈 change */
    box-sizing: border-box;
  }

}




/* ===== CONTACT FORM ===== */

.contact-section {
  padding: 30px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* 🔥 HEADER STYLING */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h5 {
  letter-spacing: 3px;
  font-size: 14px;
  color: #ff3c3c;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.section-header h2 span {
  background: linear-gradient(90deg, #ff3c3c, #ff8a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated Line */
.header-line {
  width: 80px;
  height: 4px;
  margin: auto;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff3c3c, #ff8a00);
  animation: glowLine 2s infinite alternate;
}

@keyframes glowLine {
  from {
    box-shadow: 0 0 10px rgba(255,60,60,0.5);
    width: 80px;
  }
  to {
    box-shadow: 0 0 25px rgba(255,60,60,1);
    width: 120px;
  }
}

/* Contact Container */

.contact-container {
  width: 85%;              /* 🔥 Side gap badhaya */
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;               /* 🔥 Beech ka gap bada kiya */
  flex-wrap: wrap;
}

.contact-details,
.contact-form {
  flex: 1;
  backdrop-filter: blur(15px);
  background: rgb(31 18 18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 35px;
  color: #fff;
  min-width: 480px;
  transition: 0.3s;
}



.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 7px;   /* 🔥 Ye main spacing hai */
}

.input-group {
  margin-bottom: 5px;   /* Thoda extra breathing space */
}

.contact-form button {
  margin-top: 10px;
}

.contact-details:hover,
.contact-form:hover {
  border: 1px solid #ff3c3c;
  box-shadow: 0 0 30px rgba(255,60,60,0.4);
}

.contact-details h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.contact-details p {
  color: #ccc;
  margin-bottom: 15px;
}

.info-box p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box i {
  color: #ff3c3c;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff3c3c;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.contact-form button {
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #ff3c3c, #b91c1c);
  color: #fff;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,60,60,0.6);
}

@media (max-width: 768px) {

  .contact-section {
    padding: 70px 15px;   /* Side padding add ki */
  }

  .contact-container {
    width: 100%;
    max-width: 100%;
    gap: 30px;
  }

}

@media (max-width: 768px) {

  .contact-details,
  .contact-form {
    width: 100%;
    min-width: unset;   /* 🔥 Agar min-width laga ho to remove */
    padding: 25px;
  }

}



/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 80px 20px;
  background: #f5f7fb;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 600;
}

.section-title span {
  color: #d4a017;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 1400px;   /* width badha di */
  margin: 0 auto;
  padding: 0 20px;     /* halka sa side padding */
}

.testimonial-track {
  display: flex;
  gap: 30px;   /* yaha gap control hota hai */
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-card h3 {
  margin: 10px 0;
}

.stars {
  color: #f4b400;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  padding: 0 15px 20px;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1f4fa3;
  color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.nav-btn:hover {
  background: #0d3b82;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}



/* Tablet */
@media(max-width: 992px){
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

/* Mobile */
@media(max-width: 600px){

  .testimonial-slider {
    padding: 0 15px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-track {
    gap: 20px;
  }

}



/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 80px 20px;
  background: #f5f7fb;
}

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* Left Image */
.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Right Content */
.why-content {
  flex: 1;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
}

.section-title span {
  color: #d4a017;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.why-item:hover {
  transform: translateX(5px);
}

.why-icon {
  font-size: 28px;
}

/* Tablet */
@media(max-width: 992px){
  .why-container {
    flex-direction: column;
    gap: 40px;
  }

  .why-content {
    text-align: center;
  }

  .why-item {
    text-align: left;
  }
}






















/* ===== CLIENT ===== */
.clients-section {
  padding: 70px 0;
  background: #f5f5f5;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.section-title span {
  color: #d4a017;
}

.clients-slider {
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.clients-track {
  display: flex;
  gap: 25px;
  animation: scrollClients 25s linear infinite;
}

.client-box {
  min-width: 220px;
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-box img {
  max-width: 170px;
  height: auto;
}

/* Scroll Animation */
@keyframes scrollClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.clients-track:hover {
  animation-play-state: paused;
}

/* MOBILE SLIDER */
@media (max-width: 768px) {

  .equipment-slider-wrapper {
    width: 100%;
    overflow: hidden;   /* 🔥 hide other cards */
    position: relative;
  }

  .equipment-grid {
    display: flex !important;
    width: 100%;
    transition: transform 0.6s ease;
  }

  .equipment-card {
    flex: 0 0 100% !important;   /* 🔥 EXACT 100% width */
    max-width: 100% !important;
  }

}














/* ===== FOOTER ===== */

.main-footer {
  background: #f5f5f5;
  padding: 60px 0 0;
}

.footer-wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #d4a017;
}

/* ===== FOOTER BOTTOM ===== */

.footer {
  background: #edbe000a;
  padding: 50px 0 0;
  border-top: 2px solid #d4a017;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-col {
  flex: 1;
}

.footer-contact {
  flex: 1.3;
}

.footer-map {
  flex: 1.4;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #d4a017;
}

.footer-map iframe {
  border-radius: 6px;
}

.footer-bottom {
  background: #eaeaea;
  padding: 15px 0;
  margin-top: 35px;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom span {
  color: #d4a017;
  font-weight: 600;
}

.footer p {
  display: flex;
  align-items: flex-start;
  gap: 4px;   /* 🔥 yaha gap bada diya */
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-icon {
  color: #d4a017;
  font-size: 15px;
  min-width: 18px;  /* 🔥 icon width fix */
}

.bullet-icon {
  color: #d4a017;
  font-size: 12px;
  min-width: 14px;  /* 🔥 same alignment */
}

.footer ul li {
  display: flex;
  align-items: center;
  gap: 1px;   /* 🔥 icon aur text ka proper gap */
  margin-bottom: 18px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #d4a017;
  padding-left: 4px;
}

@media (max-width: 768px) {

  .footer-main {
    flex-direction: column;
    gap: 25px;
  }

  .footer-map iframe {
    height: 200px;
  }

  .bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

}

/* ===== CONTACT US PAGE ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f9fafc;
    color:#222;
}

/* MAIN CONTAINER */
.contact-wrapper{
    max-width:1200px;
    margin:40px auto 80px;
    display:grid;
    grid-template-columns:350px 1fr;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    overflow:hidden;
}

/* SIDEBAR */
.contact-sidebar{
    background:#1f2937;
    color:#fff;
    padding:40px 30px;
}

.contact-sidebar h3{
    font-size:20px;
    margin-bottom:25px;
    font-weight:600;
}

.sidebar-item{
    margin-bottom:20px;
    font-size:14px;
    line-height:1.6;
}

.sidebar-item strong{
    display:block;
    margin-bottom:5px;
    color:#e8ff00;
}

/* FORM AREA */
.contact-forms{
    padding:50px;
}

.contact-forms h3{
    margin-bottom:25px;
    font-size:22px;
    font-weight:600;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

input, textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
    transition:0.3s;
    margin-bottom:15px;
}

input:focus, textarea:focus{
    border-color:#6C5DD3;
    outline:none;
}

textarea{
    resize:none;
    height:120px;
}

button{
    background:#6C5DD3;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:6px;
    cursor:pointer;
    font-weight:500;
    transition:0.3s;
}

button:hover{
    background:#5748b8;
}

/* RESPONSIVE */
@media(max-width:900px){
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-sidebar{
        text-align:center;
    }

    .form-row{
        grid-template-columns:1fr;
    }
}

/* BREADCRUMB SECTION */
.breadcrumb-section{
    position:relative;
    background:url('img/breadbanner.webp') center/cover no-repeat;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.breadcrumb-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

.breadcrumb-content{
    position:relative;
    z-index:2;
}

.breadcrumb-content h1{
    font-size:36px;
    font-weight:600;
    margin-bottom:10px;
}

.breadcrumb{
    font-size:14px;
}

.breadcrumb a{
    color:#e8ff00;
    text-decoration:none;
    font-weight:500;
}

.breadcrumb span{
    color:#ddd;
}

/* MAP SECTION */
.map-section{
    background:#f9fafc;
}

.map-container{
    max-width:100%;
    margin:auto;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.map-container iframe{
    width:100%;
    height:400px;
    border:0;
    display:block;
}

/* ===== FOOTER BOTTOM ===== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fb;
    color:#222;
}

/* Section Styling */
.section{
    padding:40px 8%;
}

.section-title{
    text-align:center;
    font-size:36px;
    font-weight:700;
    margin-bottom:50px;
    color:#0b1c39;
}

/* WHY CHOOSE US */
.usp-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.usp-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.4s;
    text-align:center;
}

.usp-card:hover{
    transform:translateY(-10px);
    background:linear-gradient(135deg,#0b1c39,#1e3c72);
    color:#fff;
}

.usp-card h3{
    margin-bottom:15px;
    font-size:20px;
}

/* Infrastructure */
.infrastructure{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:50px;
}

.infrastructure img{
    width:100%;
    max-width:500px;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.infrastructure-content{
    flex:1;
}

.infrastructure-content ul{
    margin-top:20px;
    line-height:2;
}

/* Certifications */
.certifications{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
}

.cert-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.cert-card:hover{
    transform:scale(1.05);
    background:#1e3c72;
    color:#fff;
}

/* Counter Section */
.counter-section{
    background:linear-gradient(135deg,#0b1c39,#1e3c72);
    color:#fff;
    text-align:center;
}

.counter-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}

.counter{
    font-size:40px;
    font-weight:700;
}

.counter-text{
    margin-top:10px;
    font-size:18px;
}


.certification-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.section-title p {
    font-size: 16px;
    color: #777;
    margin-top: 8px;
}

.certification-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-box {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    width: 220px;
    transition: 0.4s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.cert-box:hover {
    transform: translateY(-8px);
    background: #007bff;
    color: #fff;
}

.cert-box img {
    width: 80px;
    margin-bottom: 15px;
}

.cert-box h4 {
    font-size: 18px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .certification-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* PRODUCTS */

.body{
    margin:0;
    font-family:'Roboto', sans-serif;
    background:#ffffff;
    color:#333;
}

.container{
    width:95%;
    max-width:1300px;
    margin:auto;
    padding:0px 0;
}

/* Page Heading */
.page-title{
    margin-bottom:40px;
}

.page-title h1{
    font-size:30px;
    margin:0;
}

/* 3 Column Layout */
.product-layout{
    display:grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap:40px;
    align-items:flex-start;
}

/* Left Image */
.product-image img{
    width:100%;
    border:1px solid #ddd;
    padding:10px;
}

/* Center Content */
.product-content h2{
    margin-top:0;
    font-size:22px;
}

.product-content p{
    line-height:1.8;
    margin-bottom:20px;
}

.product-section-title{
    font-size:18px;
    margin:25px 0 15px;
    border-left:4px solid #0a4b78;
    padding-left:10px;
}

.product-content ul{
    padding-left:18px;
}

.product-content li{
    margin-bottom:6px;
}

/* Right Enquiry Form */
.enquiry-box{
    border:1px solid #ddd;
    padding:25px;
}

.enquiry-box h3{
    margin-top:0;
    margin-bottom:20px;
    font-size:18px;
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group textarea{
    width:93%;
    padding:10px;
    border:1px solid #ccc;
    font-size:14px;
}

.form-group textarea{
    height:90px;
    resize:none;
}

.form-btn{
    width:100%;
    padding:10px;
    background:#0a4b78;
    color:#fff;
    border:none;
    cursor:pointer;
}

.form-btn:hover{
    background:#063552;
}


/* Specifications Table */
.spec-table{
    width:100%;
    border-collapse:collapse;
}

.spec-table td{
    border:1px solid #ddd;
    padding:12px;
}

.spec-table tr:nth-child(even){
    background:#f9f9f9;
}

/* Responsive */
@media(max-width:992px){
    .product-layout{
        grid-template-columns:1fr;
    }
}





.related-products {
    padding: 40px;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.card {
    min-width: 25%;
    box-sizing: border-box;
    padding: 10px;
}

.card img {
    width: 100%;
    border-radius: 8px;
}


.card {
    flex: 0 0 25%;
}


.slider-track a {
  text-decoration: none !important;
  color: inherit !important;
  
}


@media(max-width:768px){
    .card {
        flex: 0 0 100%;
    }
}


/* Mobile */
@media(max-width:768px){
    .card {
        min-width: 100%;
    }
}

.prev, .next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: black;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }


.related-section {
  padding: 40px;
  background: #f8f8f8;
}

.related-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Desktop 4 items */
.item {
  min-width: 25%;
  padding: 10px;
  box-sizing: border-box;
}

.item img {
  width: 100%;
  border-radius: 8px;
}

/* Mobile 1 item */
@media (max-width: 768px) {
  .item {
    min-width: 100%;
  }
}

/* Buttons */
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: black;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }
    
    

/* Hide by default */
.mobile-bar {
  display: none;
}

/* Mobile Only */
@media (max-width:768px){
  .mobile-bar{
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-family: sans-serif;
  }

  .bar-btn{
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
  }

  .call{
    background: #b49000b0; /* yellow */
  }

  .enquire{
    background: #000; /* black */
  }

  .whatsapp{
    background: #25D366; /* green */
  }
}

.gallery-section {
  padding: 50px 20px;
  text-align: center;
}

.gallery-section h2 {
  margin-bottom: 30px;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

/* Item */
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s;
}

/* Hover Effect */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Tablet */
@media(max-width:992px){
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media(max-width:576px){
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}