﻿.bg-color {
    background-color: #c5ff8b !important;
}

.img-size {
    height: 300px;
    width: 330px;
}

/* ==========================================
   HEADER
========================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,.08);
    z-index: 9999;
}

.header-top-bar {
    background: linear-gradient(90deg,#4caf50,#2e7d32);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-info,
.top-contact {
    font-weight: 500;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 10px 0;
}

.brand-logo {
    max-height: 65px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .nav-menu li {
        margin: 0 12px;
    }

    .nav-menu a {
        color: #333;
        font-weight: 600;
        text-decoration: none;
        transition: .3s;
    }

        .nav-menu a:hover {
            color: #4caf50;
        }

.header-btn {
    background: #4caf50;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

    .header-btn:hover {
        background: #2e7d32;
        color: #fff;
    }

/* ==========================================
   HOME SECTION
========================================== */

#idHome {
    margin-top: 115px;
}

.hero-slider-wrapper {
    position: relative;
}

.img-slide-height {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,.15), rgba(0,0,0,.25), rgba(0,0,0,.45) );
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-content {
    color: #fff;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-btn-primary {
    background: #4caf50;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

    .hero-btn-primary:hover {
        color: #fff;
    }

.hero-btn-secondary {
    background: #fff;
    color: #333;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

    .hero-stats div {
        text-align: center;
    }

    .hero-stats strong {
        display: block;
        font-size: 30px;
        color: #fff;
    }

    .hero-stats span {
        font-size: 14px;
        color: rgba(255,255,255,.9);
    }

/* ==========================================
   CAROUSEL
========================================== */

.carousel-control-prev,
.carousel-control-next {
    z-index: 20;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 35px;
    height: 35px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    #idHome {
        margin-top: 150px;
    }

    .header-main {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
    }

    .header-btn {
        margin-top: 15px;
    }

    .img-slide-height {
        height: 75vh;
    }

    .hero-content {
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 42px;
        }

        .hero-content p {
            font-size: 17px;
        }

    .hero-stats {
        gap: 25px;
        flex-wrap: wrap;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px) {

    #idHome {
        margin-top: 130px;
    }

    .header-top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

    .header-main {
        flex-direction: column;
        padding: 10px 0;
    }

    .brand-logo {
        max-height: 50px;
    }

    .nav-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

        .nav-menu li {
            margin: 5px 8px;
        }

        .nav-menu a {
            font-size: 13px;
        }

    .header-btn {
        margin-top: 10px;
        padding: 8px 18px;
        font-size: 13px;
    }

    .img-slide-height {
        height: 70vh;
        object-fit: cover;
        object-position: center;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero-stats {
        display: flex;
        justify-content: space-around;
        gap: 10px;
    }

        .hero-stats strong {
            font-size: 20px;
        }

        .hero-stats span {
            font-size: 11px;
        }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* ==========================================
   EXTRA SMALL DEVICES
========================================== */

@media (max-width:480px) {

    #idHome {
        margin-top: 125px;
    }

    .img-slide-height {
        height: 65vh;
    }

    .hero-content {
        padding: 12px;
    }

        .hero-content h1 {
            font-size: 24px;
        }

        .hero-content p {
            font-size: 13px;
        }

    .hero-stats {
        flex-wrap: nowrap;
    }

        .hero-stats div {
            min-width: auto;
        }
}

/* MOBILE HEADER SCROLL WITH PAGE */

@media (max-width: 767px) {

    #header {
        position: relative !important;
        top: auto;
        left: auto;
        width: 100%;
        z-index: auto;
    }

    #idHome {
        margin-top: 0 !important;
    }

    .header-main {
        padding-bottom: 15px;
    }
}
/* ==========================
                   INTRO SECTION
                ========================== */

.home-intro {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .home-intro h1 {
        color: #2e7d32;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .home-intro p {
        font-size: 20px;
        color: #666;
        max-width: 900px;
        margin: auto;
        line-height: 1.8;
    }

.experience-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ==========================
                   RESPONSIVE
                ========================== */

@media(max-width:768px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .img-slide-height {
        height: 70vh;
    }

    .home-intro h1 {
        font-size: 28px;
    }

    .home-intro p {
        font-size: 16px;
    }

    .top-tagline {
        display: none;
    }
}

#idWhy {
    background: #f8fff8;
}

