/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCo3FwrK3iLTcviYwY.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/publicsans/v21/ijwRs572Xtc6ZYQws9YVwnNGfJ4.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    font-family: "Public Sans", sans-serif;
}

p {
    font-family: "Inter", sans-serif;
}

img {

    max-width: 100%;
    height: auto;
}

/* Top contact bar */
.top-bar {
    background-color: transparent;
    background-image: linear-gradient(135deg, #30CB65 0%, #30CB9D 100%);
    padding: 5px 5px 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.top-bar-content,
.header-content {
    /*max-width: 1520px;*/
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}


.social-links {
    display: flex;
    gap: 5px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 28px;
    width: 28px;
    border-radius: 50%;
}

.social-links svg {
    display: block;
    height: 14px;
    position: relative;
    width: 14px;
}

.social-links a:hover {
    background: #30cb6a;
    transform: scale(1.2);

}



/* Main header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: #30cb65;

}

.main-header.scrolled .cta-button {
    background: white;
    color: #30cb65;
}

.logo {
    padding: 10px;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 170px;
}

/* Navigation */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu,
.sub-dropdown-menu li a {
    color: #000000;
}

ul.dropdown-menu,
.sub-dropdown-menu li {
    list-style: none;
    list-style-type: none;
}

.nav-menu a.active {
    color: #43e97b;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    padding: unset;
}

.dropdown-menu a:hover {
    background-color: #30cb65;
    color: white;
}

.dropdown-menu li a {
    color: #000000;
    background-color: white;
    min-width: 200px;
    border-radius: 8px;
    padding: 12px 11px;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease;
    list-style: none;

}

li.dropdown a:hover .dropdown-menu {
    visibility: visible;
    transform: translateY(-10px);

}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
}

li.dropdown-menu a:hover {
    color: #43e97b;
}



/* CTA Button */
.cta-button {
    background: #30cb65;
    color: #fff;
    padding: 11px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #fdd61f;
}

div#menuToggle {
    display: none;
}

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

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

    /* Mobile menu toggle */
    div#menuToggle {
        background-color: #30CB65;
        padding: 8px;
        border-radius: 5px;
        display: flex;
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-menu {
        gap: unset;
    }

    .nav-menu a.active {
        color: #fff;
        background-color: #43e97b;

    }

    /* Dropdown toggle open/close (mobile) */
    .dropdown-menu {
        display: none;
    }



    .dropdown-menu.open {
        display: block;
    }



    /* Hamburger to X animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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


    .nav-menu {
        position: fixed;
        top: -225px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 0;

        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        margin: 0;
    }

    .nav-menu a {
        color: black;
        padding: 12px 11px;
        /* width: 140px; */
    }

    .nav-menu li {
        width: 100%;
        list-style: none;
    }

    .dropdown-menu li a {
        margin: unset;
    }



    ul.dropdown-menu li a {
        text-align: left;
        border-radius: unset;
        /*padding-left: 30px;*/
    }



    .nav-menu.active {
        top: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-content .cta-button {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 5px;
    }



    .top-bar-content {
        flex-direction: row;
        gap: 10px;
        padding: 0 1rem;
    }

    .header-content {
        padding: 0 1rem;
    }

    li.home.active,
    .about.active,
    .services.active{
        background-color: #30cb65;

    }
    
     
    .nav-menu .dropdown.contact.active {
    background-color: #30cb65;
  }

    /*li.home.active a,*/
    /*.about.active a,*/
    /*.services.active a*/
    /*{*/
    /*    color: white;*/
    /*}*/
    
    

    li.dropdown.about.active ul li a {
        color: black;
        background-color: white;
    }

    li.dropdown.about.active ul li {
        background-color: white;
    }
    
     /* mobile dropdown hide */
.dropdown-menu,
.sub-dropdown-menu {
  display: none;
}

/* show when open */
.dropdown-menu.open,
.sub-dropdown-menu.open {
  display: block;
}

}

.dropdown.open>a .chevron {
    transform: rotate(-135deg);
    transition: transform 0.3s ease;
}

/* Chevron icon */
.chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 5px;
}

