@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Header Section */
.header {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url("./images/banner.png");
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Navigation Bar */
nav {
    width: 100%;
    padding: 1.5% 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0); /* full transparency */
    backdrop-filter: none; /* disable blur if not needed */
}

/* Logo + Title */
.logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 70px;
    height: auto;
    border-radius: 10px;
}

.company-name {
    color: #2d6b3a; /* stylish earthy green (no highlight) */
    font-family: 'Playfair Display', serif; /* elegant display font */
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35); /* subtle shadow for contrast */
    background: none; /* remove translucent pill/highlight */
    padding: 0; /* remove highlight padding */
    border-radius: 0;
    display: inline-block; /* keep layout consistent with logo */
    transition: color 0.18s ease, transform 0.18s ease;
}

/* NEW CSS FOR TAGLINE */
.title-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tagline {
    font-size: 14px;
    color: #1a3c1a;
    opacity: 0.8;
    margin-top: 3px;
}

/* Nav Links */
.nav-links ul {
    list-style: none;
}

.nav-links ul li {
    display: inline-block;
    margin: 0 15px;
}

.nav-links ul li a {
    text-decoration: none;
    color: #A9A9A9;
    text-shadow: rbga(169,169,169);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: #f44336;
}

/* Banner Text */
.text-box {
    color: #fff;
    text-align: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
}

.text-box h1 {
    font-size: 48px;
    font-weight: 700;
}

.text-box p {
    font-size: 20px;
    margin: 15px 0 30px;
}

.hero-btn {
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 14px;
    border-radius: 30px;
    transition: 0.5s;
}

.hero-btn:hover {
    background: #f44336;
    border-color: #f44336;
}

/* Mobile Navigation */
nav .fa {
    display: none;
    color: #000; /* changed to black for mobile nav icons */
}

@media (max-width: 768px) {
    .text-box h1 {
        font-size: 28px;
    }

    .nav-links {
        position: fixed;
        background: #2e8b57;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        z-index: 250;
        text-align: left;
        transition: right 0.35s ease;
        padding-top: 72px;
        box-shadow: -6px 0 18px rgba(0,0,0,0.12);
    }

    .nav-links ul li {
        display: block;
        margin: 12px 0;
        padding: 0 18px;
    }

    .nav-links ul li a {
        color: #fff;
        display: block;
        padding: 10px 6px;
        font-size: 16px;
        border-radius: 6px;
    }

    .nav-links ul li a:hover {
        background: rgba(255,255,255,0.08);
    }

    /* hamburger (open) icon in header - hidden when menu is visible */
    nav .fa.fa-bars {
        display: block;
        position: fixed;
        top: 14px;
        right: 14px;
        font-size: 26px;
        cursor: pointer;
        color: #A9A9A9; 
        z-index: 280;
        background: transparent;
        margin-right: 8px;
    }

    /* close icon inside slide-out menu */
    .nav-links .fa.fa-times {
        display: block;
        position: absolute;
        top: 14px;
        right: 14px;
        font-size: 26px;
        cursor: pointer;
        color: #fff; /* white so visible on green menu */
        z-index: 310;
    }

    /* reduce logo and company-name size for mobile */
    .logo { width: 56px; }
    /* add right margin so the hamburger icon doesn't sit on the company name */
    .company-name { font-size: 18px; margin-left: 10px; margin-right: 60px; }
}

.our-mission, .our-vision, .core-values {
    width: 80%;
    margin: 24px auto;
    padding: 24px 0;
}

.our-mission .row, .our-vision .row, .core-values .row {
    margin: 0 auto;
}

.mission-col, .vision-col, .values-col {
    padding: 18px 12px;
}

.our-mission h1, .our-vision h1, .core-values h1 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #2d572c;
}

.our-mission p, .our-vision p, .core-values p {
    margin: 0 0 12px 0;
    color: #444;
    line-height: 1.6;
    text-align: left;
}

.values-list {
    margin-top: 8px;
    padding-left: 20px;
}

/* Make core-values list appear as two columns on wider screens */
@media (min-width: 900px) {
    .values-list {
        column-count: 2;
        column-gap: 30px;
    }
}

