/* --- GLOBAL CONFIG --- */
:root {
    --primary: #8cc63f;
    /* Brand Green */
    --bg-color: #f4f7f6;
    --secondary: #197049;
    /* Darker Green */
    --text-color: #555;
    --white: #ffffff;
    --dark-bg: #051408;
    --font-head: 'Rajdhani', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #fdfdfd;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    padding: 20px 0;
    transition: 0.4s ease;
    background: transparent;
}

/* Scroll Background Effect */
.main-header.scrolled {
    background: rgba(5, 20, 8, 0.95);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Fix: Force White Color */
.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 26px;
    color: var(--white) !important;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

/* --- BUTTONS --- */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.281)),
        url('../images/home-banner.png') center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- MOBILE RESPONSIVE --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: 0.4s;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: inline-block;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: 0.5s ease-in-out;
        z-index: -1;
    }

    .nav-menu.active {
        top: 70px;
    }

    .nav-menu a {
        margin: 15px 0;
        font-size: 18px;
    }

    .nav-menu .btn-primary.mobile-only {
        margin-top: 20px;
        padding: 10px 30px;
        font-size: 16px;
    }
}

/* about section */

.about-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    font-family: 'Rajdhani', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    /* Allows stacking on mobile */
}

/* Image Side */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Content Side */
.about-content {
    flex: 1;
    min-width: 300px;
}

.sub-title {
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: var(--font-head);
}

.main-title {
    color: #197049;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.description {
    color: var(--dark-bg);
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
}

.features-list span {
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .main-title {
        font-size: 2rem;
    }

    .features-list li {
        justify-content: center;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.fleet-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

/* Grid Layout */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Design */
.fleet-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image & Badge */
.card-image {
    position: relative;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Content */
.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
}

.card-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

/* Specs Grid */
.specs {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.spec-item {
    font-size: 13px;
    color: var(--dark-bg);
}

.spec-item strong {
    color: var(--secondary);
    display: block;
}

/* WhatsApp Link Styling */
.btn-outline {
    display: block;
    text-align: center;
    padding: 10px;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
}

.brand-section {
    padding: 50px 20px;
    text-align: center;
    background-color: var(--bg-color);
}

.brand-title {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
}

.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(200px * 10);
    animation: scroll 20s linear infinite;
}

.logo-track img {
    height: 25px;
    width: auto;
    margin: 0 30px;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-track img {
        width: 120px;
        margin: 0 15px;
    }
}

/*  */

.testimonial-section {
    padding: 80px 0;
    background-color: #f4f7f6;
    /* Subtle light gray-green background */
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
    /* Your brand accent color */
}

.quote-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ddd;
}

.client-details h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary);
    /* Deep brand green */
    font-family: var(--font-head);
    font-weight: 700;
}

.client-details span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        max-width: 100%;
    }
}

/* Technical Edge / Features */

.tech-edge-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    /* Dark forest/tech background */
    color: var(--dark-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: var(--primary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(140, 198, 63, 0.2);
    /* Subtle green border */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    /* Accent Green */
    transition: 0.4s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.tech-card:hover::before {
    height: 100%;
}

.tech-icon {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 25px;
}

.tech-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.tech-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-bg);
}

/* Responsive adjust */
@media (max-width: 768px) {
    .tech-edge-section {
        padding: 60px 0;
    }
}

/* footer section */

.main-footer {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 70px 0 20px;
    font-family: 'Rajdhani', sans-serif;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary)
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-color);
}

/* ===== WhatsApp Chat Widget ===== */

/* FAB trigger button */
.wa-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.wa-fab i {
    font-size: 32px;
    color: #fff;
    transition: transform 0.3s ease;
}

/* Pulsing ring animation */
.wa-fab::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(37, 211, 102, 0.35);
    border-radius: 50%;
    animation: wa-pulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(1.7);
        opacity: 0;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* Chat box popup */
.wa-chat-box {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 330px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 9998;
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: wa-slide-in 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: var(--font-body);
}

.wa-chat-box.open {
    display: flex;
}

@keyframes wa-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header */
.wa-chat-header {
    background: #075e54;
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-avatar i {
    font-size: 22px;
    color: #fff;
}

.wa-header-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

.wa-header-info span {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-online-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.wa-close-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0 4px;
}

.wa-close-btn:hover {
    color: #fff;
}

/* Body / message area */
.wa-chat-body {
    background: #ece5dd;
    padding: 20px 16px;
    min-height: 100px;
}

.wa-bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 85%;
    position: relative;
}

