@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Spartan", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Global Styles */

h1 {
  font-size: 50px;
  line-height: 64px;
  /* color: #222; */
}

h2 {
  font-size: 40px;
  line-height: 54px;
  color: #222;
  font-weight: 500;
}

h4 {
  font-size: 20px;
  /* color: #222; */
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  /* color: #465b52; */
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

ul {
  margin-bottom: 0;
}

button.normal {
  width: auto; 
  align-self: center;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #FFF;
  background-color: #111;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white { 
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
}

/** NAVBAR  */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    transition: 0.3s ease;
}

#navbar li a:hover, 
#navbar li a.active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background-color: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.logo {
  height: 50px; 
  margin-left: 20px; 
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  display: none;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit; 
}

/* Style for the logo image */
.logo {
  height: 40px; 
  margin-right: 10px; 
}

/* Style for the company name */
.company-name {
  font-size: 1rem;
  color: #000; 
  font-weight: bold;
}
/* Dark mode styles for navbar */
.dark-mode #navbar {
  background-color: #333;
}

.dark-mode #navbar a {
  color: #fff;
}
.dark-mode #header{
  background-color: #333;
}
/* Dark and Light Mode button styles */
.dark-mode .dark-mode-btn,
.light-mode-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  color: #fff; /* Button color in dark mode */
}

.dark-mode .dark-mode-btn:hover,
.light-mode-btn:hover {
  color: #ccc; /* Hover color in dark mode */
}

.dark-mode .dark-mode-btn:focus,
.light-mode-btn:focus {
  outline: none;
}

/** HERO SECTION */
#hero {
    background-image: url("img/front-logo.jpg");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25 right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #088178;
}

#hero button {
  background-image: url("img/button.png");
  background-color: transparent;
  color: #f6f6f6;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

#hero_p {
  color: #111;
}

#feature {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.2);
    border: 0.5px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(74, 62, 221, 0.1);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;

}

#feature .fe-box h6{
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #ececec;
  background-color: #000000;
} 

#feature .fe-box:nth-child(2) h6{
  background-color: #000000;
}

#feature .fe-box:nth-child(3) h6{
  background-color: #040405;
}

#feature .fe-box:nth-child(4) h6{
  background-color: #000000;
}

#feature .fe-box:nth-child(5) h6{
  background-color: #000000;
}

#feature .fe-box:nth-child(6) h6{
  background-color: #000000;
}

#product1 {
  text-align: center;
}
#product1 .pro-container{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}


#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.2);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .description {
  text-align: start;
  padding: 10px 0;
} 

#product1 .pro .description span {
  color: #06060663;
  font-size: 12px;
}

#product1 .pro .description h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .description i {
  font-size: 12px;
  color: rgb(228, 214, 24);
}

#product1 .pro .description h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #088178;

}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #088178;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

/* PRODUCT REFERENCE SECTION */
.product-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  background-image: url("img/banner/banner2.jpg");
  background-size: cover;
  text-align: center;
  margin: 2rem 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container_product {
  width: 100%;
  padding: 20px;
}

#products_refer_h1 {
  margin-bottom: 20px;
  font-size: 3.5rem;
  color: #000000;
}

#products_refer_p {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #FFF;
}

.btn_product {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: #fff;
  background-color: #000000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn_product:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .container_product {
      padding: 10px;
  }

  #products_refer_h1 {
      font-size: 2rem;
  }

  #products_refer_p {
      font-size: 1rem;
  }

  .btn_product {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
}

/**STAT'S SECTION**/
       
.container {
  max-width: 90%;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.header p {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  color: #07887f;
}

/* Stats styles */
.container {
max-width: 90%;
margin: 20px auto;
padding: 20px;
background-color: #f1efef; /* Gray background color */
display: flex;
justify-content: space-between;
border-radius: 2%;
}

.stats-column {
flex: 1;
padding: 0 10px;
text-align: center;
}


/* Stats styles */
.stats {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}

.stat {
background-color: transparent;
padding: 20px;
text-align: center;
flex: 1;
opacity: 0;
transform: translateY(50px);
transition: opacity 0.5s, transform 0.5s;
}

.stat.active {
opacity: 1;
transform: translateY(0);
}

.stat:not(:last-child):after {
content: "";
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
width: 1px;
height: 90%;
background-color: #ccc; /* Color of the line */
}

.stat-value {
font-size: 40px;
font-weight: bold;
display: block;
margin-bottom: 10px;
}

.stat-label {
font-size: 20px;
}

.image-column {
  width: 90%;
  flex: 1;
  padding: 60px 10px;
  text-align: center;
}

.company-image {
max-width: 100%;
height: auto;
}
  

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-image: url("img/banner/b2.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}

#banner h4 {
  color: #fff;
  font-size: 16px;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: red;
}

#banner button:hover {
  background: #088178;
  color: #fff;
}

