body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;

}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

#footer {
  margin-top: auto;
}

.top-announcement {
  width: 100%;
  background: #000;
  color: #b8ef55;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
}

.announcement-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.announcement-track span {
  flex-shrink: 0;
  margin: 0 20px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Optional */
.top-announcement:hover .announcement-track {
  animation-play-state: paused;
}

/* Header */

.header-section {
  width: 100%;
  background: #F7F8E9;
  border-bottom: 1px solid #e5e5d8;
  padding: 25px 0;
}

.header-top {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  height: 70px;
}


/* ==========================
   Navigation
========================== */

.main-navigation {
  width: 100%;
  background: #F7F8E9;
  border-bottom: 1px solid #e5e5d8;
  position: relative;
  z-index: 999;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* Logo */

.mobile-logo {
  display: block;
  flex-shrink: 0;
}

.mobile-logo img {
  height: auto;
  width: auto;
  display: block;
}

/* Navigation */

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-menu li {
  margin: 0;
}

.nav-menu li a {
  color: #222;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: .3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #3F8A2C;
}

/* Hamburger */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #222;
  margin: 6px auto;
  border-radius: 30px;
  transition: .35s;
}

/* Hamburger Animation */

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================
   Mobile Header
========================== */

@media(max-width:991px) {

  .nav-wrapper {
    min-height: 70px;
    padding: 12px 20px;
    flex-direction: row;
    justify-content: space-between;
  }


  /* Logo Center */
  .mobile-logo {
    position: absolute;
    left: 75%;
  }


  .mobile-logo img {
    height: 55px;
  }


  /* Show Hamburger */
  .menu-toggle {
    display: block;
    order: -1;
    z-index: 1001;
  }


  /* Mobile Menu */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #F7F8E9;
    padding: 15px 0;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e5e5d8;
  }


  .nav-menu.active {
    display: flex;
  }


  .nav-menu li {
    width: 100%;
    text-align: center;
  }


  .nav-menu li a {
    display: block;
    padding: 12px;
    font-size: 15px;
  }


  /* Hamburger Animation */

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

}

/*=========================
HOME BANNER
=========================*/

.home-banner {
  padding: 35px 25px;
  background: #f4f6df;
}

.banner-card {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.banner-card picture {
  display: block;
}

.banner-card img {
  width: 100%;
  display: block;
  height: auto;
  transition: .4s ease;
}

.banner-card:hover img {
  transform: scale(1.03);
}

/* Desktop */
@media (min-width:768px) {

  .banner-card {
    aspect-ratio: 1905 / 580;
  }

  .banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

/* Mobile */
@media (max-width:767px) {

  .home-banner {
    padding: 15px;
  }

  .banner-card {
    aspect-ratio: 1 / 1;
    /* Perfect square */
    border-radius: 18px;
  }

  .banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

}

/*==============================
CATEGORY TABS
===============================*/

.category-tabs {
  background: #f4f6df;
}

.category-nav {
  gap: 18px;
}

.category-nav .nav-link {

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 10px 20px;

  border-radius: 60px;

  border: 2px solid #222;

  background: #fff;

  color: #222;

  font-weight: 600;

  transition: .35s;

}

.category-nav .nav-link img {

  width: 56px;
  height: 56px;

  border-radius: 50%;

  object-fit: cover;

}

.category-nav .nav-link.active {

  background: #111;

  color: #fff;

  border-color: #111;

}

.banner-layout {

  position: relative;

  height: 640px;

  overflow: hidden;

  border-radius: 35px;

}

.banner-layout img {

  width: 100%;
  height: 100%;

  object-fit: cover;

}

.banner-layout::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg,
      rgba(0, 0, 0, .55),
      rgba(0, 0, 0, .15),
      transparent);

}

.banner-info {

  position: absolute;

  top: 18%;

  left: 80px;

  max-width: 520px;

  color: #fff;

  z-index: 5;

}

.banner-info span {

  display: inline-block;

  padding: 10px 24px;

  border-radius: 40px;

  background: #fff;

  color: #222;

  font-weight: 600;

  margin-bottom: 25px;

}

.banner-info h2 {

  font-size: 60px;

  font-weight: 800;

  line-height: 1.1;

  margin-bottom: 25px;

}

.banner-info p {

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 35px;

}

