:root { 
  --background-solid: #6B8F71;

  --default-color: #2F2F2F; /* Default color used for the majority of the text content across the entire website */
}
:root {
  --nav-color: #F4F4F2 ;  /* The default color of the main navmenu links */
  --nav-hover-color: #2F2F2F; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #7E8F7C ; /* 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-hover-color: #FFCF50; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-solid: #eaeaea;
  --background-gradient: linear-gradient(135deg, #ffffff, #eaeaea);
  --surface-color: #F1F5F2;
}
 

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: var(--background-solid);
  font-family: Poppins;
}

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: Poppins;
}

/* 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: 22px;
    font-family: Poppins;
    font-weight: 400;
    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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .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-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: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    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 ul a {
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

 
  .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: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
/* Masonry-style columns */
    .gallery {
      column-count: 3;         /* Number of columns */
      column-gap: 15px;        /* Space between columns */
    }

    @media (max-width: 900px) {
      .gallery {
        column-count: 2;
      }
    }

    @media (max-width: 600px) {
      .gallery {
        column-count: 1;
      }
    }

    .gallery-item {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      margin-bottom: 15px;
      display: inline-block;  /* Needed for masonry effect */
      width: 100%;
      transition: transform 0.3s ease;
      overflow: hidden;
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    .gallery-item img {
      width: 100%;
      height: auto; /* Natural height for masonry look */
      display: block;
    }

    .caption {
      padding: 12px;
      background: #fff;
    }

    .caption h4 {
      margin: 8px 0 4px;
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      color: #333;
    }

    .caption p {
      margin: 0;
      font-size: 14px;
      color: #6B8F71; /* Matches your color scheme */
    }

    .gallery-item video {
      width: 100%;
      height: auto;           /* Keeps proportions */
      max-height: 400px;      /* Prevents it from being too tall */
      object-fit: cover;      /* Crops neatly instead of stretching */
      display: block;
      border-bottom: 1px solid #eee;
      border-radius: 0;       /* Optional: remove rounding if video looks odd */
    }




/*--------------------------------------------------------------
# Table & Collage
--------------------------------------------------------------*/
.table-container {
      max-width: 100%;
      overflow-x: auto;
      margin: 20px auto;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 800px; /* Ensures table doesn't squish too much */
    }

    th, td {
      border: 1px solid #333;
      padding: 10px;
      text-align: center;
    }

    th {
      background-color: #f2f2f2;
    }

    tr:nth-child(even) {
      background-color: #f9f9f9;
    }
    tr:nth-child(odd) {
      background-color: #8FAF8F;
    }

    @media (max-width: 600px) {
      th, td {
        padding: 8px;
      }
    }




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--background-solid);
  color: var(--default-color);
  padding: 60px 0;
  font-size: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer a {
  color: var(--default-color) !important;
}

.footer a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  margin-top: 50px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .copyright p,
.footer .copyright .credits {
  margin: 2px 0;
}

.footer .btn-learn-more {
  background-color: #99A996 ;
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
  color: var(--contrast-color) !important;
}

.footer .btn-learn-more:hover {
  border-color:#869645 ;
  background-color: transparent;
  color:#333333 !important;
}

