#loader{
  position:fixed;
  width:100%;
  height:100vh;
  background:#08172d;
  transition:0.5s;
  z-index:99999;

  display:flex;
  justify-content:center;
  align-items:center;
}

.loader-content{
  text-align:center;
  color:#fff;
}

.loader-circle{
  width:80px;
  height:80px;
  border:8px solid rgba(255,255,255,0.2);
  border-top:8px solid #f4b400;
  border-radius:50%;

  margin:auto;
  margin-bottom:20px;

  animation:spin 1s linear infinite;
}

.loader-content h2{
  letter-spacing:4px;
}

@keyframes spin{

  100%{
    transform:rotate(360deg);
  }

}
html{
  scroll-behavior:smooth;
}
html,
body{
    overflow-x:hidden;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f5f5;
  color:#222;
}

.top-bar{
  background:#08172d;
  color:#ffffff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 8%;
  font-size:16px;
  font-weight:600;
}
.top-bar span,
.top-bar a{
  color:#ffffff;
  text-decoration:none;
}

.navbar{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(10px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 8%;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);

  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  font-size:30px;
  font-weight:700;
}

.logo span{
  color:#f4b400;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:#222;
  font-weight:500;
  transition:0.3s;
  position:relative;
}

.nav-links a:hover{
  color:#f4b400;
}
.nav-links a.active{
  color:#f4b400;
}
.nav-links a::after{
  content:'';
  width:0%;
  height:2px;
  background:#f4b400;
  position:absolute;
  left:0;
  bottom:-5px;
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

/* .hero{
  height:90vh;

  background-size:cover;
  background-position:center;

  position:relative;
  display:flex;
  align-items:center;

  animation:zoomHero 8s infinite alternate;
} */

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.5)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  width:50%;
  margin-left:8%;

  animation:slideContent 1.5s ease;
}

