/* 
   TCS Solutions Website Styles
   Colors:
   - Primary Blue: #3A61A5
   - Teal Accent: #00c9b7
   - Dark Blue: #001F5F
   - Light Gray: #F5F7FA
   - Medium Gray: #D1D9E6
   - Dark Gray: #4A4A4A
*/

/* Base Styles */
:root {
    --primary-blue: #3A61A5;
    --teal-accent: #00c9b7;
    --dark-blue: #001F5F;
    --light-gray: #F5F7FA;
    --medium-gray: #D1D9E6;
    --dark-gray: #4A4A4A;
    --silver: #C0C0C0;
    --white: #FFFFFF;
    --black: #000000;
    --header-height: 80px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

    a:hover {
        color: var(--teal-accent);
    }

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--teal-accent);
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

    .primary-btn:hover {
        background-color: var(--teal-accent);
        color: var(--white);
    }

.secondary-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    margin-left: 10px;
}

    .secondary-btn:hover {
        background-color: var(--teal-accent);
        border-color: var(--teal-accent);
        color: var(--white);
    }

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    transition: var(--transition);
}

    #header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

#main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
}

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: var(--dark-blue);
        font-weight: 500;
        position: relative;
        padding: 5px 0;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--teal-accent);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--teal-accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

.menu-icon {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

    .menu-icon span {
        height: 3px;
        width: 100%;
        background-color: var(--dark-blue);
        margin-bottom: 5px;
        border-radius: 2px;
        transition: var(--transition);
    }

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 31, 95, 0.5), rgba(0, 31, 95, 0.7)), url('../images/datacenter-bg-enhanced.svg') no-repeat center center/cover;
    z-index: -1;
}

    .hero-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(0,201,183,0.2) 0%, rgba(0,31,95,0) 70%);
    }

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23ffffff30"/><circle cx="30" cy="40" r="0.5" fill="%23ffffff30"/><circle cx="50" cy="70" r="0.8" fill="%23ffffff30"/><circle cx="80" cy="30" r="0.6" fill="%23ffffff30"/><circle cx="15" cy="90" r="0.5" fill="%23ffffff30"/><circle cx="90" cy="10" r="0.8" fill="%23ffffff30"/><circle cx="90" cy="90" r="0.7" fill="%23ffffff30"/><circle cx="60" cy="20" r="0.5" fill="%23ffffff30"/><circle cx="20" cy="60" r="0.4" fill="%23ffffff30"/><circle cx="40" cy="85" r="0.6" fill="%23ffffff30"/></svg>');
    opacity: 0.6;
    animation: particles 60s linear infinite;
}

@keyframes particles {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 25px;
        color: var(--white);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        animation: fadeInUp 1s ease-out;
    }

    .hero-content p {
        font-size: 1.4rem;
        margin-bottom: 40px;
        line-height: 1.6;
        animation: fadeInUp 1s ease-out 0.2s;
        animation-fill-mode: both;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    }

    .hero-content .btn {
        animation: fadeInUp 1s ease-out 0.4s;
        animation-fill-mode: both;
    }

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

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

/* About Section */
.about-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

    .about-text h3 {
        color: var(--dark-blue);
        margin-bottom: 15px;
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 10px;
    }

        .about-text h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--teal-accent);
        }

/* Leadership Section */
.leadership {
    margin-top: 60px;
    padding: 60px 0 40px;
    background-color: rgba(0, 31, 95, 0.04);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

    .leadership:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--teal-accent), var(--primary-blue));
    }

    .leadership h3 {
        color: var(--dark-blue);
        margin-bottom: 30px;
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 10px;
        padding-left: 40px;
    }

        .leadership h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 25px;
            height: 2px;
            background-color: var(--teal-accent);
        }

.leadership-team {
    margin-bottom: 40px;
    padding: 0 40px;
}

.leadership-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

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

.leader-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

    .leader-card:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 201, 183, 0.03);
        transition: width 0.3s ease;
    }

    .leader-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

        .leader-card:hover:before {
            width: 100%;
            left: 0;
        }

.leader-photo {
    width: 120px;
    height: 150px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(0, 201, 183, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-photo {
    transform: scale(1.05);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leader-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.leader-card h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

    .leader-card h4:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--teal-accent);
        transition: width 0.3s ease;
    }

.leader-card:hover h4:after {
    width: 100%;
}

.leader-card .leader-title {
    color: var(--teal-accent);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.leader-card blockquote {
    border-left: 3px solid var(--teal-accent);
    padding-left: 15px;
    margin: 0;
    font-style: italic;
    color: var(--dark-blue);
    line-height: 1.6;
}

/* Team expertise and industry leadership sections */
.leadership-expertise {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(58, 97, 165, 0.04);
    border-radius: 15px;
    position: relative;
}

    .leadership-expertise:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--teal-accent), var(--blue), var(--dark-blue));
        border-radius: 15px 15px 0 0;
    }

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