.why-title {
    margin-bottom: 50px !important;
}

.section-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

.why-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.why-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .why-box:hover {
        transform: translateY(-8px);
    }

    .why-box .box-icon {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .why-box .info h6 {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.7;
        color: #333;
        margin: 0;
    }

@media(max-width:768px) {

    .why-title h1 {
        font-size: 30px;
    }

    .why-subtitle {
        font-size: 16px;
    }

    .why-box {
        min-height: auto;
    }
}

#idServices {
    background: #ffffff;
}

.services-title {
    margin-bottom: 50px !important;
}

    .services-title h1 {
        font-size: 42px;
        font-weight: 700;
        color: #2e7d32;
        margin-bottom: 15px;
    }

.services-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}

.service-box {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .service-box:hover {
        transform: translateY(-8px);
    }

    .service-box .box-icon {
        width: 90px;
        height: 90px;
        line-height: 90px;
        margin: 0 auto 25px;
        text-align: center;
        border-radius: 50%;
        background: #e8f5e9;
        font-size: 42px;
    }

    .service-box h4 {
        color: #2e7d32;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .service-box p {
        color: #555;
        line-height: 1.9;
        margin-bottom: 0;
    }

.service-box-wide {
    padding-left: 50px;
    padding-right: 50px;
}

@media(max-width:768px) {

    .services-title h1 {
        font-size: 30px;
    }

    .service-box {
        padding: 25px;
    }

    .service-box-wide {
        padding: 25px;
    }
}
/* ===================================
           GALLERY SECTION
        =================================== */

#idGallary {
    background: #f8fff8;
}

.gallery-title {
    margin-bottom: 50px !important;
}

    .gallery-title h1 {
        color: #2e7d32;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.gallery-subtitle {
    max-width: 800px;
    margin: auto;
    color: #666;
    font-size: 18px;
}

/* Modern Masonry Style */

#idGallary .row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    width: 25%;
    padding: 12px;
}

.gallery-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .gallery-card:hover {
        transform: translateY(-8px);
    }

.gallery-image-wrapper {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-content {
    padding: 18px;
}

    .gallery-content h4 {
        margin: 0;
        color: #2e7d32;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
    }

/* Responsive */

@media(max-width:992px) {

    .column {
        width: 50%;
    }
}

@media(max-width:768px) {

    .gallery-title h1 {
        font-size: 30px;
    }

    .gallery-subtitle {
        font-size: 16px;
    }

    .column {
        width: 100%;
    }

    .gallery-card img {
        height: 240px;
    }
}
/* =====================================
   ABOUT US
===================================== */

#idAboutUS {
    background: #ffffff;
}

.about-title {
    margin-bottom: 50px !important;
}

    .about-title h1 {
        color: #2e7d32;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.about-subtitle {
    max-width: 800px;
    margin: auto;
    color: #666;
    font-size: 18px;
}

.about-stat-box {
    background: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
}

    .about-stat-box:hover {
        transform: translateY(-6px);
    }

    .about-stat-box h2 {
        color: #2e7d32;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .about-stat-box p {
        margin: 0;
        color: #666;
        font-weight: 600;
    }

.about-content-card {
    background: #f8fff8;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .about-content-card p {
        color: #555;
        line-height: 2;
        text-align: justify;
        margin-bottom: 20px;
    }

.about-list {
    margin: 25px 0;
    padding-left: 20px;
}

    .about-list li {
        margin-bottom: 10px;
        color: #444;
        font-weight: 500;
    }

.about-highlight {
    text-align: center !important;
    font-size: 24px;
    color: #2e7d32 !important;
    font-weight: 700;
    margin-top: 30px;
}

@media(max-width:768px) {

    .about-title h1 {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .about-content-card {
        padding: 25px;
    }

    .about-highlight {
        font-size: 20px;
    }
}
/* =====================================
   CLIENTS SECTION
===================================== */

#idClients {
    background: #f8fff8;
}