.footer-container.inner-container {
    max-width: 1280px;
    padding: 3rem 0;
    margin: auto;
}

/**** footer style ***/
.footer {
    background-color: transparent;
    background-image: linear-gradient(180deg, #30CB65 0%, #30CB9D 100%);
    color: #fff;
    padding: 40px 0 20px;
    position: relative;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-col.about {
    padding-right: 4rem;
    flex: 1 1 35%;
}

.footer-col.contact {
    flex: 1 1 25%;
}

.footer-col.links,
.footer-col .social {
    flex: 1 1 15%;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
    background-color: white;
    padding: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

.footer-col {
    flex: 1 1 250px;
    padding: 1rem;
}

.footer-col h4 {
    font-family: 'Public Sans';
    font-size: 20px;
    margin: 0;
    font-weight: bold;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-col ul li p {
    margin: unset;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 13px;
}

svg.e-font-icon-svg.e-fab-whatsapp {
    width: 30px;
    height: 30px;
    fill: white;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    border-radius: 50%;
    padding: 14px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

a.whatsapp-btn:after {
    background-color: red;
    border-radius: 50%;
    content: "";
    height: 16px;
    position: absolute;
    right: 0;
    top: 0;
    width: 16px;
}

.whatsapp-btn:hover {
    background: #075e54;
    transform: scale(1.1);
}

svg.e-font-icon-svg.e-fab-whatsapp:after {
    background-color: #ff0000;
    border-radius: 50%;
    content: "";
    height: 39px;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    z-index: 999;
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {


    .whatsapp-btn {
        bottom: 10px;
        /* smaller distance from bottom */
        right: 10px;
        /* smaller distance from right */
        padding: 12px;
        /* slightly smaller button on mobile */
    }

    .footer-col.about p {
        font-size: 14px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-container.inner-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        padding: 1rem 0;
    }

    .footer-col.contact,
    .footer-col.social,
    .footer-col.links {
        text-align: left;
    }

    .footer-col ul li a {
        font-size: 14px;
    }

    .footer-col {
        margin: 10px 0;
        padding: unset !important;
    }

    .whatsapp-btn {
        right: 10px;
        bottom: 10px;
    }

    .footer {
        padding: 40px 10px 20px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .footer-col.about {
        grid-column: 1 / 3;
        grid-row: 1 / 1;
        text-align: center;
    }

    .footer-col.links {
        grid-column: 1 / 2;
        grid-row: 2 / 2;
    }

    .footer-col.social {
        grid-column: 2 / 3;
        grid-row: 2 / 2;
    }

    .footer-col.contact {
        grid-column: 1 / 3;
        grid-row: 3 / 3;
    }
}

/**** footer style ***/

/* ====== Responsive Menu ====== */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        background: #002244;
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        background: none;
        display: none;
        margin: unset;
    }



    .dropdown.active .dropdown-menu {

        padding: unset;
    }

    .header-btn {
        display: none;
    }


}



/* =========================
   HEADER – SUB DROPDOWN
   ========================= */

.sub-dropdown-menu {
    color: #000000;
    margin-top: 10px;
    border-radius: 6px;
    overflow: hidden;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    list-style: none;
    transform: translateY(10px);
    z-index: 10;
}

.sub-dropdown-menu li a {
    padding: 12px 11px 12px 30px;
    display: block;
}

.sub-dropdown-menu li a:hover {
    background: #39d05f;
    color: #ffffff;
}

.dropdown:hover>.sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================
   ABOUT / BANNER SECTION
   ========================= */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.29);
}

h1.about_us_banne_title {
    font-size: 48px;
    color: #FFFFFF;
    font-family: 'Public Sans';
    font-weight: 700;
}

.about_us_banner:before {
    content: '';
    position: absolute;
    height: 4vh;
    bottom: -7px;
    width: 100vw;
    z-index: 3;
    background-repeat: repeat-x;
    background-size: 40% auto;
}

.about_us_banner {
    position: relative;
    width: 100%;
    height: 345px;
    display: flex;
    top: -84px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5a42 100%);
    background-position: center center;
    background-size: cover;
}

.about-us-section {
    padding: 20px 20px 100px 20px;
    font-family: Arial, sans-serif;
    background: #fff;
}

.about-us-section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-us-who-content {
    display: grid;
    grid-template-columns: 670px 609px;
    align-items: center;
    justify-content: space-between;
}

.about-us-text-area {
    padding: 50px 50px 50px 20px;
}

.about-us-text-area .subtitle {
    color: #30cb65;
    font-family: "Inter";
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.about-us-text-area h2 {
    font-size: 39px;
    color: #002d33;
    font-family: "Public Sans";
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.about-us-text-area p {
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    line-height: 1.4em;
    text-align: justify;
    color: #515F62;
}

.about-us-image-area-paragraph {
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    line-height: 1.4em;
    text-align: justify;
    color: #515F62;
}

.about-us-image-area {
    position: relative;
}

.about-us-image-area img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    object-position: center center;
    display: block;
    border-radius: 5px 5px 5px 5px;
}

.about-us-badge {
    position: absolute;
    top: -40px;
    right: -20px;
    background-color: transparent;
    background-image: linear-gradient(135deg, #fdd61f 0%, rgb(48 203 157) 100%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-us-badge span {
    font-size: 61px;
    font-family: "Public Sans";
    font-weight: 700;
    color: #fff;
}

.about-us-badge p {
    font-size: 16px;
    font-family: "Public Sans";
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.small-border {
    border-bottom: 1px solid #dcdde8;
    width: 50px;
}


/* =========================
   GLOBAL CONTAINERS
   ========================= */

.inner-container {
    max-width: 1280px;
    padding: 3rem 0;
    margin: auto;
    padding-bottom: 7em;
}


/* =========================
   OFFERS / CARD SECTION
   ========================= */

section.offers-section {
    background-color: #eef6f9;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 60px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    position: relative;
}

.card-content {
    padding: 40px 30px;
    position: relative;
}

.icon-badge {
    width: 70px;
    height: 70px;
    background: #fdd61f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 30px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.icon-badge i {
    font-size: 28px;
}

.icon-badge svg {
    width: 42px;
    height: 42px;
    fill: #1a202c;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #002d33;
    margin-top: 25px;
    margin-bottom: 0;
}

.card-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    margin-top: 10px;
}

.learn-more-btn {
    background-color: transparent;
    background-image: linear-gradient(180deg, #30CB65 0%, #30CB9D 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
      text-decoration: none;
}

.learn-more-btn:hover {
    color: #000;
     background: #fdd61f;

}


/* =========================
   SERVICE SUB PAGES LAYOUT
   ========================= */

.service-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 17px 0 17px;
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 30px;
}

.new-service-layout {
    padding-bottom: 7em;
}

.service-layout-2 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 17px 0 17px;
}

.service-layoutes-one {
    padding-bottom: 3em;
}

.content h2 {
    font-size: 39px;
    margin-bottom: 20px;
    margin-top: 0;
    color: #002D33;
    font-weight: 700;
    line-height: 47px;
}

.why-padding {
    padding-bottom: 3em;
}


.quote-box {
    background: #003f4a;
    border-radius: 5px;
    padding-bottom: 2em;
    padding-left: 2em;
    padding-right: 2em;
    color: #fff;
    height: fit-content;
}

.quote-box h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 32px;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
}

.quote-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

.quote-box input,
.quote-box textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    margin-bottom: 5px;
    font-size: 14px;
}

.quote-box textarea {
    resize: none;
    height: 100px;
}

.quote-box button {
    width: 100%;
    padding: 10px 24px;
    background: #30cb65;
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.quote-box button:hover {
    background: #FDD61F;
}

.content p,
.rainguns,
.dev {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-align: justify;
    color: #515F62;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 25px;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.benefits li {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 16px;
    line-height: 1.6;
    color: #515F62;
    font-weight: 400;
    font-family: "Inter", Sans-serif;
    margin-top: 20px;
}

.benefits li img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.feed-icon img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.canadian-maple-leaf li img {
    width: 25px;
    height: auto;
    flex-shrink: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.benefits-list-mb {
    margin-bottom: 0 !important;
    gap: 0 !important;
}

.benefits-list .icon {
    font-size: 20px;
    color: #2db24a;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list p {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-align: justify;
    color: #515F62;
    line-height: 1.7;
    margin: 0;
}

.why-choose-tamilnad {
    margin-top: 25px;
}

.why-choose-tamilnad h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #002D33;
}

.why-choose-tamilnad h4 {
    font-size: 25px;
    font-weight: 500;
    line-height: 33px;
    font-family: "Public Sans", sans-serif;
    color: rgb(0, 45, 51);
    margin: 0 0 20px 0 !important;
}

.my-icon-2 {
    width: 31px !important;
    height: 31px !important;
    fill: #25d366;
}

.benefits-list li .icon-2 {
    display: flex;
}

.benefits-list li .icon-2 img {
    width: 20px;
    height: auto;
    flex-shrink: 0;
}

.error {
    color: red;
    font-size: 12px;
}

.same-line-image {
    display: ruby;
}


/* =========================
   SECOND SUB PAGE / OTHER
   ========================= */

.sprinkler-hover :hover {
    color: rgb(255, 176, 0);
}

.sprinkler-hover {
    gap: 2px !important;
}

.three-column-grids {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    justify-items: center;
    padding-bottom: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.flowering-crops {
    text-align: center;
    padding: 12px;
}

.flowering-crops h4 {
    font-size: 25px;
    line-height: 33px;
    font-weight: 400;
    color: rgb(48, 203, 101);
}

.flowering-crops p {
    text-align: justify;
    line-height: 22px;
    font-size: 16px;
    font-weight: 400;
    color: #515F62;
    margin-top: 25px;
}

.product-details {
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    gap: 20px;
    display: flex;
    padding: 64px 0 0;
}

.product-details h4 {
    font-size: 24px;
    color: #7E7E7E;
    font-family: "Public Sans", sans-serif;
    font-weight: 400;
}

.it-works {
    font-size: 25px;
    font-weight: 400;
    line-height: 33px;
    font-family: "Public Sans", sans-serif;
    color: rgb(0, 45, 51);
    margin: 20px 0px 20px;
}

/* h4 {
    font-size: 25px;
    font-weight: 400;
    line-height: 33px;
    font-family: "Public Sans", sans-serif;
    color: rgb(0, 45, 51);
} */
.weight-low {
    font-weight: 400 !important;
}

.ideal h4 {
    font-size: 25px;
    font-weight: 500;
    line-height: 33px;
    font-family: "Public Sans", sans-serif;
    color: rgb(0, 45, 51);
}



.eh-headline {
    display: flex;
    gap: 6px;
    font-size: 20px;
    font-weight: 500;
    align-items: center;
    margin-bottom: 20px;
}

.eh-static {
    white-space: nowrap;
    color: rgb(255, 176, 0);
    font-weight: 600;
}

.eh-face {
    color: rgb(85, 134, 0);
}

.eh-flip {
    position: relative;
    height: 22px;
    perspective: 600px;
    display: inline-block;
}

.eh-face {
    position: absolute;
    left: 0;
    top: 0;
    backface-visibility: hidden;
    transform-origin: center center;
    transition: transform 0.6s ease;
    white-space: nowrap;
}

.eh-front {
    transform: rotateX(0deg);
}

.eh-back {
    transform: rotateX(-180deg);
}

.eh-flip.flip .eh-front {
    transform: rotateX(180deg);
}

.eh-flip.flip .eh-back {
    transform: rotateX(0deg);
}

.non-agri-benifit {
    max-width: 973px !important;
    display: flex;
    justify-content: space-around;
}

.non-agri h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #000;
}

.uses-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.use-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.use-item .icon {
    font-size: 18px;
    color: #30cb65;
}

.h3-tag {
    font-size: 31px;
    font-weight: 700;
    line-height: 40px;
    color: rgb(0, 45, 51);

}

/* =========================
   VALVE PAGE – TABS
   ========================= */

.container-tabs {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.tab-section {
    display: flex;
    background-color: #ffffff;
    justify-content: center;
    gap: 50px;
}

.tab-button {
    padding: 15px 35px;
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    color: #000000;
    background-color: #f1f0f0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:first-child {
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
    margin-right: 2px;
}

.tab-button:last-child {
    border-top-right-radius: 35px;
    border-bottom-left-radius: 35px;
    margin-left: 2px;
}

.tab-button.active {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
}

.content-section {
    background: linear-gradient(180deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 20px 20px 0px 20px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    min-height: fit-content;
    margin-top: 30px;
}

.intro-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #515F62;
    margin-bottom: 20px;
}

.botm-pad {
    padding-bottom: 40px;
}

.intro-text strong {
    font-weight: 700;
}

.features-list {
    display: flex;
    flex-direction: column;
    margin: 30px 0 50px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #515F62;
}

.feature-icon {
    color: #22c55e;
    font-size: 20px;
    min-width: 24px;
    margin-top: 1px;
}

.feature-icon-2 {
    color: #3e7c00;
    font-size: 15px;
    min-width: 24px;
    margin-top: 1px;
}

.feature-icon-3 {
    color: #db3542;
    font-size: 15px;
    min-width: 24px;
    margin-top: 1px;
}

.bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    /* margin-top: 60px; */
    padding: 0 10px;
}

.section-column {
    padding: 10px;
}

.section-column h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.advantage-item,
.consideration-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #515F62;
}

.fa-sitemap {
    color: #30cb65;
    font-size: 15px;
}

.advantage-icon {
    color: #22c55e;
    font-size: 15px;
    min-width: 24px;
    margin-top: 1px;
}

.consideration-icon {
    color: #ef4444;
    font-size: 20px;
    min-width: 24px;
    margin-top: 1px;
}

.fa-thumbtack {
    color: #30cb65;
    font-size: 16px;
}

.my-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.my-icon path {
    fill: #30cb65;
}
.des{
    margin-bottom: 0;
}

/* =========================
   SENSOR / BOTTOM CARDS
   ========================= */

.section-1 {
    margin-bottom: 40px;
}
.sensors{
    margin-top: 40px;
}
.intro-paragraph {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #515F62;
    margin-bottom: 40px;
}

.intro-paragraph strong {
    font-weight: 700;
    color: #002D33;
}

h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #002D33;
    margin-bottom: 30px;
    margin-top: 40px;
}