.wa-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.wa-bubble .wa-time {
    font-size: 11px;
    color: #999;
    float: right;
    margin-top: 6px;
    margin-left: 10px;
}

/* Footer / input area */
.wa-chat-footer {
    padding: 12px 14px;
    background: #f0f0f0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.wa-chat-footer input {
    flex: 1;
    border: none;
    border-radius: 25px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    background: #fff;
    font-family: var(--font-body);
    color: #333;
}

.wa-send-btn {
    width: 40px;
    height: 40px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.wa-send-btn:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .wa-chat-box {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 100px;
    }

    .wa-fab {
        bottom: 20px;
        right: 15px;
    }
}

/* about page banner */


.about-banner {
    height: 60vh;
    /* Takes up 60% of the screen height */
    min-height: 400px;
    background-image: url('drone-skyline-banner.jpg');
    /* Replace with your high-res drone image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    font-family: var(--font-head);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 21, 0.8), rgba(13, 27, 21, 0.4));
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 800px;
    color: var(--white);
    z-index: 2;
}

.breadcrumb {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary);
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-title span {
    color: var(--primary);
}

.banner-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    font-family: var(--font-head);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .about-banner {
        height: 50vh;
        background-attachment: scroll;
        /* Disables parallax for smoother mobile scrolling */
    }
}

/* about section  */

/* Apply variables to the section */
.about-overview {
    padding: 80px 0;
    background-color: var(--bg-color);
}

/* Headings and Sub-headings */
.about-overview .head-font,
.about-overview .sub-heading,
.about-overview .section-title,
.about-overview .exp-box h3,
.about-overview .btn-primary {
    font-family: var(--font-head);
}

/* Body Text and Lists */
.about-overview .body-font,
.about-overview .lead-text,
.about-overview .main-description,
.about-overview .feat-item,
.about-overview .exp-box p {
    font-family: var(--font-body);
}

/* Specific Layout Styles */
.overview-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.overview-image-container {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.overview-image-container .main-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px #f4f7f6;
}

