/* Base Styles */
:root {
  --primary-color: #402874;
  --secondary-color: #2a2a2a;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --dark-bg: #2a2a2a;
  --green-color:#41914c;
  --second-green:#43934c;
  --orange:#e08640;
  --button-color: #402874;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
}

.jumper {
  display: flex;
  gap: 10px;
}
.jumper div {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: jump 0.6s infinite alternate;
}
.jumper div:nth-child(2) {
  animation-delay: 0.2s;
}
.jumper div:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes jump {
  to {
    transform: translateY(-20px);
  }
}

/* Header Styles */
.sub-header {
  background: var(--primary-color);
  padding: 12px 0;
  color: white;
}

.sub-header .left-info {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 20px;
}

.sub-header .left-info img.logo-img {
  height: 45px;
}

.sub-header .left-info li {
  display: inline-block;
}

.sub-header .left-info li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.sub-header .left-info li a i {
  margin-right: 8px;
}

.sub-header .right-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.sub-header .right-icons li a {
  color: white;
  font-size: 18px;
  transition: all 0.3s;
}

.sub-header .right-icons li a:hover {
  color: #ffd700;
  transform: translateY(-3px);
}

/* Navbar */
.navbar {
  padding: 15px 0;
  background: white !important;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.navbar-brand h2 {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.navbar-brand h2 em {
  font-style: normal;
  color: var(--secondary-color);
}

.navbar-nav .nav-item {
  margin: 0 8px;
}

.navbar-nav .nav-link {
  color: var(--secondary-color) !important;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  padding: 8px 15px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color) !important;
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.navbar-nav .dropdown-item {
  padding: 10px 20px;
  color: var(--secondary-color);
  transition: all 0.3s;
}

.navbar-nav .dropdown-item:hover {
  background: var(--primary-color);
  color: white;
}

/* Carousel */
#mainCarousel {
  position: relative;
  overflow: hidden;
}

.carousel-img {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .carousel-img-1 {
  background: linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.4)
    ),
  background-image: url('../images/banner.webp');
  background-color: #333; 
  background-size: cover;
  background-position: center;
} */

.carousel-img-1 {
  background-image: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.carousel-img-2 {
  background-image:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('../images/banner2.jpg');
  /* background-color: #333; Fallback color */
}

.carousel-img-3 {
  background-image: 
  /* linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), */
  /* url('../images/cement3.jpg'); */
  /* background-color: #333;  */

  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('../images/cement3.jpg');
}

.carousel-caption {
  position: absolute;
  /* top: 50%; */
  top: 40%;
  transform: translateY(-50%);
  left: 10%;
  right: 10%;
  text-align: left;
  color: white;
}

.carousel-caption h6 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 500;
}

.carousel-caption h4 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.carousel-caption p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  margin: 0 5px !important;
  background-color: rgba(255,255,255,0.5) !important;
}

.carousel-indicators button.active {
  background-color: var(--primary-color) !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--light-bg);
  /* color: black; */
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.carousel-control-prev:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


/* Buttons */
.filled-button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid var(--primary-color);
  font-size: 16px;
}

.filled-button:hover {
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 63, 63, 0.2);
}

.border-button {
  display: inline-block;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 16px;
}

.border-button:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(243, 63, 63, 0.2);
}

