﻿/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header & Top Bar */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}
.company-logo-name {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
}
.company-logo-name img {
    height: 40px;
    margin-right: 15px;
}
.social-icons a {
    color: #2e7d32;
    font-size: 20px;
    margin-left: 15px;
    transition: 0.3s;
}
.social-icons a:hover {
    color: #ff8f00;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.nav-link {
    font-weight: 600;
    color: #333333 !important;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0 5px;
}
.nav-link:hover, .nav-link.active {
    color: #2e7d32 !important;
}

/* Sliders */
.hero-slider img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

/* Section Titles */
.section-title {
    color: #2e7d32;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Custom Tabs */
.nav-tabs .nav-link {
    color: #2e7d32;
    font-weight: 600;
    border: 1px solid #dee2e6;
}
.nav-tabs .nav-link.active {
    background-color: #2e7d32;
    color: #ffffff !important;
    border-color: #2e7d32;
}
.tab-content {
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 20px;
    background: #fafafa;
}

/* Cards & Placecards */
.placecard {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.placecard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.placecard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}
.placecard-title {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
    text-decoration: none;
}

/* Counters */
.counter-section {
    background-color: #2e7d32;
    color: #fff;
    padding: 40px 0;
}
.counter-box {
    text-align: center;
    padding: 20px;
}
.counter-box h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.counter-box p {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Logos Marquee */
.logo-marquee img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin: 0 20px;
    filter: grayscale(100%);
    transition: 0.3s;
}
.logo-marquee img:hover {
    filter: grayscale(0%);
}

/* Testimonial Cards */
.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    border: 1px solid #eee;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #0059C9;
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}
footer a {
    color: #cccccc;
    text-decoration: none;
    transition: 0.3s;
}
footer a:hover {
    color: #2e7d32;
}
footer img {
    height: 60px;
    margin-bottom: 15px;
}