@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600&display=swap');


/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Marcellus",  sans-serif;
  --nav-font: "Marcellus",  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: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #116530; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #116530; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #116530; /* 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-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2ea359;
  --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);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    /* color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
    position: fixed; */
    color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 20px; /* Reduced padding for compact header */
  transition: all 0.5s ease-in-out;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for visibility */
  }
  
  .header .logo {
    line-height: 1;
    display: flex;               /* Flexbox for logo and text */
    align-items: center;
    transform: translateX(-40px); /* Moves it 10px to the left */
    padding-left: 10px;
  }
  
  .header .logo img {
    /* max-height: 32px;
    margin-right: 8px; */
    max-height: 40px;            /* Adjust the height to a size that fits well */
    /* margin-right: 50px; */
    height: auto;     
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
  }

/* ------------------------------------------ Navbar ----------------------------- */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

    /* General link styling */
.navmenu ul li a {
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s, background-color 0.3s, border-bottom 0.3s;
  border-bottom: 2px solid transparent; /* Invisible underline */
}

/* Hover effect */
.navmenu ul li a:hover {
  border-bottom: 2px solid #006400; /* Underline on hover */
  /* color: #006400; */
}

/* Active link styling
.navmenu ul li a.active {
  border-bottom: 2px solid #007bff; /* Permanent underline for active link 
  color: #007bff;
} */
 /* General link styling */
.navmenu ul li a {
  color: #000; /* Default text color */
  text-decoration: none; /* Remove default underline */
  padding: 10px 15px;
  position: relative; /* For pseudo-element positioning */
  transition: color 0.3s, border-bottom 0.3s;
}

/* Hover effect: underline with pseudo-element */
.navmenu ul li a::after {
  content: ''; /* Empty content for the pseudo-element */
  position: absolute;
  left: 0;
  bottom: 0; /* Position the underline at the bottom of the link */
  width: 0; /* Initially invisible */
  height: 2px; /* Thickness of the underline */
  background-color: #006400; /* Color of the underline */
  transition: width 0.3s ease; /* Smooth animation */
}

/* Hover state: show underline */
.navmenu ul li a:hover::after {
  width: 100%; /* Full width on hover */
}

/* Active link: underline always visible */
.navmenu ul li a.active::after {
  width: 100%;
}

/* Active link color */
.navmenu ul li a.active {
  color: #006400; /* Match the underline color */
}
  .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: 16px;
    font-family: var(--nav-font);
    font-weight: bold;
    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 color-mix(in srgb, var(--default-color), transparent 85%);
  }
  .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;
  }
}
@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;
  }
  .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 color-mix(in srgb, var(--default-color), transparent 90%);
    width: 100%;
  }
  .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: 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-dropdown-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>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #000000;
    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;
  }
}

/* ------------------------------------------- End -------------------------- */
 
  
 
  

  /* ------------------------------------- Footer and Scroll button ------------------------------------------------ */
   /* Footer Section */
   footer {
    padding-top: 90px;
    position: relative;
    width: 100%;
    background-color: #006400;
    min-height: 100px;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .social_icon,
  footer .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap; /* Adjusts layout for smaller screens */
    padding: 0;
  }
  footer .social_icon li
   {
    list-style: none;
  }

  footer .menu li {
    list-style: none;
    padding: 0; /* Ensures no extra padding */
    margin: 5px 10px; /* Adjust spacing between list items */
    text-align: center; /* Ensures text is centered */
  }

  footer .social_icon li a {
    font-size: 2em;
    color: #ccc;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
  }
  footer .social_icon li a:hover {
    transform: translateY(-15px);
    color: blue;
  }
  footer .menu li a {
    font-size: 1.2em;
    color: #ccc;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
    text-decoration: none;
    opacity: 0.75;
  }
  footer .menu li a:hover {
    opacity: 1;
    color: #ffcc00;
  }
  p {
    color: #eee;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
  }
  /* Wave and animation */
  footer .wave {
    margin-top: 50px;
    padding-top: 80px;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(img/wave-g.png);
    background-size: 1000px 100px;
  }
  footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 4s linear infinite;
  }
  footer .wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animateWave_02 4s linear infinite;
  }
  footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 0;
    animation: animateWave 3s linear infinite;
  }
  footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave_02 3s linear infinite;
  }
  @keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-position-x: 0px;
    }
  }
  @keyframes animateWave_02 {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 1000px;
    }
  }
  /* Media Queries */
  @media (max-width: 1024px) {
    footer {
        padding: 20px 30px;
    }
    footer .social_icon li a,
    footer .menu li a {
        font-size: 1.8em;
    }
    footer .menu li a {
        font-size: 1em;
    }
  }
  @media (max-width: 768px) {
    footer {
        padding: 15px 20px;
    }
    footer .social_icon li a,
    footer .menu li a {
        font-size: 1.5em;
        margin: 5px;
    }
    footer .menu li a {
        font-size: 0.9em;
    }
    p {
        font-size: 0.9em;
    }
  }
  footer .quick-links-heading {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
    text-align: center;
  }
  
  @media (max-width: 480px) {
    footer .quick-links-heading {
      font-size: 1.2em;
    }
  }
  @media (max-width: 480px) {
   
    footer .social_icon li a,
    footer .menu li a {
        font-size: 1.2em;
        margin: 3px;
    }
    footer .menu {
        flex-direction: column;
    }
    footer .menu li {
        margin: 5px 0;
    }
    p {
        font-size: 0.8em;
    }
  }
  /* Scroll to Top Button */
  #scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #ffcc00;
    color: #006400;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: none; /* Hidden initially */
    z-index: 10;
  }

  #scroll-to-top:hover {
    background-color: #ffffff;
    transform: scale(1.1);
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    
    #scroll-to-top {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }
  }

  