.sensor-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sensor-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.is {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-align: justify;
    color: #515F62;
    line-height: 22PX;

}

/* li{
   font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-align: justify;
    color: #515F62;
    line-height: 1.7;
  
}  */
.sensor-icon {
    color: #22c55e;
    font-size: 22px;
    min-width: 28px;
    margin-top: 3px;
}

.sensor-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #515F62;
}

.sensor-content strong {
    font-weight: 700;
    color: #002D33;
}

.section-2 {
    margin-bottom: 60px;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #515F62;
}

.bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-radius: 20px;
    padding: 50px 40px;
}

.card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    color: #002D33;
    margin-bottom: 25px;
    margin-top: 0;
}

.card-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #515F62;
}

.card-content strong {
    font-weight: 700;
    color: #002D33;
}

/*.contact-info {
 margin-top: 30px;
}*/

.contact-highlight {
    font-weight: 700;
    color: #002D33;
}


/* =========================
   SMART IRRIGATION BOX
   ========================= */

.smart-irrigation {
    padding: 0 0 3em 0;
    background: #ffffff;
}

.smart-box {
    max-width: 1200px;
    margin: auto;
    background: #eaf9f0;
    border-radius: 60px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.smart-left h2 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 33px;
    text-align: center;
    color: rgb(0, 45, 51);
}

