
.navbar-nav .nav-link {
    color: #7A6331 !important; /* Default brown text */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #6E8C3A !important; /* Green tone from logo */
    background-color: transparent; /* no background change */
}

/* Underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #6E8C3A; /* Green underline */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

#con:hover{
    background: black !important;
    color: red !important;
    transition: .5s;
}

/* Navbar link styles */
.navbar-nav .nav-link {
    color: #7A6331; /* Brown tone */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover + Active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #4B3A1A; /* Dark earthy brown */
}

/* Underline effect */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #6E8C3A; /* Green accent */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Contact button colors */
#con {
    background-color: #6E8C3A;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
#con:hover {
    background-color: #7A6331;
    color: #fff;
}

.carousel-item img{
    height: 590px;
}

.products img {
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.products img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: #2b4d3f;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card i {
    transition: transform 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.2);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2b4d3f;
}

.service-card p {
    color: #555;
    font-size: 15px;
}

.why-choose-section {
    position: relative;
    background: url(/storage/slider/login6.jpg)
    center center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}


.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #f1f1f1;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
}

.choose-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    color: #2b4d3f;
    z-index: 1 !important;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.choose-card i {
    transition: transform 0.4s ease;
}

.choose-card:hover i {
    transform: scale(1.15);
}

.choose-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2b4d3f;
}

.choose-card p {
    color: #444;
    font-size: 15px;
}



.appointment-section {
    background: linear-gradient(
            rgba(43, 77, 63, 0.7),
            rgba(43, 77, 63, 0.7)
    ),
    url('/storage/getintouch.avif')
    center/cover no-repeat;
}

.appointment-form {
    background: #ffffff;
    border-radius: 15px;
}

.appointment-form label {
    font-weight: 500;
    color: #2b4d3f;
}

.appointment-form .form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.appointment-form .form-control:focus {
    border-color: #7ab197;
    box-shadow: 0 0 8px rgba(122, 177, 151, 0.4);
}

.btn-primary {
    background-color: #7ab197;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #5d9b7e;
}


.image-hover {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-hover img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
}

/* Hover Zoom Effect */
.image-hover:hover img {
    transform: scale(1.08);
}

/* Bottom Name Text */
.image-name {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(43, 77, 63, 0.8); /* soft green overlay */
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    border-radius: 0 0 15px 15px;
}

/* On Hover — Animate In */
.image-hover:hover .image-name {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

/* Optional subtle hover lift */
.image-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.image-hover {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-hover img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 15px;
}

.image-hover:hover img {
    transform: scale(1.08);
}

.image-name {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(43, 77, 63, 0.8);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    border-radius: 0 0 15px 15px;
}

.image-hover:hover .image-name {
    bottom: 0;
    opacity: 1;
    transform: translateY(0);
}

/* Text Styling */
.about-text {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* Read More Button */
.btn-readmore {
    background-color: #7ab197;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background-color: #5d9b7e;
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.about-img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}

#topBar {
    background: linear-gradient(90deg, #ff9800, #ffb300);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}


@media (max-width: 768px) {
    .about-img {
        height: auto;
    }
    .about-text {
        font-size: 15px;
    }

    #topBar {
        text-align: center;
        font-size: 13px;
        padding: 10px 5px;
    }
    #topBar .col-12 {
        margin-bottom: 5px;
    }
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}