.footer .widget .widget-heading {
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer .widget ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer .widget ul li a {
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.footer .widget ul li a:hover {
  text-decoration: none;
  color: var(--heading-color);
}

.footer .widget .footer-blog-entry .date {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 12px;
}

.footer .social-icons li {
  display: inline-block;
}

.footer .social-icons li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: color-mix(in srgb, #333333, transparent 90%);
}

.footer .social-icons li a span {
  color: color-mix(in srgb, #333333, transparent 0%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease-in-out;
}

.footer .social-icons li a:hover {
  background-color: #A4B465;
    
}

.footer .social-icons li:first-child a {
  padding-left: 0;
}

.footer .footer-subscribe .form-control {
  font-size: 14px;
  height: 42px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  color: var(--heading-color);
  padding-right: 40px;
}

.footer .footer-subscribe .form-control:focus {
  border-color: color-mix(in srgb, var(--default-color), transparent 10%);
  box-shadow: none;
}

.footer .footer-subscribe .form-control::placeholder {
  color: color-mix(in srgb, var(--heading-color), transparent 60%);
}

.footer .footer-subscribe .btn-link {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  background-color: none;
  border-color: none;
  position: absolute;
  line-height: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  top: 20px;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
}

.footer .footer-subscribe .btn-link:hover,
.footer .footer-subscribe .btn-link:focus,
.footer .footer-subscribe .btn-link:active {
  text-decoration: none;
}

.img-wrap img {
  margin-top: 50px;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color:#798645 ;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 28px;
  color: #F4F4F2;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb,#5D8645 , transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Ecozmart Slogan
--------------------------------------------------------------*/
.eco-slogan {
  text-align: center;
  margin: 60px auto 40px;
  padding: 0 15px;
}

.eco-slogan h1 {
  font-size: 2.5rem;
  color: #2e5339;
  font-weight: 700;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  display: inline-block;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .eco-slogan h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .eco-slogan h1 {
    font-size: 1.7rem;
  }
}

/* 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 {
  color: var(--default-color);
  background: var(--background-solid);
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-width: 45%;
  margin-right: 8px;
  margin-top: 10px;
}

.header .logo h1 {
  font-size: 10px;
  margin: 0;
  font-weight: 300;
  color: blue;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.377);
}

.slider-container {
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.carousel-inner img {
  height: 100vh; /* adjusts height */
  object-fit: contain;
}

@media (max-width: 768px) {
  .carousel-inner img {
    height: 40vh; /* smaller height on mobile */
  }
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

.fb-embed-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio, adjust as needed */
}

.fb-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
}

.fb-post-container {
  margin-bottom: 2rem;
  background-color: #1a1a1a; /* Optional dark background */
  padding: 1rem;
  border-radius: 12px;
}




/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
  color: #FEFAE0; /* Light cream text for visibility */
  padding: 40px 0; /* More vertical space for emphasis */
  text-align: center; /* Center-align title text */
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
  margin: 0 0 5px 0;
  color: #FEFAE0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Facebook
--------------------------------------------------------------*/
    .facebook-section {
      padding: 40px 20px;
      text-align: left;
      margin: 0 auto;
    }

    .facebook-section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
      margin-left: 100px;
      margin-top: 25px;
      color: #2F2F2F;
    }

    .fb-posts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .fb-post-wrapper {
      flex: 1 1 350px; /* grow/shrink, basis */
      max-width: 500px;
      box-sizing: border-box;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .fb-post-wrapper {
        flex-basis: 100%;
        max-width: 100%;
      }
    }

/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/
/* Brand slider container */
.brand-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px 0; /* spacing above/below */
  background: #f8f9fa;
}

/* Track for logos */
.brand-track {
  display: flex;
  gap: 50px; /* space between logos */
  animation: scroll 30s linear infinite; /* slower for readability */
  width: max-content; /* auto width based on logos */
}

/* Each logo item */
.brand-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo images */
.brand-item img {
  max-width: 280px;
  max-height: 160px;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-item img:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* Infinite scroll animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* loops halfway for seamless effect */
}

/* Responsive logos */
@media (max-width: 768px) {
  .brand-item img {
    max-width: 160px;
    max-height: 90px;
  }
}

/* Section Title */
.brands-section h2 {
  color: #2F2F2F;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
  font-weight: 300;
  font-size: 30px;
  text-align: center;
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.product-title {
  color: #F8F7F2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 1);
  font-weight: 300;
  font-size: 30px;
}
.product-subtitle{
  color: #FFA500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  font-size: 26px;
}
.product-subtitle2 {
  color: #FFA500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  font-size: 26px;
  text-align: center; /* ✅ Center text horizontally */
  margin-top: 10px;
}

.features-heading {
  color: #FFA500;
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  text-transform: capitalize;
}
.features-heading2 {
  color: #FFA500;
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 24px;
  text-align: left;
  text-transform: capitalize;
}
.features-heading3 {
  color: #F8F7F2;
  text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  font-size: 20px;
  text-align: left;
  text-transform: capitalize;
}
.downloadLink {
  color: #FFA500;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8); /* Slightly softer shadow */
  font-weight: 500;
  text-align: center; /* Effective only if element is block or inline-block */
  text-transform: capitalize;
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Makes text-align work properly if needed */
}

.downloadLink:hover {
  text-decoration: underline; /* Adds a hover effect */
}
.vid {
  color: #2F2F2F;
  text-shadow: -1px -1px 2px rgba(248, 244, 244, 0.7);
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  text-transform: capitalize;
  margin-top: 50px;
  margin-bottom: 50px;
}
.product-desc, .feature-list{
  margin-top: 20px;
  color: #F8F7F2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  font-size: 20px;
}
.product-desc3{
  font-size: 25px;
  margin-top: 30px;
  color: #F8F7F2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
  text-align: center;
}
.product-desc2{
  margin-top: 20px;
  color: #F8F7F2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 5px;
  text-align: left;
}
.feature-list{
  font-weight: 300;
}

.magnifier-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
}
.customerImg{
  width: 100%;
  max-width: 400px; /* Optional: limit max size */
  height: auto;
  display: block;
  margin: 0 auto; /* Center horizontally */
  
}