.smart-left p {
    font-size: 16px;
    line-height: 22px;
    color: #333;
    font-weight: 400;
}

.smart-right h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    color: rgb(0, 45, 51);
}

.smart-right p {
    font-size: 16px;
    line-height: 22px;
    color: #333;
    font-weight: 400;
}

.fa-wifi {
    font-size: 15px;
}

.containered p:first-child {
    margin-top: 0;
    margin-bottom: 2em;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color:
        rgb(0, 0, 0);
}

.feed-line .feed-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color:
        rgb(0, 45, 51);
}

.for-more {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: rgb(0, 45, 51);
    font-family: "Public Sans", sans-serif;
}

.product-details-2 {
    padding-bottom: 48px;
}

.quote {
    font-size: 25px;
    font-weight: 400;
    line-height: 33px;
    color: white;
    margin-bottom: 10px;
    margin-top: 30px;
}

label {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.leaf-gap{
    gap: 5px;
}
.sub-dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: #333;
  transition: background-color 0.3s ease;
}


.sub-dropdown-menu li.active > a {
  background-color: #30cb65;   
  color: #fff;
}


.sub-dropdown-menu li a:hover {
  background-color: #30cb65;
}

.about li.active > a {
  background-color: #30cb65; 
  color: #fff;
}
.about li a:hover {
  background-color: #30cb65;
}
@media (max-width: 768px) {
  li.active > a {
  color: #ffffffff;
}
}