.strengths-list,
.thought-list {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

    .strengths-list:hover,
    .thought-list:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .strengths-list h4,
    .thought-list h4 {
        color: var(--dark-blue);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        text-align: center;
    }

        .strengths-list h4:after,
        .thought-list h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--teal-accent);
        }

    .strengths-list ul,
    .thought-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .strengths-list li,
    .thought-list li {
        padding-left: 30px;
        position: relative;
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 0.95rem;
    }

        .strengths-list li:before,
        .thought-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            width: 18px;
            height: 18px;
            background-color: rgba(0, 201, 183, 0.1);
            border-radius: 50%;
        }

        .strengths-list li:after,
        .thought-list li:after {
            content: '';
            position: absolute;
            left: 6px;
            top: 12px;
            width: 6px;
            height: 6px;
            background-color: var(--teal-accent);
            border-radius: 50%;
        }

.about-text p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-values {
    flex: 1;
    min-width: 300px;
}

    .about-values h3 {
        margin-bottom: 30px;
        color: var(--dark-blue);
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 10px;
    }

        .about-values h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--teal-accent);
        }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.value-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-item:hover, .value-item.active {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.value-content {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.value-item:hover .value-content, .value-item.active .value-content {
    opacity: 0;
}

.value-icon {
    margin: 0 auto 15px;
    background-color: rgba(0, 201, 183, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h4 {
    margin-bottom: 12px;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.value-description {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 201, 183, 0.95);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 10px;
}

.value-item:hover .value-description, .value-item.active .value-description {
    opacity: 1;
}

.value-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}



/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    margin-bottom: 20px;
}

/* Markets Section */
.markets-section {
    background-color: var(--light-gray);
}

.markets-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.markets-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    background-color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    color: var(--dark-blue);
}

    .tab-button:hover {
        background-color: rgba(0, 201, 183, 0.1);
        transform: translateY(-3px);
    }

    .tab-button.active {
        background-color: var(--blue);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.market-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

    .market-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

.market-icon {
    margin-bottom: 15px;
}

/* Contact Section */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

    .contact-content.centered {
        justify-content: center;
        text-align: center;
    }

        .contact-content.centered .contact-info {
            max-width: 100%;
            margin: 0 auto;
        }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

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

    .contact-card .contact-icon {
        margin: 0 auto 15px;
    }

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    min-width: 24px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid var(--medium-gray);
        border-radius: 4px;
        background-color: var(--white);
    }

    .form-group textarea {
        resize: vertical;
    }

/* Footer Styles */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

    .footer-logo .logo {
        margin-bottom: 15px;
    }

.footer-links {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 40px;
}

.footer-nav,
.footer-services {
    flex: 1;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--teal-accent);
    }

.footer ul li {
    margin-bottom: 10px;
}

    .footer ul li a {
        color: var(--medium-gray);
    }

        .footer ul li a:hover {
            color: var(--white);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white);
        transition: var(--transition);
    }

        .social-links a:hover {
            background-color: var(--teal-accent);
            transform: translateY(-3px);
        }

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
        }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

    .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .secondary-btn {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-values,
    .services-grid,
    .markets-grid {
        grid-template-columns: 1fr;
    }
}
/* Tab styling for markets section */
.markets-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    background-color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    color: var(--dark-blue);
}

    .tab-button:hover {
        background-color: rgba(0, 201, 183, 0.1);
        transform: translateY(-3px);
    }

    .tab-button.active {
        background-color: var(--blue);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Markets tabs styling */
.markets-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    background-color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    color: var(--dark-blue);
}

    .tab-button:hover {
        background-color: rgba(0, 201, 183, 0.1);
        transform: translateY(-3px);
    }

    .tab-button.active {
        background-color: var(--teal-accent) !important;
        color: white !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Font declarations for TCS Solutions */
@font-face {
    font-family: 'Century Gothic';
    src: url('https://db.onlinewebfonts.com/t/206fefdb826a3c8511afb73ba0d561a0.woff2') format('woff2'), url('https://db.onlinewebfonts.com/t/206fefdb826a3c8511afb73ba0d561a0.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Update base font styles */
body {
    font-family: 'Century Gothic', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

/* Clickable contact links with teal hover effect */
.contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-link:hover,
    .contact-link:focus {
        color: var(--teal-accent);
        text-decoration: underline;
    }

/* Improved mobile layout for leadership section */
@media (max-width: 768px) {
    .leadership-team {
        padding: 0 15px;
    }

    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }

    .leader-photo {
        margin-bottom: 15px;
        width: 120px;
        height: 120px;
    }

    .leader-info {
        width: 100%;
    }

    .leader-card blockquote {
        padding-left: 0;
        border-left: none;
        font-style: italic;
        position: relative;
        padding-top: 15px;
    }

        .leader-card blockquote:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--teal-accent);
        }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .leadership-team {
        padding: 0 10px;
    }

    .leader-card {
        padding: 15px 12px;
    }

    .leader-photo {
        width: 100px;
        height: 100px;
    }

    .leader-card h4 {
        font-size: 1.1rem;
    }

    .leader-card .leader-title {
        font-size: 0.9rem;
    }

    .leader-card blockquote {
        font-size: 0.95rem;
        margin-top: 10px;
    }
}