/* Request Form */
.request-form {
  /* background: var(--light-bg); */
  /* background-color:#41914c ; */
  /* background: linear-gradient(135deg, var(--primary-color), #e62e2e); */
  background: linear-gradient(135deg, var(--primary-color), #9cf156);
  color: var(--light-bg);
  padding: 40px 0;
}

/* .border-button-topRequestForm{
  background-color:var(--light-bg) ;
} */

/* .request-form h4 {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0;
} */

/* Sections */
/*.more-info {*/
/*  padding: 30px 0;*/
/*}*/

.about-info {
  /*margin-top: 35px;*/
  background: var(--light-bg);
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 20px;
}

.section-heading h2 {
  color: var(--secondary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-heading h2 em {
  color: var(--primary-color);
  font-style: normal;
}

.section-heading span {
  color: #666;
  display: block;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
}

/* Service Items */
.service-item-home {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-item-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.brand-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 20px;
}

.down-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.down-content h4 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.down-content p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: 15px;
}

/* Fun Facts Section */
/* .fun-facts {
  background: white;
  padding: 80px 0;
} */

/* .fun-facts-home {
	margin-top: 140px;
	background-image: url(../images/banner3.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
	position: relative;
}

.fun-facts-home.container {
	position: relative;
	z-index: 2;
}

.fun-facts-home:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
} */

.fun-facts-home {
    margin-top: 55px; /* FIXED */
    background-image: url(../images/banner3.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0; /* REDUCED -> moves content UP */
    color: #fff;
    position: relative;
}

/* Correct Selector */
.fun-facts-home .container {
    position: relative;
    z-index: 2;
}

/* Dark Overlay */
.fun-facts-home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.55);
    z-index: 1; /* FIXED: Must be behind content */
}

/* Text styling */
.fun-facts-home .right-content span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.fun-facts-home .right-content h2 {
  color: var(--secondary-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.fun-facts-home .right-content h2 em {
  color: var(--primary-color);
  font-style: normal;
}

.fun-facts-home .right-content p {
  color: #fff;     /* FIXED (was grey and not visible on dark background) */
  margin-bottom: 30px;
}

/* Tablets (768px – 991px) */
@media (max-width: 991px) {
    .fun-facts-home {
        padding: 60px 0;
        background-attachment: scroll; /* Smooth for mobile browsers */
    }

    .fun-facts-home .right-content h2 {
        font-size: 28px;
    }
}

/* Mobile (Up to 767px) */
@media (max-width: 767px) {
    .fun-facts-home {
        padding: 40px 0;
        text-align: center; /* center everything */
    }

    .fun-facts-home .row {
        flex-direction: column-reverse; /* Text first, image second */
    }

    .fun-facts-home .right-content h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    .fun-facts-home .right-content span {
        font-size: 14px;
    }

    .fun-facts-home .right-content p {
        font-size: 15px;
    }

    .fun-facts-home .left-image img {
        width: 90%;
        margin: 0 auto;
    }
}














/* .fun-facts-home span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
} */


/* end Nasrin */

/* +++++++++ */

/* .fun-facts-home .right-content span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.fun-facts-home .right-content h2 {
  color: var(--secondary-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.fun-facts-home .right-content h2 em {
  color: var(--primary-color);
  font-style: normal;
}

.fun-facts-home .right-content p {
  color: #666;
  margin-bottom: 30px;
} */

/* Tabs Section */
#tabs .nav-pills {
  gap: 10px;
}

#tabs .nav-link {
  text-align: left;
  padding: 20px !important;
  background: var(--light-bg);
  color: var(--secondary-color);
  border-radius: 8px !important;
  margin-bottom: 10px;
  border: 1px solid #eee;
  transition: all 0.3s;
}

#tabs .nav-link.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

#tabs .nav-link small {
  display: block;
  color: #666;
  font-size: 14px;
  margin-top: 5px;
  line-height: 1.4;
}

#tabs .nav-link.active small {
  color: rgba(255,255,255,0.9);
}

#tabs .tab-content {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#tabs .tab-content h4 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
}

#tabs .tab-content h4 a:hover {
  color: var(--primary-color);
}

/* Reason Cards */
.reason-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  transition: all 0.3s;
  border-left: 4px solid var(--primary-color);
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.reason-card h5 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
}

.reason-card p {
  color: #666;
  margin: 0;
  font-size: 15px;
}

/* Testimonials */
.testimonials {
  background: var(--light-bg);
  /*padding: 80px 0;*/
}

.testimonial-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  position: relative;
}

.testimonial-item .inner-content {
  margin-bottom: 20px;
}