/* =========================
   MEDIA QUERIES (CLEAN)
   ========================= */

/* General tablet-ish for inner container */
@media only screen and (min-width: 768px) and (max-width: 1300px) {
    .inner-container {
        padding: 3rem 1rem !important;
    }
}

/* Offers grid */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* General tablet for uses-list, smart-box etc. */
@media (max-width: 991px) {
    .uses-list {
        gap: 25px;
    }

    .use-item {
        font-size: 14px;
    }

    .smart-box {
        grid-template-columns: 1fr 1fr;
        border-radius: 40px;
        padding: 25px;
    }

    .smart-left h2 {
        font-size: 24px;
    }

    .smart-left p,
    .smart-right p {
        font-size: 15px;
        line-height: 21px;
    }
}

/* About section and global <= 768px */
@media (max-width: 768px) {
    .about-us-who-content {
        grid-template-columns: 1fr;
    }

    .about-us-text-area {
        padding: 0 0 40px 0;
    }

    .about-us-section {
        padding: 20px 28px 0 28px;
    }

    .about_us_banner:before {
        height: 2vh;
        bottom: 0;
        background-size: auto 18px;
        background-position: center;
    }

    .about-us-text-area .subtitle {
        font-size: 12px;
    }

    .about-us-text-area h2 {
        font-size: 24px;
    }

    .about-us-text-area p {
        font-size: 14px;
    }

    .about_us_banner {
        height: 228px;
        margin-top: -84px;
        top: auto;
    }

    h1.about_us_banne_title {
        font-size: 31px;
        position: relative;

    }

    .sub-dropdown-menu {
        min-width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    .offers-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 220px;
    }

    .inner-container {
        max-width: 1280px;
        padding: 3rem 0;
        margin: auto;
        padding-bottom: 0;
    }

    .uses-list {
        gap: 12px;
        flex-direction: column;
    }

    .use-item {
        white-space: normal;
    }

    .non-agri h2 {
        font-size: 20px;
    }

    .benefits li {
        font-size: 15px;
    }

    .my-icon {
        width: 20px;
        height: 20px;
    }

    .benefits li img,
    .benefits-leaf li img {
        width: 22px;
    }

    .content {
        padding-top: 45px;
    }

    .service-layout h2 {
        font-size: 24px;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bottom-padding {
        padding-bottom: 3em;
    }

    .service-layoutes-one {
        padding-bottom: 45px;
    }

    .benefits-list p {
        font-size: 15px;
    }

    .benefits-list li {
        gap: 10px;
    }

    .three-column-grids {
        grid-template-columns: 1fr;
        padding: 0 14px;
    }

    .product-details {
        display: flex;
        flex-direction: column;
        padding: 0 1px 10px 21px;
        align-items: flex-start;
    }

    .product-details h4 {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }

 
    .eh-headline {
        font-size: 16px;
        font-weight: 600;
    }

    .ideal h4 {
        font-size: 18px;
        font-weight: 500;
        line-height: 23px;
    }

    .non-agri-benifit {
        flex-direction: column;
    }

    .service-layout-2 {
        padding: 25px 17px 0 17px;
        padding-bottom: 3em;
    }

    .features-list {
        margin-bottom: 0;
    }

    .tab-button {
        padding: 16px 30px;
        font-size: 15px;
    }

    .bottom-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-section {
        padding: 30px 25px;
    }

    .section-column h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .bottom-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .card {
        padding: 35px 30px;
    }

    .intro-paragraph,
    .sensor-content,
    .feature-text,
    .card-content {
        font-size: 15px;
        line-height: 25px;
    }

   /*  h4 {
        font-size: 18px;
        font-weight: 400;
        line-height: 33px;
        font-family: "Public Sans", sans-serif;
        color: rgb(0, 45, 51);
    } */

       .it-works {
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
    }


    .for-more {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
        color: rgb(0, 45, 51);
        font-family: "Public Sans", sans-serif;
    }

    .new-service-layout {
        padding-bottom: 1em;
    }

    .quote {
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
        color: white;
    }

    label {
        font-size: 14px;
        font-weight: 600;
        line-height: 21px;
    }
    #automation{
      padding-bottom: 0em !important;
    }
}

