/********** Template CSS **********/
:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

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

.custom-heading {
    color: #ff8c00 !important;
}

.custom-paragraph {
    color: white !important;
}

.custom-subheading {
    color: #b3b0b0 !important;
}


/*** 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;
}

.rotate-loader {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: transparent;
}

.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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

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

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
/* Carousel caption styling */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(0 0 0 / 28%);
    /* Semi-transparent overlay */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: #000;
    /* fallback */
    border: 12px solid #000;
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Custom button style */
.btn-orange {
    background-color: #f96302;
    color: white;
    border: none;
}

.btn-orange:hover {
    background-color: #d35400;
    color: white;
}

.custom-heading {
    font-size: 2rem;
    font-weight: 600;
}

.custom-subheading {
    font-size: 1rem;
    color: #fff;
}

.custom-paragraph {
    font-size: 1.1rem;
    color: #eee;
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgb(0 0 0 / 70%)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header-contect {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgb(0 0 0 / 70%)), url(../img/contact.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-about {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgb(0 0 0 / 70%)), url(../img/PLANTOUTSIDE-header.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-infrastructure {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgb(0 0 0 / 70%)), url(../img/infra3.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-quality{
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(rgb(0 0 0 / 70%)), url(../img/q2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}

.btn-orange {
    background-color: #ff6f0f;
    border: 1px solid #ff6f0f;
    color: white;
    transition: background-color 0.3s ease;
}

.btn-orange:hover {
    background-color: #ffa73383;
    /* lighter orange */
    border-color: #ffa73383;
    color: white;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-btns {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    /* start hidden */
    animation-delay: 0.5s;
    /* optional delay */
}

/* Aboute Section **/
.faq-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.faq-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

/* .profile-box {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .profile-box:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        z-index: 1;
    } */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
}

.profile-img img {
    width: 100px;
    height: 100px;
    border: 3px solid #368596;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(252, 110, 15, 0.4);
}

/* Counter Section Styling */
.counter {
    font-size: 2rem;
    font-weight: bold;
}

.text-orange {
    color: #fc6e0f;
}

/* Optional responsive adjustment */
@media (max-width: 768px) {
    .counter {
        font-size: 1.5rem;
    }
}

/* Optional smooth border on image */
.rounded-4 {
    border-radius: 30px !important;
}

.custom-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
    padding-bottom: 10px;
}

.custom-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Orange Accent (Bottom and Right) */
.custom-img-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 95%;
    height: 95%;
    border-right: 8px solid #368596;
    border-bottom: 8px solid #368596;
    z-index: 1;
    border-radius: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-img-wrapper::after {
        width: 100%;
        height: 100%;
        border-right: 6px solid #368596;
        border-bottom: 6px solid #368596;
    }

    .custom-img-wrapper {
        padding-right: 6px;
        padding-bottom: 6px;
    }
}

/* Product section slider */

.zoom-img {
    transition: transform 0.3s ease;
}

.zoom-img:hover {
    transform: scale(1.05);
}

/* Strong shadow and hover effect on product box */
.service-item {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.service-item {
    min-height: 500px;
    /* Adjust as needed */
}


/* product section slider end */
.full-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-thumb {
    position: absolute;
    left: 0;
    top: 5px;
}

.section-body {
    position: relative;
    left: 15px;
    top: 0;
    display: inline-block;
}

.pill-icon {
    display: inline-block;
    /* background-color: #6c757d; Same as Bootstrap's 'bg-secondary' */
    /* padding: 8px 16px; */
    border-radius: 50px;
    /* pill shape */
    /* margin-bottom: 1rem; */
}

.pill-icon img {
    width: 43px;
    height: 52px;
    display: block;
    margin-left: 15px;
}

.rotate {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.slider {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.slide-track {
    display: flex;
    width: calc(100% * 5);
    /* 5 testimonials */
    animation: scroll 5s linear infinite;
}

/* .slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 1rem;
} */

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    20% {
        transform: translateX(-100%);
    }

    40% {
        transform: translateX(-200%);
    }

    60% {
        transform: translateX(-300%);
    }

    80% {
        transform: translateX(-400%);
    }

    100% {
        transform: translateX(-500%);
    }
}

.activeColor {
    color: #ff6f0f;
    /* bright orange */
}

/* Why choose us */

.list-style-circle {
    list-style: none;
    padding-left: 0;
}

.list-style-circle li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.list-style-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border: 2px solid orange;
    border-radius: 50%;
}

.fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s ease-out forwards;
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* why choose us end */


/** About section end */
/*** Causes ***/
.causes-item .progress {
    height: 5px;
    border-radius: 0;
    overflow: visible;
}

.causes-item .progress .progress-bar {
    position: relative;
    overflow: visible;
    width: 0px;
    border-radius: 0;
    transition: 5s;
}

.causes-item .progress .progress-bar span {
    position: absolute;
    top: -7px;
    right: 0;
    width: 40px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: var(--primary);
    color: #FFFFFF;
}

.causes-item .causes-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.causes-item:hover .causes-overlay {
    height: 100%;
    opacity: 1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
    background: rgb(0 0 0 / 63%);
}

.donate {
    position: relative;
    overflow: hidden;
}

.donate .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(0 0 0 / 63%);
    /* Change 0.4 to 0.6 if you want it darker */
    z-index: 1;
}

/* Make sure your content appears above the overlay */
.donate .container {
    position: relative;
    z-index: 2;
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
    color: var(--primary);
    border-color: var(--primary);
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    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(255, 255, 255, 0.5);
    margin-right: 10px;
}

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

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

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.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: var(--primary);
}


.product-fa-chevron-left {
    margin: 10px 10px 10px 100%;
}


.product-carousel .item {
    height: 100%;
}


.product-carousel .item {
    height: 100%;
}

.service-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item img {
    max-height: 200px;
    object-fit: contain;
}

.service-item .btn {
    margin-top: auto;
}

.accordion-button {
    background-color: #f8f9fa;
    border-left: 5px solid #fc6e0f;
    font-size: 16px;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background-color: #fff3e6;
    color: #368596;
}

.accordion-body {
    color: #333;
}

.company-image {
    width: 100%;
    height: auto;
    /* Keeps aspect ratio */
    object-fit: cover;
    border-radius: 8px;
    /* Optional: Rounded corners */
    display: block;
}

/* If you want to restrict min-height (like your 300px), apply it to container */
.position-relative {
    min-height: 300px;
}

/* Optional: For specific aspect ratio on large screens */
@media (min-width: 768px) {
    .company-image {
        height: 100%;
        max-height: 400px;
    }
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fc6e0f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 16px;
    /* center and add bottom space */
}

.profile-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

.profile-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1 1 300px;
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-box:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.profile-box img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.profile-info h5 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.designation {
    font-weight: 500;
    color: #ff6f0f;
    margin-bottom: 12px;
}

.profile-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.fade-in-left {
    animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .profile-box {
        max-width: 100%;
    }
}

.team-item img {
    height: 220px;
    object-fit: cover;
}

.custom-zoom-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    will-change: transform;
}

.custom-zoom-hover:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

/* Hover for desktops */
.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Touch support (tap to zoom briefly) */
@media (hover: none) {
    .card:active {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
}

.certificate-hover {
    overflow: hidden;
    border-radius: 12px;
}

.certificate-hover img {
    transition: transform 0.4s ease;
    display: block;
    width: 100%;
    height: auto;
}

.certificate-hover:hover img {
    transform: scale(1.05);
}

.mission-card {
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* always show card shadow */
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Optional subtle lift on hover */
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.tab-content {
    margin-top: 1rem;
}

/* Icon circle */
.icon-square {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}


.about-badge {
    background-color: #FFF0E6 !important;
    color: #FF6F0F !important;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.counter-card {
    background-color: #f7f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

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

.counter-icon {
    font-size: 2rem;
    color: #368596;
    margin-bottom: 0.5rem;
}

.counter-number {
    font-size: 2rem;
    font-weight: bold;
    color: #368596;
}

.timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #158f9d;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    width: 100%;
}

.timeline-item.left::before,
.timeline-item.right::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 10px;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid #158f9d;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left .timeline-content,
.timeline-item.right .timeline-content {
    margin-left: 50px;
}

@media (min-width: 768px) {
    .timeline-item {
        width: 48%;
    }

    .timeline-item.left {
        float: left;
        clear: both;
    }

    .timeline-item.right {
        float: right;
        clear: both;
    }

    .timeline-item.left .timeline-content {
        margin-left: 70px;
    }

    .timeline-item.right .timeline-content {
        margin-right: 70px;
    }

}

.owl-carousel .item {
    height: 100%;
    display: flex;
}

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

@media (min-width: 768px) {
    .owl-carousel .service-item {
        min-height: 560px;
        /* Adjust as needed */
    }
}

.certificate-hover {
    cursor: pointer;
    position: relative;
}

.certificate-hover .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(54 133 150 / 25%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show overlay on hover (desktop) */
@media (hover: hover) {
    .certificate-hover:hover .overlay {
        opacity: 1;
    }
}

/* Show overlay if .active is added (mobile tap) */
.certificate-hover.active .overlay {
    opacity: 1;
}

.certificate-hover h5 {
    font-weight: bold;
}

.carousel-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-image:hover {
    transform: scale(1.02);
}

.image-zoom-wrapper {
    overflow: hidden;
    border-radius: 16px;
    /* same as rounded-4 */
}

.image-zoom-wrapper img {
    transition: transform 0.5s ease;
    display: block;
    width: 100%;
}

.image-zoom-wrapper:hover img {
    transform: scale(1.1);
}

.glass-card-about {
    background: rgba(255, 255, 255, 0.1);
    /* translucent white */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.zoom-img {
    overflow: hidden;
    position: relative;
}

.zoom-img img {
    /* transition: transform 0.5s ease; */
    transform: scale(1.015);
}

.zoom-img:hover img {
    transform: scale(1.01);
    /* Adjust the scale as needed */
}

/* .glass-card-chooseus {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease;
}
.glass-card-chooseus:hover {
    transform: translateY(-4px);
} */





.glass-card-chooseus {
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
}

.glass-card-chooseus:hover {
    border-color: #046072;
    transform: translateY(-5px);
}

.icon-circle {
    width: 86px;
    height: 84px;
    border-radius: 50%;
    background-color: #f5d48e;
    /* light shade of #046072 */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.glass-card-chooseus:hover .icon-circle {
    background-color: #046072;
    /* dark base on hover */
}
.timeline-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1;
}