
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --default-font:"Montserrat", sans-serif;
  --heading-font:"Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #5d57f4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color:#2C3546 ;  /* The default color of the main navmenu links */
  --nav-hover-color: #F4BE3C ; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #2C3546; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #F4BE3C ; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
--red: #F4BE3C ;
  --blue : #2C3546;
  --white: #fff;
  --black: #000;
  --clr-bg-header: #F4BE3C ;
  --clr-dropdown: #065090;
  --clr-nav-hover: #0650906c;
  --clr-dropdown-hov: #065090;
  --clr-dropdown-link-hov: #0650906c;
}




.light-background {
  --background-color: #f4f4f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--blue);
  background-color: var(--white);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  font-weight: 500;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}
    #mobile-button {
      background: var(--red);
      color: var(--black);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px 50px !important;
      border-radius: 10px;
      transition: 0.2s all ease-in-out;
      display: none;
    }
    #mobile-button:hover {
      background-color: var(--blue);
      color: var(--white);
      box-shadow: none;
      transform: translateY(2px);
    }

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--white) !important;
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  /* .header .logo {
    order: 1;
  } */

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.download-btn {
 background-color: var(--red);
 /* padding: 15px 30px; */
 width: 200px;
 height: 55px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: var(--black);
 border-radius: 10px;
 border: none !important;
 /* box-shadow: 2px 5px 1px  #00000020; */
 font-weight: 600;
 transition: 0.2s all ease-in-out;
}
.download-btn:hover {
  box-shadow: none;
  transform: translateY(2px);
  background-color: var(--blue);
  color: var(--white);
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  #mobile-button{
    width: 96%;
    margin: 10px auto;
    display: block;
  }


  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  

  
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: var(--red);
    color: var(--white);
    font-weight: bold;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--blue);
    color: var(--white);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--red);
    color: var(--white);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: var(--blue);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 80px;
    margin-right: 8px;
  }
  .download-btn {
    display: none;
  }
  #mobile-button{
    width: 90%;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
}
@media (max-width: 500px){
.navmenu a{
  font-size: 14px;
}
}

/* =============================================== */
/* =================== HEADER INTRO SECTION START============ */
.header-intro {
  padding-top: 135px;
  background-color: #11111d !important;
}
.header-container {
  padding: 70px 0;
  color: var(--white);
  text-align: left;
}
.header-container h2 {
  color: var(--white);
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 600px){
.header-container {
  padding: 70px 20px;
}
}
/* =============================================== */



/* ===================SLIDER START HERE================== */
.swiper-container {
  width: 100vw;
  height: 100vh;
  margin-top: 130px;
}

.swiper-slide {
  background-color: #fcfcfc;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fcfcfc;
  font-size: 24px;
}

.swiper-slide > .swiper-slide-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent no-repeat 50% 50% /cover;
}

body {
  text-align: center;
}

.swiper-slide .slide-01 {
  background-image: url('../img/01.png');
  transform-origin: 50% 50%;
}

.swiper-slide .slide-02 {
  background-image: url('../img/02.png');
  transform-origin: 50% 50%;
}

.swiper-slide .slide-03 {
  background-image: url('../img/03.png');
  transform-origin: 50% 50%;
}



.swiper-scale-effect .swiper-slide-cover {
  transition-timing-function: linear;
  transition-duration: 20s;
  transform: scale(1);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1.08);
}

:root {
  --swiper-pagination-bottom: 40px;
  --swiper-theme-color: rgba(252, 252, 252, 0.85) !important;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #FCFCFC;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #262626;
}
.swiper-button-prev,
.swiper-button-next {
  background: transparent;
  opacity: 0.55;
  --swiper-navigation-color: rgba(252, 252, 252, 0.85);
  transition: opacity 0.3s ease, color 0.3s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: transparent;
  opacity: 0.85;
  --swiper-navigation-color: #fcfcfc;
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px)) !important;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px)) !important;
  box-shadow: inset 1px 1px 1px rgba(38, 38, 38, 0.85);
  background: var(--swiper-pagination-bullet-inactive-color, rgba(252, 252, 252, 0.85)) !important;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.55) !important;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}
.swiper-pagination-bullet-active {
  box-shadow: inset 1px 1px 1px rgba(38, 38, 38, 0.85);
  background: var(--swiper-pagination-bullet-active-color, rgba(252, 252, 252, 0.85)) !important;
  opacity: var(--swiper-pagination-bullet-active-opacity, 0.85) !important;
  --swiper-pagination-bullet-horizontal-gap: 10px;
}