.clients-title {
    margin-bottom: 50px !important;
}

    .clients-title h1 {
        color: #2e7d32;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.clients-subtitle {
    max-width: 800px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Client Cards */

.client-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .client-card:hover {
        transform: translateY(-8px);
    }

.client-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #e8f5e9;
    font-size: 38px;
}

.client-card h4 {
    color: #2e7d32;
    font-weight: 600;
    margin: 0;
    font-size: 20px;
}

/* Logos */

.client-logo-section {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .client-logo-section h3 {
        color: #2e7d32;
        font-weight: 700;
    }

.client-logo {
    height: 90px;
    margin: 0 35px;
    transition: .3s;
    filter: grayscale(100%);
}

    .client-logo:hover {
        filter: none;
        transform: scale(1.1);
    }

@media(max-width:768px) {

    .clients-title h1 {
        font-size: 30px;
    }

    .clients-subtitle {
        font-size: 16px;
    }

    .client-card {
        padding: 25px;
    }

    .client-logo {
        height: 60px;
        margin: 0 15px;
    }
}

/* =====================================
   CONTACT US
===================================== */

#idContactUs {
    background: #ffffff;
}

.contact-title {
    margin-bottom: 50px !important;
}

    .contact-title h1 {
        color: #2e7d32;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.contact-subtitle {
    max-width: 850px;
    margin: auto;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

/* Cards */

.contact-info-card,
.contact-details-card,
.contact-form-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

    .contact-info-card:hover,
    .contact-details-card:hover,
    .contact-form-card:hover {
        transform: translateY(-6px);
    }

.contact-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: auto;
    text-align: center;
    border-radius: 50%;
    background: #e8f5e9;
    font-size: 42px;
    margin-bottom: 25px;
}

.contact-info-card h3,
.contact-details-card h3,
.contact-form-card h3 {
    text-align: center;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-card p {
    text-align: center;
    color: #666;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .contact-benefits li {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
        color: #555;
    }

/* Contact Details */

.contact-details h5 {
    color: #2e7d32;
    font-weight: 600;
}

.contact-details p {
    color: #666;
}

.single-contact-address {
    margin-bottom: 25px;
}

    .single-contact-address .icon {
        margin-right: 20px;
        color: #2e7d32;
        font-size: 24px;
    }

/* Form */

.modern-input {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    height: auto;
}

    .modern-input:focus {
        border-color: #4caf50;
        box-shadow: 0 0 0 0.15rem rgba(76,175,80,.2);
    }

.form-desc {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.contact-btn {
    width: 100%;
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .contact-btn:hover {
        background: #2e7d32;
        color: #fff;
    }

/* Mobile */

@media(max-width:768px) {

    .contact-title h1 {
        font-size: 30px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-info-card,
    .contact-details-card,
    .contact-form-card {
        padding: 25px;
    }
}
/* =====================================
   ADMIN LOGIN
===================================== */

#idAdminLogin {
    background: #f8fff8;
}

.admin-title {
    margin-bottom: 50px !important;
}

    .admin-title h1 {
        color: #2e7d32;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.admin-subtitle {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.admin-login-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.admin-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto 25px;
    text-align: center;
    border-radius: 50%;
    background: #e8f5e9;
    font-size: 48px;
}

.admin-login-card h3 {
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 10px;
}

.admin-desc {
    color: #777;
    margin-bottom: 30px;
}

.admin-btn {
    width: 100%;
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .admin-btn:hover {
        background: #2e7d32;
        color: #fff;
    }

/* =====================================
   FOOTER
===================================== */

.custom-footer {
    background: linear-gradient(135deg,#4caf50,#2e7d32) !important;
    padding: 50px 0 30px;
}

.footer-content h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-content p {
    color: rgba(255,255,255,.9);
    margin-bottom: 10px;
}

.footer-divider {
    border-color: rgba(255,255,255,.2);
    margin: 25px auto;
    width: 200px;
}

.footer-copy {
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-tech {
    font-size: 14px;
    opacity: .9;
}

/* Mobile */

@media(max-width:768px) {

    .admin-title h1 {
        font-size: 30px;
    }

    .admin-login-card {
        padding: 25px;
    }
}
