:root {
    --primary-color: #0ff;
    --secondary-color: #2d00f7;
    --accent-color: #f20089;
    --background-dark: #0a0a0a;
    --background-light: #f7f7f7;
    --text-color: #fff;
    --text-color-light: #222;
    --card-bg-dark: rgba(30, 30, 30, 0.95);
    --card-bg-light: #fff;
    --background-shadow: rgba(0, 240, 255, 0.5);
    --section-bg: rgba(235, 235, 235, 0.1);
    --project-event-card-bg: rgba(255, 255, 255, 0.2);
    --footer-color: rgba(0, 240, 255, 0.3);
    --neon-glow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color),
        0 0 30px var(--primary-color);
}

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

body {
    font-family: "Orbitron", sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

/* light mode colors */
body.light-mode {
    --primary-color: #0077ff;
    --secondary-color: #e0e7ef;
    --accent-color: #f20089;
    --background-dark: #f7f9fb;
    --text-color: #1a1a1a;
    --card-bg-dark: #fff;
    --section-bg: rgba(16, 16, 16, 0.3);
    --background-shadow: rgba(0, 0, 0, 0.5);
    --project-event-card-bg: rgba(0, 0, 0, 0.5);
    --footer-color: rgba(0, 0, 0, 0.7);
    --neon-glow: 0 0 10px #b3d8fd, 0 0 20px #b3d8fd, 0 0 30px #b3d8fd;
    background-color: var(--background-dark);
    color: var(--text-color);
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    min-height: 64px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s;
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-right: 4rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary-color);
}

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

/* Home Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    transition: transform 0.1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--background-shadow));
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-shadow: 0 0 20px var(--background-shadow);
    letter-spacing: 4px;
}

.subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: 2px;
}

.announcement-bar {
    overflow: hidden;
    position: sticky;
    white-space: nowrap;
    background: transparent;

    color: var(--text-color);
    margin-top: 7px;
    padding: 10px;
    font-weight: bold;
    font-family: "quicksand";
    z-index: 1;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: 56px;
        min-height: 56px;
        padding: 2.1rem 1rem;
    }

    .nav-logo-img {
        height: 32px;
    }

    .menu-toggle {
        display: block;
        font-size: 2.2rem;
        color: #0ff;
        background: none;
        border: none;
        position: relative;
        z-index: 1100;
        margin-left: auto;
    }

    .color-scheme-toggle {
        margin: 9px;
        font-size: 1.6rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        gap: 1.5rem;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links a:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links a:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links a:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links a:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a:nth-child(6) {
        transition-delay: 0.6s;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-logo-img {
        width: 280px;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 0.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .about-content {
        flex-direction: column;
        padding: 1rem;
    }

    .stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .about-content,
    .contact-container,
    .stats,
    .project-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.2rem !important;
        padding: 0 0.5rem !important;
        align-items: stretch !important;
    }

    .about,
    .projects,
    .events,
    .contact,
    footer {
        padding: 40px 2% 30px 2% !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .footer-logo-img {
        width: 120px !important;
    }

    .submit-btn {
        width: 100% !important;
        min-width: 0 !important;
        font-size: 1rem !important;
        padding: 0.8rem 1.2rem !important;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100% !important;
        font-size: 1rem !important;
        padding: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 65px;
        min-height: 48px;
        padding: 0 0.5rem;
    }

    .nav-logo-img {
        height: 26px;
    }

    .menu-toggle {
        font-size: 2.4rem;
    }

    .color-scheme-toggle {
        padding-top: 11px;
    }

    .hero-logo-img {
        width: 250px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .team-card.modern {
        width: 100%;
        margin: 1rem 0;
    }

    .contact-container {
        flex-direction: column;
        padding: 1rem;
    }

    .contact-form {
        width: 100%;
        margin-bottom: 2rem;
    }

    .contact-info {
        width: 100%;
    }

    .info-item {
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .social-links a {
        font-size: 1.5rem;
        margin: 0 0.8rem;
    }

    .about,
    .projects,
    .events,
    .contact,
    footer {
        padding: 24px 1% 18px 1% !important;
    }

    h1 {
        font-size: 1.3rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    .footer-logo-img {
        width: 80px !important;
    }

    .team-card-avatar {
        width: 32px !important;
        height: 32px !important;
    }

    .submit-btn {
        font-size: 0.95rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95rem !important;
        padding: 0.6rem !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-links a:hover::after {
        width: 0;
    }

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

/* Improved Touch Targets */
button,
.team-card-contact,
.nav-links a,
.social-links a {
    min-height: 44px;
    min-width: 44px;
    padding: 0.8rem 1.5rem;
}

/* Better Form Elements for Mobile */
input,
textarea,
select {
    font-size: 16px;
    /* Prevents iOS zoom on focus */
    padding: 12px;
    margin-bottom: 1rem;
}

