/* ========================================
    Custom CSS for Preloader & Theme Colors
    ======================================== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c5a47e;
    --accent-color: #d4af37;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
    --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-gold: linear-gradient(135deg, #c5a47e 0%, #d4af37 100%);
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

/* ========================================
   HERO SLIDER SECTION
   ======================================== */

.slider-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-active {
    position: relative;
}

.single-slider,
.hero-slide {
    position: relative;
    min-height: 700px;
    height: 100vh;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-slider::before,
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary-custom,
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary-custom {
    background: var(--gradient-gold);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary-custom:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Slick Slider Navigation */
.slider-active .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.slider-active .slick-arrow:hover {
    background: var(--gradient-gold);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-active .slick-prev {
    left: 40px;
}

.slider-active .slick-next {
    right: 40px;
}

/* Slick Dots */
.slider-active .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-active .slick-dots li {
    margin: 0;
}

.slider-active .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-active .slick-dots li.slick-active button {
    width: 40px;
    border-radius: 20px;
    background: var(--gradient-gold);
    border-color: var(--accent-color);
}

.slider-active .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Animation Classes */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

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

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

/* Responsive Slider Styles */
@media (max-width: 991px) {

    .single-slider,
    .hero-slide {
        min-height: 600px;
        max-height: 700px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .slider-active .slick-arrow {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .slider-active .slick-prev {
        left: 20px;
    }

    .slider-active .slick-next {
        right: 20px;
    }
}

@media (max-width: 768px) {

    .single-slider,
    .hero-slide {
        min-height: 500px;
        max-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 30px;
    }

    .slider-active .slick-arrow {
        display: none !important;
    }

    .slider-active .slick-dots {
        bottom: 20px;
    }
}




.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.about-image-main {
    grid-column: 1 / 2;
}

.about-image-secondary {
    grid-column: 2 / 3;
}

.about-img-primary,
.about-img-secondary {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-main {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient-gold);
    padding: 25px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: 5px solid #fff;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content {
    padding-left: 30px;
}

.about-text,
.about-text-content {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text-content p {
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-image-wrapper {
        padding-right: 0;
        padding-bottom: 0;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        display: inline-block;
        margin-top: -50px;
        margin-left: 30px;
    }
}

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

    .about-image-main,
    .about-image-secondary {
        grid-column: 1 / 2;
    }

    .about-img-primary,
    .about-img-secondary {
        height: 250px;
    }

    .about-stats {
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* ========================================
   FEATURED PROJECTS SECTION
   ======================================== */

.featured-projects {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.featured-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 380px;
}

.project-image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.project-info {
    padding: 25px;
    background: transparent;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--secondary-color);
}

.project-link:hover {
    color: var(--accent-color);
    gap: 12px;
    text-decoration: none;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-area {
    padding: 100px 0;
    background: #f8f9fa !important;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.service-icon-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-btn {
    transform: translateY(0);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

/* ========================================
   VIDEO SHOWCASE SECTION
   ======================================== */

.video-showcase {
    padding: 100px 0;
    background: #fff;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
}

/* ========================================
   EXCELLENCE SECTION
   ======================================== */

.excellence-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.excellence-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.excellence-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.excellence-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.excellence-description {
    color: #7f8c8d;
    line-height: 1.8;
}

/* ========================================
   INSIGHTS/BLOG SECTION
   ======================================== */

.insights-section {
    padding: 100px 0;
    background: #fff;
}

.insight-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.insight-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.insight-content {
    padding: 30px;
}

.insight-date {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.insight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.insight-excerpt {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
    gap: 12px;
    text-decoration: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .project-meta {
        flex-direction: column;
        gap: 10px;
    }

    /* Slider Navigation Responsive */
    .slider-active .owl-nav {
        bottom: 20px;
        right: 20px;
        padding: 0 10px;
    }

    .slider-active .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-active .owl-dots {
        bottom: 25px;
    }

    .slider-active .owl-dot {
        width: 8px;
        height: 8px;
    }

    .slider-active .owl-dot.active {
        width: 30px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-divider {
    height: 2px;
    width: 80px;
    background: var(--gradient-gold);
    margin: 20px auto;
}

/* ========================================
   PAGE HEADER (Inner Pages)
   ======================================== */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    /* Dark overlay */
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.breadcrumb-nav {
    display: inline-flex;
    gap: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav a:hover {
    color: var(--accent-color);
}

.breadcrumb-nav span {
    color: var(--secondary-color);
}

/* ========================================
   MISSION & VISION SECTION
   ======================================== */
.mission-section {
    padding: 100px 0;
    background: #fff;
}

.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 25px;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mission-desc {
    color: #666;
    line-height: 1.7;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}