.overview-text-content .sub-heading {
    color: var(--dark-bg);
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.overview-text-content .section-title {
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.overview-text-content .lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feat-item i {
    color: var(--primary);
}


@media (max-width: 991px) {
    .overview-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .overview-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* Container adjustment */
.overview-image-container {
    flex: 1;
    min-width: 350px;
    position: relative;
    /* Limit the overall height of the section area */
    max-height: 500px;
}

/* Main Image Wrapper */
.overview-image-container .main-image {
    width: 100%;
    height: 450px;
    /* Force a specific height */
    overflow: hidden;
    border-radius: 20px;
}

.overview-image-container .main-image img {
    width: 100%;
    height: 100%;
    /* This is the key: it crops the image to fill the box without stretching */
    object-fit: cover;
    object-position: center;
    display: block;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Adjust the Experience Box to sit correctly on the smaller image */
.overview-image-container .exp-box {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    min-width: 140px;
    border-radius: 12px;
}

.overview-image-container .exp-box h3 {
    font-size: 2.2rem;
    /* Scaled down slightly */
    line-height: 1;
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
    .overview-image-container .main-image {
        height: 300px;
        /* Even shorter on mobile */
    }

    .overview-image-container .exp-box {
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
}

/* service section */

.service-grid-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-color);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(25, 112, 73, 0.1);
    /* 10% opacity of brand green */
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    font-size: 0.95rem;
    color: var(--dark-bg);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Header styling alignment */
.section-header .sub-heading {
    color: var(--dark-bg);
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header .section-title {
    font-size: 2.5rem;
    color: var(--secondary);
}

.section-header .section-title span {
    color: var(--secondary);
}

.tech-icon {
    color: var(--dark-bg);
    font-size: 2rem;
    /* Optional: Adjust size */
    transition: 0.3s ease;
}

/* contact section */

.contact-info-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-details-box,
.contact-form-box {
    flex: 1;
    min-width: 350px;
}

/* Details Section */
.contact-details-box .section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.info-list {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(140, 198, 63, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.info-text h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.info-text p {
    margin: 5px 0 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Form Section */
.contact-form-box {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary);
}

@media (max-width: 768px) {
    .contact-form-box {
        padding: 30px;
    }
}

/* Apply the Head Font Variable specifically */
.contact-info-section .sub-heading,
.contact-info-section .section-title,
.contact-info-section .info-text h5,
.contact-info-section .btn-submit {
    font-family: var(--font-head);
}

/* Ensure Sub-heading styling is consistent */
.contact-info-section .sub-heading {
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    /* Ensures spacing works correctly */
}

.body-font p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-info-section .section-title {
    font-size: 2.8rem;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-info-section .section-title span {
    color: var(--secondary);
}

/* Info Item Headings */
.info-text h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--secondary);
}


/* agriculture about section */

.agri-solutions-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.agri-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.agri-row.reverse {
    flex-direction: row-reverse;
}

.agri-text,
.agri-image {
    flex: 1;
    min-width: 350px;
}

.agri-text .sub-heading {
    color: var(--dark-bg);
    text-transform: uppercase;
    font-family: var(--font-head);
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.agri-text .section-title {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.agri-text .section-title span {
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 25px;
}

.agri-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.agri-features {
    list-style: none;
    padding: 0;
}

.agri-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark-bg);
}

.agri-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Image Styles */
.agri-image img {
    width: 100%;
    height: 400px;
    /* Matching the height logic from the About section */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 991px) {

    .agri-row,
    .agri-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .agri-features li {
        justify-content: center;
    }

    .agri-text .section-title {
        font-size: 2.2rem;
    }
}

/* training section about section  */

/* Container for the Training detail area */
.training-content {
    padding: 80px 0;
    text-align: left;
    background-color: var(--bg-color);
}

/* Subheading Styling */
.training-content .sub-heading {
    color: var(--dark-bg);
    text-transform: uppercase;
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
    display: block;
}

/* Main Heading Styling */
.training-content .section-title {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--secondary);
    /* Dark Green */
    line-height: 1.1;
    margin-bottom: 25px;
}

.training-content .section-title span {
    color: var(--primary);
    /* Light Green */
}

/* Paragraph Styling */
.training-content p {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
    max-width: 850px;
    /* Prevents text from stretching too wide */
}

/* Image Container and Sizing */
.training-content .image-box {
    width: 100%;
    margin-top: 30px;
}

.training-content .image-box img {
    /* Image Size Settings */
    width: 100%;
    max-width: 1100px;
    /* Recommended size for a centered full-width look */
    height: 500px;
    /* Consistent height with your other pages */
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

@media (max-width: 768px) {
    .training-content .section-title {
        font-size: 2.2rem;
    }

    .training-content .image-box img {
        height: 300px;
        /* Shorter for mobile screens */
    }
}

/* Statistics / Impact Counter */

.impact-counter-section {
    padding: 80px 0;
    background-color: var(--secondary);
    color: var(--white);
}

.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter-item {
    padding: 20px;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.counter-item h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    /* Uses your heading variable */
    font-family: var(--font-head);
}

.counter-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.9;
    /* Uses your body variable */
    font-family: var(--font-body);
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .counter-item h2 {
        font-size: 2.5rem;
    }

    .impact-counter-section {
        padding: 60px 0;
    }
}

/* Banner Model Consistency */
.contact-banner {
    height: 50vh;
    min-height: 400px;
    background-image: url('contact-hero-bg.jpg');
    /* Recommended Size: 1920x800 */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-headfont {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.banner-headfont span {
    color: var(--primary);
}

.breadcrumb-contact {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: var(--font-head);
}

.breadcrumb-contact a {
    color: var(--white);
    text-decoration: none;
}

.contact-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 38, 34, 0.9) 20%, rgba(29, 38, 34, 0.3) 100%);
    display: flex;
    align-items: center;
}

/* Main Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
}

/* Info Cards */
.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card i {
    color: var(--primary);
    /* #8cc63f */
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-card h5 {
    color: var(--secondary);
    /* #197049 */
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Form Styling */
.contact-form-wrapper {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
}



@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* social icons */

.social-links {
    display: flex;
    gap: 15px;
    /* Spacing between circles */
    padding: 20px 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* Hover Effect */
.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    color: var(--white)
}

/* Specific Font Awesome adjustments for centering */
.social-icon i {
    line-height: 0;
}