/********** Template CSS **********/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-dark,
.btn.btn-outline-dark:hover {
    color: var(--bs-white);
    font-weight: 500;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    border-color: var(--bs-dark);
}

.btn.btn-dark:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin: 0 12px;
    padding: 10px 0;
    color: var(--bs-secondery);
    font-size: 17px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #707825;
}

.navbar .navbar-nav .dropdown-item:hover,
.navbar .navbar-nav .dropdown-item.active {
    background:#707825;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-light {
    font-weight: 500;
    color: var(--bs-secondery);
}

.navbar .btn-light:hover {
    color: var(--bs-white);
    background: #707825;
}


/*** Hero ***/
.hero-header {
    background: url(../img/hero.jpg) top right no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background:#707825;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #707825;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background:#707825;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.page-header {
    background: url(../img/hero.jpg) center right no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-secondery)
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--bs-primary);
}


/*** Appointment ***/
@media (min-width: 992px) {
    .container.appointment {
        max-width: 100% !important;
    }

    .container.appointment .appointment-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.appointment .appointment-form {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.appointment .appointment-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.appointment .appointment-form  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.appointment .appointment-text {
    background: linear-gradient(rgba(112,120,37,.95),
    rgba(112,120,37,.95)),
    url(../img/service-4.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-form {
    background: linear-gradient(rgba(238,206,0,.90),
    rgba(238,206,0,.90)),
    url(../img/service-1.jpg) center center no-repeat;
    background-size: cover;
}

.container.appointment .appointment-text .h-100,
.container.appointment .appointment-form .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item .service-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .service-icon img {
    max-width: 60px;
    max-height: 60px;
}

.service-item .service-text {
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.service-item .service-img {
    transition: .5s;
}

.service-item:hover .service-img {
    transform: scale(1.2) rotate(7deg);
}

/*** Team ***/

.team .row {
    justify-content: center;
}

.team .team-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    height: 100%;
}


.team .team-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team .team-text {
    padding: 20px;
    min-height: 120px;
}

.team .team-text h4 {
    font-size: 22px;
    font-weight: 700;
}

.team .team-text span {
    font-size: 15px;
    color: #666;
}
/* Card Design */
.team .team-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: all 0.4s ease;
    position: relative;
}

.team .team-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.team .team-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team .team-item:hover img {
    transform: scale(1.08);
}

/* Content */
.team .team-text {
    padding: 25px;
    text-align: center;
    height: auto;
}

.team .team-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team .team-text span {
    color: #777;
    font-size: 15px;
}

/* Remove old slide effect */
.team .team-text-overflow {
    position: static;
    opacity: 1;
    background: transparent;
    padding: 0 25px 25px;
    text-align: center;
}

/* Social Icons */
.team .btn-square {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f3f3f3;
    color: #707825;
    transition: 0.3s;
}

.team .btn-square:hover {
    background: #707825;
    color: #fff;
    transform: translateY(-3px);
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 35px;
    background: linear-gradient(135deg, #707825, #707825);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #FDBA1C, #ffcf57);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(253,186,28,0.4);
}
/*** Testimonial ***/
/* Main Testimonial Image */

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #6B7A2E;
}


/* Center Testimonial */

.testimonial-carousel {
    text-align: center;
}


.testimonial-carousel .testimonial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* Review Box */

.testimonial-item {
    max-width: 700px;
    margin: auto;
    padding: 35px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* Customer Name */

.testimonial-item h5 {
    color: #6B7A2E;
    margin-top: 15px;
}


/* Review Text */

.testimonial-item p {
    color: #555;
    line-height: 1.7;
}


/* Navigation Buttons */

.testimonial-carousel .owl-nav {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 10px;
}


.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #FFFFFF;
    background: #6B7A2E;

    border-radius: 50%;
    font-size: 22px;

    transition: .4s ease;
}


/* Button Hover */

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {

    background: #FDBA1C;
    color: #000000;

    transform: translateY(-5px);
}
.testimonial-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.testimonial-item img {
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid #6B7A2E;
}


.testimonial-item h4 {
    color: #6B7A2E;
    margin-top: 15px;
}


.testimonial-item span {
    color: #FDBA1C;
    font-weight: 600;
}


.testimonial-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}


/* Center Carousel Buttons */

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}


.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6B7A2E !important;
    color: white !important;
}