.banner-btn {

  display: inline-block;

  background: #fff;

  color: #111;

  padding: 16px 38px;

  border-radius: 50px;

  font-weight: 700;

  text-decoration: none;

}

.banner-btn:hover {

  background: #97d63d;

  color: #111;

}

.testimonial-section {
  background: #dce8ca;
  padding: 50px 20px;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1600px;
  margin: auto;
}

.testimonial-container h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 45px;
  color: #111;
}


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}


.testimonial-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 45px 18px 18px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}


.stars {
  color: #f6b73c;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}


.customer-info {
  font-size: 13px;
  color: #555;
  margin-bottom: 22px;
}


.testimonial-card p {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  color: #171717;
  margin: 0;
  flex: 1;
}


.product-box {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}


.product-box img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 10px;
}


.product-box span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}


/* Tablet */
@media(max-width:1200px) {

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* Mobile */
@media(max-width:767px) {

  .testimonial-section {
    padding: 35px 15px;
  }

  .testimonial-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }


  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
  }


  .testimonial-card {
    min-width: 85%;
    scroll-snap-align: start;
    padding: 30px 18px 18px;
  }


  .testimonial-card p {
    font-size: 16px;
  }

}

.certificates-section {
  background: #f5f9e9;
  padding: 25px 40px 70px;
}

.certificates-container {
  max-width: 1400px;
  margin: 0 auto;
}

.certificates-container h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin: 0 0 45px;
  font-family: Arial, sans-serif;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
  gap: 40px;
}

.certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certificate-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
}

.certificate-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  margin: 0;
  font-family: Arial, sans-serif;
}


/* Mobile */
@media(max-width:768px) {

  .certificates-section {
    padding: 25px 20px 40px;
  }

  .certificates-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .certificate-item img {
    width: 100px;
    height: 100px;
  }

  .certificate-item h3 {
    font-size: 16px;
  }

}

.custom-footer {
  background: #000;
  color: #fff;
  padding: 70px 80px 25px;
  font-family: Arial, sans-serif;
  margin: 0;
}


.footer-container {
  max-width: 1600px;
  margin: auto;
  display: grid;
  grid-template-columns: 2.2fr 2fr 0.8fr 0.8fr 0.8fr;
  gap: 55px;
}


.footer-logo img {
  width: 150px;
  height: auto;
  margin-bottom: 35px;
}


.footer-brand h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 28px;
}


.newsletter-box {
  width: 400px;
  height: 60px;
  border: 1px solid #777;
  border-radius: 35px;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.newsletter-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  padding: 0 22px;
  font-size: 16px;
}


.newsletter-box button {
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  border: none;
  background: #222;
  color: #fff;
  font-size: 25px;
}


.footer-contact h4,
.footer-links h4 {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 700;
}


.footer-contact p {
  color: #ccc;
  line-height: 1.5;
  font-size: 16px;
  margin-bottom: 22px;
}


.footer-contact strong {
  color: #fff;
}


.footer-links {
  display: flex;
  flex-direction: column;
}


.footer-links a {
  color: #999;
  text-decoration: none;
  margin-bottom: 22px;
  font-size: 16px;
}


.footer-links a:hover {
  color: #fff;
}



.social-icons {
  display: flex;
  gap: 32px;
  margin-top: 180px;
}


.social-icons a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
}



.footer-bottom {

  border-top: 0px solid #333;
  margin-top: 55px;
  padding-top: 30px;

  display: flex;
  align-items: center;
  gap: 15px;
}


.footer-bottom span {
  font-size: 25px;
}


.footer-bottom p {
  margin: 0;
  color: #ddd;
  font-size: 14px;
}



/* ==========================
   Mobile Footer
========================== */
@media (max-width:900px) {

  .custom-footer {
    padding: 40px 20px;
    text-align: center;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }

  /* Logo */
  .footer-brand {
    width: 100%;
    text-align: center;
  }

  .footer-logo img {
    width: 100px;
    margin: 0 auto 20px;
  }

  /* Contact */
  .footer-contact {
    width: 100%;
    text-align: center;
  }

  .footer-contact h4 {
    margin-bottom: 15px;
  }

  .footer-contact p {
    margin-bottom: 10px;
    text-align: center;
  }

  /* Three link columns in one row */
  .footer-links {
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }

  .footer-links a {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
  }

  .footer-bottom p {
    text-align: center;
  }
}

