/* Define Variables */
:root {
    --primary-color: #00A300;
    --secondary-color: #ccded1;
    --text-color: #000;
    --bg-color: #ffffff;
    --font-family: 'Montserrat', sans-serif;
}

*{
    font-family: var(--font-family);
}

body {
    background: var(--bg-color);
}


/* Navbar */
.navbar{
    background-color: var(--secondary-color);
}
.navbar .getstarted {
    background: #106eea;
    margin-left: 30px;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    line-height: 2.3;
}
.navbar-nav .nav-link {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--secondary-color);
    transition: all 0.4s ease;
}
.nav-item:hover .dropdown-menu {
    display: block;
}
.dropdown-item {
    color: var(--text-color);
    transition: all 0.4s ease;
}
.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}



/* Carousel */
.carousel-item {
    min-height: 120px;
}
.carousel-caption {
    z-index: 2;
    bottom: 25px;
}
.carousel-caption h5 {
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 25px;
}
.carousel-caption p {
    width: 60%;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
}
.carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 17px;
    }
    .carousel-caption p {
        font-size: 12px;
        width: 100%;
        line-height: 1.6;
    }
}

/* Buttons */
button,
.buttons {
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.buttons:hover {
    background: #009000;
}

/* Gallery */
.gallery {
    background: #eee;
    padding-bottom: 100px;
}
.gallery .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
    list-style: none;
}
.gallery .buttons {
    height: 40px;
    width: 140px;
    background: #fff;
    color: #666;
    font-size: 20px;
    line-height: 40px;
    margin: 20px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.gallery .buttons.active {
    background: var(--primary-color);
    color: #fff;
}
.gallery .image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.gallery .image {
    height: 250px;
    width: 350px;
    overflow: hidden;
    border: 15px solid #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    margin: 20px;
}
.gallery .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery .image:hover img {
    transform: scale(1.4);
}
.title,
.about-story,
.about-vision,
.about-mission,
.about-core-values,
.why,
.team,
.contact-us{
    color: var(--primary-color);
    font-weight: bold;
}
.caro-text{
    font-size: 40px;
}

.icons{
    color:yellow;
}

/* Team */
.team-area {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.box {
    position: relative;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    transition: transform 0.3s ease;
}
.box:hover {
    transform: scale(1.05);
}
.box img {
    height: 400px;
    width: 100%; /* Very narrow */
    object-fit: cover; 
    border-radius: 10px;
    transition: transform 0.5s ease;
}
.box:hover figcaption {
    transform: translateY(0);
}
figcaption {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 20px;
    text-align: center;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.5s ease;
} 

/* Service Section */
.service-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.service-img {
    max-width: 80%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.service-description p {
    font-size: 20px;
}
.text-hub, 
.title {
    color: var(--primary-color);
}
.service-title {
    font-size: 30px;
}
.service-description h4 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
}
.service-description.active {
    opacity: 1;
}
.about {
    margin-top: 0;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .team-area {
        flex-direction: column;
    }
    .box h2 {
        font-size: 20px;
    }
    .caro-text{
        font-size: 14px;
        text-align: center;
    }
}


/*Contact*/

.contact-icon, .btn {
    background-color:#ccded1;
}

/* Footer Styling */
.footer {
    background-color: #222; /* Dark background */
    color: #fff;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #f8f9fa;
    padding-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #ffc107; /* Yellow highlight */
}

.footer-text {
    color: #ccc;
    font-size: 14px;
}

.social-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out;
}

.social-links i {
    margin-right: 10px;
    font-size: 18px;
}

.social-links a:hover {
    color: #ffc107;
}

.copyright {
    background-color: #111;
    padding: 10px 0;
    font-size: 12px;
    color: #bbb;
}
.inline-text {
    display: inline; 
    margin-right: 50px; /* Adjust spacing */
}

/* News Page */
.card-text{
    color: var(--primary_color);
}