.hero-content h1{
  font-size:70px;
  line-height:1.1;
  text-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.hero-content span{
  color:#f4b400;
}

.hero-content p{
  margin:25px 0;
  font-size:20px;
}
.hero-tagline{
  color:#f4b400;
  letter-spacing:3px;
  margin-bottom:20px;
  font-size:14px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.btn{
  padding:15px 35px;
  text-decoration:none;
  border-radius:5px;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
}

.yellow{
  background:#f4b400;
  color:#000;
}

.dark{
  background:#222;
  color:#fff;
}

.features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:70px 8%;
  background:#08172d;
}

.feature-box{
  background:#0e2446;
  padding:30px;
  text-align:center;
  color:#fff;
  border-radius:10px;
  transition:0.4s;
}

.feature-box:hover{
  transform:translateY(-10px);
  background:#122f5c;
}

.feature-box i{
  font-size:40px;
  color:#f4b400;
  margin-bottom:15px;
}

.products{
  padding:80px 8%;
  text-align:center;
}

.products h2{
  font-size:40px;
  margin-bottom:50px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.product-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:0.4s;
}

.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

.product-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.product-card h3{
  padding:20px;
}

.about{
  padding:80px 8%;
  display:flex;
  justify-content:space-between;
  gap:50px;
  align-items:center;
}

.about-left{
  width:45%;
}

.about-left h2{
  font-size:45px;
  margin-bottom:20px;
}

.about-left p{
  margin-bottom:30px;
  line-height:1.8;
}

.stats{
  width:50%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.stat-box{
  background:#fff;
  padding:40px;
  text-align:center;
  border-radius:10px;
}

.stat-box h2{
  font-size:40px;
  color:#f4b400;
}

.contact{
  background:#08172d;
  color:#fff;
  text-align:center;
  padding:90px 8%;
}

.contact h2{
  font-size:50px;
}

.contact p{
  margin:20px 0 40px;
}

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

footer{

  background:#08172d;

  color:white;

  margin-top:0;
}

.footer-container{

  padding:70px 8%;

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:40px;
}

.footer-box h3{

  margin-bottom:20px;

  color:#f4b400;
}

.footer-box p{

  line-height:1.8;
}

.footer-box ul{

  list-style:none;

  padding:0;
}

.footer-box ul li{

  margin-bottom:12px;
}

.footer-box ul li a{

  color:white;

  text-decoration:none;

  transition:.3s;
}

.footer-box ul li a:hover{

  color:#f4b400;
}

.footer-bottom{

  text-align:center;

  padding:20px;

  border-top:1px solid rgba(255,255,255,.15);

  font-size:14px;
}
.copyright{
  text-align:center;
  margin-top:40px;
  border-top:1px solid #333;
  padding-top:20px;
}

@media(max-width:991px){
    .hero{
  height:90vh;
  animation:zoomHero 10s infinite alternate;
  .gallery-grid{
  grid-template-columns:1fr;
}
.contact-info-grid{
  grid-template-columns:1fr;
}
.quick-stats{
  grid-template-columns:1fr;
}
.testimonial-grid{
  grid-template-columns:1fr;
}
.faq-section h2{

  font-size:30px;
}
.brands-grid{

  grid-template-columns:1fr 1fr;
}
.call-bar a{

  font-size:16px;
}
.why-grid{

  grid-template-columns:1fr;
}
.footer-container{

  grid-template-columns:1fr;

  text-align:center;
}
.brand-grid{

    grid-template-columns:1fr;
}
.cement-brand-card{

    flex-direction:column;

    text-align:center;
}

.brand-logo{

    width:100%;
}
.home-brand-grid{

    grid-template-columns:repeat(2,1fr);
}
.hero-content{
    width:90%;
    margin-left:5%;
    padding-top:20px;
    padding-bottom:20px;
}
}

.hero-content h1{
  font-size:38px;
}

.contact h2{
  font-size:35px;
}

.products h2{
  font-size:40px;
  margin-bottom:50px;
  position:relative;
  display:inline-block;
}

.products h2::after{
  content:'';
  width:70%;
  height:4px;
  background:#f4b400;
  position:absolute;
  left:15%;
  bottom:-10px;
}

  .hero-content{
    width:90%;
  }

  .hero-content h1{
    font-size:45px;
  }

  .features,
  .product-grid,
  .stats,
  .brand-grid,
  .footer-content{
    grid-template-columns:1fr;
  }

  .about{
    flex-direction:column;
  }

  .about-left,
  .stats{
    width:100%;
  }

  .navbar{
    flex-direction:column;
    padding:10px 15px;
    gap:10px;
}

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

}

.whatsapp-float{
  position:fixed;
  width:65px;
  height:65px;
  bottom:80px;
  right:30px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:35px;
  text-decoration:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:999;
  animation:pulse 2s infinite;
}
.whatsapp-float i{
    color:white;
    font-size:35px;
}

.whatsapp-float:hover{
  transform:scale(1.1);
  transition:0.3s;
}

.form-section{
  padding:80px 8%;
  background:#fff;
  text-align:center;
}

.form-section h2{
  font-size:40px;
  margin-bottom:40px;
}

form{
  max-width:700px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:20px;
}

form input,
form textarea{

  padding:18px;

  border:2px solid #ddd;

  border-radius:8px;

  font-size:16px;

  transition:0.3s;
}
form input:focus,
form textarea:focus{

  outline:none;

  border-color:#f4b400;

  box-shadow:0 0 10px rgba(244,180,0,0.3);

}

form textarea{
  height:150px;
}

form button{
  background:#f4b400;
  color:#000;
  border:none;
  padding:18px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  border-radius:5px;
  transition:0.3s;
}
form button:hover{

  transform:translateY(-3px);

  box-shadow:0 10px 20px rgba(0,0,0,0.2);

}

@keyframes zoomHero{

  from{
    background-size:100%;
  }

  to{
    background-size:110%;
  }

}
@keyframes heroSlider{

  0%{
    background-image:url('images/mishra.png');
  }

  33%{
    background-image:url('images/image2.png');
  }

  66%{
    background-image:url('images/image3.png');
  }

  100%{
    background-image:url('images/mishra.png');
  }

}

.hero{
    background-image:url('images/mishra.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    min-height:100vh;
    height:auto;
}

@keyframes slideContent{

  from{
    opacity:0;
    transform:translateY(50px);
    animation:formFade 1.5s ease;
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.gallery-section{
  padding:80px 8%;
  background:#f5f5f5;
  text-align:center;
}

.gallery-section h2{
  font-size:40px;
  margin-bottom:50px;
  position:relative;
  display:inline-block;
}

.gallery-section h2::after{
  content:'';
  width:70%;
  height:4px;
  background:#f4b400;
  position:absolute;
  left:15%;
  bottom:-10px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.gallery-item{
  overflow:hidden;
  border-radius:12px;
  position:relative;
  cursor:pointer;
}

.gallery-item::before{
  content:'';
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.3);
  z-index:1;
  opacity:0;
  transition:0.4s;
}

.gallery-item:hover::before{
  opacity:1;
}
.gallery-text{
  position:absolute;
  bottom:20px;
  left:20px;
  color:#eaaa4b;
  font-size:24px;
  font-weight:600;
  z-index:2;
}

.gallery-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:0.5s;
}

.gallery-item:hover img{
  transform:scale(1.1);
}

#topBtn{
  position:fixed;
  bottom:160px;
  right:30px;
  width:50px;
  height:50px;
  border:none;
  border-radius:50%;
  background:#f4b400;
  color:#000;
  font-size:22px;
  cursor:pointer;
  display:none;
  z-index:999;
}

.section-divider{
  width:100%;
  height:120px;

  background:linear-gradient(
    to bottom right,
    #08172d 50%,
    #f5f5f5 50%
  );
}

.map-section{
  padding:80px 8%;
  background:#fff;
}

.map-content{
  text-align:center;
  margin-bottom:40px;
}

.map-content h2{
  font-size:40px;
  margin-bottom:15px;
  position:relative;
  display:inline-block;
}

.map-content h2::after{
  content:'';
  width:70%;
  height:4px;
  background:#f4b400;
  position:absolute;
  left:15%;
  bottom:-10px;
}

.map-content p{
  margin-top:20px;
  color:#555;
  font-size:18px;
}

.map-container{
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  margin-bottom:50px;
}

.contact-info-card{
  background:#08172d;
  color:#fff;
  padding:40px;
  border-radius:15px;
  text-align:center;
  transition:0.4s;
}

.contact-info-card i{
  font-size:40px;
  color:#f4b400;
  margin-bottom:20px;
}

.contact-info-card h3{
  margin-bottom:10px;
}

.contact-info-card:hover{
  transform:translateY(-10px);
}

@keyframes pulse{

  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,0.7);
  }

  70%{
    box-shadow:0 0 0 20px rgba(37,211,102,0);
  }

  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }

}

