:root {
    --primary-yellow: #e6c50b;
    --primary-green: #036103;
    --dark: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--dark) !important;
    font-weight: bold;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--dark) !important;
    margin: 0 10px;
    padding: 6px 18px !important;
    border: 2px solid var(--primary-yellow);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-link:hover, .nav-link.active {
    background-color: var(--primary-yellow);
    color: var(--dark) !important;
    transform: translateY(-2px);
}

/* Carousel Styles */
.carousel-item {
    height: 500px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.carousel-content h1 {
    color: var(--primary-yellow);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 1.3rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.btn-custom {
    background-color: var(--primary-green);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.btn-custom:hover {
    background-color: var(--primary-yellow);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-yellow);
}

.service-box {
background: white;
border-radius: 15px;
padding: 35px 25px;
transition: all 0.3s ease;
border: 1px solid rgba(0,0,0,0.03);
box-shadow: 0 3px 5px rgba(0,0,0,0.08);
height: 100%;
}



.service-box:hover {
transform: translateY(-5px);
box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green)    ;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-green);
    margin-right: 10px;
}

/* Stats Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.stats-card {
    background: white;
    border: 2px solid var(--primary-yellow);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stats-icon i {
    color: white;
    font-size: 2rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}
.section-button {
color: var(--dark);
padding: 8px 20px;
border: 2px solid white;
background-color: var(--primary-yellow);
border-radius: 25px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
margin-top: 20px;
font-weight: 600;
}

.section-button:hover {
background-color: var(--primary-yellow);
color: var(--dark);
transform: translateY(-2px);
}

.stats-title {
position: relative;
display: inline-block;
margin-bottom: 50px;
}

.stats-title::after {
content: '';
position: absolute;
left: 50%;
bottom: -15px;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--primary-yellow);
}

.stats-box {
background: white;
padding: 25px;
border-radius: 15px;
transition: all 0.3s ease;
border: 1px solid rgba(0,0,0,0.03);
box-shadow: 0 3px 5px rgba(0,0,0,0.08);
height: 100%;
}

.stats-box:hover {
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Expertise box shadow */
.expertise-box {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 3px 5px rgba(0,0,0,0.08);
height: 100%;
margin-top: 30px;
}

/* Footer */
footer {
    background-color: var(--primary-green);
    color: white;
    padding: 20px 0 5px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 991px) {
    .nav-link {
        margin: 10px 0;
        text-align: center;
    }
    
    .carousel-content h1 {
        font-size: 2.5rem;
    }
}

.media-section {
padding: 80px 0;
background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.gallery-container {
margin-top: 40px;
}

/* Gallery item shadow */
.gallery-item {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 3px 5px rgba(0,0,0,0.08);
transition: all 0.3s ease;
margin-bottom: 25px;
}

.gallery-item:hover {
transform: translateY(-10px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image {
width: 100%;
height: 250px;
object-fit: cover;
}

.gallery-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}

.gallery-icon {
color: white;
font-size: 2.5rem;
transform: scale(0);
transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
transform: scale(1);
}

.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 ratio */
height: 0;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}

.media-title {
position: relative;
display: inline-block;
margin-bottom: 50px;
}

.media-title::after {
content: '';
position: absolute;
left: 50%;
bottom: -15px;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--primary-yellow);
}

.media-tabs {
margin-bottom: 40px;
}

.media-tab-button {
color: var(--dark);
padding: 10px 25px;
border: 2px solid var(--primary-yellow);
border-radius: 25px;
transition: all 0.3s ease;
background: transparent;
margin: 0 10px;
}

.media-tab-button.active,
.media-tab-button:hover {
background-color: var(--primary-yellow);
color: var(--dark);
transform: translateY(-2px);
}

.modal-content {
background: none;
border: none;
}

.modal-header {
border: none;
}

.modal-header .close {
color: white;
opacity: 1;
text-shadow: none;
}