@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* ------------------------------------------------------global-css------------------------------------------------------------- */

:root {
  --yellow: #F28B44;
  --blue: #1c1244;
  --black: #000000;
  --white: #ffffff;

  --h1: 42px;
  --h2: 32px;
  --h3: 26px;
  --h4: 22px;
  --h5: 18px;
  --h6: 16px;
  --p: 16px;

  --line-height: 1.6;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f9fa;
  color: var(--black);
  font-family: "Jost", sans-serif;
  line-height: var(--line-height);
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

section,
.footer {
  padding: 50px 0px;
}

h1 {
  font-size: var(--h1);
  font-weight: 700;
  color: var(--blue);
}
h2 {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
}
h3 {
  font-size: var(--h3);
  font-weight: 600;
  color: var(--blue);
}
h4 {
  font-size: var(--h4);
  font-weight: 600;
  color: var(--blue);
}
h5 {
  font-size: var(--h5);
  font-weight: 600;
  color: var(--blue);
}
h6 {
  font-size: var(--h6);
  font-weight: 600;
  color: var(--blue);
}

p {
  font-size: var(--p);
  color: #555;
  margin-bottom: 12px;
}

.section-line {
  width: 70px;
  height: 4px;
  background: var(--yellow);
  margin: 12px auto 15px;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
  }
  section,
  .footer {
    padding: 20px 0px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
}

/* -------------------------global-css-------------------------------- */

/* ----------------------------------------footer css-------------------- */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/*------------------------------------footer css ---------------*/

/* ----------------------------------------fixed-call-icon ---------------------*/
.call-fixed {
  position: fixed;
  top: 65%;
  right: 2%;
  z-index: 9999;
}

.call-fixed a {
  width: 55px;
  height: 55px;
  background: var(--blue);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-fixed a:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: scale(1.1);
}

@media screen and (max-width: 1400px) {
  .call-fixed {
    top: 60%;
  }
}

@media (max-width: 767px) {
  .call-fixed a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* -------------------------------------fixed-call-icon-end------------------------- */

/* -------------------------whatsapp fixed icon-start------------------------- */
.whatsapp-fixed {
  position: fixed;
  top: 80%;
  right: 2%;
  z-index: 9999;
}

.whatsapp-fixed a {
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-fixed a:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

@media (max-width: 767px) {
  .whatsapp-fixed a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}
/* -------------------------------whatsapp fixed icon-end-------------------- */

/* --- --------------------------TOP BAR---------------------- --- */
.top-bar {
  background: var(--blue);
  padding: 8px 0;
  font-family: inherit;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-card i,
.contact-name,
.contact-number {
  color: var(--white);
  transition: color 0.3s ease;
  font-size: 0.7rem;
}

.contact-name {
  font-weight: 600;
  white-space: nowrap;
}

.contact-card:hover .contact-name,
.contact-card:hover .contact-number,
.contact-card:hover i {
  color: var(--yellow);
}

.top-social {
  display: flex;
  gap: 10px;
}

.top-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.top-social a:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .top-bar {
    padding: 6px 0;
    text-align: center;
    gap: 5px;
  }
  .contact-card {
    padding: 6px 12px;
    justify-content: center;
  }
  .top-social {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
  }
  .top-contact,
  .contact-card {
    justify-content: center;
  }
  .top-social {
    margin-top: 4px;
  }
}

@media (max-width: 576px) {
  .top-bar {
    display: none;
  }
}
/* ----------------------top bar ----------------- */

/*------------------ nav ------------------*/
.navbar {
  padding: 0px;
}
.custom-navbar {
  background: var(--white);

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.custom-navbar .navbar-brand img {
  width: 120px; 
}

.custom-navbar .nav-link {
  color: var(--blue);
  font-weight: 600;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: var(--yellow);
}

.dropdown-menu {
  position: absolute;
  height: 500px;
  overflow-y: scroll;
}

.custom-navbar .dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}

.custom-navbar .dropdown-item {
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.custom-navbar .dropdown-item:hover {
  background: var(--blue);
  color: var(--white);
}

.custom-navbar .nav-btn {
  background: var(--yellow);
  color: var(--blue) !important;
  padding: 6px 18px;
  border-radius: 30px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.custom-navbar .nav-btn:hover {
  background: var(--blue);
  color: var(--white) !important;
}

.custom-navbar .navbar-toggler,
.custom-navbar .navbar-toggler:focus {
  border: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .custom-navbar .navbar-brand img {
    width: 100px;
  }
  .custom-navbar .nav-link {
    margin: 3px 0;
  }

  .custom-navbar .nav-btn {
    font-size: 14px;
    padding: 8px 18px;
    min-width: 105px;
    margin: 10px auto 0;
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  .custom-navbar .navbar-brand img {
    width: 80px;
  }
  .navbar-nav {
    padding: 10px 0;
  }
  .navbar-nav .nav-item {
    margin-bottom: 6px;
  }
  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 8px 12px;
  }

  .custom-navbar .nav-btn {
    padding: 8px 20px;
    min-width: 110px;
    margin: 4px auto 0;
  }
}

@media (max-width: 576px) {
  .custom-navbar .nav-btn {
    font-size: 13.5px;
    min-width: 104px;
    border-radius: 24px;
  }
}
/*----------------------- nav ---------------- */

/*----------------- banner ------------------ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: url(../images/banner/left-red.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

.carousel-control-next-icon {
  background-image: url(../images/banner/right-red.png);
}

@media screen and (max-width: 767px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
}
/*--------------------- banner --------------------------------*/

/* ------------------- sub banner css start here --------------------- */
.sub-banner {
  background:
    linear-gradient(rgba(5, 5, 5, 0.664), rgba(0, 0, 0, 0.842)),
    url(../images/banner/sub1.jpeg) no-repeat center center/cover;
  padding: 100px 0px;
}
.sub-banner .sub-banner-content {
  text-align: center;
  color: #fff;
}
.sub-banner .sub-banner-content h1 {
  color: #fff;
}

.sub-banner .sub-banner-content a {
  color: white;
}

@media screen and (max-width: 1200px) {
  .sub-banner {
    padding: 80px 0px;
  }
}

@media screen and (max-width: 991px) {
  .sub-banner {
    padding: 50px 0px;
  }
}

@media screen and (max-width: 767px) {
  .sub-banner {
    padding: 30px 0px;
  }
}

/* ------------------- sub banner css ends here --------------------- */

/* ---------------- ABOUT US SECTION ------------------------- */

.about-heading h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  color: var(--blue);
  background: var(--white);
}

.about-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.about-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 15px;
}

.about-content p {
  text-align: justify;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-img img {
  border-radius: 14px;
  padding: 6px;
  background: linear-gradient(135deg, var(--yellow), var(--blue));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: all 0.4s ease;
}

.about-img img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  background: linear-gradient(135deg, var(--blue), var(--yellow));
}

.about-btn {
  margin-top: 20px;
}

.btn-about {
  display: inline-block;
  padding: 12px 30px;
  background: var(--yellow);
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background: var(--blue);
  color: var(--yellow);
}



@media (max-width: 767px) {
  .about-heading h2 {
    font-size: 30px;
  }
  .about-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .about-heading h2 {
    font-size: 26px;
  }
  .about-content h2 {
    font-size: 16px;
  }
  .about-content p {
    font-size: 14px;
  }
  .btn-about {
    padding: 10px 24px;
    font-size: 14px;
  }
}
/*------------------------------ about-us ----------------------- */

/* --- ---------- SERVICES SECTION ---------------- */
.services-section {
  padding: 80px 0;
  background: #ffffff;
}

.services-section .section-title {
  font-weight: 700;
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.services-section .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--yellow);
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

.services-section .section-subtitle {
  color: #555;
  margin-top: 10px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--yellow);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--blue);
  color: var(--yellow);
  transform: rotate(5deg) scale(1.05);
}

.service-content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.site-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.site-btn:hover {
  background: var(--blue);
  color: var(--yellow);
}

@media (max-width: 991px) {
  .services-section {
    padding: 70px 0;
  }
  .services-section .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 50px 0;
  }
  .services-section .section-title {
    font-size: 26px;
  }
  .service-content p {
    font-size: 13px;
  }
}
/*-------------------- service-section -----------------*/