/* Small phones */
@media (max-width:480px) {

  .footer-links {
    width: 33.33%;
  }

  .footer-links h4 {
    font-size: 14px;
  }

  .footer-links a {
    font-size: 13px;
  }

}

.about-page {
  background: #f5f8df;
  color: #111;
  font-family: Arial, sans-serif;
}




/*=========================
TEAM BANNER
=========================*/

.team-banner {
  padding: 35px 25px;
  background: #f4f6df;
}

.team-banner .banner-card {
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.team-banner .banner-card picture {
  display: block;
}

.team-banner .banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .4s ease;
}

.team-banner .banner-card:hover img {
  transform: scale(1.03);
}

/* Desktop */
@media (min-width:768px) {

  .team-banner .banner-card {
    aspect-ratio: 1905 / 580;
  }

}

/* Mobile */
@media (max-width:767px) {

  .team-banner {
    padding: 15px;
  }

  .team-banner .banner-card {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .team-banner .banner-card img {
    object-fit: cover;
    object-position: center;
  }

}

/* INTRO */


.better-intro {
  text-align: center;
  padding: 80px 20px 50px;
}


.better-intro span,
.mission-heading span,
.impact-section span {
  font-size: 12px;
  letter-spacing: 2px;
}


.better-intro h1 {
  font-size: 32px;
  margin: 15px 0;
}


.better-intro p {
  font-size: 14px;
  color: #555;
}





/* STORY */


.story-section {

  max-width: 1200px;
  margin: auto;
  padding: 70px 30px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}


.story-content h2 {

  font-size: 28px;
  margin: 0 0 20px;

}


.story-content p {

  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;

}



.story-image img {

  width: 100%;
  border-radius: 10px;

}





/* MISSION */


.mission-section {

  max-width: 1200px;
  margin: auto;
  padding: 80px 30px;

}



.mission-heading {

  text-align: center;
  margin-bottom: 40px;

}


.mission-heading h2 {

  font-size: 30px;

}




.mission-grid {

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 5px;

}




.mission-image img {

  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 5px;

}




.mission-box {

  background: #050505;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 40px;

  text-align: center;

}



.mission-box h3 {

  font-size: 22px;
  margin-bottom: 15px;

}



.mission-box p {

  font-size: 14px;
  line-height: 1.7;
  color: #ddd;

}







/* IMPACT */


.impact-section {

  text-align: center;
  padding: 10px 10px;

}



.impact-section h2 {

  font-size: 38px;
  max-width: 850px;
  margin: 20px auto;

}


.impact-section p {

  max-width: 600px;
  margin: auto;
  color: #555;
  line-height: 1.8;

}



.impact-section a {

  display: inline-block;
  margin-top: 30px;
  padding: 12px 35px;

  border-radius: 30px;

  text-decoration: none;
  color: #111;

  font-size: 13px;

}







/* MOBILE */


@media(max-width:768px) {


  .team-banner img {

    height: 300px;

  }


  .better-intro {

    padding: 50px 20px;

  }


  .story-section {

    grid-template-columns: 1fr;
    padding: 0px 20px;
    gap: 30px;
    text-align: center;

  }



  .story-content h2 {

    font-size: 24px;

  }



  .mission-section {

    padding: 50px 20px;

  }


  .mission-grid {

    grid-template-columns: 1fr;

  }



  .mission-image img {

    height: 250px;

  }



  .mission-box {

    min-height: 220px;

  }



  .impact-section h2 {

    font-size: 28px;

  }



}

.faq-section {
  background: #f5f8df;
  padding: 70px 20px 100px;
}

.faq-container {
  max-width: 650px;
  margin: 0 auto;
  color: #222;
  font-family: Arial, sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 50px;
}


.faq-group {
  margin-bottom: 50px;
}


.faq-group h2 {
  text-align: center;
  font-size: 18px;
  text-decoration: underline;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}


.faq-group h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 15px 0 5px;
  line-height: 1.5;
}


.faq-group p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
  color: #333;
}


/* Mobile */
@media(max-width:768px) {

  .faq-section {
    padding: 40px 20px;
  }

  .faq-container {
    max-width: 100%;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .faq-group h2 {
    font-size: 16px;
  }

  .faq-group h3 {
    font-size: 14px;
  }

  .faq-group p {
    font-size: 13px;
    line-height: 1.6;
  }

}

.toilet-spray-products {
  padding: 40px 20px;
  background: #f7fbe9;
}


.spray-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


.spray-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
  transition: .3s ease;
}