/* -------------------------------------------- End ------------------------ */



/* ------------------------------------------- Contact Section -------------------------------------------- */


        .contact-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem;
            background: #f8f9fa;
            color: #333;
          }
          
          .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: space-between;
            width: 100%;
            max-width: 1200px;
            align-items: flex-start;
          }

          .contact-container .form {
            flex: 1;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            display: flex;
            flex-direction: column; /* Stack form elements vertically */
            gap: 15px; /* Add space between form elements */
        }
          
          .map-container {
            flex: 1 1 40%;
            min-width: 300px;
            position: relative; 
            animation: slide-in-left 0.5s ease;
            width: 50%;  /* Adjust the width as needed */
            height: 500px;
            
          }
          
          .map-container iframe {
            width: 100%;
            height: 110%;
            border: none;
            border-radius: 10px;
          }
          
          .form-container {
            flex: 1 1 50%;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            animation: slide-in-right 0.5s ease;

            /* display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center; */
          }

          /* Add space under each input field */
            .small-input {
                display: block; /* Ensure inputs are stacked vertically */
                width: 100%; /* Full width */
                padding: 10px;
                margin-bottom: 15px; /* Add space below each field */
                border: 1px solid #ccc;
                border-radius: 20px;
                font-size: 14px;
            }

            .large-input {
                display: block;
                width: 100%;
                padding: 10px;
                border: 1px solid #ccc;
                border-radius: 20px;
                font-size: 14px;
                resize: none;
                height: 200px;
              }
              
              /* Responsive adjustments */
              @media (max-width: 767px) {
                .row {
                  flex-wrap: wrap;
                }
              
                .col-lg-6 {
                  width: 100%; /* Stack all fields on smaller screens */
                  margin-bottom: 15px;
                }
              }
  

           
          .contact-container button {
            position: relative; /* Ensure the button stays within the form flow */
            margin-top: 10px;
            align-self: flex-start; /* Align button to the start */
            /* background-color: #ff9500; */
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .contact-container button:hover {
            /* background: #d17c00; */
        }
          
          h2 {
            text-align: center;
            margin-bottom: 1rem;
            color: #444;
          }
          
          .form-group {
            margin-bottom: 1rem;
          }
          
          input, textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
          }
          
          textarea {
            resize: none;
          }
          
         /*button.btn {
        align-self: center; 
        margin-top: 1rem auto;
        background-color: white;
        color: skyblue;
        border: 2px solid skyblue;
        padding: 10px 20px;
        font-size: 16px;
        border-radius: 20px; 
        cursor: pointer;
        transition: all 0.3s ease;
        width: 25%; 
        
}

button.btn:hover {
  background-color: #05b3a4; 
  color: white; 
}*/

.contact-container button,
button.btn {
  display: block; /* Ensures it behaves like a block element */
  margin: 20px auto; /* Centers the button horizontally */
  align-self: center; /* Centers it inside flex containers */
  /* background-color: white;  */
  background-color: #006400;
  border: 2px solid #006400;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px; /* Rounded corners for the button */
  cursor: pointer;
  transition: all 0.3s ease;
  width: 25%; /* Default width for larger screens */

  padding: 12px 25px;
  font-size: 16px;
  
  
  
}

.contact-container button:hover,
button.btn:hover {
  background-color: #ACE1AF; /* Change background to a vibrant blue on hover */
   /* Text color changes to white on hover */
}

/* Responsive styling */
@media (max-width: 1200px) {
  .contact-container button,
  button.btn {
    width: 35%; /* Adjust width for medium screens */
  }
}