#sm-banner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/banner/banner1.jpg");
  min-width: 650px;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  margin-bottom: 20px;
}

#sm-banner .banner-box2 {
  background-image: url("img/banner/banner2.jpg");
}

#sm-banner h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background: #088178;
  border: 1px solid #088178;
}

#banner3 {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 90px;
  align-items: start;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("img/banner/banner3.jpg");
  min-width: 30%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  padding: 45px;
  margin-bottom: 20px;
}

#banner3 .banner-box2 {
  background-image: url("img/banner/banner4.jpg");
}

#banner3 .banner-box3 {
  background-image: url("img/banner/banner5.jpg");
}

#banner3 h2{
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

.separator-line {
  border-top: 4px solid #ccc; /* Gray line */
  margin: 20px 0; /* Space around the line */
}

footer {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer .logo {
  margin-bottom: 30px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 14px;
  text-decoration: none;
  color: #222;
  margin: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .follow i:hover, 
footer a:hover {
  color: #088178;
}

footer .col p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Remove overflow and ellipsis on smaller screens */
@media (max-width: 767px) {
  .footer .col p {
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
  }
}

/* CSS for scrolling effect */
.scroll-effect {
  opacity: 0; /* Start with elements hidden */
  transform: translateY(50px); /* Start with elements translated down */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Transition effect */
}

.scroll-effect.visible {
  opacity: 1; /* When element becomes visible, show it */
  transform: translateY(0); /* Move element up */
}

#blog h2, 
#blog #sample {
  text-align: center;
}

 /* PRODUCTS SECTION */
 .tabs {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Dark mode styles for the tabs */
.dark-mode .tab-button {
  background-color: #444;
  color: white;
}

.tabs button {
  background-color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  outline: none;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tabs button.active {
  font-weight: bold;
  position: relative;
}

.tabs button.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: black;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.tab-divider {
  width: 2px;
  height: 30px;
  background-color: black;
  margin: 0 10px;
}

.product-grid {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
  gap: 30px;
}

.product-grid.active {
  display: flex;
}

.product-card {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card button {
  background-color: black;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;
}

/* SHOP PAGE */ 
#page-header {
  background-image: url("img/products-front-logo.jpg");
  width: 100%;
  height: 65vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

 
#page-header p {
  color: black!important;
  font-size: x-large;
}

#paginaton {
  text-align: center;
}

#paginaton a {
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}

#paginaton a i {
  font-size: 16px;
  font-weight: 600;
}

/** SINGLE PRODUCT **/
#product-details {
  display: flex;
  margin-top: 20px;
}

#product-details .single-pro-image {
  width: 40%;
  margin-right: 50px;

}

.small-image-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

#product-details .single-pro-details {
  width: 50%;
  padding-top: 30px;
}

#product-details .single-pro-details h4 {
  padding: 40px 0 20px 0;
}

#product-details .single-pro-details h2 {
  font-size: 26px;
}

#product-details .single-pro-details  select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}


#product-details .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}

#product-details .single-pro-details input:focus {
  outline: none;
}

#product-details .single-pro-details button { 
  background: #088178;
  color: #fff;
}

#product-details .single-pro-details span {
  line-height: 25px;
}

/* PARTNER'S SECTION */
.partners {
  background-color: #1111;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.partners h2 {
  font-size: 2em;
  color: #333;
  margin-bottom: 10px;
}

.partners p {
  color: #777;
  margin-bottom: 20px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.partner {
  flex: 1 1 calc(25% - 40px); /* Adjust the width as needed */
  max-width: 200px;
  margin: 10px;
}

.logo-box {
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  background-color: #fff;
  width: 180px; /* Set fixed width */
  height: 100px; /* Set fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.logo-box img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.partners.dark-mode {
  background-color: #222;
  color: #fff;
}

.logo-box.dark-mode {
  background-color: #444;
  border-color: #555;
}

.logo-box.dark-mode:hover {
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.partners.dark-mode h2,
.partners.dark-mode p {
    color: #fff; /* Dark mode text color */
}

.partners.dark-mode .logo-box {
    background-color: #444;
    border-color: #555;
}

/* PARTNER'S SECTION REFERENCE */

.partners-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.more-partners {
  font-size: 1.2em;
  color: #333;
  align-self: center;
}

.button-container {
  margin-top: 40px;
}

.button-partner {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.button-partner:hover {
  background-color: #555;
}

/* Responsive styling */
@media (max-width: 768px) {
  .partner-logos {
      flex-direction: column;
      align-items: center;
  }
}


.dark-mode .partners-section {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

.dark-mode .partners-section h2,
.dark-mode .partners-section p {
  color: #e0e0e0;
}

.dark-mode .more-partners {
  color: #e0e0e0;
}

.dark-mode .button-partner {
  background-color: #444;
}

.dark-mode .button-partner:hover {
  background-color: #666;
}

/* BLOG PAGE */ 
#page-header.blog-header {
  background-image: url("img/banner/b19.jpg");
}

#blog {
  padding: 40px 150px 0 150px;
}

#blog .blog-box {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 30px;
}