#successMessage{
  margin-top:20px;
  color:green;
  font-weight:600;
}

@keyframes formFade{

  from{
    opacity:0;
    transform:translateY(50px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.product-link{

    text-decoration:none;

    color:inherit;

    display:block;

    width:100%;
}

.product-page{

  padding:10px 8%;

  min-height:100vh;

  text-align:center;
}

.product-page h1{

  font-size:55px;

  margin-bottom:20px;
}

.product-page p{

  max-width:800px;

  margin:auto;

  margin-bottom:50px;

  line-height:1.8;
}

.popup{

  display:none;

  position:fixed;

  width:100%;
  height:100vh;

  top:0;
  left:0;

  background:rgba(0,0,0,0.7);

  z-index:99999;

  justify-content:center;
  align-items:center;
}

.popup-content{

  background:#fff;

  color:#222;

  width:90%;
  max-width:500px;

  padding:40px;

  border-radius:15px;

  position:relative;

  animation:popupShow .4s ease;
}

.popup-content h2{
  color:#08172d;
}

.popup-content input{
  color:#222;
}

.popup-content input::placeholder{
  color:#777;
}

#closePopup{

  position:absolute;

  top:15px;
  right:20px;

  font-size:30px;

  cursor:pointer;
}

.popup-content h2{

  text-align:center;

  margin-bottom:25px;
}

.popup-content form{

  display:flex;

  flex-direction:column;

  gap:15px;
}

.popup-content input{

  padding:15px;

  border:1px solid #ccc;

  border-radius:8px;
}

.popup-content button{

  background:#f4b400;

  border:none;

  padding:15px;

  font-weight:600;

  cursor:pointer;

  border-radius:8px;
}

@keyframes popupShow{

  from{

    opacity:0;
    transform:scale(.8);

  }

  to{

    opacity:1;
    transform:scale(1);

  }

}

.quick-stats{

  background:#08172d;

  color:#fff;

  padding:60px 8%;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:20px;

  text-align:center;
}

.quick-box{

  padding:20px;

  transition:0.4s;
}

.quick-box:hover{

  transform:translateY(-8px);
}

.quick-box h2{

  color:#f4b400;

  font-size:45px;

  margin-bottom:10px;
}

.quick-box p{

  font-size:18px;
}

.testimonials{

  padding:80px 8%;

  background:#f5f5f5;

  text-align:center;
}

.testimonials h2{

  font-size:40px;

  margin-bottom:50px;

  position:relative;

  display:inline-block;
}

.testimonials h2::after{

  content:'';

  width:70%;

  height:4px;

  background:#f4b400;

  position:absolute;

  left:15%;

  bottom:-10px;
}

.testimonial-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:25px;
}

.testimonial-card{

  background:#fff;

  padding:35px;

  border-radius:15px;

  box-shadow:0 5px 15px rgba(0,0,0,0.1);

  transition:0.4s;
}

.testimonial-card:hover{

  transform:translateY(-10px);
}

.testimonial-card p{

  line-height:1.8;

  margin-bottom:20px;
}

.testimonial-card h4{

  color:#08172d;

  margin-bottom:5px;
}

.testimonial-card span{

  color:#777;
}

.stars{

  color:#f4b400;

  font-size:20px;

  margin-bottom:15px;
}

.faq-section{

padding:80px 8%;

background:#fff;

}

.faq-section h2{

text-align:center;

font-size:40px;

margin-bottom:40px;

}

.faq-item{

margin-bottom:15px;

}

.faq-question{

width:100%;

background:#08172d;

color:white;

border:none;

padding:20px;

text-align:left;

font-size:18px;

cursor:pointer;

border-radius:10px;

}

.faq-answer{

display:none;

padding:20px;

background:#f5f5f5;

color:#222;

border-radius:0 0 10px 10px;

}

.brands{

  padding:80px 8%;

  background:#f5f5f5;

  text-align:center;
}

.brands h2{

  font-size:42px;

  margin-bottom:50px;
}

.brand-grid{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:30px;

    max-width:900px;

    margin:10px auto;

}

.brand-card{

    background:#fff;

    height:180px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;

    width:100%;
}

.brand-card img{

width:80%;

height:80%;

object-fit:contain;
}

.brand-card:hover{

transform:translateY(-12px);

border-color:#f4b400;

box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.brand-card img{

  max-width:180px;

  max-height:90px;

  object-fit:contain;
}

.call-bar{

  position:fixed;

  bottom:0;

  left:0;

  width:100%;

  background:#08172d;

  text-align:center;

  padding:15px;

  z-index:999;
}

.call-bar a{

  color:#fff;

  text-decoration:none;

  font-size:20px;

  font-weight:600;
}

.call-bar:hover{

  background:#0e2446;
}

.why-us{

  padding:80px 8%;

  background:#f5f5f5;

  text-align:center;
}

.why-us h2{

  font-size:42px;

  margin-bottom:50px;
}

.why-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:25px;
}

.why-card{

  background:#fff;

  padding:35px;

  border-radius:15px;

  transition:0.4s;

  box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.why-card:hover{

  transform:translateY(-10px);

  box-shadow:0 15px 30px rgba(0,0,0,.15);
}

.why-icon{

  font-size:45px;

  margin-bottom:15px;
}

.why-card h3{

  margin-bottom:15px;

  color:#08172d;
}

.why-card p{

  line-height:1.7;
}

#themeToggle{

  border:none;

  background:#f4b400;

  padding:10px 15px;

  border-radius:8px;

  cursor:pointer;

  font-size:18px;

  margin-left:15px;
}

.dark-mode{

  background:#121212;

  color:#ffffff;
}

.dark-mode section{

  background:#121212 !important;

  color:#ffffff !important;
}

.dark-mode .product-card,
.dark-mode .feature-box,
.dark-mode .testimonial-card,
.dark-mode .faq-answer,
.dark-mode .contact-info-card,
.dark-mode .project-card,
.dark-mode .why-card{

  background:#1e1e1e !important;

  color:#ffffff !important;
}

.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode p{

  color:#ffffff !important;
}

.dark-mode .navbar{

  background:#1a1a1a !important;
}

.dark-mode .nav-links a{

  color:#ffffff !important;
}

.cement-hero{

height:220px;

padding:40px;

margin-bottom:50px;
}

.cement-overlay h1{

font-size:48px;

margin-bottom:10px;

}

.cement-overlay p{

font-size:22px;

color:#f4b400;
}

.section-title{

text-align:center;

font-size:50px;

margin-bottom:50px;

color:#08172d;

position:relative;
}

.section-title::after{

content:"";

width:120px;

height:5px;

background:#f4b400;

position:absolute;

bottom:-15px;

left:50%;

transform:translateX(-50%);
}

.brands-section{

text-align:center;

margin-top:40px;

}

.section-title{

text-align:center;

margin-bottom:40px;

font-size:42px;

}

.cement-heading-box{

    background:linear-gradient(
    135deg,
    #08172d,
    #16335f
    );

    color:white;

    text-align:center;

    padding:35px;

    border-radius:18px;

    margin-bottom:0px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.cement-heading-box h1{

    font-size:42px;

    margin-bottom:10px;

    color:white;
}

.cement-heading-box p{

    color:#f4b400;

    font-size:18px;

    margin:0;
}

.products-grid{

    display:grid;

    grid-template-columns:repeat(4, 1fr);

    gap:30px;

    max-width:1400px;

    margin:0 auto;

}

.product-card{

    width:100%;

    background:#fff;

    padding:25px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

height:220px;

object-fit:contain;

width:100%;

}

.product-card h3{

margin-top:20px;

color:#08172d;

}

.cement-brand-list{

    width:95%;

    max-width:950px;

    margin:30px auto;

    display:flex;

    flex-direction:column;

    align-items:center;

}

/* .cement-brand-card{

    width:95%;

    max-width:1300px;

    min-height:220px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    background:#fff;

    padding:30px;

    border-radius:20px;

    margin:20px auto;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

} */

/* .cement-brand-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 30px rgba(0,0,0,.15);
} */

/* .brand-logo{

    width:300px;

    min-width:300px;

    display:flex;

    justify-content:center;

    align-items:center;

} */

/* .brand-logo img{

    max-width:220px;

    max-height:140px;

    object-fit:contain;

} */

.brand-products{

    flex:1;
}

.brand-products h3{

    color:#08172d;

    margin-bottom:15px;
}

.brand-products ul{

    padding-left:20px;
}

.brand-products li{

    margin-bottom:10px;

    font-size:17px;
}

/* .cement-brand-card{

    width:90%;

    max-width:1350px;

    margin:25px auto;

    background:#fff;

    border-radius:20px;

    min-height:180px;
    padding:15px 25px;

    display:flex;

    align-items:center;
    position:relative;
    /* left:40px; */

    /* justify-content:space-between;

    gap:40px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

} */ */

.cement-brand-list{

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

}

.brand-logo{

    width:220px;

    min-width:250px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.brand-logo img{

    width:150px;

    max-width:100%;

    object-fit:contain;

}

.bag-list{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    padding-right:20px;

}

/* .bag-list img{

    width:100px;

    height:120px;

    object-fit:contain;

} */

.bag-list img:hover{

    transform:scale(1.08);
}

/* .premium-bag{

    width:140px !important;

    height:180px !important;

    object-fit:contain;
} */

.home-brand-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    max-width:1200px;

    margin:40px auto;
}

.home-brand-card{

    background:#fff;

    height:110px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:15px;

    padding:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.home-brand-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.home-brand-card img{

    max-width:200px;

    max-height:95px;

    object-fit:contain;
}

.tmt-brand-card img{

    max-height:180px;

    object-fit:contain;

}

.bag-list img{

    width:120px;

    height:140px;

    object-fit:contain;

}

.tmt-brand-card{

    background:#fff;

    max-width:1000px;

    height:220px;

    margin:20px auto;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 60px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.tmt-brand-card .brand-logo{

    width:250px;

    text-align:center;

}

.tmt-brand-card .bag-list{

    width:250px;

    text-align:center;

}

.back-btn{

    display:block;

    width:250px;

    margin:40px auto;

    padding:15px;

    background:#f4b400;

    color:#000;

    text-decoration:none;

    text-align:center;

    border-radius:12px;

    font-weight:600;

}

.premium-bag{

    width:120px !important;

    height:140px !important;

}

.cement-brand-card{

    width:100%;

    max-width:1100px;

    min-height:250px;

    margin:25px auto;

    background:#fff;

    border-radius:20px;

    padding:25px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.powermax-bag{

    width:85px !important;

    height:110px !important;

}

.upvc-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    max-width:1200px;

    margin:20px auto;

}

.upvc-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.upvc-card:hover{

    transform:translateY(-8px);

}

.upvc-card img{

    width:100%;

    height:250px;

    object-fit:contain;

}

.upvc-card h3{

    margin-top:15px;

    color:#08172d;

    font-size:24px;

}

.fabrication-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    max-width:900px;

    margin:20px auto;

}

.fabrication-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.fabrication-card:hover{

    transform:translateY(-8px);

}

.fabrication-card img{

    width:100%;

    height:280px;

    object-fit:contain;

}

.fabrication-card h3{

    margin-top:15px;

    color:#08172d;

    font-size:24px;

}


/* MOBILE RESPONSIVE */

@media screen and (max-width:768px){

  .top-bar{
  flex-direction:column;
  gap:6px;
  text-align:center;
  font-size:14px;
}

 .navbar{
    flex-direction:column;
    padding:10px 15px;
    gap:10px;
}

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  .hero{
    min-height:100vh;
    height:auto;
    background-size:cover;
    animation:none !important;
}

  /* .hero{
    min-height:100vh;
    height:auto;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
  } */

  .hero-content{
    width:90%;
    margin-left:5%;
  }

  .hero-content h1{
    font-size:38px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .product-grid,
  .gallery-grid,
  .contact-info-grid,
  .testimonial-grid,
  .quick-stats,
  .why-grid,
  .home-brand-grid,
  .upvc-grid,
  .fabrication-grid{
    grid-template-columns:1fr;
  }

  .features{
    grid-template-columns:1fr;
  }

  .about{
    flex-direction:column;
  }

  .about-left,
  .stats{
    width:100%;
  }

  .stats{
    grid-template-columns:1fr;
  }

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cement-brand-card,
  .tmt-brand-card{
    flex-direction:column;
    height:auto;
    padding:20px;
    left:0;
  }

  .brand-logo{
    min-width:auto;
    width:100%;
  }

  .bag-list{
    flex-wrap:wrap;
    justify-content:center;
  }

  .cement-heading-box h1{
    font-size:32px;
  }

  .product-card img{
    height:200px;
  }

  .whatsapp-float{
    width:55px;
    height:55px;
    font-size:28px;
    right:15px;
  }

  #topBtn{
    right:15px;
  }

}