.spray-card:hover {
  transform: translateY(-5px);
}


.spray-image {
  width: 100%;
  height: 230px;
  background: #f2f2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.spray-image img {
  width: 100%;
  height: 90%;
  object-fit: contain;
}


.spray-card h3 {
  font-size: 15px;
  line-height: 1.4;
  margin: 15px 0 10px;
  color: #111;
  min-height: 42px;
}


.spray-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}


.spray-card ul li {
  font-size: 12px;
  line-height: 1.8;
  color: #555;
}



/* Tablet */
@media(max-width:900px) {

  .spray-container {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* Mobile */
@media(max-width:600px) {

  .toilet-spray-products {
    padding: 25px 12px;
  }


  .spray-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }


  .spray-image {
    height: 150px;
  }


  .spray-card {
    padding: 10px;
  }


  .spray-card h3 {
    font-size: 13px;
  }


  .spray-card ul li {
    font-size: 11px;
  }

}

/* Product FAQ Section */

.product-faq-section {
  padding: 80px 20px;
  background: #f1ece6;
}

.product-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}


/* Left Content */

.product-faq-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

.product-faq-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}


/* FAQ Accordion */

.product-faq-accordion {
  width: 100%;
}

.product-faq-item {
  border-bottom: 1px solid #ddd;
  padding: 22px 0;
}


.product-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}


.product-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
}


/* Answer */

.product-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  padding-right: 40px;
}


.product-faq-item.active .product-faq-answer {
  max-height: 200px;
  padding-top: 15px;
}


/* Hover */

.product-faq-question:hover {
  color: #333;
}


/* Responsive */

/* Mobile & Tablet */

@media (max-width: 768px) {

  .product-faq-section {
    padding: 50px 18px;
  }

  .product-faq-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
  }

  /* Content first */
  .product-faq-content {
    order: 1;
    text-align: center;
  }

  .product-faq-content h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .product-faq-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  /* FAQ below */
  .product-faq-accordion {
    order: 2;
    width: 100%;
  }

  .product-faq-item {
    padding: 18px 0;
  }

  .product-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .product-faq-icon {
    width: 26px;
    height: 26px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .product-faq-answer {
    padding-right: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .product-faq-item.active .product-faq-answer {
    padding-top: 12px;
  }

}

/* Small Mobile */

@media (max-width:480px) {

  .product-faq-section {
    padding: 40px 15px;
  }

  .product-faq-content h2 {
    font-size: 26px;
  }

  .product-faq-content p {
    font-size: 14px;
  }

  .product-faq-question {
    font-size: 15px;
  }

  .product-faq-answer {
    font-size: 13px;
  }

}

.contact-section {
  padding: 130px 20px;
  background: #f5fbe8;
  text-align: center;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #111;
}

.contact-title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 20px;
  color: #111;
}

.contact-text,
.contact-address,
.contact-hours {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin: 10px auto;
}

.contact-text a {
  color: #0000ff;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}


/* Mobile */

@media(max-width:768px) {

  .contact-section {
    padding: 50px 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-text,
  .contact-address,
  .contact-hours {
    font-size: 14px;
  }

}

.product-faq-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.product-faq-content,
.product-faq-accordion {
  flex: 1;
}

.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: hidden;
}

.heading_container h2 {
  color: #000000;
  position: relative;
  padding-bottom: 5px;
}

.heading_container h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 135px;
  height: 2px;
  background-color: #f6db26;
}

/*header section*/
.hero_area {
  height: 100vh;
  background-image: url(../images/hero-bg.png);
  background-size: 50% 100%;
  background-position: top left;
  position: relative;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.sub_page .hero_area {
  height: auto;
  background: none;
  background-color: #e7cd20;
}

.sub_page .custom_menu-btn button span {
  background-color: #212121;
}

.hero_area.sub_pages {
  height: auto;
}

.header_section {
  overflow-x: hidden;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
  padding: 10px 15px;
  color: #060606;
  text-align: center;
  text-transform: uppercase;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item.active .nav-link,
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link {
  color: #e7cd20;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-brand span {
  font-weight: bold;
  color: #212121;
  font-size: 34px;
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  height: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 50px;
  width: 30px;
  height: 30px;
}

.lg_toggl-btn {
  background-color: transparent;
  border: none;
  outline: none;
  width: 56px;
  height: 40px;
  cursor: pointer;
}

.lg_toggl-btn:focus {
  outline: none;
}

.User_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 75px;
}

.User_option .form-inline {
  position: relative;
  margin-right: 15px;
  width: 200px;
}

.User_option .form-inline input {
  border: 1px solid #999999;
  outline: none;
  width: 100%;
  padding: 2px 10px;
}

.User_option .form-inline button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
}

