
/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6600;
    --primary-light: #ff8533;
    --primary-dark: #cc5200;
    --secondary-color: #000000;
    --secondary-light: #333333;
    --accent-color: #ff9900;
    --light-color: #ffffff;
    --gray-color: #f0f0f0;
    --dark-gray: #444444;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-color);
    color: var(--light-color);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.year {
    font-weight: 900;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.tagline {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 10px;
}

nav {
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--light-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

nav a:hover::after {
    width: 100%;
}

/* Hero section styles */
.hero {
    height: 85vh;
    background-image: url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(255, 102, 0, 0.3));
}

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

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.detail i {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
}

/* Highlights section */
.highlights {
    padding: 80px 0;
    background-color: var(--secondary-light);
}

.highlight-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-card {
    flex: 1;
    min-width: 200px;
    background-color: rgba(255, 102, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 102, 0, 0.2);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.highlight-card p {
    color: var(--gray-color);
}

/* Departments section styles */
.departments {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    position: relative;
}

.departments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pattern.png') center/cover;
    opacity: 0.05;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.department-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.department-card {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 280px;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(255, 102, 0, 0.3));
    transition: all 0.3s ease;
    opacity: 0;
}

.department-card:hover::before {
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    transform: translateY(50px);
    transition: all 0.4s ease;
    text-align: center;
}

.department-card:hover .card-content {
    transform: translateY(0);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.department-card:hover .card-icon {
    transform: scale(1.2);
}

.department-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light-color);
    font-weight: 600;
}

.department-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.department-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.department-link {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--light-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.department-card:hover .department-link {
    opacity: 1;
    transform: translateY(0);
}

.department-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

/* Timeline section */
.timeline {
    padding: 80px 0;
    background-color: var(--secondary-light);
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Sponsors section */
.sponsors {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sponsor-placeholder {
    height: 150px;
    background-color: rgba(255, 102, 0, 0.1);
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.sponsor-placeholder:hover {
    background-color: rgba(255, 102, 0, 0.2);
    transform: scale(1.05);
}

.sponsor-cta {
    text-align: center;
    margin-top: 30px;
}

.sponsor-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Contact section */
.contact {
    padding: 80px 0;
    background-color: var(--secondary-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Continuation from previous part */
    
.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--secondary-light);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.contact-form ::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 50px 20px 20px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}
.footer-content p{
    text-align: left;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.logo-small {
    height: 60px;
    width: auto;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
}

.footer-links h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--light-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.1);
    color: var(--light-color);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    color: var(--light-color);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Department page specific styles */
.department-page-header {
    height: 300px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(255, 102, 0, 0.3));
}

.department-page-title {
    position: relative;
    z-index: 1;
    text-align: center;
}

.department-page-title h2 {
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}

.department-page-title p {
    font-size: 1.2rem;
}

.events-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    height: 350px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
    border-color: var(--primary-color);
}

.event-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.event-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

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

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

.event-details {
    padding: 20px;
}

.event-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.event-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-fee {
    color: var(--primary-color);
    font-weight: 500;
}

.register-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.register-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.back-to-home {
    display: inline-block;
    margin: 20px;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    color: var(--accent-color);
}

.back-to-home i {
    margin-right: 5px;
}
/* Countdown Timer */
.countdown {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.countdown h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    background-color: var(--primary);
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.countdown-label {
    margin-top: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-date {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content {
        margin-left: 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        height: 60px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .event-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-cards {
        flex-direction: column;
    }
    
    .department-cards {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links h4::after, 
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .sponsors-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: var(--secondary);
        padding: 30px;
        align-items: center;
        transition: left 0.3s ease;
    }

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

    .hamburger {
        display: block;
    }

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

    .countdown-timer {
        gap: 15px;
    }

    .countdown-value {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .schedule-time {
        min-width: auto;
    }
}

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

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .hero h2 {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-value {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .section-header h3 {
        font-size: 2rem;
    }

    .schedule-tabs {
        flex-wrap: wrap;
    }
}
@media (max-width: 576px) {
    .countdown-timer {
        gap: 5px;
    }

    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .sponsor-item {
        padding: 15px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .section-header h3 {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Section Styling */
.leadership-section {
    text-align: center;
    padding: 60px 20px;
    background: black;
}

.leadership-section h2 {
    font-size: 38px;
    font-weight: 600;
    color: orange;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.leadership-section h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: orange;
    margin: 8px auto;
}

/* Grid Layout */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Individual Card Styling */
.leader-card {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid orange;
}

/* Hover Effect on Card */
.leader-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.4);
}

/* Image Styling */
.leader-image img {
    width: 100%;
    max-width: 170px;
    height: auto;
    border-radius: 50%;
    border: 5px solid orange;
    transition: transform 0.3s ease-in-out;
}

/* Image Hover Effect */
.leader-card:hover .leader-image img {
    transform: scale(1.1);
    border-color: white;
}

/* Info Section */
.leader-info {
    margin-top: 15px;
}

.leader-info h4 {
    font-size: 22px;
    font-weight: 600;
    color: orange;
}

.leader-info p {
    font-size: 16px;
    color: #d1d1d1;
    font-weight: 300;
}

/* Glow Effect on Hover */
.leader-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.15) 10%, transparent 50%);
    transition: transform 0.4s ease-in-out;
    opacity: 0;
}

.leader-card:hover::before {
    opacity: 1;
    transform: rotate(30deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .leader-card {
        padding: 20px;
    }

    .leader-info h4 {
        font-size: 20px;
    }

    .leader-info p {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column; /* Stack logo and text vertically */
        text-align: center;
    }

    h1 {
        font-size: 24px;
    }

    .tagline {
        font-size: 14px;
    }
}