/* -------------------- PRODUCTS SECTION --------------- --- */
.products-section {
  padding: 80px 0;
  background: rgba(245, 180, 26, 0.05);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--yellow);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: #555;
  margin-top: 10px;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.35s ease;
}

.product-img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-content {
  padding: 25px 20px;
}

.product-content h5 {
  color: var(--blue);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.product-content p {
  color: gray;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.product-card:hover {
  background: var(--blue);
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.product-card:hover .product-content h5 {
  color: var(--yellow);
}

.product-card:hover .product-content p {
  color: var(--white);
}

.product-card:hover .product-img-box img {
  transform: scale(1.06);
}
.site-btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--yellow);
  color: var(--blue);
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-btn:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .products-section {
    padding: 70px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .product-img-box img {
    height: 230px;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .section-subtitle {
    font-size: 14px;
  }
  .product-img-box img {
    height: 210px;
  }
}

@media (max-width: 576px) {
  .products-section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 13px;
  }
  .product-img-box img {
    height: 190px;
  }
  .product-content h5 {
    font-size: 16px;
  }
  .product-content p {
    font-size: 13px;
  }
}

/* more products btn css */

.products-section .more-products a {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.products-section .more-products a:hover {
  text-decoration: underline;
  /* text-decoration-color: var(--blue); */
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  background: var(--yellow);
  color: var(--blue);
}

/* responsive css */

@media screen and (max-width: 767px) {
  .products-section .more-products a {
    padding: 10px 20px;

    font-size: 14px;
  }
}

/* responsive css */

/* more products btn css */

/* ----------------- products -------------------*/

/* ------------------- WHY CHOOSE US SECTION --------------- */
.why-choose-us {
  padding: 80px 0;
  background: #f9f9f9;
}

.why-choose-us-heading h2 {
  position: relative;
  display: inline-block;
  color: var(--blue);
  padding-bottom: 12px;
}

.why-choose-us-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--yellow);
  border-radius: 3px;
}

.why-choose-us-heading p {
  max-width: 650px;
  margin: 12px auto 0;
  color: #555;
}

.why-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.why-img:hover img {
  transform: scale(1.05);
}

.why-content h3 {
  color: var(--blue);
  margin-bottom: 15px;
}

.why-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.why-content ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.why-content ul li {
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0;
  }
  .why-content {
    text-align: center;
  }
  .why-choose-us-heading h2 {
    font-size: 30px;
  }
  .why-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .why-choose-us-heading h2 {
    font-size: 26px;
  }

  .why-content p,
  .why-content ul li {
    font-size: 14px;
    justify-content: center;
  }
}
/*------------------------- why choose ------------------------ */