.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    background: #FDBA1C !important;
    color: #000 !important;
}

/*** Footer ***/
.footer {
    color: rgba(256, 256, 256, .6);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(256, 256, 256, .6);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(256, 256, 256, .6);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: rgba(256, 256, 256, .6);
    border: 1px solid rgba(256, 256, 256, .6);
}

.footer .btn.btn-square:hover {
    color: var(--bs-white);
    border-color: var(--bs-primary);
    background: var(--bs-primary);
}

.footer .form-control {
    color: var(--bs-light);
    border-color: rgba(256, 256, 256, .6);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}
/* ==========================
   OLIVE RESTAURANT THEME
========================== */

.bg-primary,
.btn-primary,
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.btn-play,
.btn-play:before,
.btn-play:after{
    background:#707825 !important;
    border-color:#707825 !important;
}

.text-primary{
    color:#707825 !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active{
    color:#EECE00 !important;
}

.btn-primary:hover{
    background:#EECE00 !important;
    border-color:#EECE00 !important;
    color:#000 !important;
}

.footer{
    background:#707825 !important;
}

.footer .btn.btn-square:hover{
    background:#EECE00 !important;
    border-color:#EECE00 !important;
    color:#000 !important;
}

.footer .copyright{
    background:#5E651D;
}

.back-to-top{
    background:#EECE00 !important;
    color:#000 !important;
}

.service-icon{
    background:#EECE00 !important;
}

.team .team-text-overflow{
    background:#707825 !important;
    color:#fff;
}

.hero-header{
    background:
    url(../img/hero.jpg) center center no-repeat !important;
    background-size:cover !important;
}

#spinner .spinner-grow{
    color:#707825 !important;
}

/** dr Saptak **/
.doctor-page{
background:#FAF8EF;
}

.doctor-hero{

padding:100px 0;

background:
linear-gradient(120deg,#fefff2,#f2f5dd);

}

.doctor-image-box{

position:relative;

}

.doctor-image-box img{

width:100%;
height:550px;

object-fit:cover;

border-radius:40px;

box-shadow:0 25px 50px rgba(0,0,0,.3);

}

.experience-box{

position:absolute;
bottom:30px;
right:-30px;
background:white;
padding:25px 35px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px #0003;

}

.experience-box h2{
color:#707825;
font-size:45px;
margin:0;

}

.experience-box span{
color:#555;
}


.doctor-info{

color:  #707825;
padding-left:40px;

}


.tag{
background:#C8A951;
padding:8px 20px;
border-radius:30px;
font-size:14px;

}

.doctor-info h1{
font-size:60px;
font-weight:800;
text-transform:uppercase;
}

.doctor-info h3{
font-size:28px;

}

.doctor-info button{
background:white;
color:#707825;
border:none;
padding:15px 35px;
border-radius:50px;
font-weight:600;

}

.about-box{
background:white;
padding:50px;
border-radius:30px;
box-shadow:0 15px 40px #0001;

}

.services-section{
    background:#faf8ef;
}

.service-tag{
    display:inline-block;
    background:#707825;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
}

.services-section h2{
    color:#707825;
    font-weight:700;
}

.services-main-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:6px solid #707825;
}

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

.service-list li{
    position:relative;
    padding:0 0 20px 45px;
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    color:#555;
    line-height:1.8;
}

.service-list li:last-child{
    border:none;
}

.service-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#707825;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}
/* ================================= */
/* PREMIUM ANIMATIONS */
/* ================================= */