@media (max-width: 992px) {
  .contact-container button,
  button.btn {
    width: 50%; /* Adjust width for smaller screens */
  }
}

@media (max-width: 768px) {
  .contact-container button,
  button.btn {
    width: 60%; /* Narrower width for tablets */
    font-size: 14px; /* Slightly smaller text */
    padding: 8px 16px; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  .contact-container button,
  button.btn {
    width: 80%; /* Almost full width for mobile devices */
    font-size: 12px; /* Smaller text size */
    padding: 6px 12px; /* Smaller padding */
  }
}


.parent-container {
    display: flex; 
    justify-content: center; /* Centers child elements horizontally */
    align-items: center; /* Centers child elements vertically */
    flex-direction: column; /* Optional, depends on your layout */
  }

/* Responsive Adjustments */
@media (max-width: 1200px) {
  button.btn {
    width: 35%; /* Adjust width for medium screens */
  }
}

@media (max-width: 992px) {
  button.btn {
    width: 50%; /* Adjust width for smaller screens */
  }
}

@media (max-width: 768px) {
  button.btn {
    width: 35%; /* Adjust width for tablets and smaller devices */
    font-size: 14px; /* Slightly smaller text */
    padding: 8px 16px; /* Adjust padding */
  }
}

@media (max-width: 576px) {
  button.btn {
    width: 35%; /* Full width for mobile devices */
    font-size: 12px; /* Smaller text size for compact screens */
    padding: 6px 12px; /* Smaller padding */
   
  }
}

          
             

          
          .whatsapp-contact {
            /* margin-top: 1rem; */
            text-align: center;
          }
          
          .whatsapp-contact a {
            color: #006400;
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s ease;
          }
          
          .whatsapp-contact a:hover {
            color: #25d366;
          }
          
          i.fa-whatsapp {
            margin-right: 0.5rem;
          }
          
          @keyframes slide-in-left {
            from {
              opacity: 0;
              transform: translateX(-50px);
            }
            to {
              opacity: 1;
              transform: translateX(0);
            }
          }
          
          @keyframes slide-in-right {
            from {
              opacity: 0;
              transform: translateX(50px);
            }
            to {
              opacity: 1;
              transform: translateX(0);
            }
          }
          
          @media (max-width: 768px) {
            .contact-container {
              flex-direction: column;
              align-items: center;
            }
            .contact-container .map, .contact-container .form {
                width: 100%;
            }
          }

          .rounded-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 400px;
            margin: auto;
          }
          
          .rounded-input {
            width: 100%;
            padding: 15px;
            font-family: 'Arial', sans-serif; /* Customize font-family if required */
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 30px; /* Rounded corners */
            outline: none;
            background-color: #f9f9f9; /* Light background */
          }
          
          .rounded-input::placeholder {
            color: #ccc; /* Placeholder text color */
          }
          
          .rounded-input:focus {
            border-color: #87CEEB; /* Sky blue border on focus */
          }
          
          