#blog .blog-img {
  width: 50%;
  margin-right: 40px;
}

#blog img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

#blog .blog-details {
  width: 50%;
}

#blog .blog-details a {
  text-decoration: none;
  font-size: 11px;
  color: #000;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

#blog .blog-details a::after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 4px;
  right: -60px;
}

#blog .blog-details a:hover {
  color: #088178;
}


#blog .blog-details a:hover::after {
  background-color: #088178;
}

#blog .blog-box h1 {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #c9cbce;
  z-index: -9;
}

/** ABOUT PAGE**/
#page-header.about-header {
  background-image: url("img/about-us.jpg");
}

#about-head {
  display: flex;
  align-items: center;
}

#about-head img{
  width: 50%;
  height: auto;
}

#about-head div {
  padding-left: 40px;
  text-align: justify;
}

#about-app {
  text-align: center;
}

#about-head p {
  line-height: 22px;
}

/** CONTACT PAGE**/
#page-header.contact-header {
  background-image: url("img/contact-us.jpg");
  /* height: 60vh; */
}

#contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span,
#form-details form span {
  font-size: 12px;
}

#contact-details .details h3,
#form-details form h3 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0 ;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
}

#contact-details .details li {
  text-decoration: none;
  display: flex;
  padding: 10px 0;
}

#contact-details .details li i{
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p{
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  width: 55%;
  height: 440px;
}

#contact-details .map iframe {
  width: 100%;
  height: 100%;
}

#form-details {
  display: flex;
  justify-content: space-around;
  margin: 30px;
  padding: 80px;
  border: 1px solid #e1e1e1;
}

#form-details form {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px 15px;
  outline: none;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
}

#form-details form button {
  background-color: #088178;
  color: #fff;
}

#form-details .people div {
  padding-bottom: 25px;
  display: flex;
  align-items: flex-start;

}

#form-details .people div img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 15px;
}

#form-details .people div  {
  margin: 0;
  font-size: 13px;
  line-height: 25px;
}

#form-details .people div p span {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/**Dummy **/
#addBlogBtn {
  background-color: #007bff;
  color: #fff;
  border: none;
  margin: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#addBlogBtn:hover {
  background-color: #0056b3;
}

/* Add this CSS to style.css */

.container:first-of-type {
  margin-bottom: 20px; /* Adjust the value as needed */
}

.container:last-of-type {
  margin-top: 20px; /* Adjust the value as needed */
}

/* Coming Soon  image */
.container-sustainability, .product-grid {
  display: none;
}

.container-sustainability.active, .product-grid.active {
  display: flex;
}


#men {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px; /* Optional: Add padding if needed */
  box-sizing: border-box;
}

/* Image styling for responsiveness */
#men img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#women {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px; /* Optional: Add padding if needed */
  box-sizing: border-box;
}

/* Image styling for responsiveness */
#women img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#bubble {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px; /* Optional: Add padding if needed */
  box-sizing: border-box;
}

/* Image styling for responsiveness */
#bubble img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/*MODAL FOR PRIVACY POLICY */

.privacy-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}

.dark-mode .modal-content {
  background-color: #333;
  color: #fff;
  border-color: #666;
}
/* 
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
} */

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 600px) {
  .modal-content {
      width: 90%;
      margin: 20% auto;
  }

  .close {
      font-size: 24px;
  }
}

/** TOGGLE BUTTON  **/

 
#toggle-btn {
  position: fixed;
  top: 10px;
  right: 9px;
  background-color: #e3e6f3;
  color: black;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  font-size: 20px;
  line-height: 1;
}

#toggle-btn.dark-mode {
  background-color: #333;
}
/* Testimonial Section */

.testimonials-section {
  text-align: center;
  width: 100%;
  padding: 40px 0;
}

.testimonial:hover {
  transform: translateY(-5px); /* Move the testimonial box up slightly */
}