/* Hero Section Animation */
.doctor-hero{
    animation: heroFade 1.5s ease;
}

@keyframes heroFade{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.doctor-image-box:hover img{
    transform:scale(1.05);
}

/* Experience Box Animation */
.experience-box{
    animation:slideRight 1.2s ease;
    transition:.4s;
}

.experience-box:hover{
    transform:translateY(-10px);
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Doctor Info Left To Right */
.doctor-info{
    animation:slideLeft 1.3s ease;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Name Animation */
.doctor-info h1{
    position:relative;
    transition:.4s;
}

.doctor-info h1:hover{
    letter-spacing:3px;
    color:#C8A951;
}

/* Tag Animation */
.tag{
    transition:.4s;
}

.tag:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(200,169,81,.4);
}

/* Button Animation */
.doctor-info button{
    transition:.4s;
}

.doctor-info button:hover{
    background:#707825;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 25px rgba(112,120,37,.3);
}

/* About Box Animation */
.about-box{
    transition:.5s;
    animation:zoomBox 1.2s ease;
}

.about-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

@keyframes zoomBox{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Services Main Card */
.services-main-card{
    transition:.5s;
    animation:fadeUp 1.2s ease;
}

.services-main-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/* Service List Animation */
.service-list li{
    transition:.4s;
}

.service-list li:hover{
    padding-left:55px;
    color:#707825;
}

/* Tick Animation */
.service-list li::before{
    transition:.4s;
}

.service-list li:hover::before{
    transform:rotate(360deg) scale(1.15);
    background:#C8A951;
}


/* Fade Up Animation */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/** Dr manan **/
.services-section{
    background:#faf8ef;
}

.service-tag{
    display:inline-block;
    background:#707825;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
}

.services-section h2{
    color:#707825;
    font-weight:700;
}

.services-main-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:6px solid #707825;
}

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

.service-list li{
    position:relative;
    padding:0 0 20px 45px;
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    color:#555;
    line-height:1.8;
}

.service-list li:last-child{
    border:none;
}

.service-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:30px;
    height:30px;
    border-radius:50%;
    background:#707825;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.child-care{
    background:#707825;
    color:#fff;
    padding:40px;
    border-radius:25px;
}

.child-care h2{
    color:#fff;
}

.about-box{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* ==========================
   GLOBAL TEXT COLOR THEME
   #707825
========================== */

/* All headings */
h1, h2, h3, h4, h5, h6 {
    color:#707825;
}

/* Normal text */
p,
span,
label,
li {
    color:#ffffff;
}

/* Navbar text */
.navbar .navbar-nav .nav-link {
    color:#707825;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color:#EECE00 !important;
}

/* Breadcrumb */
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color:#707825;
}

/* Buttons text */
.btn-primary,
.btn-dark,
.btn-outline-primary {
    color:#fff;
}

/* Footer text */
.footer,
.footer .btn.btn-link,
.footer .copyright {
    color:#707825;
}

/* Service section text */
.service-list li {
    color:#707825;
}

/* Team text */
.team .team-text h4 {
    color:#707825;
}

.team .team-text span {
    color:#707825;
}

/* Testimonial text */
.testimonial-item h4,
.testimonial-item h5 {
    color:#707825;
}

.testimonial-item p {
    color:#707825;
}

/* Doctor page text */
.doctor-info,
.doctor-info h1,
.doctor-info h3 {
    color:#707825;
}

.experience-box h2 {
    color:#707825;
}

.experience-box span {
    color:#707825;
}

/* About section */
.about-box p {
    color:#707825;
}

/* Service cards */
.services-section h2 {
    color:#707825;
}

.service-list li {
    color:#707825;
}

/* Links */
a {
    color:#707825;
}

a:hover {
    color:#EECE00;
}
/* ==========================
   FOOTER WHITE TEXT FIX
========================== */

.footer,
.footer p,
.footer span,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer a,
.footer .btn.btn-link,
.footer .copyright,
.footer .copyright a {
    color:#ffffff !important;
}

/* Footer arrow icon */
.footer .btn.btn-link::before {
    color:#ffffff !important;
}

/* Footer hover */
.footer a:hover,
.footer .btn.btn-link:hover,
.footer .copyright a:hover {
    color:#EECE00 !important;
}

/* Footer social buttons */
.footer .btn.btn-square {
    color:#ffffff !important;
    border-color:#ffffff !important;
}
/* Topbar Olive Theme */
.topbar-olive {
    background: #707825 !important;
    color: #fff;
}

.topbar-olive h6,
.topbar-olive span {
    color: #fff;
}

.topbar-olive i {
    color: #fff !important;
}

.topbar-center {
    background: #ffffff;
}

.border-inner {
    border-left: 2px solid #707825;
    border-right: 2px solid #707825;
}
.olive-btn{
    background: #707825;
    border: 2px solid #707825;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(112, 120, 37, 0.25);
}

.olive-btn:hover{
    background: #EECE00;
    border-color: #EECE00;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(112, 120, 37, 0.4);
}

.olive-btn i{
    transition: transform 0.3s ease;
}

.olive-btn:hover i{
    transform: translateX(5px);
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.4s;
    border:2px solid rgba(212,175,55,.2);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.value-card i{
    font-size:45px;
    color:#556B2F;
    margin-bottom:20px;
}

.value-card h5{
    color:#556B2F;
    font-weight:700;
}

.value-card:hover{
    transform:translateY(-10px);
    border-color:#D4AF37;
    box-shadow:0 15px 35px rgba(212,175,55,.35);
}
.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.gallery img{
    width:100%;
    height:280px;
    object-fit:contain;   /* shows full image */
    background:#ffffff;
    border-radius:20px;
    border:3px solid #D4AF37;
    transition:.5s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    padding:10px;
}

.gallery img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 40px rgba(85,107,47,.4);
}


@media(max-width:992px){
    .gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .gallery{
        grid-template-columns:1fr;
    }

    .gallery img{
        height:250px;
    }
}

/* About Us Section All Text Olive Green */
.container-fluid[style*="background:#f8f9f4"] p,
.container-fluid[style*="background:#f8f9f4"] span,
.container-fluid[style*="background:#f8f9f4"] li {
    color: #556B2F !important;
}

/* About section strong text */
.container-fluid[style*="background:#f8f9f4"] strong {
    color: #556B2F !important;
}

/* Mission Vision Text */
.container-fluid[style*="background:#f8f9f4"] .shadow p {
    color: #556B2F !important;
}

/* Core Values Text */
.value-card p,
.value-card h5 {
    color: #556B2F !important;
}

/* Olive Green Topbar */
.topbar-olive {
    background-color: #6b7d2a; /* Olive Green */
    color: white;
}

/* Small Height */
.small-topbar {
    padding: 10px 0 !important;
}

.small-topbar h6 {
    color: white;
    font-size: 14px;
}

.small-topbar span {
    color: white;
    font-size: 13px;
}

.small-topbar i {
    color: white;
}
.topbar-olive {
    background-color: #6b7d2a; /* Olive Green */
    color: white;
}

.topbar-olive i {
    font-size: 20px !important;
}

.topbar-olive h6 {
    font-size: 13px;
    margin-bottom: 0;
}

.topbar-olive span {
    font-size: 13px;
}

.topbar-center img {
    max-height: 60px;
}

.service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.overflow-hidden {
    margin-top: auto;
}
.service-img {
    width: 100%;
    height: 250px; /* Change height as needed */
    object-fit: cover;
    display: block;
}

/* Big About Image */

.about_big_img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
}


