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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-title {
    flex: 1;
    text-align: center;
}

.nav-title h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.menu-toggle {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.menu-toggle i {
    font-size: 1.5rem;
    color: #2563eb;
    transition: all 0.3s ease;
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-100%);
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.menu-overlay::-webkit-scrollbar {
    display: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch; /* <-- update from flex-start */
}

.menu-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}
.menu-section {
    background: rgba(255, 255, 255, 0.1);
  border-radius: 20px; 
  padding: 1rem;
  min-width: 250px; 
  max-width: 300px; 
  flex: 1 1 250px;
    transition: transform 0.3s ease;
}
.menu-section:hover {
    transform: translateY(-5px);
}

.menu-section h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.menu-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #60a5fa;
    border-radius: 1px;
}

.menu-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-section li {
    margin-bottom: 0.8rem;
}

.menu-section a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-section a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-section a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.menu-section a:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    box-sizing: border-box;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    grid-column: 1;
    max-width: 600px;
    padding: 0 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    height: calc(100vh - 80px);
    justify-content: center;
    margin-top: 0;
    padding-top: 30px;
    transform: translateY(0);
}

.hero-header {
    position: relative;
    z-index: 5;
    transform: translateY(0);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 6;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-badge:hover::before {
    left: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #60a5fa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
    position: relative;
    z-index: 10;
    margin-top: 0;
    transform: translateY(0);
    will-change: transform;
    animation: titleAppear 2.5s ease-out forwards;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #60a5fa, transparent);
    border-radius: 2px;
}

.hero-info-card {
    grid-column: 2;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 20;
    margin-bottom: 2rem;
    align-self: center;
    justify-self: center;
    margin-top: 0;
    width: 300px;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.hero-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.year-number {
    font-size: 5rem;
    font-weight: 900;
    /* color: #60a5fa; */
    line-height: 1;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
    position: relative;
}

.year-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.year-text {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.hero-period {
    padding: 1.5rem 2.5rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-period::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.hero-period:hover::before {
    left: 100%;
}

.period-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    margin-top: 0.5rem;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8, #3b82f6);
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.hero-visual {
    grid-column: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-graphics {
    position: relative;
    width: 100%;
    height: 100%;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-2 {
    width: 100px;
    height: 100px;
    top: 55%;
    right: 20%;
    animation-delay: 2s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.circle-3 {
    width: 180px;
    height: 180px;
    top: 35%;
    right: 5%;
    animation-delay: 4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.graphic-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: pulse 4s ease-in-out infinite;
    border-radius: 1px;
}

.line-1 {
    width: 250px;
    height: 3px;
    top: 25%;
    right: 8%;
    animation-delay: 1s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.line-2 {
    width: 200px;
    height: 3px;
    top: 75%;
    right: 15%;
    animation-delay: 3s;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Overview Section */
.overview {
    background: #f8fafc;
}

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

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.overview-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Financials Section */
.financials {
    background: white;
}

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

.financial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.financial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.financial-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.financial-change {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.financial-change.positive {
    color: #059669;
}

.financial-change.negative {
    color: #dc2626;
}

/* Operations Section */
.operations {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.operations-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.operations-text ul {
    list-style: none;
}

.operations-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.operations-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

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

.counter-item {
    text-align: center;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    display: block;
}

.counter-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Future Section */
.future {
    background: #f8fafc;
}

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

.future-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.future-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.future-card ul {
    list-style: none;
}

.future-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.future-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #60a5fa;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
        filter: blur(3px);
    }
    30% {
        opacity: 0.3;
        transform: translateY(20px) scale(0.95);
        filter: blur(2px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.98);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-info-card {
        right: 3%;
        padding: 1.5rem;
    }
    
    .year-number {
        font-size: 4rem;
    }
    
    .year-number::after {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .nav-title h2 {
        font-size: 1.2rem;
    }
    
    .menu-content {
        padding: 100px 15px 30px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-section {
        padding: 1.5rem;
    }
    
    .menu-section h3 {
        font-size: 1.1rem;
    }
    
    .menu-section a {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem 0;
        gap: 1.5rem;
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
        position: relative;
    }
    
    .hero-content {
        grid-column: 1;
        gap: 1.5rem;
        padding: 0 15px;
        height: auto;
        min-height: 300px;
        justify-content: flex-start;
        padding-top: 100px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-info-card {
        grid-column: 1;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 2rem auto;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        align-self: center;
        justify-self: center;
        margin-top: 2rem;
        width: 180px;
        height: 250px;
        z-index: 20;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
    }
    
    .year-number {
        font-size: 3.5rem;
    }
    
    .year-number::after {
        width: 100px;
        height: 100px;
    }
    
    .hero-period {
        padding: 1rem 1.5rem;
    }
    
    .period-text {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        grid-column: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        z-index: 1;
        justify-content: center;
        align-items: center;
    }
    
    .orchasp-logo {
        max-width: 250px;
        height: auto;
    }
    
    .operations-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .achievement-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .overview-grid,
    .financial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-title h2 {
        font-size: 1rem;
    }
    
    .menu-content {
        padding: 80px 10px 20px;
    }
    
    .menu-section {
        padding: 1rem;
    }
    
    .menu-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .menu-section a {
        font-size: 0.85rem;
        padding: 0.6rem 0.7rem;
    }
    
    .hero {
        padding: 0.5rem 0;
        gap: 1rem;
    }
    
    .hero-content {
        gap: 1rem;
        padding: 0 10px;
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-info-card {
        padding: 1rem;
        gap: 1rem;
        width: 160px;
        height: 220px;
        justify-content: center;
        align-items: center;
        margin: 1.5rem auto;
        margin-top: 1.5rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        z-index: 20;
    }
    
    .hero-visual {
        grid-column: 1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        z-index: 1;
        justify-content: center;
        align-items: center;
    }
    
    .year-number {
        font-size: 3rem;
    }
    
    .year-number::after {
        width: 80px;
        height: 80px;
    }
    
    .year-text {
        font-size: 1rem;
    }
    
    .hero-period {
        padding: 0.8rem 1.2rem;
    }
    
    .period-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-actions {
        gap: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .orchasp-logo {
        max-width: 200px;
    }
    
    .achievement-counter {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .overview-card,
    .financial-card,
    .future-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .operations-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .operations-text li {
        padding: 0.4rem 0;
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}

/* Board of Directors Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Title Section */
.page-title-section {
    padding: 80px 0 10px;
    text-align: left;
}

.page-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #1f2937;
}

/* Directors Section */
.directors-section {
    padding: 10px 0;
    background: #1e3a8a;
}

.directors-layout {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.directors-left {
    width: 70%;
}

.directors-right {
    width: 30%;
    position: sticky;
    top: 80px;
    height: fit-content;
    max-height: calc(100vh - 120px);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
}

.directors-grid::-webkit-scrollbar {
    width: 8px;
}

.directors-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.directors-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.directors-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.director-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.director-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.director-image {
    height: 300px;
    overflow: hidden;
    background: #f8fafc;
}

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

.director-info {
    padding: 1rem;
    background: white;
}

.director-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.director-designation {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

.director-din {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.committee-section {
    margin-top: 0.8rem;
}

.committee-label {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-family: 'Inter', sans-serif;
}

/* Display multiple committee icons in a row */
.committee-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.committee-icons-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.committee-icon {
    width: 28px;
    height: 28px;
    background: #10b981; /* Default green color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.4rem;
}

/* Override default color with committee-specific colors */
.committee-icon.audit-committee {
    background: #00bfff; /* Light blue (cyan) */
}

.committee-icon.nomination-committee {
    background: #32cd32; /* Lime green */
}

.committee-icon.stakeholders-committee {
    background: #ff8c00; /* Bright orange */
}

.committee-icon.csr-committee {
    background: #008080; /* Dark green (teal) */
}

.committee-icon span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}



/* Right Side Content */
.directors-info-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
    max-height: 100vh;
    overflow: visible;
}

/* Committee Legend */
.committee-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.legend-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    flex: 1;
}

/* Committee Icon Colors */
.audit-committee {
    background: #00bfff; /* Light blue (cyan) */
}

.nomination-committee {
    background: #32cd32; /* Lime green */
}

.stakeholders-committee {
    background: #ff8c00; /* Bright orange */
}

.csr-committee {
    background: #008080; /* Dark green (teal) */
}

/* Page Navigation */
.page-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-left,
.nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.nav-left:hover,
.nav-right:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    max-width: 200px;
    line-height: 1.3;
    text-decoration: none;
}





/* Responsive Design for Board Page */
@media (max-width: 1024px) {
    .directors-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .directors-left,
    .directors-right {
        width: 100%;
    }
    
    .directors-right {
        position: static;
    }
    
    .directors-grid {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .page-title-section {
        padding: 70px 0 25px;
    }
    
    .page-main-title {
        font-size: 2.5rem;
    }
    
    .directors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .director-image {
        height: 200px;
    }
    
    .diagonal-divider {
        border-bottom-width: 30px;
    }
    

}

@media (max-width: 480px) {
    .page-title-section {
        padding: 60px 0 20px;
    }
    
    .page-main-title {
        font-size: 2rem;
    }
    
    .director-card {
        margin: 0 10px;
    }
    
    .director-image {
        height: 180px;
    }
    
    .diagonal-divider {
        border-bottom-width: 25px;
    }
    
    .directors-info-content {
        padding: 1rem;
    }
    
    .legend-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .legend-icon {
        width: 24px;
        height: 24px;
    }
    
    .legend-text {
        font-size: 0.85rem;
    }
    
    .page-navigation {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-left,
    .nav-right {
        padding: 0.75rem;
    }
    
    .page-name {
        max-width: 150px;
        font-size: 1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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