:root {
    --bs-primary: #0a6b32;
    --bs-secondary: #d4af37;
    --bs-dark: #1e5631; /* Made slightly lighter as requested */
    --bs-light: #f2fbf5;
}

/* Override Bootstrap defaults to ensure no blue is left */
.bg-primary { background-color: var(--bs-primary) !important; }
.text-primary { color: var(--bs-primary) !important; }
.bg-secondary { background-color: var(--bs-secondary) !important; }
.text-secondary { color: var(--bs-secondary) !important; }

/* Golden touches on buttons */
.btn-primary { 
    background-color: var(--bs-primary) !important; 
    border-color: var(--bs-primary) !important; 
}
.btn-primary:hover { 
    background-color: var(--bs-secondary) !important; 
    border-color: var(--bs-secondary) !important; 
    color: var(--bs-dark) !important; 
}

/* Secondary Button (Golden to Green) */
.btn-secondary {
    background-color: var(--bs-secondary) !important; 
    border-color: var(--bs-secondary) !important;
    color: var(--bs-dark) !important;
}
.btn-secondary:hover {
    background-color: var(--bs-primary) !important; 
    border-color: var(--bs-primary) !important;
    color: white !important;
}

.bg-dark { background-color: var(--bs-dark) !important; }
.text-dark { color: var(--bs-dark) !important; }
.border-primary { border-color: var(--bs-primary) !important; }

/* Subheadings with golden bottom border */
.text-uppercase.fw-bold[style*="border-bottom"] {
    border-bottom-color: var(--bs-secondary) !important;
    color: var(--bs-secondary) !important;
}

/* Navbar Links Hover - Golden */
.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-secondary) !important;
}

/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;

}


.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-link {
    padding: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000 !important;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
    
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-secondary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 1000;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
.dropdown .dropdown-menu .dropdown-item {
    font-weight: 600; 
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-secondary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10, 107, 50, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px 0 !important;
    transition: 0.5s;
}

.bg-breadcrumb .container {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.bg-breadcrumb h4.display-4 {
    font-size: 2.2rem !important;
    margin-bottom: 10px !important;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(10, 107, 50, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-dark);
    background: var(--bs-secondary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-secondary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(10, 107, 50, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: #ffffff;
    border-top: 5px solid var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-secondary);
    letter-spacing: 1px;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-dark) !important;
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-dark);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-dark);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, .08);
}
/*** copyright end ***/

/* Process/Steps Section Styles */
.process-section {
    padding: 80px 0;
    background-color: #d4edda;
}

.process-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid #f1f1f1;
}

.process-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 107, 50, 0.1);
    border-color: var(--bs-primary);
}

.process-box .icon-box {
    width: 60px;
    height: 60px;
    background: #e6f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(10, 107, 50, 0.1);
    transition: background 0.3s, color 0.3s;
}

.process-box:hover .icon-box {
    background: var(--bs-primary);
    color: #ffffff;
}

.process-box .content-box {
    flex-grow: 1;
    margin: 0 20px;
    text-align: left;
}

.process-box .content-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1a2b49;
}

.process-box .step-number {
    font-size: 32px;
    font-weight: 800;
    color: #e2ecf6;
    flex-shrink: 0;
    transition: color 0.3s;
}

.process-box:hover .step-number {
    color: var(--bs-primary);
    opacity: 0.3;
}

/* Offer Cards Section Styles */
.offer-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 107, 50, 0.1);
    border-color: var(--bs-primary);
}

.offer-card .offer-img {
    position: relative;
    height: 220px;
    overflow: visible;
}

.offer-card .offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card .offer-icon {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background: var(--bs-primary);
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: background 0.3s, transform 0.3s;
}

.offer-card:hover .offer-icon {
    background: #333333;
    transform: translateX(-50%) rotate(360deg);
}

.offer-card .offer-content {
    padding: 40px 24px 30px 24px;
}

.offer-card .offer-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #06401d;
    margin-bottom: 15px;
}

.offer-card .offer-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 72px;
    overflow: hidden;
}

.offer-card .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--bs-primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(10, 107, 50, 0.2);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.offer-card .read-more-btn:hover {
    background: var(--bs-dark);
    box-shadow: 0 6px 20px rgba(10, 107, 50, 0.3);
    color: #ffffff;
}

/* About Us Layout Styles */
.standout-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.standout-content h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.standout-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #06401d;
    margin-bottom: 25px;
}

.standout-text p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
}

/* Core Purpose Section */
.purpose-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.purpose-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #f1f1f1;
    height: 100%;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 107, 50, 0.08);
}

.purpose-icon-container {
    width: 64px;
    height: 64px;
    background: var(--bs-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 12px rgba(10, 107, 50, 0.2);
    transition: background 0.3s;
}

.purpose-card:hover .purpose-icon-container {
    background: var(--bs-dark);
}

.purpose-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #06401d;
}

.purpose-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Info Bar Section */
.info-bar-section {
    background-color: #ffffff;
    padding: 20px 0 60px 0;
}

.info-bar-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f1f1;
    transition: transform 0.3s, border-color 0.3s;
    height: 100%;
}

.info-bar-box:hover {
    transform: translateY(-3px);
    border-color: #ff6600;
}

.info-bar-icon {
    width: 50px;
    height: 50px;
    background: #ff6600;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.15);
}

.info-bar-content {
    text-align: left;
}

.info-bar-content h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #06401d;
}

.info-bar-content p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Details Page Image Container Styles */
.details-image-container {
    height: 300px;
    width: 100%;
}
.details-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Advantages Section Styles */
.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f1f1;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 107, 50, 0.1);
    border-color: var(--bs-primary);
}

.advantage-icon {
    color: var(--bs-primary);
    font-size: 40px;
    display: inline-block;
    transition: transform 0.3s;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-title {
    font-size: 16px;
    font-weight: 700;
    color: #06401d;
    margin: 0;
}

/* Tips Section Styles */
.tip-item {
    display: flex;
    align-items: start;
    gap: 20px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 107, 50, 0.08);
    border-color: #e2ecf6;
}

.tip-icon-box {
    width: 54px;
    height: 54px;
    background: var(--bs-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 107, 50, 0.2);
    transition: background-color 0.3s;
}

.tip-item:hover .tip-icon-box {
    background-color: var(--bs-dark);
}

.tip-content {
    text-align: left;
}

.tip-number {
    font-size: 22px;
    font-weight: 800;
    color: #06401d;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 12px;
    line-height: 1;
}

.tip-number::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--bs-primary);
}

.tip-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Partners Carousel Section Styles */
.partner-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    border: 1px solid #f1f1f1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 107, 50, 0.08);
    border-color: var(--bs-primary);
}

.partners-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.partners-carousel .owl-nav .owl-prev,
.partners-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border: 1px solid #e2ecf6;
}

.partners-carousel .owl-nav .owl-prev:hover,
.partners-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: #ffffff;
    box-shadow: none;
}