/* About Content */

.about_content{
    padding:40px;
    background:#ffffff;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}


.about_content h2{
    font-size:38px;
    font-weight:700;
    margin-bottom:25px;
}


.about_content p{
    font-size:17px;
    line-height:1.8;
    color:#555;
}


/* Mobile */

@media(max-width:768px){

    .about_big_img{
        height:350px;
    }

    .about_content{
        padding:25px;
    }

    .about_content h2{
        font-size:30px;
    }

}

/* Testimonial Stars */

.testimonial-stars{
    color:#EECE00;
    font-size:28px;
    letter-spacing:5px;
    margin-bottom:20px;
    animation: starGlow 2s infinite ease-in-out;
}


/* Review Section */

.review-section{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    color:#556B2F;
    font-weight:700;
}

.section-title p{
    color:#666;
}

/* Review Grid */

.review-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Review Card */

.review-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.review-card:hover{
    transform:translateY(-10px);
}

.review-card img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #556B2F;
    margin-bottom:15px;
}

.stars{
    color:#FFB617;
    font-size:22px;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

.review-card h4{
    color:#556B2F;
    font-size:20px;
    margin:0;
}

/* Mobile */

@media(max-width:991px){
    .review-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .review-container{
        grid-template-columns:1fr;
    }
}

.review-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:20px;
    text-align:center;
    transition:0.3s;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-card img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:10px;
}