@media (max-width: 700px) {
    .our-mission, .our-vision, .core-values {
        width: 92%;
        padding: 18px 0;
        margin: 18px auto;
    }
    .our-mission h1, .our-vision h1, .core-values h1 {
        font-size: 22px;
        text-align: left;
    }
    .mission-col, .vision-col, .values-col { padding: 12px 8px; }
}

/* Stronger overrides to remove excess side space and center content */
.our-mission, .our-vision, .core-values {
    width: 92%;
    max-width: 1100px;
    margin: 12px auto;
    padding: 18px 0;
}

.our-mission .row, .our-vision .row, .core-values .row {
    display: block; /* single-column layout */
    margin: 0 auto;
    max-width: 1000px;
}

.mission-col, .vision-col, .values-col {
    margin: 0 auto;
    max-width: 900px;
    padding: 8px 6px;
    text-align: left;
}

/* reduce default row gaps that might apply globally */
.our-mission, .our-vision, .core-values { gap: 0; }

/* ensure list doesn't create unexpected spacing */
.values-list { margin-top: 10px; padding-left: 20px; }

/* About Section */
.About {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 100px 0;
}

.About h1 {
    font-size: 36px;
    font-weight: 600;
}

.About p {
    color: #555;
    font-size: 18px;
    margin-top: 10px;
}

.row {
    margin: 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.course-col {
    flex: 1 1 30%;
    background: #f7f3ee;
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s;
    min-height: 200px;
}

.course-col:hover {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* ===== Locations Section ===== */

.Locations {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}

.Locations p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}

/* Row styling */
.row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px auto;
}