/* 768–1200px special for about & service layout */
@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .about-us-who-content {
        grid-template-columns: 60% 40% !important;
    }

    .about_us_banner:before {
        height: 2vh;
        bottom: 0;
        width: 100vw !important;
        background-size: auto 18px;
        background-position: center;
    }

    .about-us-section {
        padding: 20px 28px 0 28px;
    }

    .about-us-text-area .subtitle {
        font-size: 12px;
    }

    .about-us-text-area h2 {
        font-size: 24px;
    }

    .about-us-text-area p {
        font-size: 14px;
    }

    .about_us_banner {
        height: 228px;
        margin-top: -84px;
        top: auto;
    }

    h1.about_us_banne_title {
        font-size: 31px;
    }

    .content {
        padding-top: 3em;
    }


    .service-layout {
        grid-template-columns: 1fr;
        padding-bottom: 3em;
    }

    .service-layout-2 {
        grid-template-columns: 1fr;
        padding-bottom: 3em;
    }

    .thre {
        margin: 0 !;

    }

    .service-layoutes-one {
        padding-bottom: 3em;
    }

    .three-column-grids {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 45px;
    }

    .benefits li {
        text-align: justify;
    }

    .product-details {
        padding-left: 30px;
        padding-right: 30px;
    }

    .non-agri-benifit {
        flex-direction: column;
    }
}

