/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-outline:hover {
    background: #0066cc;
    color: white;
}

.btn-white-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-white-outline:hover {
    background: white;
    color: #0066cc;
}

.btn-blue-outline {
    background: transparent;
    color: #0066cc;
    border-color: #0066cc;
}

.btn-blue-outline:hover {
    background: #0066cc;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #0066cc;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #0066cc;
    border-left-color: #0066cc;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.concentric-circles {
    width: 300px;
    height: 300px;
    background-image: url('../images/graphics/concentric-circles.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.about-card {
    text-align: center;
}

.card-image {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    
    height: 300px;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,102,204,0.8) 0%, rgba(0,102,204,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card h3 {
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: 600;
}

/* Anniversary Section */
.anniversary {
    background: #0066cc;
    color: white;
    padding: 80px 0;
}

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

.logo-white {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.anniversary-number {
    position: relative;
    display: inline-block;
}

.number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
}

.infinity-symbol {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 20px;
    background-image: url('../images/graphics/infinity-symbol.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.anniversary-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.anniversary-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background: white;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.7;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-placeholder {
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Job Application Section */
.job-application {
    padding: 80px 0;
    background: #0066cc;
    color: white;
}

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

.job-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.job-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.job-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-right img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Split Layout Sections */
.workplace-baseline,
.sustainability,
.talent-scarcity,
.annual-report,
.capital-markets {
    padding: 80px 0;
}

.workplace-baseline,
.talent-scarcity,
.annual-report {
    background: white;
}

.sustainability,
.capital-markets {
    background: #f8f9fa;
}

.baseline-content,
.sustainability-content,
.scarcity-content,
.report-content,
.markets-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.baseline-left img,
.sustainability-right img,
.scarcity-left img,
.report-right img,
.markets-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.baseline-left img:hover,
.sustainability-right img:hover,
.scarcity-left img:hover,
.report-right img:hover,
.markets-right img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.baseline-title,
.sustainability-title,
.scarcity-title,
.report-title,
.markets-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.baseline-description,
.sustainability-description,
.scarcity-description,
.report-description,
.markets-description {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.event-details {
    list-style: none;
    margin-bottom: 2rem;
}

.event-details li {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* Capital Markets Special Styling */
.capital-markets {
    background: #003d7a;
    color: white;
}

.capital-markets .section-label {
    color: #66b3ff;
}

.capital-markets .baseline-title,
.capital-markets .sustainability-title,
.capital-markets .scarcity-title,
.capital-markets .report-title,
.capital-markets .markets-title {
    color: white;
}

.capital-markets .baseline-description,
.capital-markets .sustainability-description,
.capital-markets .scarcity-description,
.capital-markets .report-description,
.capital-markets .markets-description {
    color: rgba(255,255,255,0.9);
}

/* Find Office Section */
.find-office {
    background: #0066cc;
    color: white;
    padding: 80px 0;
}

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

.office-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-pin {
    width: 200px;
    height: 200px;
    background-image: url('../images/graphics/map-pin.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.office-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.office-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Latest Updates Section */
.latest-updates {
    padding: 80px 0;
    background: white;
}

.updates-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.updates-title {
    font-size: 2.5rem;
    color: #333;
}

.updates-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.updates-link:hover {
    text-decoration: underline;
}

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

.update-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.update-card .card-image {
    height: 200px;
    overflow: hidden;
}

.update-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.card-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-date {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.card-title {
    font-size: 1.25rem;
    color: #333;
    margin: 0.5rem 0;
    font-weight: 600;
}

.card-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #003d7a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Floating Support Button */
.floating-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.support-btn {
    width: 50px;
    height: 50px;
    background: #0066cc;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: #004499;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .anniversary-content,
    .company-content,
    .job-content,
    .baseline-content,
    .sustainability-content,
    .scarcity-content,
    .report-content,
    .markets-content,
    .office-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-title,
    .anniversary-title,
    .job-title,
    .office-title {
        font-size: 2rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .about-title,
    .anniversary-title,
    .job-title,
    .office-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* Icon Images */
.icon-question::before { 
    content: ""; 
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../images/icons/question.png');
    background-size: contain;
    background-repeat: no-repeat;
}