/* Prevent Horizontal Scroll */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle.active i {
    transform: rotate(180deg);
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

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

/* About Section */
.about {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 100px 5%;
    background: var(--section-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Orbitron", sans-serif;
    opacity: 0.9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px var(--background-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Projects Section */
.projects {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 100px 5%;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Orbitron", sans-serif;
    z-index: 10;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: var(--section-bg);
    color: var(--text-color);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.project-header {
    margin: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.project-body {
    display: flex;
}

/* Events Section */
.events {
    padding: 100px 5%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: var(--section-bg);
}

.events h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Orbitron", sans-serif;
    z-index: 11;
    padding: 2rem;
}

#event-heading{
    color: var(--text-color);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 2rem;
}

.event-card {
    background-color: var(--project-event-card-bg);
    color: white !important;
    border-radius: 5px;
    overflow: visible;
    width: 90%;
    align-items: center;
    padding: 0.5rem;
}


.event-header {
    margin: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.event-poster {
    margin: 1rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    justify-items: center;
    align-items: center;
}

.event-poster-img {
    height: 30vh;
    width: auto;
    transition: transform 0.2s ease, box-shadow 0.1s ease;
}

#img1{
    height: 40vh;
}

.event-poster-img:hover:hover {
    transform: scale(2);
    box-shadow: 0 8px 16px var(--background-shadow);
    z-index: 2;
}


.event-content p {
    margin: 2rem;
    font-size: 1.5rem;
    line-height: 1.6rem;
    font-family: 'quicksand';
}

.events h3{
    text-align: center;
    padding: 2rem;
}

.event-photos{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(130px,1fr));
    justify-content: center;
    justify-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
}

.event-photos-desc{
    height: 10vh;
    width: auto;
    border: 1px transparent;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.1s ease;
}
.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 1334px)
{
    .event-card{
        overflow: visible;
    }

    .events h2{
        font-size: 1.6rem;
    }

    .event-poster{
        margin: 0;
    }

    .event-poster-img{
        height: 15vh;
        width: auto;
    }

    #img1{
        height: 20vh;
    }

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

    .event-photos-desc{
        height: 10vh;
        width: auto;
    }
}

/* Contact Section */
.contact {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: var(--section-bg);
    padding: 100px 5%;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Orbitron", sans-serif;
    z-index: 10;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    padding: 1rem;
    background: var(--gradient-1);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 5%;
    background: var(--footer-color);
    text-align: center;
}

.footer-content {
    font-family: "quicksand";
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--background-shadow));
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right,
            var(--primary-color),
            var(--secondary-color));
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 1001;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Color Scheme Toggle Button */
.color-scheme-toggle {
    position: absolute;
    right: 24px;
    background: none;
    border: none;
    outline: none;
    color: var(--primary-color);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1100;
    transition: color 0.2s;
}

.color-scheme-toggle:active {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .color-scheme-toggle {
        top: 0.5px;
        right: 26px;
        font-size: 1.4rem;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
}

.menu-toggle {
    z-index: 1101 !important;
}

@media (max-width: 768px) {
    .nav-links {
        z-index: 1100;
    }
}

/* Team Section*/
.team {
    min-height: 100vh;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 80px 5% 60px 5%;
    z-index: 10;
}

.team h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 5rem;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1000px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 5rem;
    justify-items: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1700px;
    z-index: 20;
}

.team-card.modern {
    color: var(--text-color);
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 1.5rem 0;
    z-index: 20;
    transition: background 0.2s, color 0.2s, transform 0.2s, height 0.2s,
        width 0.2s;
}

.team-card.modern:hover {
    color: #fff;
    height: 400px;
    width: 100%;

    .team-card-tagline {
        opacity: 1;
    }

    .team-card-body {
        margin-top: 0px;
        padding-bottom: 270px;
    }
}

#gaurav {
    background-image: url("assets/team/Gaurav\ Kumawat_1.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#chirag {
    background-image: url("assets/team/chirag.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#ishansh {
    background-image: url("assets/team/ishansh.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#shreya {
    background-image: url("assets/team/shreya.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#nitish {
    background-image: url("assets/team/nitish.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#jatin {
    background-image: url("assets/team/jatin.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#divyansh {
    background-image: url("assets/team/divyansh.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#jay {
    background-image: url("assets/team/jay.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#palak {
    background-image: url("assets/team/palak.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.team-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.team-card-icon {
    font-size: 2.2rem;
    color: #f4008a;
    border-radius: 50%;
    padding: 0.4rem;
    margin-left: auto;
}

.team-card-name {
    padding-top: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.team-card-position {
    font-size: 1rem;
    font-style: italic;
    color: #e0e7ef;
    opacity: 0.8;
    margin-bottom: 0rem;
}

.team-card-tagline {
    font-size: 1rem;
    font-family: "quicksand";
    color: #ccc;
    margin-bottom: 0.2rem;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    padding-top: 20px;
    overflow: visible;
    text-align: center;
}

.team-card-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.team-card-contact {
    background: var(--primary-color);
    color: #111;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(0, 255, 255, 0.1);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
    margin-left: 0.5rem;
}

.team-card-body {
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 105px;
    width: 100%;
    text-align: center;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(5px);
    padding-bottom: 30px;
    padding-inline: 20px;
    transition: margin-top 0.2s, padding-bottom 0.2s;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        padding: 0 1rem;
    }

    .faculty-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 600px) {
    .team {
        padding: 40px 2% 30px 2%;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 0rem;
        padding: 0 0.5rem;
    }

    .faculty-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }

    .team-card.modern {
        color: var(--text-color);
        border-radius: 20px;
        overflow: hidden;
        height: 220px;
        width: 85%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 1.5rem 0;
        z-index: 20;
        transition: all 0.3s ease;
    }

    .team-card-avatar {
        width: 40px;
        height: 40px;
    }

    .team-card-header {
        margin-bottom: 0.7rem;
    }

    .team-card-body {
        width: 364px;
        padding-left: 10px;
        margin-top: 75px;
        margin-bottom: 0.7rem;
    }

    .team-card-name {
        font-size: 0.8rem;
    }

    .team-card-position {
        font-size: 0.7rem;
    }

    .team-card-tagline {
        font-size: 0.9rem;
        text-align: center;
        padding: 15px 85px;
    }

    .team-card-contact {
        font-size: 0.95rem;
        padding: 0.4rem 1rem;
    }
}
