/********** Template CSS **********/

/*** Base Font Size ***/
html {
    font-size: 20px;
}

body {
    font-size: 1rem; /* = 20px */
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    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 {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.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: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
    background-color: #81818182;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}
.navbar-brand img{
    max-width: 100%;
    height: auto;
    width: 120px;
}
.position-fixed.bg-white.shadow-sm .navbar-nav .nav-link {
    color: #000000 !important;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

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

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


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgb(255 255 255 / 24%);
    z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 685px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgb(255 255 255 / 70%), rgb(84 84 84 / 70%)), url(../img/stocks/1-1.png) top center no-repeat;
    background-size: cover;
    background-position: center;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    /* text-transform: uppercase; */
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 2px solid #5abcbd;
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 2px solid #5abcbd;
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-white));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-white));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-white));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 30px 20px 10px;
    text-align: center;
}

.testimonial-item::before {
    content: '\201C';
    display: block;
    font-size: 5rem;
    line-height: 1;
    color: #00b4d8;
    font-family: Georgia, serif;
    margin-bottom: -10px;
}

.testimonial-item p {
    font-size: 0.9rem !important;
    line-height: 1.85;
    color: #555;
    max-width: 680px;
    margin: 0 auto 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d3349;
    margin-bottom: 4px;
}

.testimonial-item span.text-primary {
    font-size: 0.8rem;
    color: #00b4d8 !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 55px;
    height: 55px;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: .4s;
    overflow: hidden;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 70px;
    height: 70px;
    border-color: #00b4d8;
}

.testimonial-carousel .owl-dots .owl-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.35;
    transition: .4s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background: linear-gradient(rgb(233 233 233 / 70%), rgb(255 255 255 / 70%)), url(../img/stocks/3.png) top center no-repeat;
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}
.footer img{
    max-width: 100%;
    height: auto;
    width: 150px;
}


/* ===== Why Us Section ===== */
.why-us-section {
    border-bottom: 1px solid #e8e8e8;
}

.why-us-heading {
    color: #0d3349;
    font-size: 2rem;
    line-height: 1.5;
}

.why-us-link {
    color: #00b4d8;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    gap: 6px;
}

.why-us-link:hover {
    color: #0096b4;
    text-decoration: underline;
}

.why-us-link i {
    font-size: 1rem;
}

.why-us-icon {
    display: block;
    font-size: 1.8rem;
    color: #0d3349;
    margin-bottom: 8px;
}

.why-us-label {
    font-size: 0.82rem;
    color: #0d3349;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}

.why-us-feature {
    padding: 8px 4px;
}


/* ===== Clients Section ===== */
.clients-section {
    border-top: 1px solid #e8e8e8;
}

.clients-heading {
    color: #0d3349;
    font-size: 0.95rem;
    font-weight: 700;
}

.clients-underline {
    width: 60px;
    height: 3px;
    background-color: #00b4d8;
    margin-top: 8px;
    border-radius: 2px;
}

.clients-carousel {
    position: relative;
    padding: 0 40px;
}

.clients-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    margin: 0;
}

.clients-carousel .owl-nav button {
    pointer-events: all;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 1.6rem !important;
    color: #0d3349 !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.clients-carousel .owl-nav button:hover {
    color: #00b4d8 !important;
    background: transparent !important;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
}