/* Cards Section */
.card {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Space between cards */
    transition: transform 0.3s ease-in-out;
    flex: 1 1 30%;  /* Flexbox to distribute space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensure content is spaced out evenly */
    height: 150px; /* Set a fixed height for all cards */
    max-width: 800px; /* Limit max width */
    margin-left: auto; /* Center horizontally */
    margin-right: auto;
    width: 210px;
  }
  
  /* .card:hover {
    transform: translateY(-5px); 
  }*/

  /* .card h6:hover {
  color:  #ACE1AF; 
  cursor: pointer;
  
  padding: 10px; 
} */
  
  /* Centering and Size Adjustments for Smaller Screens */
  @media (max-width: 1200px) {
    .card {
      flex: 1 1 45%; /* Increase the width slightly */
    }
  }
  
  @media (max-width: 992px) {
    .card {
      flex: 1 1 60%; /* Cards take up 60% width */
    }
  }
  
  @media (max-width: 768px) {
    .card {
      flex: 1 1 80%; /* Cards take up 80% width */
    }
  }
  
  @media (max-width: 576px) {
    .card {
      flex: 1 1 100%; /* Full width for very small screens */
    }
  }
  
  /* Icon Adjustments */
  .card-icon {
    width: 50px; /* Fixed width for the image container */
    height: 50px; /* Fixed height for the image container */
    margin: 0 auto 15px; /* Center the image and add spacing */
    border-radius: 50%; /* Makes the container circular */
    overflow: hidden; /* Ensures the image fits within the circle */
  }
  
  .card-img {
    width: 100%; /* Makes the image fill the circle */
    height: 100%; /* Ensures the image fills the circle */
    object-fit: cover; /* Ensures the image maintains aspect ratio */
    margin-bottom: -10px;
  }
  
  /* Card Text Adjustments */
  .card h6 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #060606;
  }
  
  .card p {
    font-size: 14px;
    color: #777;
  }

  .card form-container h6 {
    color: black;
    font-size: 18px;
    text-align: center;
}

  
  /* Responsive Design: Smaller Text Adjustments */
  @media (max-width: 767px) {
    .card h6 {
      font-size: 16px; /* Slightly smaller text for h3 */
    }
    .card p {
      font-size: 13px; /* Adjust paragraph font size */
    }
  }
  

  
  /* Flexbox layout for the heading and image */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .heading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .heading-text {
    text-align: left; /* Align text to the left */
    margin-right: 20px; /* Space between text and image */
  }
  
  .heading-image {
    flex-shrink: 0; /* Prevent image from shrinking */
    /*margin-left: 200px; /* Adds space between text and image */
  }
  
  .heading-image img {
    width: 150px; /* Set a fixed width for the image */
    height: auto;
    margin-bottom: 20px; /* Adds space below the image */
  }
  
   .section-heading h5 {
    font-size: 15px;
    font-weight: 700;
    color: #006400;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
  } 
  
  .section-heading h4 {
    color: #2a2a2a;
    font-size: 35px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .section-heading h4 em {
    font-style: normal;
    color: #006400;
  }
  
  
  
  
  
  /* Styles for h6 inside the cards */
  .form-container .card h6 {
      color: black; /* Example: different color for card h6 */
      font-size: 13px; /* Example: different font size for card h6 */
      text-align: center; /* Example: different text alignment for card h6 */
  }

  .form-container .card h6:hover {
    color: #05b3a4; /* Example: different color for card h6 */
    font-size: 16px; /* Example: different font size for card h6 */
    text-align: center; /* Example: different text alignment for card h6 */
}

/* -------------------------------------------- End---------------------------------------- */

/* ---------------------------------- About Us ---------------------------------- --- */

/* Define animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Ensure elements are properly optimized for clarity */
#solar-dehydration, .video-container, .content-container {
  will-change: transform, opacity;
}

/* Make sure content is sharp */
#solar-dehydration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  border-radius: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out forwards;
  gap: 20px;
  text-rendering: optimizeLegibility; /* Ensures text clarity */
}

.video-container {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInLeft 1s ease-in-out forwards;
  animation-delay: 0.3s;
  text-align: center;
  text-rendering: optimizeLegibility;
}

.video-container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transform: none; /* Prevent scaling issues */
}

.video-container video {
  display: none;
  width: 100%;
  border-radius: 8px;
  max-width: 800px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
}

.content-container {
  flex: 1;
  opacity: 0;
  animation: fadeInRight 1s ease-in-out forwards;
  animation-delay: 0.5s;
  text-rendering: optimizeLegibility;
}

.content-container h4 {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: left;
}

@media (max-width: 768px) {
  #solar-dehydration {
    flex-direction: column;
    padding: 20px;
  }

  .video-container {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .content-container {
    max-width: 100%;
    margin-left: 0;
  }

  .play-button {
    font-size: 40px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #solar-dehydration {
    flex-direction: column;
    padding: 30px;
  }

  .video-container {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .content-container {
    max-width: 100%;
    margin-left: 0;
  }

  .play-button {
    font-size: 45px;
  }
}

#solar-dehydration h5 {
  font-size: 15px;
  font-weight: 700;
  color: #006400;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: left;
}

@media (max-width: 768px) {
  #solar-dehydration h5,
  #solar-dehydration h4 {
    text-align: center;
  }
}


#solar-dehydration h2 {
  font-size: 15px;
  font-weight: 700;
  color: #006400;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}

.solar-dehydration h4 {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}

.solar-dehydration h4 em {
  font-style: normal;
  color: #4da6e7;
}

em {
  font-style: normal;
  color: #006400;
}

.solar-dehydration h3 {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}

#solar-dehydration p {
  font-size: 1rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: start;
}

#solar-dehydration ul {
  list-style: none;
  padding-left: 0;
}

#solar-dehydration ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

#solar-dehydration ul li::before {
  content: '✔ ';
  color: #000000f6;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  #solar-dehydration ul li {
    font-size: 14px;
    padding-left: 20px;
  }

  #solar-dehydration ul li::before {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #solar-dehydration ul li {
    font-size: 14px;
    padding-left: 22px;
  }

  #solar-dehydration ul li::before {
    font-size: 1.1rem;
  }
}



/* --------------------- End ------------------------ */




