/* =========================
   GLOBAL RESET + TEXT FIX
========================= */


body {
    background: #ffffff;
    color: #111;
}

h1, h2, h3, h4, h5, p, li, a {
    color: #111;
}

/* =========================
   GLOBAL SECTION SPACING
========================= */
section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
}

/* =========================
   HERO SPLIT PREMIUM
========================= */
.hero-split {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.hero-left {
    flex: 1;
    background: linear-gradient(135deg, #c6d62c, #a8c820);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    max-width: 550px;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #e3f24f;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

/* =========================
   REVEAL ANIMATION (CLEAN)
========================= */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

/* =========================
   FEATURE SECTION
========================= */
.feature-clean {
    overflow: hidden;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    margin: auto;
}

.image-stack .img-1 {
    position: absolute;
    width: 70%;
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    top: 20px;
    left: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.image-stack .img-2 {
    position: absolute;
    width: 65%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    bottom: -5px;
    right: 6px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-clean h2 {
    font-size: 36px;
    color: #111;
}

.feature-clean p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 520px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    color: #222;
    font-weight: 500;
}

/* =========================
   COLLAGE SECTION
========================= */
.collage-images {
    position: relative;
    min-height: 420px;
}

.img-box {
    position: absolute;
    width: 70%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.img-top {
    top: 0;
    left: 0;
    z-index: 2;
}

.img-bottom {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   PROCESS SECTION
========================= */
.process-section {
    background: #f8f9fa;
}

.process-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-number {
    font-size: 22px;
    font-weight: 800;
    color: #c6d62c;
}

/* =========================
   NEWS SECTION (DRIBBBLE STYLE)
========================= */
.news-hero {
    background: #f8f9fa;
    padding: 120px 20px 60px;
    text-align: center;
}

.news-title {
    font-size: 48px;
    font-weight: 800;
}

.news-subtitle {
    font-size: 18px;
    color: #555;
}

.news-grid-section {
    padding: 80px 0 120px;
}

.news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img {
    height: 220px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-content p {
    color: #555;
    font-size: 14px;
}

.news-content a {
    color: #c6d62c;
    font-weight: 600;
    text-decoration: none;
}

/* =========================
   RESPONSIVE FIXES
========================= */
@media (max-width: 768px) {

    .hero-split {
        flex-direction: column;
    }

    .hero-title {
        font-size: 42px;
    }

    .image-stack {
        height: 320px;
    }
}


/* =========================
   CONTACT SECTION PREMIUM
========================= */
.contact-section {
    background: #f8f9fa;
}

/* FORM CARD */
.contact-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* INPUTS */
.contact-card .form-control {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.contact-card .form-control:focus {
    border-color: #c6d62c;
    box-shadow: 0 0 0 0.2rem rgba(198,214,44,0.25);
}

/* BUTTON */
.btn-contact {
    background: linear-gradient(135deg, #c6d62c, #a8c820);
    color: #0a2e2a;
    font-weight: 700;
    padding: 12px;
    border-radius: 50px;
    border: none;
    transition: 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* INFO SIDE */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INFO BOX */
.info-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
}

.info-box h5 {
    margin-bottom: 5px;
    font-weight: 700;
    color: #111;
}

.info-box p {
    margin: 0;
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-info {
        margin-top: 20px;
    }
}

/* =========================
   PREMIUM FOOTER (CLEAN FIXED VERSION)
========================= */

.footer-section {
    background: #0b0f0e;
    color: #fff;
    padding: 80px 0 30px;
}

/* BRAND */
.footer-brand h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bbb;
    line-height: 1.7;
}

/* HEADINGS */
.footer-section h5,
.footer-section h6 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* LINKS BASE */
.footer-section a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s ease;
}

.footer-section a:hover {
    color: #c6d62c;
}

/* STANDARD LIST LINKS */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a:hover {
    padding-left: 5px;
}

/* SOCIAL */
.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* CONTACT */
.footer-contact p {
    color: #bbb;
    margin-bottom: 8px;
}

/* BUTTON */
.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #c6d62c;
    color: #0b0f0e;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    transform: translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #777;
}

/* =========================
   SERVICE STYLE (GRID)
========================= */

/* =========================
   FOOTER BASE
========================= */

footer {
    background: #111;
    color: #e0e0e0;
    padding: 60px 0;
}

footer h5 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

footer p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================
   LAYOUT (FLEX SECTIONS)
========================= */

.footer-service-group {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-service-box {
    flex: 1;
    min-width: 220px;
}

/* =========================
   LINK LIST (CLEAN VERSION)
========================= */

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.footer-list a:hover {
    color: #c6d62c;
    transform: translateX(5px);
}

/* =========================
   OPTIONAL GRID (IF USED)
========================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-grid a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

.footer-grid a:hover {
    color: #c6d62c;
    transform: translateX(5px);
}

/* =========================
   SOCIAL ICONS (OPTIONAL)
========================= */

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: #bdbdbd;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #c6d62c;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .footer-service-group {
        flex-direction: column;
        gap: 30px;
    }

    .footer-service-box {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ===== NEWS SECTION ===== */
.news-section {
    padding: 120px 0;
    background: #f8f9fa;
}

/* HEADER */
.news-title {
    font-size: 42px;
    color: #111;
}

.news-subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* FEATURED */
.featured-img {
    border-radius: 15px;
    transition: 0.4s;
}

.featured-img:hover {
    transform: scale(1.03);
}

/* CARD */
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.news-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.news-content {
    padding: 20px;
}

.news-content h5 {
    margin-top: 10px;
    font-weight: 700;
}

.news-content p {
    color: #666;
    font-size: 14px;
}

.news-content a {
    color: #c6d62c;
    font-weight: 600;
    text-decoration: none;
}

/* VIDEO */
.video-box iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .news-title {
        font-size: 32px;
    }
}


/* ===== MODAL ===== */
.news-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

/* CONTENT */
.news-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

/* IMAGE */
.modal-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* ANIMATION */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

/* READ MORE STYLE */
.read-more {
    color: #c6d62c;
    font-weight: 600;
}


.news-card {
    cursor: pointer;
}


.news-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.news-card:hover {
    transform: scale(1.05);
}

.badge {
    font-size: 0.8rem;
}


.timeline {
    border-left: 3px solid #0d6efd;
    padding-left: 20px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #0d6efd;
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.timeline-content h5 {
    font-weight: 700;
}


.overlay-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.overlay-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s;
}

.overlay-card:hover img {
    transform: scale(1.1);
}

.overlay-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.overlay-content h5 {
    font-weight: 700;
}



/* =========================
   GLOBAL IMAGE CONTROL
========================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   HERO IMAGES
========================= */

.hero-image-wrapper img {
    width: 100%;
    height: 350px; /* control size */
    object-fit: cover;
    border-radius: 15px;
}

/* =========================
   CLARK SECTION IMAGES
========================= */

.clark-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* =========================
   FEATURE COLLAGE IMAGES
========================= */

.image-stack img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================
   OVERLAY / GENERAL CARDS
========================= */

.news-card img,
.overlay-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


img {
    transition: 0.4s ease;
}

img:hover {
    transform: scale(1.03);
}






/* =========================
   FOOTER BASE
========================= */

.footer-modern {
    background: #0d0d0d;
    color: #e0e0e0;
    border-top: 1px solid #222;
}

/* FORCE PERFECT 3-COLUMN LAYOUT */
.footer-modern .row {
    display: flex;
    flex-wrap: wrap;
}

/* EACH COLUMN */
.footer-modern .col-md-4 {
    flex: 1;
    min-width: 250px; /* prevents breaking on medium screens */
    padding: 10px 15px;
}

/* TITLE */
.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* TEXT */
.footer-text {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #c6d62c;
    transform: translateX(5px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 15px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .footer-modern .col-md-4 {
        flex: 100%;
        text-align: center;
    }
}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* PULSE ANIMATION */
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}



/* =========================
   CLEAN CAROUSEL FIX
========================= */

#carousel-1 .carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
    #carousel-1 .carousel-item img {
        height: 200px;
    }
}


footer a:hover {
    color: #c6d62c !important;
    transition: 0.3s;
}


/* FORCE HORIZONTAL FOOTER */
.footer-row {
    display: flex !important;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* EACH COLUMN */
.footer-col {
    flex: 1;
    min-width: 200px;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin: 6px 0;
}

/* TITLE */
.footer-col h5 {
    color: white;
    margin-bottom: 10px;
}

/* HOVER */
.footer-col a:hover {
    color: #c6d62c;
}

/* MOBILE STACK */
@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }
}