/* ===================SLIDER ENDS HERE================== */

/* ============ABOUT US SECTION START ================== */
.about-container {
    padding: 70px 0;
}
 .about-img {
      max-width: 100%;
      border-radius: 20px;
    }

    .about-content {
        text-align: left;
    }
    .about-content h2 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 1rem;
      color: #333;
      margin-bottom: 15px;
    }

    .about-content p strong {
      font-weight: 700;
    }

    .btn-yellow {
      background-color: #f4be3c;
      width: 195px;
      height: 50px;
      color: #000;
      border: none;
      /* border-radius: 15px; */
      /* padding: 12px 28px; */
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      transition: background-color 0.3s;
      margin-top: 20px;
    }

    .btn-yellow:hover {
      background-color: var(--blue);
      color: var(--white);
    }

    @media (max-width:770px) {

      .about-container{
    padding-left:20px;
      padding-right: 20px;
      }
  

    }
/* ============ABOUT US SECTION ENDS ================== */





/* ===============OUR VALUE SECTION START ============= */
.section-values {
  background: linear-gradient(180deg, #FFF6E1 0%, #FFFFFF 49.04%);
  padding: 60px 0;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 40px;
  color: #333;
}

.value-card {
  padding: 24px;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  text-align: left;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #2c3546bf;
  border: 2px solid var(--blue);
  background: linear-gradient(0deg, #FFF6E1 0%, #FFFFFF 69.23%);
  cursor: pointer;
}
.value-card:hover .value-icon img {
  width: 53px;
  height: 53px;
}

.value-icon {
  margin-bottom: 16px;
}
.value-icon img {
  width: 50px;
  height: 50px;
  transition: 0.3s all ease-in-out;
}

.value-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.value-description {
  margin: 0;
  color: #555;
}


 
/* ===============OUR VALUE SECTION ENDS ============= */

/* product section start==================== */
.product-bg{
  background-color: var(--blue);
  padding: 70px 0;
  padding-bottom: 100px;
}
.product-bg .container h2 {
    font-weight: 600;
}
.product-card {
  background-color: white;
  padding: 15px;
  border-radius: 18px;
  box-shadow: 2px 5px 10px #0000009a;
  transition: 0.2s all ease-in-out;
}
.product-card:hover {
  box-shadow: none;
  cursor: pointer;
  background-color: var(--red);
  color: var(--white);
}
.product-card:hover img {
  border: 3px solid var(--white) !important;
}
.product-card img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  border: 3px solid transparent;
}
.product-card h4 {
  margin-top: 20px;
}

@media (max-width:768px){
  .product-card {
    margin-top: 25px;
  }
}

@media (max-width: 500px){
 .product-bg .container h2 {
    margin-bottom: 10px;
  }
  .product-card {
    margin-top: 25px;
    padding: 10px;
  }
  .product-card img {
    height: 250px;
  }
  .product-card h4 {
    margin-top: 15px;
  } 
}
/* product section ends==================== */

/* =========why us section start============== */
 .why-us-section {
      padding: 60px 20px;
      text-align: center;
        background: linear-gradient(0deg, #FFF6E1 0%, #FFFFFF 69.23%);
    }

    .why-us-section h2 {
      font-weight: 600;
      color: #2C3546;
    }

    .why-us-section p.subtitle {
      color: #333;
      margin-bottom: 50px;
    }

    .card-style {
      display: flex;
      align-items: center;
      background-color: white;
      border-radius: 80px;
      border: 2px solid #F4BE3C;
      padding: 20px 30px;
      gap: 20px;
      text-align: left;
      max-width: 420px;
      margin: 15px auto;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    .card-style:hover {
      cursor: pointer;
    }


    .card-style img {
      width: 72px;
      height: 72px;
      transition: 0.2s all ease-in-out;
    }

    .card-style h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 5px;
    }

    .card-style p {
      margin: 0;
      font-size: 14px;
    }

    .img-center {
      width: 250px;
      border-radius: 12px;
    }

    @media(min-width: 768px) {
      .why-us-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
      }

      .why-us-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .align-top {
        margin-bottom: 30px;
      }

      .align-bottom {
        margin-top: 60px;
      }
    }

     @media (max-width: 500px) {
      .why-us-section {
      padding: 60px 10px;
    }
    .card-style {
      border-radius: 25px;
      padding: 20px 10px;
      gap:15px;
    }
    .card-style img {
      width: 50px;
      height: 50px;
    }

    }
/* =========why us section ends============== */

/* ======SERVICES SECTION START ================== */
.service-bg {
  padding: 70px 0;
  padding-bottom: 100px;
}
.service-box {
      border: 2px solid #e0e0e0;
      border-radius: 15px;
      padding: 25px;  
      text-align: left;
      transition: box-shadow 0.3s ease;
      height: 100%;
      transition: 0.2s all ease-in-out;
      /* border: 2px solid transparent; */
    }
    .service-box:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      cursor: pointer;
      background: linear-gradient(0deg, #FFF6E1 0%, #FFFFFF 69.23%);
      border: 2px solid var(--blue);
    }
    .service-box:hover .service-icon {
      scale: 1.1;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background-color: #2f3846;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      transition: 0.2s all ease-in-out;
    }
    .service-icon i {
      color: white;
      font-size: 22px;
    }
    .section-title {
      font-weight: 700;
    }
/* ======SERVICES SECTION ENDS ================== */

/* =============CONTACT FORM START================= */
.contact-bg{
   background: linear-gradient(to bottom, #fff8e6, #ffffff);
   padding: 50px 0;
}
   .contact-box {
      background-color: #f4be3c;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      text-align: left;
    }
    .contact-box h1 {
      font-size: 2.5rem;
      font-weight: 500;
    }
    .contact-box h1 span {
      font-weight: 700;
    }
    .contact-box p {
      margin-bottom: 35px;
    }
    .form-control {
      border-radius: 12px;
      border: 2px solid black;
      background-color: transparent;
      padding: 15px;
    }
    textarea.form-control {
      height: 150px;
    }
    .btn-custom {
      background-color: black;
      color: #f4be3c;
      font-weight: 600;
      width: 200px;
      height: 50px;
      /* padding: 12px 30px; */
      border-radius: 10px;
      border: none;
    }
    .btn-custom:hover {
      background-color: #333;
      color: #f4be3c;
    }
     .thanks-box{
    background-color: var(--white);
    box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
    margin-bottom: 20px;
    border-bottom: 1.5px solid var(--purple);
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    font-weight: 500;
}
    @media (max-width: 768px) {
      .form-row .col-md-4 {
        margin-bottom: 20px;
      }
    }
    @media (max-width: 500px){
      .contact-bg {
        padding: 50px 10px;
      }
       .contact-box {
       padding: 40px 20px;
       }
       .contact-box h1 {
        font-size: 2rem;
       }

    }
/* =============CONTACT FORM ENDS================= */


/* ================CHEMICAL SECTION START==================== */
.chemical-bg {
  padding: 50px 0;
}
.chemical-card {
  background-color: white;
  border-radius: 20px;
  padding: 15px;
  /* box-shadow: 1px 10px 1px rgba(0, 0, 0, 0.081); */
  text-align: left;
  border: 2px solid #e5e5e5;
  transition: 0.5s all ease-in-out !important;
  
}
.chemical-card:hover {
  box-shadow: none;
  background: linear-gradient(0deg, #FFF6E1 0%, #FFFFFF 69.23%);
  transform: translateY(5px) !important;
  cursor: pointer;

}
.chemical-card img {
  width: 100%;
  border-radius: 20px;
}
.chemical-card h3 {
  font-size: 25px;
  font-weight: 600;
  margin: 20px 0;
  color: var(--blue);
  padding-left: 5px;
}
.chemical-card strong {
  padding-left: 5px;
}
.chemical-card p {
  padding-left: 5px;
  margin-top: 5px;
}
.chemical-card ul {
  padding-left: 5px;
  margin-top: 5px;
}
.chemical-card ul li {
  list-style: none;
  line-height: 30px;
}
.chemical-card ul li i {
  color: var(--red);
  font-weight: bold;
}
.chemical-card .btn {
  margin-bottom: 10px;
}
.inqury-btn {
 background-color: var(--red);
 /* padding: 15px 30px; */
 width: 200px;
 height: 55px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: var(--black);
 border-radius: 10px;
 border: none !important;
 /* box-shadow: 2px 5px 1px  #00000020; */
 font-weight: 600;
 transition: 0.2s all ease-in-out;
}
.inqury-btn:hover {
  box-shadow: none;
  transform: translateY(2px);
  background-color: var(--blue);
  color: var(--white);
}

@media (max-width: 768px) {
  .chemical-card {
    margin-top: 25px;
  }
  .chemical-card:not(:first-child) {
    margin-top: 20px;
  }
}


/* ================CHEMICAL SECTION END==================== */


/* ================about-us page start===================== */
.about-bg {
  text-align: left;
}
.about-image {
  width: 100%;
  border-radius: 20px;
  /* height: 450px; */
}
.about-bg h3 {
  font-weight: 600;
  margin-top: 25px;
}
.about-bg img 
.vision-mission-bg {
  text-align: left;
}
.vision-mission-card {
  background-color: var(--white);
  padding: 40px 20px;
  border: 2px solid var(--red);
  border-radius: 20px;
  box-shadow: 2px 5px 10px #00000022;
  transition: 0.3s all ease-in-out;
}
.vision-mission-card img {
  width: 90px;
  height: 90px;
}
.vision-mission-card:hover {
  box-shadow: none;
  cursor: pointer;
}
.vision-mission-card:hover.vision-mission-card img {
  width: 92px;
  height: 92px;
}
.vision-mission-card h3 {
  font-weight: 600;
}
@media (max-width: 768px) {
.vision-mission-card {
  margin-bottom: 25px;
}
}

/* ================about-us page end===================== */



/* ==========FOOTER SECTION START HERE============== */
 a {
      color: #fff;
      text-decoration: none;
      cursor: pointer;
    }
    a:hover {
      color: #F4BE3C;
    }
    .footer {
      padding: 60px 30px;
      background-color: #11111d;
      color: var(--white);
      text-align: left;
      margin-top: 25px;
    }
    
    .footer-logo img {
      width: 150px;
      margin-bottom: 20px;
      background-color: var(--white);
      padding: 15px 10px;
      border-radius: 10px;
    }
    .footer p {
      margin: 0;
      line-height: 28px;
    }
    .footer h5 {
      margin-bottom: 20px;
      font-weight: bold;
      color: var(--white);
    }
    .footer a {
      display: block;
      margin-bottom: 10px;
    }
    .quick-link a{
      line-height: 35px;
    }
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    .social-icons a {
      font-size: 18px;
      background: rgba(255, 255, 255, 0.08);
      padding: 10px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      /* transition: background 0.3s; */
    }
    .social-icons a:hover {
      background: #F4BE3C;
      color: #11111d;
    }
    .footer-address a {
      display: inline;
      color: #fff;
    }
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    .contact-item  a{ 
     margin-bottom: 0;
    }
    .contact-item i {
      margin-right: 10px;
      font-size: 18px;
    }
   


   
/* ==========FOOTER SECTION ENDS HERE============== */

/* ==========footer bottom start here=================== */

    .footer-bottom {
      background-color: #0b0b1a;
      color: var(--white);
      padding: 15px 0;
      font-size: 15px;
    }

    .footer-bottom .container-fluid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      /* border: 2px solid red; */
    }

     .footer-inner{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 30px;
    }
    .footer-bottom .center a {
      margin-left: 3px;
    }
    .footer-bottom .right {
      /* border: 2px solid red; */
      margin-right: 20px;
    }
    .footer-bottom .right a {
      text-align: right;
      margin-left: 15px;
    }

    .footer-bottom a {
      color: #ffffff;
      text-decoration: none;
      /* margin-left: 15px; */
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .footer-bottom a:hover {
      color: #F4BE3C;
    }

   

    @media (max-width: 768px) {
      .footer-bottom .container-fluid {
        flex-direction: column;
      }
      .footer-bottom div {
        margin-top: 15px;
      }

      .quick-link , .address-link , .contact-us {
        margin-top: 25px;
      }
      
    }
     @media (max-width: 500px) {
        .swiper-container {
          width: 100vw;
          height: 70vh;
          margin-top: 100px;
            
        }
       .footer {
        padding: 50px 20px !important;
       }
       .footer-bottom {
        font-size: 13px;
       }
     }
    @media (max-width: 400px) {
          .footer-inner {
              padding-right: 0px !important;
              padding-left: 0px !important;
          }  
    }

     /* ======footer bottom start here=================== */ */



/* =================== HEADER INTRO SECTION ENDS============ */
.country-card img {
  width: 80px;
  height: 80px;
}
.country-card:hover .value-icon img {
  width: 82px !important;
  height: 82px !important;
}











/* ======================RESPONSIVE DESIGN START ===================== */
@media only screen and (max-width: 500px) {
    
     .header .logo img {
        max-height: 75px;
      }
        .chemical-card h3 {
  font-size: 22px !important;
}
.country-card {
    margin-bottom: 15px;
}

@media only screen and (max-width: 375px) {
    
    .header .logo img {
        max-height: 64px;
    }
     .chemical-card h3 {
  font-size: 20px !important;
}
    
    
}
/* ======================RESPONSIVE DESIGN ENDS ===================== */