/* ---------------- Number of Plants ---------------- */

/* Section Styling */

/* Section Styling */
.plants-units-section {
  padding: 40px 20px;
  text-align: center;
  /* background-color: #A9BA9D; */
}


.plants-units-section h5 {
  font-size: 15px;
      font-weight: 700;
      color: #006400;
      text-transform: uppercase;
      margin-bottom: 15px;
      text-align: center;
  }
.plants-units-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.plants-units-section p {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.plants-units-section .counter {
  font-size: 40px;
  font-weight: bold;
  color: #006400;
  display: inline-block;
}

/* Slider Styling */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden; /* Hide overflow */
  background: #A9BA9D;
  border-radius: 10px;
}

.slider {
  display: flex;
  animation: continuous-scroll 30s linear infinite; /* Slower scroll (30s) */
}

.slider-card {
  flex: 0 0 20%; /* Each card takes 20% of the container width */
  margin: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: white;
  width: 100%;
}

.slider-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Continuous Scrolling Animation */
@keyframes continuous-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-card {
    flex: 0 0 40%; /* Show fewer cards on smaller screens */
  }

  .plants-units-section h2 {
    font-size: 28px;
  }

  .plants-units-section .counter {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .slider-card {
    flex: 0 0 80%; /* Show one card at a time on very small screens */
  }

  .plants-units-section h2 {
    font-size: 24px;
  }

  .plants-units-section .counter {
    font-size: 30px;
  }
}

/* --------------------------------End ----------------------------- */

/* ------------------------------ Plant Map----------------------- */

.project-map-section {
  padding: 2rem 2rem;
  /* background-color: #f9f9f9; */
  text-align: center;
}

.project-map-section h5 {
font-size: 15px;
    font-weight: 700;
    color: #006400;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.project-map-section h2 em {
  font-style: normal;
  color: #006400;
}

.map-heading {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}