.stars{
    color:#FFB617;
    font-size:18px;
    margin-bottom:10px;
}

.review-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:10px;
    font-weight:400;
}

.review-card h4{
    font-size:16px;
    font-weight:500;
    color:#0D4F5A;
}

.hero-header{
    background-size:cover;
    animation:zoomHero 15s infinite alternate;
}

@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.05);
    }
}

.hero-header h1{
    animation:slideUp 1.5s ease;
}

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.btn{
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(112,120,37,.35);
}
img{
    transition:all .5s ease;
}

.overflow-hidden:hover img{
    transform:scale(1.12);
}
.bg-light{
    transition:.4s;
}

.bg-light:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}
.service-item{
    transition:.5s;
    border-radius:20px;
}

.service-item:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-item:hover .service-img{
    transform:scale(1.15);
}
.team-item{
    overflow:hidden;
    transition:.5s;
}

.team-item:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.team-item img{
    transition:.5s;
}

.team-item:hover img{
    transform:scale(1.1);
}
.team-item{
    overflow:hidden;
    transition:.5s;
}

.team-item:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.team-item img{
    transition:.5s;
}

.team-item:hover img{
    transform:scale(1.1);
}
.footer{
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-100px;
    left:-100px;
    animation:moveCircle 8s infinite alternate;
}

@keyframes moveCircle{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(100px);
    }
}
.display-5{
    position:relative;
}

.display-5::after{
    content:'';
    display:block;
    width:0;
    height:4px;
    background:#707825;
    margin:auto;
    transition:.6s;
}

.display-5:hover::after{
    width:120px;
}

/* =========================
   TOPBAR DESIGN
========================= */

.topbar-box{

    background:#FFF7E6;   /* light cream */
    padding:25px 10px;
    transition:0.3s;

}


.topbar-box:hover{

    background:#EECE00;

}


.topbar-link{

    text-decoration:none;
    color:#707825;

}


.topbar-link h6{

    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:18px;
    font-weight:700;
    color:#707825;

}


.topbar-link span{

    font-size:15px;
    color:#555;

}



/* ICON */

.topbar-link i{

    color:#707825;
    transition:0.3s;

}


.topbar-box:hover i{

    transform:scale(1.15);
    color:white;

}



/* LOGO AREA */

.logo-area{

    background:white;
    padding:10px 0;

}


.olive-logo{

    width:180px;
    height:150px;
    object-fit:contain;

    transition:0.3s;

}


.olive-logo:hover{

    transform:scale(1.08);

}



/* MOBILE FIX */

@media(max-width:991px){

    .olive-logo{

        width:130px;
        height:auto;

    }

}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: #707825;   /* Olive color */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background: #EECE00;
    color: #000;
    transform: translateY(-5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}