.User_option a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.User_option a img {
  width: 20px;
}

.custom_menu-btn {
  z-index: 9;
  position: absolute;
  right: 15px;
  top: 7px;
}

.custom_menu-btn button {
  margin-top: 12px;
  outline: none;
  border: none;
  background-color: transparent;
}

.custom_menu-btn button span {
  display: block;
  width: 35px;
  height: 5px;
  background-color: #656464;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu_btn-style {
  position: fixed;
  right: 29px;
  top: 7px;
}

.custom_menu-btn .s-2 {
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}

.menu_btn-style button .s-1 {
  -webkit-transform: rotate(45deg) translateY(17px);
  transform: rotate(45deg) translateY(17px);
}

.menu_btn-style button .s-2 {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
}

.menu_btn-style button .s-3 {
  -webkit-transform: rotate(-45deg) translateY(-17px);
  transform: rotate(-45deg) translateY(-17px);
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: black;
  background-color: rgba(231, 205, 32, 0.95);
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.overlay a {
  padding: 0px;
  text-decoration: none;
  font-size: 22px;
  color: #000000;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.menu_width {
  width: 100%;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

.slider_section .side-img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
}

.slider_section .side-img img {
  width: 100%;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section .detail-box {
  color: #ffffff;
}

.slider_section .detail-box h2 {
  font-weight: bold;
  font-size: 3rem;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  color: #212121;
  font-size: 7rem;
}

.slider_section .detail-box h1 span {
  color: #ffffff;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: transparent;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin-top: 25px;
}

.slider_section .detail-box a:hover {
  background-color: #ffffff;
  color: #000000;
}

.slider_section .img-box {
  margin: 0 35px;
}

.slider_section .img-box img {
  max-width: 100%;
}

.slider_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 35px;
}

.slider_section .carousel_btn-container .carousel-control-prev,
.slider_section .carousel_btn-container .carousel-control-next {
  opacity: 1;
  position: unset;
  width: auto;
  margin: 0 5px;
}

.slider_section .carousel_btn-container .carousel-control-prev-icon,
.slider_section .carousel_btn-container .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-color: #212121;
  opacity: 1;
  border-radius: 100%;
  background-size: 15px;
}

.slider_section .carousel_btn-container .carousel-control-prev-icon {
  background-image: url(../images/prev.png);
}

.slider_section .carousel_btn-container .carousel-control-next-icon {
  background-image: url(../images/next.png);
}

.product_section .heading_container h2 {
  padding: 0;
}

.product_section .heading_container h2::before {
  bottom: 50%;
  left: initial;
  right: -5px;
  -webkit-transform: translate(100%, 50%);
  transform: translate(100%, 50%);
}

.product_section .product_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product_section .product_container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
  min-width: 250px;
  margin-top: 45px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.product_section .product_container .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.product_section .product_container .box .img-box img {
  max-width: 100%;
  max-height: 100%;
}

.product_section .product_container .box .detail-box {
  color: #454444;
}

.product_section .product_container .box .detail-box h5 {
  font-weight: bold;
}

.product_section .product_container .box .detail-box h4 span {
  font-weight: bold;
  color: #eed423;
}

.product_section .product_container .box .detail-box a {
  color: #eed423;
  font-weight: bold;
  text-decoration: underline;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: transparent;
  color: #454444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #454444;
  border-radius: 5px;
}

.product_section .btn-box a:hover {
  background-color: #454444;
  color: #ffffff;
}

