@font-face {
  font-family: poppins-black;
  src: url(../fonts/Poppins/Poppins-Black.ttf);
}

@font-face {
  font-family: poppins-regular;
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: poppins-light;
  src: url(../fonts/Poppins/Poppins-Light.ttf);
}

@font-face {
  font-family: poppins-bold;
  src: url(../fonts/Poppins/Poppins-Bold.ttf);
}

@font-face {
  font-family: poppins-medium;
  src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

:root {
  --primary-color: #026baa;
  --black-color: #000000;
  --off-white-color: #e6e6e6;
  --white-color: #fff;
  --grey-color: rgb(188, 193, 205);
  --bg-color: rgb(229, 231, 237);
  --blue-color: #0000FF;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;

}


/*=== Header-Starts ===*/

/*=== Floating-Call-Button-Starts ===*/
.floating-call-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background-color: #00ff00;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: var(--white-color);
}

/*=== Floating-Call-Button-Ends ===*/

/*=== Floating-Whatsapp-Button-starts ===*/

.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: red;
}

/*=== Floating-Whatsapp-Button-Ends ===*/


.open-btn {
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.open-btn:hover {
  background-color: var(--black-color);
}


/*** Navbar ***/

.navbar.sticky-top {
  top: -120px;
  transition: .5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 10px 0;
  color: var(--black-color);
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.quote-btn-head {
  text-decoration: none;
  font-family: poppins-medium;
  background: var(--primary-color);
  color: white;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 30px;
  transition: .3s;
}

.quote-btn-head:hover {
  color: white;
  background-color: var(--blue-color);
}

nav .logo img {
  width: 122px;
}

@media (max-width: 1400px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #470808;
  }
}

@media (min-width: 1400px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
  
  .navbar .nav-item .dropdown-menu a:hover {
     background-color: var(--primary-color);
     color:white;
  }
}


/*=== Header-Ends ===*/

/*=== Banner-Starts ===*/

/* Hero Section */
.banner {
  position: relative;
  height: 90vh;
  background-image: url('https://images.unsplash.com/photo-1655913198024-1a30f1c911e5?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  /* Replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media(max-width:576px) {
  .banner{
    height: auto;
  }
}
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  color: #fff;
}

.banner h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.animated-heading {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: auto;
  line-height: 1.4;
  overflow-wrap: normal;
  white-space: normal;
}

.animated-heading span {
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 1px;
}

.banner h1 span {
  color: var(--white-color);
  /* Different color for 1 word */
}

.banner p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #ddd;
}

.banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-buttons a {
  padding: 12px 28px;
  font-size: 1rem;
  text-decoration: none;
  color: ff;
  border-radius: 50px;
  background: linear-gradient(to right, #6a11cb, #2575fc);
  transition: background 0.4s ease;
}

.banner-buttons a:hover {
  background: linear-gradient(to right, #2575fc, #6a11cb);
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2.2rem;
  }

  .banner p {
    font-size: 1.05rem;
  }

  .banner-buttons a {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 1.8rem;
  }

  .banner p {
    font-size: 0.95rem;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/*=== Banner-Ends ===*/

/*=== Search-Section-Starts ===*/

/* Container styling */
.search-section-alt {
  background: linear-gradient(to right, #f2f2f2, #e6e6e6);
  padding: 100px 20px;
}

.container-alt {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0px;
}

.search-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.search-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 15px;
}

.search-title .highlight-word {
  color: var(--primary-color);
  /* Maroon style highlight */
}

.search-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
}

.search-box {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-box input {
  flex: 1 1 60%;
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 50px;
  border: 1px solid #ccc;
  outline: none;
  min-width: 240px;
  transition: border-color 0.3s ease;
}

.search-box input:focus {
  border-color: var()--primary-color;
}

.search-box button {
  background: var(--primary-color);
  width: 250px;
  margin: 0 auto;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background: var(--blue-color);
}

/* Responsive */
@media (max-width: 600px) {
  .search-title {
    font-size: 2rem;
  }

  .search-box {
    flex-direction: column;
  }

  .search-box input,
  .search-box button {
    width: 100%;
  }
}

/*=== Search-Section-Ends ===*/

/*=== Why-Choose-Starts ===*/

/* Why Choose Section */
/* Section Styling */
.why-choose-modern {
  background-color: var(--white-color);
  padding: 80px 20px;
  text-align: center;
}

.container-modern {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-modern h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.highlight-word {
  color: var(--primary-color);
}

.section-subheading {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* Grid Wrapper */
.card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 10px;
}

/* Card */
.feature-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.circle-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.feature-card:hover .circle-icon {
  background-color: #000;
  background-color: var(--blue-color);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-modern h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 600px) {
  .card-wrapper {
    grid-template-columns: repeat(2,1fr);
  }
  .services.card-wrapper {
    grid-template-columns: repeat(1,1fr);
  }
  .feature-card
  {
    padding: 12px;
  }
  .feature-card .circle-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .feature-card h3
  {
    font-size: 16px;
  }
  .feature-card p{font-size: 12px;}

  .why-choose-modern h2 {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
}

/*=== Why-Choose-Ends ===*/

/*===   -Categoris-Starts ===*/

/* Section Styling */
.medicine-section-modern {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.container-modern {
  max-width: 1200px;
  margin: 0 auto;
}

.medicine-section-modern h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #222;
}

.medicine-section-modern .highlight {
  color: var(--primary-color);
}

.medicine-section-modern .subheading {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* Grid Styling */
.medicine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Card Styling */
.medicine-card-modern {
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  height: 400px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.medicine-card-modern:hover {
  transform: scale(1.03);
}

.medicine-card-modern .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: background 0.3s ease;
}

.medicine-card-modern h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.medicine-card-modern p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Button */
.btn-modern {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-modern:hover {
  background-color: var(--blue-color);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Centered Button */
.view-all-center {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .medicine-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .medicine-section-modern h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .medicine-grid {
    grid-template-columns: 1fr;
  }

  .medicine-card-modern {
    height: 350px;
  }

  .medicine-section-modern .subheading {
    font-size: 1rem;
  }
}

/*=== Our-Categoris-Ends ===*/


/*=== About-Section-Starts ===*/

.about-section {
  padding: 60px 20px;
  padding-bottom: 0 !important;
  background: #f8f8f6;
}

.about-section .container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-image {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 12px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: all 0.5s ease;
  position: relative;
}

.about-image img:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
  font-family: poppins-bold;
  font-weight: 600;
  letter-spacing: .45px;
  font-family: poppins-bold;
}

.underline {
  width: 60px;
  height: 4px;
  background-image: linear-gradient(rgb(68, 4, 4), var(--primary-color));
  margin-bottom: 20px;
  border-radius: 5px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.counters {
  display: flex;
  gap: 30px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.counter-box {
  text-align: center;
}

.counter-box span {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.counter-box p {
  font-size: 14px;
  color: #333;
}

.about-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.about-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: black;
  z-index: 1;
  transition: all 0.4s ease;
}

.about-btn:hover::before {
  left: 0;
}

.about-btn:hover {
  color: #fff;
}

.about-btn span {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-image, .about-text {
    flex: 1 1 100%;
  }

  .counters {
    justify-content: center;
  }
}

@media(max-width:500px) {
  .about-section {
    padding: 60px 5px;
  }
}


/*=== Mission-Vision-Starts ===*/

  .mission-vision {
    padding: 60px 20px;
    background: #f9f9f9;
  }

  .mission-vision .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }

  .mission-vision h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: poppins-bold;
    color:var(--primary-color);
  }

  .mission-vision p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
  }
  
  .mission-vision p>span,
  .mission-vision li>span{
    font-family:poppins-bold;
  }

  .mission-vision .vision, .mission {
    flex: 1;
    text-align: left;
  }

  .mission-vision .vision ul {
    list-style: disc;
    margin-left: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
  }
  
  .mission-vision .vision li {
    text-align: justify;
  }

  /* Divider Line */
  .mission-vision .divider {
    width: 2px;
    background: #ddd;
    min-height: 600px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .mission-vision .container {
      flex-direction: column;
    }

    .mission-vision .divider {
      display: none;
    }
  }

/*=== Mission-Vision-Ends ===*/

/*=== About-Section-Ends ===*/

/*=== Service-Section-Starts ===*/

/* Services Section */
.services-section {
  background-color: #fefefe;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-section .highlight {
  color: #F47616;
}

.services-section .subheading {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* Cards Grid */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Card */
.service-card {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  height: 300px;
  color: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  transform: scaleY(-1);
  opacity: 0.2;
  filter: blur(4px);
  z-index: 0;
}

.service-card .card-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Button Styling */
.btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #343434;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.btn:hover{
  background-color: #343434;
  color: var(--white-color);
}
.btn::before {
  content: '';
  position: absolute;
  right: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black-color);
  transform: skew(40deg);
  z-index: -1;
  transition: 0.4s ease;
}

.btn:hover::before {
  width: 100%;
  right: 0;
  transform: skew(0deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
  }

  .service-card .card-content {
    text-align: center;
  }
}

/*=== Service-Section-Ends ===*/

/*=== Testimonial-Section-Starts ===*/
.owl-stage {
    display: flex;
    align-items: stretch;
}
.testimonial-section {
  width: 100%;
  height: auto;
  padding: 50px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #f2f2f2, #e6e6e6);

}

.testimonial-section .highlight {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  font-family: poppins-bold;
  letter-spacing: .45px;
}

.owl-carousel .testimonial-card 
{
  position: relative;
  background: #343434;
  border-radius: 15px;
  padding: 20px;
  color: #fff;
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.owl-carousel .testimonial-card::before
{
  position: absolute;
  content: '';
  width: 10%;
  height: 100%;
  top: 0;
  left: -10%;
  transform: skew(10deg);
  background: black;
  z-index: -1;
  transition: 0.4s;
}
.owl-carousel .testimonial-card:hover::before
{
  width: 50%;
}
.testimonial-card:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
}

.customer-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.customer-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.owl-carousel .owl-item img {
  display: block;
  min-width: 40px;
  max-width: 40px;
  margin-right: 8px;
}

.stars {
  margin-top: 10px;
  color: gold;
  font-size: 1.1rem;
  /* border: 2px solid green; */
  text-align: end;
}

.review-text {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 15px;
  }
}

/*=== Testimonial-Section-Ends ===*/


/*=== Ready-To-Partner-Starts ===*/

/* Dark Section */
.dark-section {
  background: #0f0f0f;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

/* Gradient Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #00c8ff, #7a07a0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

/* Gradient Heading */
.gradient-heading {
  font-size: 2.8rem;
  font-weight: bold;
  background: linear-gradient(to right, #7a07a0, #0edbc3, #7a07a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-family: poppins-bold;
}

.subheading {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
}

/* Button Styles */
.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.red-btn {
  background-color: var(--primary-color);
}

.red-btn::before {
  background-color: #d60000;
}

.blue-btn {
  background-color: #0467d2;
}

.blue-btn::before {
  background-color: #0056b3;
}

/* Glass Boxes */
.glass-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.glass-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.glass-box:hover {
  transform: translateY(-5px);
}

.glass-box i {
  font-size: 2rem;
  color: #ff4e00;
  margin-bottom: 15px;
}

.glass-box h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #fff;
}

.glass-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .glass-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .glass-boxes {
    grid-template-columns: 1fr;
  }

  .gradient-heading {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/*=== Ready-To-Partner-Ends ===*/

/*=== Contact-Page-Starts ===*/

.contact-page {
  padding: 60px 20px;
  background-color: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* LEFT BOX */
.contact-info-box {
  flex: 1 1 40%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-box h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 8px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.info-icon {
  min-width: 50px;
  min-height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.info-icon:hover {
  background-color: var(--accent-dark);
}

.info-text label {
  font-weight: bold;
  font-size: 0.95rem;
  color: #222;
  display: block;
  margin-bottom: 4px;
}

.info-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.divider {
  height: 1px;
  background-color: #e1e1e1;
}

/* RIGHT BOX */
.contact-form-box {
  flex: 1 1 55%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-box h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
}

form .form-group {
  position: relative;
  margin-bottom: 20px;
}

form .form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 1rem;
}

form .form-group input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
}

form .form-group input:focus {
  border-color: var(--primary-color);
}

form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 14px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: var(--blue-color);

}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info-box,
  .contact-form-box {
    width: 100%;
  }
}

@media(max-width:550px) {
  .contact-info-box h2, .contact-form-box h2 {
    font-size: 1.4rem;
  }

  .contact-page {
    padding: 60px 5px;
    background-color: var(--light-bg);
  }

}

.map-section {
  padding: 60px 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-container {
  max-width: 1400px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.map-section h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: poppins-bold;
}

.map-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  border-radius: 5px;
}

.map-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
  max-width: 700px;
  font-family: poppins-medium;
}

.map-iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 768px) {
  .map-section h2 {
    font-size: 26px;
  }

  .map-section p {
    font-size: 14px;
  }

  .map-iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .map-iframe {
    height: 300px;
  }
}

/*=== Contact-Page-Ends ===*/

/*=== All-Product-Page-Starts ===*/

.form-section-product {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.form-section-product h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: poppins-bold;
}

.form-section-product h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  border-radius: 5px;
}

.form-section-product p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  font-family: poppins-medium;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-form input,
.product-form textarea,
.product-form select {
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.product-form input:focus,
.product-form textarea:focus,
.product-form select:focus {
  border-color: #007bff;
}

.product-form textarea {
  resize: vertical;
  min-height: 100px;
}

.product-form button {
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-form button:hover {
  background-color: #0056b3;
}

.captcha-note {
  font-size: 14px;
  color: #777;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-section {
    padding: 30px 15px;
  }

  .form-section h2 {
    font-size: 24px;
  }

  .form-section p {
    font-size: 14px;
  }
}

/*=== All-Product-Page-Ends ===*/

/*=== Product-Page-Starts ===*/



/*=== Product-Page-Ends ===*/

/*=== Why-Choose-Our-Product-Starts ===*/

/* Container setup */
.why-choose-our-product {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose-our-product .section-heading {
  font-size: 36px;
  font-weight: bold;
  color: #222;
}

.why-choose-our-product .gradient-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, #2575fc 100%);
  margin: 10px auto 20px;
  border-radius: 5px;
}

.why-choose-our-product .section-subheading {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.why-choose-our-product .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.why-choose-our-product .feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-our-product .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-our-product .icon-circle {
  width: 70px;
  height: 70px;
  background: #e0e7ff;
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transition: background 0.3s, color 0.3s;
}

.why-choose-our-product .feature-box:hover .icon-circle {
  background: var(--primary-color);
  color: #fff;
}

.why-choose-our-product .feature-box h3 {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.why-choose-our-product .feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/*=== Why-Choose-Our-Product-Ends ===*/

/*=== Quote-Form-Starts ===*/

.form-section-quote {
  padding: 50px 20px;
  background: #f4f6f8;
  font-family: 'Segoe UI', sans-serif;
}

.form-section-quote .container {
  max-width: 900px;
  margin: auto;
}

.form-section-quote .form-toggle {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
}

.form-section-quote .form-toggle input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}

.form-section-quote .form-box {
  background: #fff;
  padding: 30px;
  border-top: 3px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.form-section-quote .form-box h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-family: poppins-bold;
}

.form-section-quote .form-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
  font-family: poppins-medium;
}

.form-section-quote .input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-section-quote .input-row input {
  flex: 1 1 45%;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: border 0.3s;
}

.form-section-quote .input-row input:focus {
  border-color: var(--primary-color);
}

.form-section-quote .submit-btn {
  background: linear-gradient(to right, var(--primary-color), #a21f0e);
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-position 0.4s ease;
  background-size: 200% 100%;
  background-position: left;
}

.form-section-quote .submit-btn:hover {
  background-position: right;
}

.form-section-quote .hidden {
  display: none;
}

.form-section-quote .form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-section-quote .form-group label {
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-family: poppins-medium;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-section-quote .input-row input {
    flex: 1 1 100%;
  }
}

@media(max-width:600px) {
  .form-section-quote .input-row {
    display: block;
  }

  .form-section-quote .submit-btn {

    margin: 10px auto;
  }

}

/*=== Quote-Form-Ends ===*/

/*=== Product-Page-Starts ===*/

/*=== Dry-Injection-Starts ===*/

.table-page {
    max-width: 1400px;
    margin: auto;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.page-name {
    text-align: right;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
}

td {
    background-color: #fff;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

tr:hover td {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {

    th,
    td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    th,
    td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/*=== Dry-Injection-Ends ===*/

/*=== Product-Page-Ends ===*/

/*=== Certificate-Starts ===*/

    .certificate-section {
      padding: 60px 20px;
      background: #fff;
    }

    .certificate-section h1 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2rem;
      color: var(--primary-color);
      font-family: poppins-bold;
    }

    .certificate-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }

    .certificate-container a {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      background: transparent;
    }

    .certificate-container img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
      box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);

    }

    /* Shining Hover Effect */
    .certificate-container a::before {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
    }

    .certificate-container a:hover img {
      transform: scale(1.05);
    }

    .certificate-container a:hover::before {
      animation: shine 0.9s ease forwards;
    }

    @keyframes shine {
      0% {
        left: -75%;
      }
      100% {
        left: 125%;
      }
    }

/*=== Certificate-Ends ===*/

/*=== News-Letter-Section-Starts ===*/

/* Newsletter Section */
.newsletter-section {
  width: 100%;
  background: #f9fafb;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsletter-container {
  max-width: 700px;
  text-align: center;
}

.newsletter-heading {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-family: poppins-bold;
}

.newsletter-text {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #374151;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  border-color: #2563eb;
}

.newsletter-form button {
  padding: 12px 25px;
  font-size: 1rem;
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: transparent;
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 500px) {
  .newsletter-heading {
    font-size: 1.5rem;
  }

  .newsletter-text {
    font-size: 0.9rem;
  }
}

/*=== News-Letter-Section-Ends ===*/

/* *===Footer-Starts===*/

footer {
  background-color: var(--off-white-color);
}
footer .mb-3.img-fluid{
  mix-blend-mode: darken;
  max-width: 300px;
  width: 100%;
}
footer a {
  color: var(--black-color);
  transition: 0.4s;
}

.footer-link {
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.footer-link:hover {
  color: var(--primary-color);
  letter-spacing: 1px;
}

.footer-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease, left 0.3s ease;
}

.footer-link:hover::after {
  right: auto;
  width: 100%;
  left: 0;
}

.footer-map-container iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.footer-social-icons .social-icon {
  width: 42px;
  height: 42px;
  background-color: #fff;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  text-decoration: none;
}

.footer-social-icons .social-icon:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}
.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
    width:100%;
    text-align: left;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-content {
    padding: 15px 20px;
    font-size: 13px;
}

.brand {
    color: #777;
    font-size: 12px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.product-info-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    color: #555;
    font-size: 13px;
}

.product-info-line i {
    margin-right: 6px;
    color: var(--maroon-color);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.in-stock {
    color: green;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.product-actions a {
    padding: 6px 12px;
    font-size: 12px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.product-card .view-btn {
    background-color: #e0e0e0;
    color: black;
}

.product-card .view-btn:hover {
    background-color: #ccc;
}

.product-card .quote-btn {
    background-color: var(--maroon-color);
    color: #fff;
}

.product-card .quote-btn:hover {
    background-color: rgb(143, 0, 0);
}

@media (max-width: 768px) {
    .stats {
        gap: 20px;
    }

   
    
    .product-section h2::after {
    content: "";
    left: 50%;
}
}

@media (max-width: 480px) {
  

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    .product-section h2{
        font-size:17px !important;
    }
}