/* Each location box (caption-style labels, no overlay) */
.Locations-col {
    width: 30%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.Locations-col img {
    width: 100%;
    height: 180px;
    object-fit: cover;  /* keeps images same proportion */
    border-radius: 10px 10px 0 0;
    display: block;
    cursor: pointer;
}

/* Caption layer: show location name as a caption below each image for all viewports */
.layer {
    background: transparent;
    width: 100%;
    position: static;
    height: auto;
}

.layer h3 {
    display: block;
    margin: 0;
    padding: 10px 8px;
    font-weight: 500;
    color: #333;
    font-size: 16px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

@media (max-width: 768px) {
    .Locations-col { width: 45%; max-width: 180px; }
    .Locations-col img { height: 140px; }
}

/* Location modal styles */
.loc-modal{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.loc-modal[style*="display: block"]{ display:flex; }
.loc-modal-content{
    position: relative;
    background: #fff;
    max-width: 520px;
    width: calc(100% - 40px);
    padding: 1.6rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #16324F;
    text-align: center;
}
.loc-modal-content h2{
    margin: 0 0 .6rem 0;
    color: #2e8b57;
}
.loc-modal-content p{
    margin: .4rem 0;
    line-height: 1.5;
    color: #555;
}
.loc-modal-content p.address {
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
    font-family: var(--company-font, 'Poppins', sans-serif);
    color: #555;
}
.loc-close{
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: #333;
    cursor: pointer;
}

@media (max-width: 600px){
    .loc-modal-content{ padding: 1rem; }
}



/* =============================
   TEAM SECTION — MAIN WRAPPER
============================= */

.Team {
    width: 90%;
    margin: auto;
    text-align: left;
    padding: 60px 0 40px;
}

.Team h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.Team p {
    width: 95%;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 50px;
    text-align: justify;
}


/* =============================
   TEAM GRID LAYOUT
============================= */

.team-section {
    width: 80%;
    margin: auto;
    padding: 10px 0 50px;
    text-align: center;
}

.team-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-section p {
    width: 90%;
    margin: 0 auto 60px auto;
    color: #6c757d;
    line-height: 1.7;
    font-size: 16px;
    text-align: center;
}



/* =============================
   INDIVIDUAL TEAM CARD
============================= */

.team-col {
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 220px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 200px;
}

.team-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.team-col img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.team-col h3 {
    font-size: 20px;
    color: black; 
    margin: 10px 0 8px 0;
    font-weight: 600;
}

.team-col p {
    font-size: 15px;
    color: #555;
    line-height: 1.2;
    margin: 0;
}

.team-col strong {
    display: block;
    margin: 0 0 8px 0;
    font-size: 14px;
    color: black;
}

/* Spacing between team section and action link */
.team-action {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tech-link, .agri-link {
    display: inline-block;
    padding: 12px 24px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tech-link {
    background: #2e8b57;
}

.tech-link:hover {
    background: #1e5c37;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(46, 139, 87, 0.3);
}

.agri-link {
    background: #2e8b57;
}

.agri-link:hover {
    background: #1e5c37;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(46, 139, 87, 0.3);
}


/*----- Testimonials -----*/
.Testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}
.Testimonials p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}
.Testimonials .row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin: 50px auto;
  max-width: 1000px;
}
.Testimonials-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #f7f3ee;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.Testimonials-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.Testimonials-col p{
    padding: 0;
}
.Testimonials-col h3{
    margin-top: 15px;
    text-align: left;
}
.Testimonials-col .fa{
    color: #f44336;
}
@media (max-width: 700px){
    .Testimonials-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*----- Call To Action -----*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/banner2.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*----- Footer -----*/

.footer{
    width: 100%;
    text-align: center;
    padding: 50px 0;
}

.footerh4{
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer p{
    font-size: 1rem;
    line-height: 1.6;
    max-height: 700px;
    margin: 0 auto;
    color: #555;
    width: 80%;
    margin-bottom: 40px;
}

.icons{
    margin: 20px 0;
    gap: 25px;
}

.icons fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.icons .fa:hover{
    color: #f44336;
}


  
/* Footer social icons: smooth 360° rotation on hover */
.footer .icons a {
    display: inline-block;
    margin: 0 8px;
    color: inherit;
    transition: transform 0.6s cubic-bezier(.2,.9,.2,1);
    transform-origin: center;
    will-change: transform;
    text-decoration: none;
}

.footer .icons a:hover {
    transform: rotate(360deg);
}

/* Slightly larger icon for better visibility */
.footer .icons a i {
    font-size: 18px;
    vertical-align: middle;
}

/* Accessible helper for screen-reader-only text */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Brand colors for social icons */
.footer .icons a .fa-facebook-f,
.footer .icons a i.fa-facebook-f {
    color: #1877F2; /* Facebook blue */
}

.footer .icons a .fa-twitter,
.footer .icons a i.fa-twitter {
    color: #1DA1F2; /* Twitter blue */
}

.footer .icons a .fa-linkedin-in,
.footer .icons a i.fa-linkedin-in {
    color: #0A66C2; /* LinkedIn blue */
}

/* Instagram gradient using background-clip on the icon glyph */
.footer .icons a .fa-instagram,
.footer .icons a i.fa-instagram {
    /* Fallback color */
    color: #C13584;
    /* Gradient overlay */
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slightly enlarge icons on hover while rotating */
.footer .icons a:hover i {
    transform: rotate(360deg) scale(1.08);
}

/*----- about us page -----*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url("images/about us.png");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
    color:#555;
}
.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
    color:black;
}
.about-col p{
    padding: 15px 0 25px;
}

.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color:#f44336
}

.red-btn:hover{
    color:#fff;
}


/*----- Our Mission Section -----*/

.our-mission {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.our-mission .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mission-col {
    flex: 1 1 30%;
    background: #f7f3ee;
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s;
}

.mission-col img {
    width: 100%;
    border-radius: 12px;
}

.mission-col h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}

.mission-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/*----- Our Vision Section -----*/

.our-vision {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.our-vision .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.vision-col {
    flex: 1 1 30%;
    background: #f7f3ee;
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s;
}

.vision-col img {
    width: 100%;
    border-radius: 12px;
}

.vision-col h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}

.vision-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/*----- Core Values Section -----*/

.core-values {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.core-values .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.values-col {
    flex: 1 1 30%;
    background: #f7f3ee;
    border-radius: 10px;
    padding: 25px;
    transition: 0.3s;
}

.values-col img {
    width: 100%;
    border-radius: 12px;
}

.values-col h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #000;
}

.values-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-list {
    margin: 20px 0;
    padding-left: 20px;
}

.values-list li {
    margin-bottom: 12px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}



/*----- products page -----*/
/*----- Products Section -----*/

.products {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 80px 0 50px;
}

.products h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.products p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 50px;
    font-size: 16px;
}

/* Product Grid Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Each Product Card */

.products .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}

.product-col {
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 220px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 390px;
}

.product-col img {
    width: 100%;
    max-width: 180px;
    height: 140px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-col h3 {
    color: #2d572c;
    font-size: 20px;
    margin: 10px 0 8px 0;
    font-weight: 600;
}

.product-col p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.product-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/*----- contact us page -----*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}
.contact-us{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
 }

 .contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
    box-sizing: border-box;
 }
 .contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}
.contact-col div .fa{
    font-size: 28px;
    color: #2e8b57; /* technical team green for contact icons */
    margin: 10px;
    margin-right: 30px;
}
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}






/* About More Section */
.about-more {
    width: 80%;
    margin: auto;
    padding: 80px 0;
    text-align: center;
}

.about-more h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50; /* Dark elegant color */
}