/* --- ------------------- TESTIMONIALS SECTION ------------ --- */
.testimonial-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonial-heading h2 {
  color: var(--blue);
  text-align: center;
}
.testimonial-section .section-line {
  width: 70px;
  height: 4px;
  background: var(--yellow);
  margin: 12px auto 15px;
  border-radius: 4px;
}
.testimonial-card {
  position: relative;
  background: var(--white);
  padding: 40px 35px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transition: 0.4s ease;
  margin: 15px 10px;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--yellow);
  opacity: 0.25;
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  color: #555;

  line-height: 1.7;
}
.testimonial-text {
  margin-bottom: 5px;
}

.testimonial-client i{
  color: var(--yellow);
}

.testimonial-client h5 {
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-client span {
  color: #777;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}
.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
  filter: invert(1);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 24px 18px;
  }
  .testimonial-text {
    font-size: 14px;
  }
}
/*------------------- testimonial ------------- */

/* --- --------- BLOG SECTION -------------------- */
.blog-section {
  background: var(--white);
  padding: 80px 0;
}

.blog-section .section-title {
  color: var(--blue);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.blog-section .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.blog-section .section-subtitle {
  color: #666;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: center;
}
.blog-card {
  height: 100%;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 20px;
}

.blog-card-title {
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-text {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-card-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.blog-card-btn:hover {
  background: var(--blue);
  color: var(--yellow);
}
@media (max-width: 991px) {
  .blog-section .section-title {
    font-size: 28px;
  }
  .blog-card-img {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .blog-section .section-title {
    font-size: 24px;
  }
  .blog-section .section-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
  .blog-card-content {
    padding: 16px;
  }
  .blog-card-title {
    font-size: 17px;
  }
  .blog-card-text {
    font-size: 13.5px;
  }
  .blog-card-img {
    height: 190px;
  }
}
/*-------------------------------------------------------- blog--------------------------------------------------------- */

/* --- --------------------------------------------------CTA SECTION ------------------------------------------------ */
.cta-section {
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  margin: 60px 0;
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-heading {
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--white);
}

.cta-section .cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0px;
}

.cta-btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta-btn:hover {
  background: var(--white);
  color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 180, 26, 0.2);
  z-index: -1;
}

.cta-section::before {
  width: 150px;
  height: 150px;
  top: -40px;
  left: -40px;
}

.cta-section::after {
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: -30px;
}

@media (max-width: 991px) {
  .cta-section {
    text-align: center;
    padding: 40px 20px;
  }
  .cta-heading {
    font-size: 28px;
  }
  .cta-content p {
    font-size: 15px;
  }
  .cta-btn {
    padding: 12px 26px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .cta-section .cta-content h2 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .cta-heading {
    font-size: 24px;
  }
  .cta-content p {
    font-size: 14px;
  }
  .cta-btn {
    width: 100%;
    padding: 12px 0;
    text-align: center;
  }
}
/* ---------------------------------------------------------------cta------------------------------------------------------------------ */

/* --------------------------------------------------------------contact------------------------------------------------------------------ */
.contact-section {
  background: #fff8e8;
  padding: 50px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  color: var(--blue);
  display: inline-block;
}

.section-heading p {
  color: #555;
  margin-top: 10px;
}

.section-line {
  display: block;
  width: 70px;
  height: 4px;
  background: var(--yellow);
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-info {
  background: var(--white);
  border-radius: 14px;
  padding: 35px 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-left: 5px solid var(--yellow);
}

.contact-info h4 {
  color: var(--blue);
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #333;
}

.contact-info ul li i {
  width: 34px;
  height: 34px;
  background: var(--yellow);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.contact-info ul li a {
  color: #333;
  text-decoration: none;
}

.contact-info ul li a:hover {
  color: var(--blue);
}

/* contact left side responsive */

@media screen and (max-width: 767px) {
  .contact-section {
    padding: 20px 0;
  }

  .contact-info {
    padding: 15px 10px;
  }
}

/* contact left side responsive */

.contact-section .contact-form h3 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-section .contact-form .form-control {
  background-color: transparent;
  font-size: 16px;
  padding: 5px 5px !important;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0px;
  color: #000 !important;
}

.contact-section .contact-form .form-control:focus {
  color: #000;
  box-shadow: none;
  border-color: #000;
  background-color: transparent;
}

.contact-section .contact-form .form-control::placeholder {
  color: #000;
}

.contact-section .form-btn {
  display: flex;
  justify-content: center;
}

.contact-section .form-btn button {
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--blue);
  background: none;
  border: 2px solid var(--blue);
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.contact-section .form-btn button:hover {
  background: var(--blue);
  color: var(--white);
}

/* responsive css  */

@media screen and (max-width: 1200px) {
  .contact-section .contact-detail h3 {
    font-size: 32px;
  }
  .contact-section .contact-detail h5 {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .contact-section .contact-detail {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .contact-section .contact-form h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .contact-section .form-btn button {
    font-size: 14px;
  }
}

/* end of responsive */

/* ------------------------- captcha css start ------------------- */

.captchasep1 {
  display: flex;
}

.contact-form .captchasep1 .form-floating .form-control {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #000;
  background: none !important;
}

.form-floating > label {
  background: none !important;
  padding: 0rem 0rem !important;
}

.form-floating > .form-control:not(:placeholder-shown) ~ label::after {
  background: none !important;
}

.captchasep1 input {
  width: 100% !important;
  height: 40px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
}

.captchasep1 .captcha-codes-sec p {
  letter-spacing: 9px;
  font-style: italic;
  font-size: 32px;
  font-weight: 800;
  padding: 5px;
  height: 100%;
  color: #000;
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  height: 100%;
  border: none;
  background: none;
}

.captchasep1 .captcha-codes-sec button i {
  background: var(--blue);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}
.captchasep1 .border {
  border: 1px solid #000 !important;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 2px;
    font-size: 18px;
    width: 60% !important;
  }

  .captchasep1 .captcha-codes-sec button {
    font-size: 12px;
  }

  .contact-form .captchasep1 .form-floating label {
    font-size: 14px;
    padding: 5px;
  }

  .form-floating .form-control,
  .form-floating .form-select {
    height: 2.5rem;
    line-height: 1.25;
  }

  .form-floating > .form-control {
    min-height: calc(1.5rem + calc(var(--bs-border-width) * 1));
  }
}

/* -----------captcha css end here ------------ */

/* -------------------- end of contact us css here --------------------------- */

/* ----------- footer -------------- */
.main-footer {
  background: #0f0b2b;
  color: #ddd;
  padding-top: 60px;
}
.footer-box h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-box .footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-logo span {
  color: var(--yellow);
}

.footer-box p,
.footer-box a {
  color: #ccc;
  line-height: 1.7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li i {
  margin-right: 8px;
  color: var(--yellow);
}

.footer-box a:hover {
  color: var(--yellow);
  padding-left: 5px;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding: 15px 0;
  text-align: center;
  background: #0a0720;
  color: #aaa;
}

@media (max-width: 991px) {
  .footer-box .footer-logo {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .footer-section {
    padding: 35px 0;
  }
  .footer-logo img {
    width: 80px;
  }
  .footer-para {
    margin-bottom: 18px;
  }
  .footer-para p {
    line-height: 1.7;
    text-align: justify;
  }
  .main-mb-col {
    margin-bottom: 30px;
  }

  .footer-box h5 {
    margin-bottom: 10px;
  }

  .footer-ul ul li a,
  .footer-cont-detail p,
  .footer-cont-detail a {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 576px) {
  .footer-box li a {
    font-size: 12px;
  }
}
/*------------------- FOOTER-END ---------------- */

/* ============================================================================================= */
/* ============================================================================================== */

/* ------------------- about page css start here --------------------- */

.mv-section {
  background: #f5f7fb;
}

.mv-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeDown 1s ease forwards;
}

.mv-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.mv-header p {
  color: #666;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mv-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  text-align: center;
  opacity: 0;
}

/* Animations */
.mission {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.vision {
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.mv-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .mv-header {
    margin-bottom: 20px;
  }

  .mv-header h2 {
    font-size: 26px;
  }
}

/* ------------------- about page css ends here --------------------- */

/* ============================================================================================= */
/* ============================================================================================== */

/* ------------------- contact page css start here --------------------- */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
  }
}

/* ------------------- contact page css ends here --------------------- */

/* ================================================================================================================ */
/* ================================================================================================================ */

/* ------------------------------------ enquiry page css start here ------------------------------------ */

.enquiry-page .product-detail .product-text p {
  text-align: justify;
  margin-bottom: 10px;
}

.enquiry-page .product-detail .detail {
  text-align: justify;
}
.enquiry-page .product-detail .detail p {
  margin-bottom: 20px;
}

.enquiry-page .product-detail .detail .features h2 {
  text-align: center;
  margin: 50px 0px;
  color: var(--black);
}
.enquiry-page .product-detail .detail .features h3 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 10px;
}

/* responive product detail */

@media screen and (max-width: 1200px) {
  .enquiry-page .product-detail p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .enquiry-page .product-detail .product-img {
    margin-bottom: 20px;
  }
  .enquiry-page .product-detail p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .enquiry-page .product-detail p {
    font-size: 12px;
  }
  .enquiry-page .product-detail .detail .features h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .enquiry-page .product-detail .detail .features h3 {
    font-size: 16px;
  }
  .enquiry-page .product-detail .detail .features p {
    margin-bottom: 20px;
  }
}

/* responsive product detail */

/* owl carousel dots css start */

/* Center the dots below the carousel */
.related-product-category-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Style for each dot */
.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #015ab3a2 !important;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

/* Active dot style */
.owl-dots .owl-dot.active span {
  background: #0136b3 !important;
}

@media screen and (max-width: 767px) {
  .related-product-category-carousel .owl-dots {
    display: none;
  }
}
/* owl carousel dots css end */

/* ------------------------------------ end of enquiry page css here ------------------------------------ */

/* ==================================================================================================== */
/* ==================================================================================================== */

/* ============================ blog detail page css start here ============================ */

.blog-detail .blog-img {
  background: #eaeaec;
}

.blog-detail .blog-date {
  display: inline-block;
  background: var(--blue);
  padding: 5px 20px;
  font-weight: 400;
  margin-top: 10px;
}
.blog-detail .blog-date p {
  margin-bottom: 0px;
  color: var(--white);
}

.blog-detail .blog-text {
  margin-top: 30px;
}

.blog-detail .blog-text h3 {
  margin-bottom: 5px;
  font-size: 20px;
}
.blog-detail .blog-text p {
  margin-bottom: 20px;
  text-align: justify;
}

.blog-detail .recent-blogs .recent .recent-img {
  background: #eaeaec;
}

.blog-detail .recent-blogs .recent .recent-date {
  display: inline-block;
  background: var(--blue);
  padding: 5px 20px;
  font-weight: 400;
  color: var(--white);
  margin-top: 10px;
}
.blog-detail .recent-blogs .recent .recent-date p {
  margin-bottom: 0px;
  color: var(--white);
}

.blog-detail .recent-blogs .recent .recent-img p {
  color: black;
  margin-top: 10px;
}

.blog-detail .recent-blogs .recent-img {
  position: relative;
  overflow: hidden;
}

.blog-detail .recent-blogs .recent-img img {
  transition: 0.2s ease-in-out;
}
.blog-detail .recent-blogs .recent-img:hover img {
  transform: scale(1.05);
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .blog-detail .blog-text h2 {
    font-size: 24px;
  }

  .blog-detail .recent-blogs .recent .recent-img p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .blog-detail .blog-text h2 {
    font-size: 22px;
  }

  .blog-detail .recent-blogs {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-date {
    padding: 1px 10px;
    font-weight: 600;
    margin-top: 5px;
  }
  .blog-detail .blog-text {
    margin-top: 10px;
  }
  .blog-detail .blog-text h2 {
    font-size: 18px;
  }
  .blog-detail .blog-text h3 {
    margin-bottom: 2px;
    font-size: 16px;
  }
  .blog-detail .blog-text p {
    margin-bottom: 10px;
  }
}

/* responsive css end */

/* ============================ blog detail page css ends here ============================ */

/* ================================================================================================================ */
/* ================================================================================================================ */