.testimonials-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.scroll-wrapper {
  position: relative;
  width: 100%; /* Set width to 100% */
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.testimonials-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
  /* border: 2px solid #ccc; */
  white-space: nowrap;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  justify-content: space-evenly;
}

.testimonials-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari and Opera */
}

.testimonial {
  display: inline-block;
  width: 300px;
  margin: 0 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.testimonial-image {
  width: 100px;
  height: 100px;
  background-color: #ccc;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.testimonial h3 {
  font-size: 1.5em;
  margin: 10px 0;
}

.position {
  color: #777;
  font-style: italic;
  white-space: normal;
}

.quote {
  font-size: 1em;
  color: #555;
  line-height: 1.5; /* Adjust the line height */
  white-space: normal;
}

.indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: black;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  z-index: 1;
}

.left-indicator {
  display: none;
  left: 2px; /* Position the indicator outside */
}

.right-indicator {
  display: none;
  right: 2px; /* Position the indicator outside */
}


@media (max-width: 768px) {
  .scroll-wrapper {
      padding: 0 20px;
  }

  .testimonial {
      width: 250px;
  }

  .indicator {
      font-size: 1.5em;
      padding: 5px;
  }
  .left-indicator {
      display: block;
      left: -2px; /* Adjust left position for mobile */
  }

  .right-indicator {
      display: block;
      right: -3px; /* Adjust right position for mobile */
  }
}

@media (max-width: 480px) {
  .scroll-wrapper {
      padding: 0 10px;
  }

  .testimonial {
      width: 200px;
  }

  .testimonial-image {
      width: 80px;
      height: 80px;
  }

  .testimonial h3 {
      font-size: 1.2em;
  }

  .quote {
      font-size: 0.9em;
      line-height: 1.4; /* Adjust the line height */
  }

  .indicator {
      font-size: 1.2em;
      padding: 1px;
  }
}


.dark-mode .testimonials-section {
  background-color: #1e1e1e;
  color: #e0e0e0;
}

.dark-mode .testimonials-section h2 {
  color: #ffffff;
}

.dark-mode .testimonial {
  background-color: #2c2c2c;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.dark-mode .testimonial-image {
  background-color: #3c3c3c;
}

.dark-mode .testimonial h3 {
  color: #ffffff;
}

.dark-mode .testimonial .position {
  color: #aaaaaa;
}

.dark-mode .testimonial .quote {
  color: #dddddd;
}

/* SERVICE PAGE */

#page-header.service-header {
  background-image: url("img/banner1.jpg");
  width: 100%;
  height: 60vh;
  background-size: cover;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#page-header.service-header p {
  color: #fff!important;
  font-size: x-large;
  font-weight: 500;
  margin-top: 10px;
}

/**SCROLL TO TOP BUTTON AND PROGRESS BAR **/
/** HERO SECTION */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 40px;
  height: 40px;
  background-color: #333;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 999;
  cursor: pointer; /* Add a cursor pointer to indicate it's clickable */
}

#scrollToTopBtn:hover {
  background-color: #1f305f;
}

#scrollToTopBtn i {
  font-size: inherit;
}
.fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  right: 30px;
  bottom: 30px;
}
#scrollToTopBtn .fas {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: fixed;
  right: 30px;
  bottom: 30px;
}

/* Progress Bar Styles */
#progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px; /* Adjust as needed */
  background-color: transparent; /* Adjust as needed */
}

#progress-bar {
  height: 100%;
  background-color: #088178; /* Adjust as needed */
  width: 0;
  transition: width 0.3s ease-in-out;
}

/* SPINNER */
/* Center spinner */
#spinner-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust transparency as needed */
  z-index: 9998; /* Ensure overlay is below spinner */
}

#spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* WHY-WORK-WITH-US SECTION */

.why-work-with-us {
  margin: 40px auto;
  padding: 10px; /* Decreased padding */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white; /* Default text color for light mode */
}


.why-work-with-us.dark-mode {
  background-color: gray; /* Gray background for both modes */
  color: #f1f1f1; /* Text color for dark mode */
}

.why-work-with-us header {
  text-align: center;
  margin-bottom: 30px;
}

.why-work-with-us header h1 {
  font-size: 2em;
  color: #088178; /* Black color for headings */
  margin-bottom: 20px;
}

.why-work-with-us header p {
  font-size: 1.2em;
  color: #555;
}

.why-work-with-us .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.why-work-with-us .grid-item {
  
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-work-with-us .grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.why-work-with-us .grid-item img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #111;
}

