/* Navbar styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: #004634;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Logo Animation */
.navbar-brand img {
    transition: transform 2s ease-in-out;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

/* Navigation links */
.nav-link {
    color: rgb(215, 212, 194);
    font-size: 15px;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: rgb(215, 212, 194);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(215, 212, 194);
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu {
    background-color: #004634;
    border: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(10px);
    opacity: 0;
}

.dropdown-item {
    color: rgb(215, 212, 194);
    transition: color 0.3s ease-in-out;
}

.dropdown-item:hover {
    color: rgb(215, 212, 194);
    background-color: transparent;
}

/* Button styling */
.btn {
    color: rgb(6, 6, 77);
    background-color: rgb(215, 212, 194);
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn:hover {
    background-color: rgb(215, 212, 194);
    color: white;
}

/* Navbar toggler (for mobile) */
.navbar-toggler {
    background-color: #e1d39b;
    border: none;
}
/* +++++++++++++++ */

#con1{
    background-color: #EDEBDF;
    height: 230px;
    width: 100%;
    border-radius: 0px 0px 100px 100px;
}
#con1 h1{
    color: #004634;
    text-align: center;
    padding-top: 150px;
}

#con2{
    background-color: #F4F1F1;
    height: 350px;
    width: 100%;
    border-radius: 100px 100px 0px 0px;
}
#con2 h3{
    color: #004634;
    text-align: center;
    padding-top: 30px;
}

#img1 img{
    /* border-radius:80px; */
    margin-top: 10px;
}

#con3{
    margin-top: 25px;
    padding-top: 30px;
    border-radius: 40px;
    
}
#con3 h3{
    color: #004634;
}
#con3 p{
    padding-bottom: 50px;
}


/* ++++++++++ */
.why-choose {
    padding: 60px 0;
}

.card {
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 150px; /* Set a more reasonable height for the cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

#clr1 {
    background-color: #EDEBDF; /* Light beige color */
}

#clr2 {
    background-color: #F4F1F1; /* Soft off-white color */
}

.card-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #004634;
}

.card-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive font size adjustments for smaller screens */
@media (max-width: 767px) {
    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}



/* =========== */

/* +++++++++ */

.footer {
    background-color: #004634;
    color: white;
    padding: 40px 0;
    font-family: Arial, sans-serif;
}

.footer h5 {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer a {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover {
    color: #fff;
}

.footer .social-icons a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: #e6e6e6;
}

.footer .divider {
    border-top: 1px solid #e6e6e6;
    margin: 20px 0;
}

.footer .copyright {
    font-size: 0.9rem;
    color: #e6e6e6;
}