.about-more p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-more .hero-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    background: #e74c3c; /* Red button */
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
    transition: 0.3s;
}

.about-more .hero-btn:hover {
    background: #c0392b; /* Darker red */
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .about-more h1 {
        font-size: 32px;
    }

    .about-more p {
        font-size: 16px;
    }

    .about-more {
        width: 90%;
        padding: 50px 0;
    }
}

/* Technical team details styling */
.technical-team {
    width: 80%;
    margin: 40px auto 80px auto;
}
.tech-team summary {
    list-style: none;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #2d6b3a;
    padding: 12px 18px;
    border-radius: 8px;
    background: rgba(45,107,58,0.06);
    box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
}
.tech-team[open] summary {
    background: rgba(45,107,58,0.09);
}
.tech-member {
    margin-top: 14px;
    background: #f7f3ee;
    padding: 18px;
    border-radius: 8px;
}
.tech-member h3 {
    margin: 0 0 6px 0;
    font-size: 20px;
}
.tech-member p {
    margin-top: 8px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .tech-team summary { font-size: 20px; padding: 10px 12px; }
    .tech-member { padding: 14px; }
}

/* Mobile: center contact form and stack contact columns */
@media (max-width: 768px) {
    .contact-us {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 92%;
        margin: 18px auto;
    }

    .contact-col {
        flex-basis: 100%;
        width: 100%;
        max-width: 720px;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .contact-col form {
        width: 100%;
    }

    .contact-col div {
        justify-content: flex-start;
    }

    .contact-col div .fa {
        margin-right: 16px;
    }

    .contact-col input, .contact-col textarea {
        width: 100%;
    }

    .tech-link {
        display: inline-block;
        padding: 12px 22px;
    }
}

/*----- Poultry Page -----*/
.product-detail {
      width: 90%;
      max-width: 1000px;
      margin: 60px auto;
      padding: 40px;
      background: #f8f9fa;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .detail-image {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .detail-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .detail-content h1 {
      font-size: 32px;
      color: #2d6b3a;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .detail-content p {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
    }

    .detail-content ul {
      margin: 20px 0;
      padding-left: 20px;
      color: #555;
      font-size: 16px;
      line-height: 1.8;
    }

    .detail-content li {
      margin-bottom: 12px;
    }

    .back-btn {
      display: inline-block;
      margin-bottom: 20px;
      padding: 10px 20px;
      background: #2e8b57;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .back-btn:hover {
      background: #1e5c37;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
    }

    @media (max-width: 768px) {
      .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .product-detail {
        width: 92%;
        padding: 20px;
        margin: 40px auto;
      }

      .detail-content h1 {
        font-size: 24px;
      }
    }

     .product-detail {
      width: 90%;
      max-width: 1000px;
      margin: 60px auto;
      padding: 40px;
      background: #f8f9fa;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .detail-image {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .detail-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .detail-content h1 {
      font-size: 32px;
      color: #2d6b3a;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .detail-content h3 {
      color: #2d6b3a;
      font-size: 18px;
      margin-top: 20px;
      margin-bottom: 12px;
    }

    .detail-content p {
      font-size: 16px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 20px;
    }

    .detail-content ul {
      margin: 20px 0;
      padding-left: 20px;
      color: #555;
      font-size: 16px;
      line-height: 1.8;
    }

    .detail-content li {
      margin-bottom: 12px;
    }

    .back-btn {
      display: inline-block;
      margin-bottom: 20px;
      padding: 10px 20px;
      background: #2e8b57;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .back-btn:hover {
      background: #1e5c37;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
    }

    @media (max-width: 768px) {
      .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .product-detail {
        width: 92%;
        padding: 20px;
        margin: 40px auto;
      }

      .detail-content h1 {
        font-size: 24px;
      }
    }