.testimonial-item h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-item span {
  color: var(--primary-color);
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.testimonial-item p {
  color: #666;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-item img {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* Callback Form */
/*.callback-form {*/
/*  background: white;*/
/*  padding: 80px 0;*/
/*}*/

.contact-form .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0 20px;
  font-size: 16px;
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(243, 63, 63, 0.25);
}

.contact-form textarea.form-control {
  height: 150px;
  padding: 15px 20px;
  resize: none;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 60px 0 0;
}

.footer-item {
  margin-bottom: 40px;
}
.footer-item li{
  color:#aaa;
}
.footer-item li :hover{
  color: white;
}
/* .footer-item i:hover{
  color: white;
} */

.footer-item h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-item h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--green-color);
}

.footer-item p {
  color: #aaa;
  line-height: 1.8;
}

.footer-item ul.menu-list {
  list-style: none;
  padding: 0;
}

.footer-item ul.menu-list li {
  margin-bottom: 12px;
}

.footer-item ul.menu-list li a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-item ul.menu-list li a:hover {
  /* color: var(--primary-color); */
  color: white;
  padding-left: 5px;
}

.footer-item ul.contact-info {
  list-style: none;
  padding: 0;
}

.footer-item ul.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-item ul.contact-info li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-item ul.social-icons {
  display: flex;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  gap: 10px;
}

.footer-item ul.social-icons li a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.footer-item ul.social-icons li a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.sub-footer {
  background: #1a1a1a;
  padding: 20px 0;
  text-align: center;
}

.sub-footer p {
  color: #aaa;
  margin: 0;
  font-size: 14px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(243, 63, 63, 0.4);
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px) scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .carousel-caption h4 {
    font-size: 42px;
  }
  
  .carousel-img {
    height: 500px;
  }
}

@media (max-width: 991.98px) {
  .carousel-caption {
    left: 5%;
    right: 5%;
  }
  
  .carousel-caption h4 {
    font-size: 36px;
  }
  
  .carousel-caption p {
    font-size: 16px;
  }
  
  .carousel-img {
    height: 450px;
  }
  
  .sub-header .left-info {
    justify-content: center;
    text-align: center;
  }
  
  .sub-header .right-icons {
    justify-content: center;
    margin-top: 15px;
  }
  
  .navbar-nav {
    padding: 20px 0;
  }
  
  .navbar-nav .nav-item {
    margin: 5px 0;
  }
  
  .section-heading h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .carousel-caption h4 {
    font-size: 28px;
  }
  
  .carousel-caption h6 {
    font-size: 16px;
  }
  
  .carousel-caption p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .carousel-img {
    height: 400px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }
  
  .section-heading h2 {
    font-size: 28px;
  }
  
  .more-info, .services, .fun-facts, .testimonials {
    padding: 30px 0;
  }
  
  /* .request-form h4 {
    text-align: center;
    margin-bottom: 20px;
    
  } */
  
  .request-form .col-lg-4 {
    text-align: center !important;
  }
  
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .carousel-caption {
    text-align: center;
  }
  
  .carousel-caption h4 {
    font-size: 24px;
  }
  
  .carousel-caption p {
    display: none;
  }
  
  .carousel-img {
    height: 350px;
  }
  
  .navbar-brand h2 {
    font-size: 24px;
  }
  
  .filled-button,
  .border-button {
    padding: 10px 25px;
    font-size: 14px;
  }
  
  .section-heading h2 {
    font-size: 24px;
  }
  
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}




/* About Us Page */

/* About Page Specific Styles */

