/* Classic Color Palette */
:root {
    --primary: #2c3e50;
    --secondary: #7f8c8d;
    --accent: #c0392b;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gold: #d4af37;
}

/* Base Styles */
body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h2{
    text-align: center;
    border-bottom: 2rem;
}

span {
    color: var(--accent);
}

/* Classic Header */
.classic-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1597852074816-d933c7d2b988?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.classic-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Classic Navigation */
.classic-nav {
     background-color: radial-gradient(circle at center, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        transparent 70%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.classic-nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.classic-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.classic-nav a:hover, .classic-nav a.active {
    color: var(--gold);
}

.classic-nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

/* Heritage Section */
.heritage {
    padding: 80px 0;
     background: radial-gradient(circle at center, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        transparent 70%);
}

.heritage .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.heritage-content {
    flex: 1;
}

.heritage-image {
    flex: 1;
}

.heritage-image img {
    width: 100%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.heritage-image img:hover {
    transform: scale(1.03);
}

/* Timeline Section */
.timeline {
    padding: 80px 0;
    background-color: var(--light);
     background: radial-gradient(circle at center, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        transparent 70%);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item.fade-in {
    opacity: 1;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.timeline-content {
    width: 45%;
    padding: 20px;
     background: radial-gradient(circle at center, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        transparent 70%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
     background: radial-gradient(circle at center, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 212, 255, 0.1) 30%, 
        transparent 70%);
}

.leaders-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.leader-card {
    width: 300px;
    text-align: center;
}

.leader-image {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
}

.leader-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
}

.leader-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    transition: bottom 0.5s;
}

.leader-card:hover .leader-overlay {
    bottom: 0;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.title {
    color: var(--secondary);
    font-style: italic;
}

/* Classic CTA */
.classic-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1603732551658-5fabbafa84eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.classic-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.3s;
    margin-top: 20px;
}

.classic-button:hover {
    background: #a5281c;
    transform: translateY(-3px);
}

/* Classic Footer */
.classic-footer {
     background-color: radial-gradient(circle at center, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(3, 213, 255, 0.1) 30%, 
        transparent 50%);
    color: white;
    padding: 60px 0 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heritage .container {
        flex-direction: column;
    }

    .timeline-container:before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
    }

    .timeline-year {
        left: 0;
        transform: none;
    }

    .classic-nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.leader-image img {
  aspect-ratio: 3 / 4; /* Portrait ratio */
  object-fit: cover;   /* Or use 'contain' if you want full image */
  width: 100%;
  height: auto;
}

.navbar {
    text-decoration: none;
}

.logo{
    text-decoration: none;
}