.about_section {
  background-color: #e7cd20;
  position: relative;
  overflow-x: hidden;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .detail-box p {
  margin-top: 45px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: transparent;
  color: #454444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #454444;
  border-radius: 5px;
  margin-top: 35px;
}

.about_section .detail-box a:hover {
  background-color: #454444;
  color: #ffffff;
}

.about_section .img-box img {
  max-width: 100%;
}

.about_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 52%;
  background-image: url(../images/about-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.us_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.us_section .img-box img {
  max-width: 100%;
  -webkit-filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.09));
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.09));
}

.us_section .detail-box .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
}

.us_section .detail-box .box .text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 0;
}

.us_section .detail-box .box .text-box .number-box {
  min-width: 50px;
  height: 50px;
  background-color: #e7cd20;
  border-radius: 100%;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.us_section .detail-box .box .text-box .number-box h5 {
  margin: 0;
}

.us_section .detail-box .box .text-box h6 {
  margin: 0;
}

.us_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}

.us_section .detail-box .btn-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: transparent;
  color: #454444;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #454444;
  border-radius: 5px;
}

.us_section .detail-box .btn-box a:hover {
  background-color: #454444;
  color: #ffffff;
}

.store_section #carouselExampleCaptions h5 {
  -webkit-filter: drop-shadow(4px 3px 4px black);
  filter: drop-shadow(4px 3px 4px black);
}

.store_section .img-box {
  margin-top: 45px;
}

.store_section .img-box img {
  width: 100%;
}

.store_section .carousel_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 75px;
}

.store_section .carousel_btn-container .carousel-control-prev,
.store_section .carousel_btn-container .carousel-control-next {
  opacity: 1;
  position: unset;
  width: auto;
  margin: 0 5px;
}

.store_section .carousel_btn-container .carousel-control-prev-icon,
.store_section .carousel_btn-container .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  background-color: #212121;
  opacity: 1;
  border-radius: 100%;
  background-size: 12px;
}

.store_section .carousel_btn-container .carousel-control-prev-icon:hover,
.store_section .carousel_btn-container .carousel-control-next-icon:hover {
  background-color: #e7cd20;
}

.store_section .carousel_btn-container .carousel-control-prev-icon {
  background-image: url(../images/prev.png);
}

.store_section .carousel_btn-container .carousel-control-prev-icon:hover {
  background-image: url(../images/prev-white.png);
}

.store_section .carousel_btn-container .carousel-control-next-icon {
  background-image: url(../images/next.png);
}

.store_section .carousel_btn-container .carousel-control-next-icon:hover {
  background-image: url(../images/next-white.png);
}

.blog_section {
  background-color: #e7cd20;
}

.blog_section .heading_container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog_section .heading_container h2::before {
  background-color: #ffffff;
}

.blog_section .box {
  margin-top: 55px;
  background-color: #ffffff;
}

.blog_section .box .img-box img {
  width: 100%;
}

.blog_section .box .detail-box {
  padding: 35px 15px;
}

.blog_section .box .detail-box h3 {
  text-transform: uppercase;
}

.client_section .heading_container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.client_section .heading_container h2::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 55px;
}

.client_section .box .img_container {
  width: 275px;
  height: 275px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #3c3c3c;
}

.client_section .box .img_container .img-box {
  width: 215px;
  height: 215px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  margin-right: -1px;
}

.client_section .box .img_container .img-box .img_box-inner {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  margin-right: 10px;
}

.client_section .box .img_container .img-box .img_box-inner img {
  width: 100%;
}

.client_section .box .detail-box {
  margin-top: 25px;
}

.client_section .box .detail-box h5 {
  font-size: 16px;
  font-weight: 600;
}

.client_section .box .detail-box h6 {
  font-size: 15px;
  color: #999998;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  opacity: 1;
  width: auto;
  margin: 0 5px;
}

.client_section .carousel-control-prev {
  left: 30%;
}

.client_section .carousel-control-next {
  right: 30%;
}

.client_section .carousel-control-prev-icon,
.client_section .carousel-control-next-icon {
  width: 50px;
  height: 50px;
  opacity: 1;
  border-radius: 100%;
  background-size: 10px;
  background-color: #e7cd20;
}

.client_section .carousel-control-prev-icon:hover,
.client_section .carousel-control-next-icon:hover {
  background-color: #212121;
}

.client_section .carousel-control-prev-icon {
  background-image: url(../images/prev-angle.png);
}

.client_section .carousel-control-next-icon {
  background-image: url(../images/next-angle.png);
}

.contact_section {
  position: relative;
}

