/********** Template CSS **********/
:root {
    --primary: #2563eb; /* Royal Blue */
    --primary-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --secondary: #64748b; /* Slate */
    --light: #f8fafc;
    --dark: #0f172a; /* Deep Slate / Navy */
    --bg-darker: #f1f5f9;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

body {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    background-color: #ffffff;
    color: #475569; /* Slate 600 */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.025em;
}

.text-primary-gradient {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.text-primary {
    color: var(--primary) !important;
}

.dark-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--light);
}

.bg-dark-glass {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
}

.rounded-end-custom {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.rounded-start-custom {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

/*** Forms overrides ***/
.form-control, .form-select {
    background-color: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--light) !important;
    border-radius: 8px;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25) !important;
    border-color: var(--primary) !important;
}

.form-control::placeholder {
    color: var(--secondary);
}

.bg-light {
    background-color: var(--card-bg) !important; 
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.whatsapp {
    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-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all .3s ease;
    border-radius: 8px;
    letter-spacing: 0.5px;
}

.btn.btn-primary {
    color: #FFFFFF;
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(101, 181, 48, 0.3);
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(101, 181, 48, 0.4);
    background: linear-gradient(135deg, #71c338 0%, #519b23 100%);
}

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

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

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

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

/*** Navbar ***/
.navbar {
    background: rgba(15, 23, 42, 0.85); /* Dark slate glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

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

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-brand h1 {
    color: var(--light) !important;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: 0.3s all ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.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-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid rgba(255,255,255,0.05);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: 1px solid rgba(255,255,255,0.05);
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-lg);
        border-radius: var(--border-radius);
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: var(--secondary);
        transition: .3s all ease;
    }
    
    .navbar .nav-item .dropdown-menu .dropdown-item:hover,
    .navbar .nav-item .dropdown-menu .dropdown-item.active {
        background: rgba(16, 185, 129, 0.1);
        color: var(--primary);
    }

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

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

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

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

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(54, 54, 54, 0.7)), url(../img/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


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

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

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

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


/*** Service ***/
.service-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-item .btn-square.bg-light {
    background: var(--light) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item h4, .service-item p {
    color: var(--dark);
}

.service-item p {
    color: var(--secondary);
}

.service-item::after {
    content: "";
    border-radius: var(--border-radius);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item .btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary-gradient);
    border-radius: 45px;
    white-space: nowrap;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-item:hover .btn {
    width: 140px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}



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

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

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

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


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--secondary);
    cursor: pointer;
    transition: .3s all ease;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 0 5px;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: #FFF;
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.portfolio-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.3);
}

.portfolio-inner img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-inner:hover img {
    transform: scale(1.08);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .4s all ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, 0.85);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px !important;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


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

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

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

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


/*** Team ***/
.team-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.3);
}

.team-item img {
    transition: transform 0.5s ease;
}

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

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, .75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: all .4s ease;
}

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

.team-item .team-social .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-item:hover .team-social .btn {
    opacity: 1;
    transform: translateY(0);
}

.team-item:hover .team-social .btn:nth-child(1) { transition-delay: 0.1s; }
.team-item:hover .team-social .btn:nth-child(2) { transition-delay: 0.2s; }
.team-item:hover .team-social .btn:nth-child(3) { transition-delay: 0.3s; }


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

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

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

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


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

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

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

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


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    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;
    margin-right: 10px;
}

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

.btn-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 38px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-social:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    color: #fff;
}

.footer .btn-link {
    transition: all 0.3s ease;
}

/*** Contact Redesign ***/
.contact-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

.contact-form-container {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-container .form-control {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--dark) !important;
}

.contact-form-container .form-control:focus {
    background: #fff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1) !important;
}

.contact-form-container .form-floating label {
    color: #64748b !important;
    padding-left: 20px;
}

.contact-form-container .form-floating > .form-control:focus ~ label,
.contact-form-container .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary) !important;
    opacity: 0.8;
}

.contact-hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%), url('../img/contact-hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-bottom: -100px;
    z-index: 1;
}

.contact-content-wrapper {
    position: relative;
    z-index: 2;
}

.divider-accent {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/*** Service Redesign ***/
.service-hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%), url('../img/service-hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.service-card-premium {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-premium:hover .service-icon-wrapper {
    background: var(--primary);
    transform: rotate(10deg);
}

.service-card-premium:hover .service-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.service-card-premium h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card-premium p {
    color: var(--secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

/*** About Redesign ***/
.about-hero-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%), url('../img/about-hero.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.stat-card-premium {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 35px;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-card-premium .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.stat-card-premium:hover .stat-number {
    color: rgba(37, 99, 235, 0.2);
}

.about-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

/*** Premium Team Cards ***/
.team-card-premium {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #fff;
}

.team-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.22);
}

.team-card-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.team-card-premium:hover .team-card-img img {
    transform: scale(1.05);
}

.team-card-info {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    padding: 18px 22px;
    text-align: center;
}

.team-card-info h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card-info span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}