/* Tab section stack on very small screens */
@media (max-width: 576px) {
    .tab-section {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .tab-button {
        margin: 0 !important;
        padding: 14px 20px;
        font-size: 14px;
    }

    .content-section {
        padding: 25px 20px;
    }

    .thre {
        margin: 0;

    }

    .intro-text,
    .feature-item,
    .advantage-item,
    .consideration-item {
        font-size: 15px;
        line-height: 21px;
    }

    .section-column h2 {
        font-size: 22px;
        line-height: 30px;
    }

    .bottom-section {
        gap: 0;
        margin-top: 40px;
    }

    .section-1 {
        margin-bottom: 60px;
    }

    .bottom-cards {
        margin-top: 40px;
    }

    .intro-paragraph,
    .sensor-content,
    .feature-text,
    .card-content {
        font-size: 14px;
        line-height: 24px;
    }

    .sensor-icon {
        font-size: 20px;
        min-width: 24px;
    }

    .feature-icon {
        font-size: 18px;
        min-width: 22px;
    }

    .smart-box {
        padding: 25px;
        border-radius: 30px;
        grid-template-columns: 1fr;
    }

    .smart-left h2 {
        font-size: 22px;
    }

    .smart-right h3 {
        font-size: 17px;
    }

    .smart-left p,
    .smart-right p {
        font-size: 14px;
        line-height: 21px;
    }
}

/* Small extra rule for tab-buttons group */
@media (max-width: 600px) {
    .tab-buttons {
        flex-direction: column;
    }
}