.map-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}
/* Map container styling */
.map-container {
  width: 100%;
  height: 500px; /* Default height for larger screens */
  /* border: 2px solid #006400; Dark green border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Responsive styling for mobile and tablet screens */
@media (max-width: 1024px) {
  .map-container {
    height: 400px; /* Adjust height for tablets */
  }
}

@media (max-width: 768px) {
  .map-container {
    height: 300px; /* Smaller height for mobile screens */
  }

  .project-map-section h2.map-heading {
    font-size: 1.5rem; /* Smaller heading size */
  }

  .project-map-section p.map-description {
    font-size: 0.9rem; /* Adjust paragraph text size */
  }
}

/* Custom popup styling */
.leaflet-popup-content {
  font-size: 0.9rem; /* Slightly smaller font for popups */
  font-weight: bold;
  color: #006400; /* Dark green text for consistency */
  text-align: center;
}

.leaflet-popup-tip {
  background: #fff; /* Match the popup background color */
}

/* Leaflet-specific map adjustments */
/* Apply a brown overlay using CSS filters */
.leaflet-container .leaflet-tile {
  filter: sepia(1) hue-rotate(-30deg) brightness(0.8) saturate(1.5);
}



/* ------------------------------- End ------------------------------ */



/* ---------------------------- Global Market ------------------------ */



.count.plus::after {
  content: "+"; /* Add + symbol */
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.currency, .cr {
  font-size: 30px; /* Same size as the count */
  font-weight: bold; /* Make the currency and cr symbols bold */
  color: #000000; /* Same color as count */
  display: inline-block;
}

.currency {
  margin-right: 5px; /* Optional space between ₹ and number */
}

.cr {
  margin-left: 5px; /* Optional space between number and Cr */
}
.count.percent::after {
  content: "%"; /* Add % symbol */
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.count.currency::after {
  content: " ₹"; /* Add ₹ symbol */
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.count.cr::after {
  content: " Cr+"; /* Add Cr+ */
  font-weight: bold;
  font-size: 30px;
  color: #000000;
}

.icon-label-container {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to the next row */
  gap: 20px; /* Adds space between items (columns and rows) */
  justify-content: space-between; /* Distributes items evenly */
  position: relative;
}

.icon-label {
  flex: 1 1 calc(33.333% - 20px); /* Ensures three items per row */
  text-align: center;
  box-sizing: border-box; /* Includes padding and border in size calculation */
  position: relative; /* Ensures relative positioning within container */
  opacity: 0; /* Start with opacity 0 */
  transform: translateY(100%); /* Start off-screen (bottom) */
  animation: move-up 2s ease-out forwards, count-up 2s ease-out forwards; /* Apply animations */
}

.icon {
  width: 60px; /* Adjust icon size */
  height: 60px;
  margin-bottom: 10px;
}

.label-text {
  font-size: 18px;
  font-weight: bold; /* Makes the text bold */
  color: #006400; /* Sets the text color to grey */
  line-height: 1.4;
  /* position: absolute;
  top: -30px; 
  left: 50%;*/
  /* transform: translateX(-50%); */
}

.count {
  font-size: 30px; /* Increase the size of the count */
  font-weight: bold; /* Make the count bold */
  color: #000000; /* Keep the count color black */
  display: inline-block;
  
  transform: translateY(100%); /* Start off-screen (bottom) */
  animation: count-up 2s ease-out forwards, move-up 2s ease-out forwards; /* Animation for counting and moving up */
}

@keyframes move-up {
  0% {
    opacity: 0;
    transform: translateY(100%); /* Start from bottom */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Move to normal position */
  }
}

@keyframes count-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Add space specifically between rows */
.icon-label:nth-child(4) {
  margin-top: 40px; /* Adds space above the first label in the second row */
}

.icon-label:nth-child(5) {
  margin-top: 40px; /* Adds space above the first label in the second row */
}

.icon-label:nth-child(6) {
  margin-top: 40px; /* Adds space above the first label in the second row */
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
  .icon-label {
    flex: 1 1 calc(50% - 20px); /* Two items per row */
  }
  .icon-label:nth-child(3),
  .icon-label:nth-child(5) {
    margin-top: 30px; /* Adds space between rows for two-column layout */
  }
}

/* Responsive styles for small screens */
@media (max-width: 480px) {
  .icon-label {
    flex: 1 1 100%; /* One item per row */
  }
  .icon-label:nth-child(2),
  .icon-label:nth-child(3),
  .icon-label:nth-child(4),
  .icon-label:nth-child(5),
  .icon-label:nth-child(6) {
    margin-top: 20px; /* Adds space between each label in one-column layout */
  }

  .icon {
    width: 50px; /* Reduce icon size for smaller screens */
    height: 50px;
  }
}





/* Section Styling */
.global-markets-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.global-markets-section .content {
  max-width: 500px;
  margin-bottom: 30px;
  opacity: 0;
  animation: slideInUp 1s ease-out forwards;
}

.global-markets-section h5 {
  font-size: 15px;
  font-weight: 700;
  color: #006400;
  text-transform: uppercase;
  margin-bottom: 15px;
}

em {
  font-style: normal;
  color: #006400;
}

.global-markets-section .section-title {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.global-markets-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.global-markets-section .cta-button {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #006400;
  border: 2px solid #006400;
  text-decoration: none; /* Remove underline from links */
  color: white; /* Set text color for the button */
  display: inline-block; /* Ensure proper spacing like a button */
  text-align: center; /* Center the text */
}

.global-markets-section .cta-button:hover {
  background-color: #ACE1AF;
}

/* Map Container */
.map-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  opacity: 0;
  height: 500px;
  animation: slideInUp 1s ease-out 0.5s forwards;
}

/* World Map Styling */
.world-map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 2px, transparent 2px),
    url('https://www.transparenttextures.com/patterns/diag-stripes.png') repeat;
  filter: grayscale(20%);
}

/* Responsive Map Sizes */
@media screen and (max-width: 1024px) {
  .map-container {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .map-container {
    height: 250px;
  }
}

/* Labels on the Map */
/* Labels on the Map */
.map-label {
  position: absolute;
  color: #006400;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
  animation: pulse 2s infinite;
  white-space: nowrap; /* Prevent text from wrapping */
  background: none; /* Remove background */
  padding: 0; /* Remove padding */
}

/* Label Positions */
.label-1 {
  top: 10%; /* Adjust to prevent overlap */
  left: 15%;
}

.label-2 {
  top: 25%; /* Increased gap */
  left: 50%;
  transform: translateX(-50%);
}

.label-3 {
  top: 40%; /* Increased gap */
  left: 85%;
  transform: translateX(-50%);
}

.label-4 {
  top: 55%; /* Increased gap */
  left: 50%;
  transform: translateX(-50%);
}

/* Media Queries for Small Screens */
@media screen and (max-width: 768px) {
  .map-label {
    font-size: 14px; /* Reduce font size */
    text-align: center;
  }

  .label-1 {
    top: 5%;
    left: 10%;
    
  }

  .label-2 {
    top: 20%; /* Ensure larger gaps */
    left: 50%;
   
  }

  .label-3 {
    top: 35%;
    left: 50%;
   
  }

  .label-4 {
    top: 50%;
    left: 50%;
    
  }
}

@media screen and (max-width: 480px) {
  .map-label {
    font-size: 12px; /* Smaller font size for mobile */
    
  }

  .label-1 {
    top: 10%;
    left: 30%;
    gap: 50%;
  }

  .label-2 {
    top: 30%;
    left: 45%;

  }

  .label-3 {
    top: 50%;
    left: 45%;
  }

  .label-4 {
    top: 70%;
    left: 45%;
  }
}



/* ---------------------------------- End ----------------------------- */


/* ------------------------------------ Products ---------------------------- */
/* Section Styling */
.solar-products-section {
  padding: 30px 20px;
  text-align: center;
  background: #f9f9f9;
  animation: fadeInUp 1s ease-in-out;
}

.solar-products-section h5 {
  font-size: 15px;
      font-weight: 700;
      color: #006400;
      text-transform: uppercase;
      margin-bottom: 15px;
      text-align: center;
  }
  .solar-products-section h2 {
    color: #2A2A2A;
      font-size: 35px;
      font-weight: 700;
      text-transform: capitalize;
      margin-bottom: 25px;
      text-align: center;
  }

.solar-products-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.solar-products-section h2 em {
  font-style: normal;
  color: #006400;
}

/* Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product Card Styling */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.product-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* Product Info */
.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
}

.description {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
  opacity: 1;
  transition: none;
}

/* .product-card:hover .description {
  opacity: 1;
} */

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
   
  }
  
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .solar-products-section h2 {
    font-size: 2rem;
  }

  .solar-products-section p {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ------------------------- End ------------------------ */

/* -------------------------------------- Benefits --------------------------------- */

.farmers-benefits-section {
  padding: 40px 0;
  background-color: #F9F9F9;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.farmers-benefits-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Section Title */
.custom-section-title {
  text-align: center;
  margin-bottom: 50px;
}
.custom-section-title h2 {
  color: #2A2A2A;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}
.custom-section-title h5 {
  font-size: 15px;
  font-weight: 700;
  color: #006400;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
}
.custom-section-title p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  font-weight: normal !important;
}
/* Row and Column Layout */
.custom-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}
/* Card Styling */
.custom-card {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: 470px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.custom-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
/* Hover Effects for Cards */
.custom-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background-color: #F3F3F3;
}
/* Card Image */
.custom-card-img-top {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
/* Card Body */
.custom-card-body {
  padding: 25px;
}
.custom-card-title {
  font-size: 22px;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 15px;
  text-align: center;
}
.custom-card-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  text-align: center;
}
/* Media Queries for Responsiveness */
@media (min-width: 992px) {
  .custom-col-lg-4 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .custom-col-md-6 {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .custom-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ---------------------------------------- End ----------------------------------- */


/* ------------------------------------ Process ----------------------------- */

.process-section {
  padding: 10px 0;
  background: #F8F9FA;
  overflow: hidden;
}
.process-container {
  max-width: 1200px;
  margin: 0 auto;
}
.process-section-title {
  text-align: center;
  /* margin-bottom: 60px; */
}
/* .process-section-title h2 {
  font-size: clamp(28px, 5vw, 40px);
  color: #2A2A2A;
  position: relative;
  display: inline-block;
  visibility: visible;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
} */
.process-section-title h5 {
  font-size: 15px;
    font-weight: 700;
    color: #006400;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}
.process-section-title h2 {
  color: #2A2A2A;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}
em {
  font-style: normal;
  color: #006400;
}
/* .process-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #006400;
  border-radius: 2px;
} */
/* Timeline Container */
.process-timeline-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
.process-timeline-container::before {
  content: '';
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 80%;
  background: linear-gradient(to right, transparent 5%, #006400 20%, #006400 80%, transparent 95%);
}
/* Timeline Wrapper with Scroll Snap */
.process-timeline-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: first baseline;
  gap: 30px;
  overflow-x: scroll;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; /* Enables smooth sliding */
}
.process-timeline-item {
  flex: 0 0 350px; /* Adjust width for each item */
  scroll-snap-align: start; /* Snap to the start of the item */
  position: relative;
  padding-top: 50px;
}
.process-timeline-wrapper::-webkit-scrollbar {
  display: none;
}
.process-timeline-content {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
}
.process-timeline-content:hover {
  transform: translateY(-5px);
}
.process-timeline-number {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #006400;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.process-timeline-icon {
  width: 100%;
  height: 300px;
  margin: 0 auto 20px;
  padding: 15px;
  border-radius: 15px;
  background: rgba(255, 107, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.process-title {
  color: #2a2a2a;
  font-size: 30px;
  /* font-weight: 700; */
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}
.process-description {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
}
/* Final Products Section */
.process-final-products {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.process-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.process-product-item {
  padding: 20px;
  background: #006400;
  border-radius: 15px;
  color: #000000;
  transition: transform 0.3s ease;
}

.process-product-item h4{
  color: #000000;
}
.process-product-item:hover {
  transform: translateY(-5px);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-timeline-wrapper {
      gap: 20px;
  }
  .process-timeline-item {
      flex: 0 0 280px;
  }
  .process-timeline-icon {
      width: 100%;
      height: 150px;
  }
  .process-timeline-content {
      padding: 20px;
  }
  .process-final-products {
      padding: 20px;
  }
  .process-product-grid {
      grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .process-timeline-container {
      padding: 20px;
  }
  .process-timeline-container::before {
      top: 200px;
  }
  .process-timeline-item {
      flex: 0 0 260px;
  }
  .process-timeline-icon {
      width: 100%;
      height: 130px;
  }
}

/* --------------------------------- End ---------------------------------- */


/* --------------------------------------- Why Solar ------------------------------- */

/* Section Styling */
.solar-dehydration-section {
  padding: 50px 20px;
  /* background-color: #f4f4f4; */
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.solar-dehydration-section h5 {
  font-size: 15px;
    font-weight: 700;
    color: #006400;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.solar-dehydration-section .section-title {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
}

em {
  font-style: normal;
  color: #006400;
}

.solar-dehydration-section .benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  animation: slideInUp 1s ease-out;
}

/* Benefit Item Styling */
.benefit-item {
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  flex-basis: 48%;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-in-out;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.icon {
  margin-right: 20px;
}

.icon img {
  width: 50px;
  height: 50px;
}

.benefit-content h3 {
  font-size: 20px;
  color: black;
  margin-bottom: 10px;
  font-weight: bold;
}

.benefit-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Animation Definitions */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .solar-dehydration-section .benefits {
    flex-direction: column;
  }

  .benefit-item {
    flex-basis: 100%;
  }

  .solar-dehydration-section .section-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .solar-dehydration-section .section-title {
    font-size: 24px;
  }

  .benefit-item {
    flex-basis: 100%;
    padding: 15px;
  }

  .benefit-content h3 {
    font-size: 18px;
  }

  .benefit-content p {
    font-size: 14px;
  }
}

/* ------------------------------------- End ----------------------------------- */


/* ------------------------------- html ------------------------------- */
html {
  scroll-behavior: smooth;
}

/* /* ----------------------------------- End ------------------------  */


/* ------------------------------ carousel slide ----------------------- */
/* #carousel section{
 
  padding-top: 60px;
} */


/* --------------------------------------- Background --------------------------- */
/* body {
  background: #e0f7fa;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

section {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  margin-bottom: 20px;
  z-index: 2;
}

@keyframes moveClouds {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 0; }
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/clouds.png') repeat-x;
  background-size: cover;
  animation: moveClouds 60s linear infinite;
  z-index: 1;
}
 */

 /* ------------------------------------------ Client Reviews---------------------------- */
/* Container for Logo Slider with Heading */
.logo-slider-container1 {
  text-align: center;
  padding: 30px 20px;
  background-color: #ffffff;
  
}

/* Heading Style */
.logo-slider-heading1 {
  color: #2a2a2a;
  font-size: 35px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
 
}

@media (max-width: 768px) {
  .logo-slider-heading1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .logo-slider-heading1 {
    font-size: 20px;
  }
}

/* Logo Slider Wrapper */
.logo-slider1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* background-color: #f0f0f0; */
  /* padding: 20px 0; */
  border-radius: 20px; 
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

/* Slider Track */
.slider-wrapper1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track1 {
  display: flex;
  animation: slide 10s linear infinite;
  width: calc(100% * 2); /* Ensures continuous animation */
}

/* Individual Slides */
.slide1 {
  flex: 0 0 auto;
  margin: 0 15px;
  max-width: 150px;
  max-height: 555px;
}

.slide1 img {
  max-width: 150px;
  max-height: 555px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border: 2px solid #006400; 
  border-radius: 15px; /* Curved border for logo images */
}

/* Hover Effect */
/* .slide img:hover {
  transform: scale(1.0);
} */

/* Animation for Sliding */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slide1 img {
    max-width: 100px;
    max-height: 100px;
  }
}

@media (max-width: 480px) {
  .slide1 img {
    max-width: 100px;
    max-height: 100px;
  }
}

 
/* ---------------------------------------- End -------------------------------------------- */
 


html {
  -webkit-font-smoothing: antialiased; /* Improves text rendering */
  -moz-osx-font-smoothing: grayscale; /* Improves text rendering */
}


html, body {
  height: 100%; /* Makes the body take the full viewport height */
  margin: 0; /* Removes default browser margin */
}

