.why-work-with-us .grid-item h2 {
  font-size: 1.8em;
  color: #088178; /* Black color for headings */
  margin: 20px 0;
  padding: 0 20px;
}


@media (max-width: 768px) {
  .why-work-with-us header h1 {
      font-size: 2em;
  }

  .why-work-with-us .grid-item h2 {
      font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .why-work-with-us header h1 {
      font-size: 1.5em;
  }

  .why-work-with-us .grid-item h2 {
      font-size: 1.2em;
  }
}



/** MEDIA QUERIES **/

@media  (max-width:799px) {
  .section-p1 {
    padding: 40px 40px;
  }
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #9e9e9e;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }
  #navbar.active {
    right: 0px;
  }
  #navbar li {
    margin-bottom: 25px;
    /* color: #000; */
  }
  
  #mobile {
    display: flex;
    align-items: center;
  }
  #mobile i{
    color: #1a1a1a;
    font-size: 24px;
    padding: 0px 20px 0px 60px;
  }
  #close {
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: 222;
    font-size: 24px;
    color: #222;
  }
  #lg-bag {
    display: none;
  }
  #hero {
    height: 100vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }
  .company-name {
    font-size: 0.6em;
  }
  .logo {
    margin-left: 5px;
  }
  #feature {
    justify-content: center;
  }
  #feature .fe-box {
    margin: 15px 15px;
  }
  #product1 .pro-container {
    justify-content: center;
  }
  #product1 .pro {
    margin: 15px;
  }
  #banner {
    height: 40vh;
  }
  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
  }
  #banner3 {
    padding: 0 40px;
  }
  #banner3 .banner-box{
    width: 28%;
  }
  #newsletter .form {
    width: 70%;
  }
  .container {
    flex-direction: column;
  }

  .stats-column,
  .image-column {
      flex: 1 1 100%;
      padding: 0;
      margin-bottom: 20px;
  }

  .stat:not(:last-child):after {
      display: none;
  }

  .stat {
      margin-bottom: 20px;
  }

  /** Contact Page **/
  #form-details {
    padding: 40px;
  }
  #form-details form {
    width: 50%;
  }
  footer .col p{
    white-space: normal;
  }
}
@media  (max-width: 477px) {
  .section-m1 {
    padding: 20px;
  }
  #header {
    padding-left: 0px
  }
  h1 {
    font-size: 33px;
  }
  h2 {
    font-size: 32px;
  }
  #hero {
    padding: 0 0px;
    background-position: 55%;
  }
  #feature {
    justify-content: space-around;
  }
  #feature .fe-box {
    width: 155px;
    margin: 10px 0 15px 18px;
  }
  #product .pro {
    width: 100%;
  }
  #banner {
    height: 50vh;
  }
  #sm-banner .banner-box {
    height: 40vh;
  }
  #sm-banner .banner-box2 {
    margin-top: 20px;
  }
  #banner3 {
    padding: 0 20px;
  }
  #banner3 .banner-box {
    width: 100%;
  }
  #newsletter {
    padding: 40px 20px;
  }
  #newsletter .form {
    width: 100%;
  }
  #product-details {
    display: flex;
    flex-direction: column;
  }
  #product-details .single-pro-image {
    width: 100%;
    margin-right: 0px;
  }
  #product-details .single-pro-details {
    width: 50%;
    padding-top: 30px;
  }
  .container {
      flex-direction: column;
  }

  .stats-column,
  .image-column {
      flex: 1 1 100%;
      padding: 0;
      margin-bottom: 20px;
  }

  .stat:not(:last-child):after {
      display: none;
  }

  .stat {
      margin-bottom: 20px;
  }
  

  /*BLOG PAGE**/

  #blog {
    padding: 10px 20px 0 20px;
  }
  #blog .blog-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #blog .blog-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  #blog .blog-details {
    width: 100%;
  }


  /** ABOUT PAGE **/

  #about-head {
    flex-direction: column;
  }
  #about-head img {
    width: 100%;
    margin-bottom: 20px;
  }
  #about-head div {
    padding-left: 0px;
  }
  #about-head .video {
    width: 70%;
    height: 100%;
    margin: 30px auto 0 auto;
  }

  /** Contact Page **/
  #contact-details {
    flex-direction: column;
  }
  #contact-details .details {
    width: 100%;
    margin-bottom: 30px;
  }
  #contact-details .map {
    width: 100%;
  }
  #form-details {
    margin: 10px;
    padding: 30px 10px;
    flex-wrap: wrap;
  }
  #form-details form {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .col p{
    white-space: normal;
    line-height: 20px;
  }
}