.lens {
  position: absolute;
  border: 2px solid #000;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200%;
  pointer-events: none;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 10;
}
.color-selector {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.selectedColor{
  font-weight: 600;
  font-size: 22px;
}

.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #555;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.color-swatch.active {
  outline: 2px solid #000;
  box-shadow: 0 0 4px #000;
}

.color-swatch:hover {
  transform: scale(1.1);
  border-color: #000;
}


.color-selector2 button {
  margin: 5px;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-white {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}

.btn-black {
  background-color: #000;
  color: #fff;
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background: var(--background-solid);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

.section-title p {
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# About Section - Responsive
--------------------------------------------------------------*/

.container {
  max-width: 1100px;
  margin: 10px auto;
  padding: 0 20px;
}
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
  flex-wrap: wrap;
}
    .section-row.reverse {
      flex-direction: row-reverse;
    }
    .text-block, .image-block {
      flex: 1 1 400px;
      min-width: 280px;
    }
    .text-block h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #F8F7F2;
    }
    .text-block p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #F8F7F2;
      font-family: Nunito;
    }
    .image-block img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .section-row {
        flex-direction: column !important;
      }
      .section-row.reverse {
        flex-direction: column !important;
      }
      .text-block, .image-block {
        min-width: 100%;
      }
      .text-block {
        margin-top: 20px;
      }

    }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services .services-item .services-icon p {
  font-size: 60px;
  
  font-weight: 400;
}

.services .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}




/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: Poppins, sans-serif;
  text-transform: uppercase;
  color: #F4F4F2;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #FFA500;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

/* Portfolio Grid */
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background: #fff;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Product Image */
.portfolio .portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-img img {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
  object-fit: contain;
  padding: 15px;
  background: #fff;
}

.portfolio .portfolio-card:hover .portfolio-img img {
  transform: scale(1.08);
}

/* Info Panel */
.portfolio .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.123) 0%,       /* darker top */
    rgba(0, 0, 0, 0.623) 100%      /* darker bottom for text contrast */
  );
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(100%);
}

.portfolio .portfolio-card:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-info h4 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #fff;
  text-shadow: 0 2px 6px rgb(0, 0, 0); /* stronger shadow */
}



.portfolio .portfolio-info p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #f1f1f1;
}

/* Action Buttons */
.portfolio .portfolio-links {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
}

.portfolio .portfolio-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transition: all 0.3s ease;
  font-size: 20px;
}

.portfolio .portfolio-links a:hover {
  background: #ffa500;
  color: #111;
  transform: scale(1.15);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
  background-color:#F8F7F2 ;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: #7E8F7C;
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
  
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: #7E8F7C;
  background-color:#F8F7F2 ;
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #7E8F7C;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 400px;
}

.contact .php-email-form button[type=submit] {
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
  background: none;
  border-color: #F8F7F2;
  color: #F8F7F2;
  text-transform: uppercase;
  font-weight: 300;
}

.contact .php-email-form button[type=submit]:hover {
  background:#F8F7F2;
  color: #7E8F7C;
  font-weight: 300;
}
/*--------------------------------------------------------------
# Loading Spinner
--------------------------------------------------------------*/
.loading {
  display: none;
  font-size: 14px;
  color: #555;
  margin-top: 12px;
  position: relative;
  padding-left: 25px;
}

.loading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px; solid #28a745;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translateY(-50%);
}

  @keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
  }

  /*--------------------------------------------------------------
# Success Message
--------------------------------------------------------------*/
  .sent-message {
    display: none;
    margin-top: 12px;
    padding: 10px 15px;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 6px;
    font-size: 14px;
    animation: fadeIn 0.5s ease;
  }

/*--------------------------------------------------------------
# Error Message
--------------------------------------------------------------*/
  .error-message {
    display: none;
    margin-top: 12px;
    padding: 10 px 15px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    font-size: 14px;
    animation: fadeIn 0.5s ease;
  }

/*--------------------------------------------------------------
# Fade In
--------------------------------------------------------------*/
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