.client-logo-item img {
    max-height: 150px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.client-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== CTA Banner Section ===== */
.cta-banner-section {
    position: relative;
    background-image: url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(145 145 145 / 86%);
}

.cta-banner-section .container {
    position: relative;
    z-index: 1;
}

.cta-heading {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.cta-highlight {
    color: #00b4d8;
    font-weight: 700;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-btn {
    background-color: #00b4d8;
    color: #ffffff;
    border: 2px solid #00b4d8;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: transparent;
    color: #00b4d8;
    border-color: #00b4d8;
}


/* ===== About Page ===== */
.about-section-heading {
    color: #0d3349;
    font-size: 1.7rem;
    font-weight: 700;
}

.about-underline {
    width: 60px;
    height: 3px;
    background-color: #00b4d8;
    margin-top: 10px;
    border-radius: 2px;
}

.about-intro-text {
    color: #444;
    font-size: 0.92rem;
    line-height: 1.85;
    text-align: justify;
}

/* Stats */
.about-stats-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.about-stat-number {
    color: #0d3349;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* Vision / Mission Cards */
.vm-card {
    border-radius: 6px;
    overflow: hidden;
    cursor: default;
}

.vm-img {
    height: 280px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
    transition: transform 0.4s ease;
}

.vm-card:hover .vm-img {
    transform: scale(1.04);
}

.vm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%);
}

.vm-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.vm-text {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.92;
}

/* Core Values */
.core-value-subtext {
    color: #666;
    font-size: 0.92rem;
    max-width: 580px;
    margin: 0 auto;
}

.core-value-item {
    padding: 8px 0;
}

.core-value-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background-color: #e8f8fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.core-value-icon i {
    font-size: 1.1rem;
    color: #00b4d8;
}

.core-value-title {
    color: #0d3349;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.core-value-text {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ===== Contact Page ===== */
.contact-info-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
}

.contact-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    height: 100%;
    border-bottom: 3px solid #00b4d8;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background-color: #e8f8fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-info-icon i {
    font-size: 1.4rem;
    color: #00b4d8;
}

.contact-info-title {
    color: #0d3349;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-value {
    color: #555;
    font-size: 0.875rem;
    line-height: 1.7;
    text-decoration: none;
    display: block;
}

a.contact-info-value:hover {
    color: #00b4d8;
}

/* Contact Form */
.contact-form-heading {
    color: #0d3349;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-input {
    background-color: #f8f9fa !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 6px !important;
    color: #333 !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
    border-color: #00b4d8 !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12) !important;
    background-color: #fff !important;
}

.contact-submit-btn {
    background-color: #00b4d8;
    color: #fff;
    border: 2px solid #00b4d8;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: transparent;
    color: #00b4d8;
}

/* Map */
.contact-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}


/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 22px;
    z-index: 9999;
    width: 52px;
    height: 52px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float i {
    font-size: 1.7rem;
    color: #fff;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


/* ===== Service Page ===== */

/* Intro category icons */
.svc-intro-heading {
    color: #0d3349;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
}

.svc-intro-text {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.8;
}

.svc-cat-item {
    padding: 6px 4px;
}

.svc-cat-icon {
    display: block;
    font-size: 1.8rem;
    color: #0d3349;
    margin-bottom: 8px;
}

.svc-cat-label {
    font-size: 0.78rem;
    color: #0d3349;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Service rows */
.svc-row {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.svc-img-wrap {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.svc-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.svc-img-accent {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60%;
    height: 60%;
    /* border: 4px solid #00b4d8; */
    z-index: 0;
    pointer-events: none;
}

.svc-img-right .svc-img-accent,
.svc-accent-right {
    left: auto;
    right: -10px;
}

.svc-content {
    padding: 32px 24px;
}

.svc-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #00b4d8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.svc-title {
    color: #0d3349;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
}

.svc-text {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.svc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.svc-list li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.svc-list li i {
    color: #00b4d8;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.svc-btn {
    background-color: transparent;
    border: 2px solid #00b4d8;
    color: #00b4d8;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.svc-btn:hover {
    background-color: #00b4d8;
    color: #fff;
}

/* FAQ */
.svc-faq .svc-faq-item {
    border: none;
    border-bottom: 1px solid #e8e8e8;
    background: transparent;
}

.svc-faq-btn {
    background: transparent !important;
    color: #0d3349 !important;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none !important;
    padding: 18px 0;
    border: none;
}

.svc-faq-btn::after {
    filter: none;
    color: #00b4d8;
}

.svc-faq-btn:not(.collapsed) {
    color: #00b4d8 !important;
}

.svc-faq-body {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.8;
    padding: 0 0 18px 0;
}


/* ===== Mobile Navbar Toggler - Black Icon ===== */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C0%2C0%2C1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.6) !important;
}


/* ===== Video Section ===== */
.video-section-heading {
    color: #0d3349;
    font-size: 1.95rem;
    font-weight: 700;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.video-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    transform: translateY(-3px);
}

.video-card video {
    width: 100%;
    display: block;
    border-radius: 10px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}


/* ===== Gallery Page ===== */
.gallery-filter-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #00b4d8;
    border-color: #00b4d8;
    color: #fff;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    aspect-ratio: 4 / 3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 180, 216, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}