/* Page Heading */
.page-heading {
  /* background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 0; */
  text-align: center;
	background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
  url(../images/banner-image-1-1920x500.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
	position: relative;
}

.page-heading h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Content */
.about-info {
  padding: 60px 0;
}

.about-info .right-content span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-info .right-content h2 {
  color: var(--secondary-color);
  font-size: 36px;
  margin-top: -90px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.about-info .right-content h2 em {
  color: var(--primary-color);
  font-style: normal;
}

.about-info .right-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.about-info .left-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: 100%;
}
.fun-facts {
	margin-top: 140px;
	background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
  url(../images/banner3.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
	position: relative;
}

.fun-facts .container {
	position: relative;
	z-index: 2;
}

.fun-facts:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 1;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts .left-content span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fun-facts .left-content h2 {
  color: var(--secondary-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.fun-facts .left-content h2 em {
  color: var(--primary-color);
  font-style: normal;
}

.fun-facts .left-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* Count Area */
.count-area-content {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
}

.count-area-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.count-digit {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1;
}

.count-title {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service Items for About Page */
.services .service-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

.services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(243, 63, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.services .service-item h4 {
  color: var(--secondary-color);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.services .service-item p {
  color: #666;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Product List */
.product-list .product-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-list .product-icon i {
  font-size: 20px;
  color: white;
}

.product-list h5 {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-list p {
  color: #666;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Active Navigation */
.navbar-nav .dropdown.active .nav-link {
  color: var(--primary-color) !important;
}

.dropdown-item.active {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form */
.callback-form {
  background: white;
  padding: 20px 0;
}

.callback-form .section-heading span {
  max-width: 600px;
}

.callback-form .contact-form .form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0 20px;
  font-size: 16px;
  transition: all 0.3s;
}

.callback-form .contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(243, 63, 63, 0.25);
}

.callback-form .contact-form textarea.form-control {
  height: 150px;
  padding: 15px 20px;
  resize: none;
}

.callback-form .contact-form .filled-button {
  padding: 12px 40px;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .page-heading {
    padding: 70px 0;
  }
  
  .page-heading h1 {
    font-size: 36px;
  }
  
  .about-info .right-content h2,
  .fun-facts .left-content h2 {
    font-size: 28px;
  }
  
  .count-digit {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .page-heading {
    padding: 50px 0;
  }
  
  .page-heading h1 {
    font-size: 32px;
  }
  
  .about-info, .fun-facts, .services {
    padding: 50px 0;
  }
  
  .about-info .right-content h2,
  .fun-facts .left-content h2 {
    font-size: 24px;
  }
  
  .count-area-content {
    margin-bottom: 20px;
  }
  
  .services .service-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .page-heading h1 {
    font-size: 28px;
  }
  
  .about-info .right-content h2,
  .fun-facts .left-content h2 {
    font-size: 22px;
  }
  
  .count-digit {
    font-size: 32px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 24px;
  }
  
  .callback-form .contact-form .filled-button {
    width: 100%;
  }
}
.page-heading h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-heading .lead {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Product Categories */
.product-categories {
  padding: 50px 0;
  background: var(--light-bg);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  color: var(--secondary-color);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  border: 2px solid transparent;
}

.category-card:hover,
.category-card.active {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  color: var(--primary-color);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: rgba(243, 63, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.category-card:hover .category-icon,
.category-card.active .category-icon {
  background: var(--primary-color);
}

.category-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.category-card:hover .category-icon i,
.category-card.active .category-icon i {
  color: white;
}

.category-card span {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

/* Product Filter */
.product-filter {
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-filter .form-control {
  border-radius: 5px 0 0 5px;
  border: 1px solid #ddd;
  padding: 12px 20px;
}

.product-filter .btn {
  border-radius: 0 5px 5px 0;
  padding: 12px 25px;
}

.product-filter .form-select {
  border-radius: 5px;
  padding: 12px 20px;
  border: 1px solid #ddd;
}

/* Product Items */
.product-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #eee;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.product-item:hover .product-img img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}

.product-item:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-view-btn:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.product-info {
  padding: 25px;
}

.product-brand {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.product-info h4 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
  font-size: 13px;
}

.spec-item i {
  color: var(--primary-color);
  font-size: 14px;
}

.product-price {
  margin-bottom: 20px;
}

.product-price .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.product-price .old-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.product-actions .filled-button {
  flex: 1;
  padding: 10px 15px;
  font-size: 14px;
  text-align: center;
}
/* Modal Styles */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-header {
  background: var(--primary-color);
  color: white;
  border-bottom: none;
}

.modal-header .btn-close {
  filter: invert(1);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.quantity-selector .input-group {
  width: 150px;
}

.quantity-selector .btn {
  width: 40px;
}

.quantity-selector .form-control {
  text-align: center;
}

/* Pagination */
.pagination .page-link {
  color: var(--secondary-color);
  border: 1px solid #ddd;
  margin: 0 5px;
  border-radius: 5px;
  transition: all 0.3s;
}

.pagination .page-link:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pagination .page-item.disabled .page-link {
  color: #999;
}

/* Responsive Styles for Products Page */
@media (max-width: 1199.98px) {
  .product-img {
    height: 220px;
  }
}

@media (max-width: 991.98px) {
  .page-heading {
    padding: 70px 0;
  }
  
  .page-heading h1 {
    font-size: 36px;
  }
  
  .product-filter {
    position: static;
  }
  
  .product-img {
    height: 200px;
  }
  
  .category-card {
    padding: 15px 10px;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
  }
  
  .category-icon i {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .page-heading {
    padding: 50px 0;
  }
  
  .page-heading h1 {
    font-size: 32px;
  }
  
  .page-heading .lead {
    font-size: 18px;
  }
  
  .product-categories {
    padding: 30px 0;
  }
  
  .product-img {
    height: 180px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .product-actions .filled-button {
    width: 100%;
  }
  
  .add-to-cart-btn,
  .enquiry-btn {
    width: 100%;
    height: 45px;
    border-radius: 5px;
  }
  
  .modal-dialog {
    margin: 10px;
  }
}

@media (max-width: 575.98px) {
  .page-heading h1 {
    font-size: 28px;
  }
  
  .category-card span {
    font-size: 12px;
  }
  
  .product-img {
    height: 160px;
  }
  
  .product-info h4 {
    font-size: 16px;
  }
  
  .product-desc {
    font-size: 13px;
  }
  
  .product-price .price {
    font-size: 18px;
  }
  
  .pagination .page-link {
    padding: 8px 12px;
    margin: 0 2px;
  }
}

/* Animation for filtering */
.product-item {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Active navigation */
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color) !important;
}

/* Print Styles */
@media print {
  .product-filter,
  .category-card,
  .product-actions,
  .modal,
  .scroll-to-top {
    display: none !important;
  }
  
  .product-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}





































/* Contact Information */

.contact-information {
	margin-top: 140px;
}

.contact-information .contact-item {
	padding: 60px 30px;
	background-color: #f7f7f7;
	text-align: center;
}

.contact-information .contact-item i {
	color: #a4c639;
	font-size: 48px;
	margin-bottom: 40px;
}

.contact-information .contact-item h4 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.25px;
	margin-bottom: 15px;
}

.contact-information .contact-item p {
	margin-bottom: 20px;
}

.contact-information .contact-item a {
	font-weight: 600;
	color: #a4c639;
	font-size: 15px;
}
.contactUs-btn{
  border-color:var(--button-color);
  background-color: var(--button-color);
  color: #fff;

}
.contactUs-btn:hover{
  border-color: var(--button-color);
}
















/* --Blog Page-- */


/* Blog Page Specific Styles */

/* Blog Heading */
.blog-heading {
  /* background: linear-gradient(rgba(42, 42, 42, 0.9), rgba(42, 42, 42, 0.9)), url('../images/blog-bg.jpg'); */
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
  url(../images/banner-image-1-1920x500.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.blog-heading .lead {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 30px;
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
}

.search-box .input-group {
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.search-box .form-control {
  border: none;
  padding: 15px 20px;
  font-size: 16px;
}

.search-box .btn {
  padding: 0 30px;
  background: var(--primary-color);
  border: none;
  font-size: 18px;
}

.search-box .btn:hover {
  background: #e62e2e;
}

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Featured Post */
.featured-post {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(243, 63, 63, 0.3);
}

.featured-post img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.post-meta {
  color: #666;
  font-size: 14px;
  flex-wrap: wrap;
}

.category-badge {
  background: rgba(243, 63, 63, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
}

.featured-post h2 {
  color: var(--secondary-color);
  font-size: 32px;
  margin: 20px 0;
  line-height: 1.3;
}

.featured-post h2 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.featured-post h2 a:hover {
  color: var(--primary-color);
}

.featured-post .lead {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}

.blog-card-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.blog-card-date span {
  font-size: 18px;
  line-height: 1;
}

.blog-card-date small {
  font-size: 11px;
  font-weight: 500;
}

.blog-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
  color: #666;
}

.blog-card-meta .category {
  background: rgba(243, 63, 63, 0.1);
  color: var(--primary-color);
  padding: 3px 12px;
  border-radius: 15px;
  font-weight: 500;
}

.blog-card h3 {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  flex-grow: 1;
}

.blog-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.blog-card h3 a:hover {
  color: var(--primary-color);
}

.blog-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.blog-card-footer .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-footer .author span {
  color: #666;
  font-size: 14px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}

.read-more:hover {
  color: var(--secondary-color);
  gap: 5px;
}

.read-more i {
  font-size: 12px;
  margin-left: 5px;
  transition: all 0.3s;
}

.read-more:hover i {
  margin-left: 10px;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.widget-title {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list li.active a {
  background: var(--primary-color);
  color: white;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f8f9fa;
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.category-list a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.category-list .count {
  background: white;
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.category-list li.active .count {
  background: rgba(255,255,255,0.2);
  color: white;
}

.category-list a:hover .count {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* Recent Posts */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-content h5 {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.4;
}

.recent-post-content h5 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s;
}

.recent-post-content h5 a:hover {
  color: var(--primary-color);
}

.recent-post-content span {
  color: #666;
  font-size: 13px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 15px;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--primary-color), #e62e2e);
  color: white;
}

.newsletter-widget .widget-title,
.newsletter-widget p {
  color: white;
}

.newsletter-widget .form-control {
  border: none;
  padding: 12px 15px;
  border-radius: 8px;
}

.newsletter-widget .filled-button {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

.newsletter-widget .filled-button:hover {
  background: transparent;
  color: white;
}

/* Pagination */
.pagination .page-link {
  color: var(--primary-color);
  border: none;
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 8px;
  font-weight: 500;
}

.pagination .page-item.active .page-link {
  background: var(--primary-color);
  color: white;
}

.pagination .page-link:hover {
  background: rgba(243, 63, 63, 0.1);
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .blog-heading {
    padding: 70px 0;
  }
  
  .featured-post {
    padding: 30px;
  }
  
  .featured-post h2 {
    font-size: 28px;
  }
  
  .blog-card-img {
    height: 200px;
  }
  
  .blog-sidebar {
    margin-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .blog-heading {
    padding: 50px 0;
  }
  
  .blog-heading h1 {
    font-size: 32px;
  }
  
  .featured-post {
    padding: 20px;
  }
  
  .featured-post img {
    height: 300px;
  }
  
  .featured-post h2 {
    font-size: 24px;
  }
  
  .blog-card-body {
    padding: 20px;
  }
  
  .blog-card h3 {
    font-size: 18px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .blog-heading h1 {
    font-size: 28px;
  }
  
  .blog-heading .lead {
    font-size: 16px;
  }
  
  .featured-post {
    padding: 15px;
  }
  
  .featured-post img {
    height: 250px;
  }
  
  .post-meta {
    font-size: 12px;
  }
  
  .blog-card-img {
    height: 180px;
  }
  
  .blog-card-date {
    width: 40px;
    height: 40px;
  }
  
  .blog-card-date span {
    font-size: 16px;
  }
  
  .blog-card-date small {
    font-size: 10px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .blog-card,
  .sidebar-widget {
    background: #2a2a2a;
    color: #fff;
  }
  
  .blog-card h3 a,
  .recent-post-content h5 a {
    color: #fff;
  }
  
  .blog-card p,
  .recent-post-content span {
    color: #aaa;
  }
  
  .category-list a {
    background: #333;
    color: #fff;
  }
  
  .tag {
    background: #333;
    color: #fff;
  }
}

/* -- End Blog Css-- */