.contact_section h2 {
  text-align: center;
}

.contact_section .design-box {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  right: 0;
  width: 75px;
}

.contact_section .design-box img {
  width: 100%;
}

.contact_section h2 {
  margin-bottom: 55px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: transparent;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0px 2px 25px 3px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 2px 25px 3px rgba(0, 0, 0, 0.11);
}

.contact_section input::-webkit-input-placeholder {
  color: #131313;
}

.contact_section input:-ms-input-placeholder {
  color: #131313;
}

.contact_section input::-ms-input-placeholder {
  color: #131313;
}

.contact_section input::placeholder {
  color: #131313;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  padding: 10px 55px;
  background-color: #e7cd20;
  color: #ffffff;
  border-radius: 30px;
  margin-top: 35px;
  border: none;
}

.contact_section .map_container {
  height: 100%;
  padding-bottom: 110px;
}

.contact_section .map_container .map-responsive {
  height: 100%;
}

.subscribe_section .box {
  background-color: #e7cd20;
  border-radius: 100px;
  padding: 25px 45px;
}

.subscribe_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subscribe_section h2 {
  margin: 0;
}

.subscribe_section form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subscribe_section form input {
  border: none;
  min-width: 100%;
  height: 55px;
  background-color: #ffffff;
  padding: 0 20px;
  border-radius: 50px;
  outline: none;
}

.subscribe_section form button {
  padding: 0 25px;
  border: none;
  height: 40px;
  color: #2d2d2d;
  background-color: transparent;
  -webkit-transform: translate(-104%, 7.5px);
  transform: translate(-104%, 7.5px);
  text-transform: uppercase;
  font-weight: bold;
  outline: none;
}

/* info section */
.info_section {
  background-color: #2d2d2d;
  color: #ffffff;
}

.info_section .info_social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 75px;
}

.info_section .info_social-container h5 {
  text-align: center;
  font-weight: bold;
}

.info_section .info_social-container .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social-container .info_social img {
  width: 35px;
  margin-right: 8px;
}

.info_section h6 {
  font-weight: bold;
}

.info_section h6 {
  margin-bottom: 12px;
  font-size: 18px;
}

.info_section p {
  color: #cbc9c9;
}

.info_section ul {
  padding: 0;
}

.info_section ul li {
  list-style-type: none;
  margin: 3px 0;
}

.info_section ul li a {
  color: #cbc9c9;
}

.info_section ul li a:hover {
  color: #ffffff;
}

.info_section .info_link-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 15px 0;
}

.info_section .info_link-box a:hover {
  color: #ffffff;
}

.info_section .info_link-box a img {
  margin-right: 15px;
}

.info_section .info_link-box a span {
  color: #cbc9c9;
}

.info_section .info_link-box a:hover span {
  color: #ffffff;
}

/* end info section */
/* footer section*/
.footer_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #d9d9d9;
}

.footer_section p {
  color: #292929;
  margin: 0;
  padding: 25px 0 20px 0;
  margin: 0 auto;
  text-align: center;
}

.footer_section a {
  color: #292929;
}

/* ==========================
   Image Grid Section
========================== */

.image-grid-section {
    padding: 100px 20px;
    background: #f7f8e9;
}

.image-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.image-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: all .35s ease;
}

.image-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    transition: transform .35s ease;
}

.image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.image-card:hover img {
    transform: scale(1.05);
}

/* ==========================
   Tablet
========================== */

@media (max-width: 991px) {

    .image-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .image-card {
        padding: 20px;
    }

    .image-card img {
        max-width: 180px;
    }

}

/* ==========================
   Mobile
========================== */

@media (max-width: 767px) {

    .image-grid-section {
        padding: 40px 15px;
    }

    .image-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-card {
        padding: 20px;
    }

    .image-card img {
        max-width: 170px;
    }

}
.partner-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    text-align: center;
}

.partner-heading img {
    max-height: 40px;
    width: auto;
}

.partner-and {
    font-size: 28px;
    font-weight: 600;
}

.partner-text {
    font-size: 28px;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {

    .partner-heading {
        gap: 0px;
    }

    /* Make "and" take its own line and centre it */
    .partner-and {
        flex: 0 0 100%;
        text-align: center;
        margin: 5px 0;
    }

}
/* end footer section*/
/*# sourceMappingURL=style.css.map */