:root {
    --primary: #00A3C4;
    --primary-dark: #00819C;
    --accent: #F8F9FA;
    --accent-light: #E9ECEF;
    --bg-light: #FFFFFF;
    --bg-dark: #F8F9FA;
    --text-main: #0A192F;
    --text-muted: #4A5568;
    --glass: rgba(255, 255, 255, 0.8);
    --border-glass: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-main);
}

.display-1 { font-size: clamp(3.5rem, 8vw, 7.5rem); letter-spacing: -0.04em; }
.display-4 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }

/* Layout Components */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

section {
    padding: 120px 0;
    position: relative;
}

/* Premium Header */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.header-main.scrolled {
    height: 70px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span { color: var(--primary); }

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary); }

.nav-link:focus-visible, .cta-header:focus-visible, .btn-primary:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

/* Mega Menu */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    background: var(--accent);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mega-menu-link {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: color 0.3s;
}

.mega-menu-link:hover {
    color: var(--primary);
}

.cta-header {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: transform 0.3s, background 0.3s;
}

.cta-header:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #f4f7f6 0%, #ffffff 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: 30px;
    max-width: 600px;
}

.hero-btns {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.hero-btns .btn-primary {
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    background: var(--primary);
    color: #fff;
}

.hero-btns .btn-secondary {
    padding: 18px 40px;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid var(--border-glass);
    border-radius: 4px;
}

/* Stats Section */
.overview {
    background: var(--bg-dark);
    padding: 80px 0;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    color: var(--primary);
}
.bi-search{ 
    color:#000; 
}
.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Solutions Section */
.solutions-section {
    padding: 160px 0;
    background: var(--bg-light);
}

.solutions-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.solutions-text {
    flex: 1;
    min-width: 300px;
}

.solutions-text h6 {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.solutions-text h2 {
    margin-bottom: 30px;
    color: var(--text-main);
}

.solutions-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.solutions-list {
    list-style: none;
    color: var(--text-main);
}

.solutions-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.solutions-list li span {
    width: 20px;
    height: 1px;
    background: var(--primary);
}

.solutions-img-wrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.solutions-img-container {
    width: 100%;
    aspect-ratio: 1.2;
    position: relative;
}

.solutions-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.solutions-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 163, 196, 0.5) 0%, transparent 70%);
    border-radius: 20px;
}

/* Horizontal Scroll */
.horizontal-scroll {
    padding: 0;
    height: 100vh;
    display: flex;
    width: 300vw;
    background: var(--bg-dark);
}

.horizontal-item {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    position: relative;
}

.horizontal-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.horizontal-item-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.horizontal-item-content h2 {
    opacity: 0.1;
    color: var(--text-main);
}

.horizontal-item-content h3 {
    color: var(--text-main);
}

.horizontal-item-content p {
    color: var(--text-muted);
    max-width: 500px;
    margin-top: 20px;
}

/* Investor Section */
.ir-portal {
    padding: 140px 0;
    background: #fff;
}

.ir-header-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.ir-header-text h6 {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.ir-header-text h2 {
    color: var(--text-main);
}

.ir-btn-visit {
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
}

.ir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ir-card {
    position: relative;
    overflow: hidden;
}

.ir-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.ir-card-content {
    position: relative;
    z-index: 1;
}

.ir-card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.ir-card-content h4 {
    color: var(--text-main);
}

.ir-card-content p {
    color: var(--text-muted);
    margin: 15px 0 25px;
}

.ir-card-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.leadership-header {
    text-align: center;
    margin-bottom: 60px;
}

.leadership-header h6 {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.leadership-header h2 {
    color: var(--text-main);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.leader-img-wrapper {
    width: 200px;
    height: 350px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h4 {
    color: var(--text-main);
}

.leader-card p {
    color: var(--primary);
    font-weight: 600;
}

/* Infrastructure Section */
.infra-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.infra-header {
    text-align: center;
    margin-bottom: 60px;
}

.infra-header h6 {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

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

.infra-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.infra-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.infra-item:hover img {
    transform: scale(1.1);
}

.infra-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.infra-overlay h5 {
    margin: 0;
    color: #fff;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h6 {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.faq-header h2 {
    color: var(--text-main);
}

.faq-header p {
    color: var(--text-muted);
    margin-top: 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 30px;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer Improvements */
.footer-main {
    background: var(--bg-dark);
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-glass);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col-about {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 30px;
    display: inline-block;
    color: var(--text-main);
    text-decoration: none;  
}

.footer-col-about p {
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 40px;
}

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

.footer-col-links h5 {
    margin-bottom: 25px;
    color: var(--text-main);
}

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

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

.footer-col-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col-contact {
    flex: 1;
    min-width: 250px;
}

.footer-col-contact h5 {
    margin-bottom: 25px; 
    color: var(--text-main);
}

.footer-col-contact .contact-label {
    margin-top: 30px; 
    margin-bottom: 15px;
}

.footer-col-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--primary);
}



.active {
    opacity: 1;
    transform: translateY(0);
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h6 {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-hero-content h1 {
    color: var(--text-main);
}

/* Generic Page Layout */
.page-section {
    padding: 100px 0;
    background: #fff;
    color: var(--text-main);
}

.page-flex {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.page-text {
    flex: 1;
    min-width: 300px;
}

.page-text h2 {
    margin-bottom: 30px;
}

.page-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.page-img-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-img-container {
    width: 100%;
    aspect-ratio: 4/3;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
}

.page-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page Specifics */
.contact-row {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 50px;
    color: var(--text-main);
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item h4 {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-info-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.contact-form-container {
    background: #F8F9FA;
    padding: 60px;
    border-radius: 12px;
}

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

.contact-form-grid .full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.stat-grid-simple {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
}

.stat-card-simple {
    border-left: 3px solid var(--primary); 
    padding-left: 20px;
}

.stat-card-simple h4 {
    margin-bottom: 5px;
}

.stat-card-simple p {
    color: var(--text-muted); 
    font-size: 0.9rem;
}

.feature-card-dark {
    background: var(--bg-dark); 
    padding: 60px; 
    border-radius: 12px; 
    color: #fff;
}

.feature-card-dark h6 {
    color: var(--primary); 
    letter-spacing: 2px; 
    margin-bottom: 15px;
}

.feature-card-dark h3 {
    color: #fff;
}

.feature-card-dark p {
    color: #888; 
    margin: 20px 0 40px;
}

.icon-list-simple {
    display: flex; 
    flex-direction: column; 
    gap: 20px;
}

.icon-list-item {
    display: flex; 
    gap: 15px;
}

.icon-list-item i {
    color: var(--primary);
}
.careers-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.careers-header h2 {
    color: var(--text-main);
}

.careers-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-top: 20px;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.job-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.job-info h4 {
    margin-bottom: 5px;
    color: var(--text-main);
}

.job-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.job-apply-btn {
    text-decoration: none;
    padding: 12px 30px;
    font-size: 0.85rem;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s;
}

.job-apply-btn:hover {
    background: var(--primary-dark);
}

.careers-footer {
    margin-top: 80px;
    text-align: center;
    padding: 60px;
    background: var(--bg-dark);
    border-radius: 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.careers-footer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.careers-footer-content {
    position: relative;
    z-index: 1;
}

.careers-footer-content h3 {
    margin-bottom: 20px;
}

.careers-footer-content p {
    color: #ccc;
    margin-bottom: 40px;
}

.feature-box-dark {
    background: var(--bg-dark); 
    color: #fff; 
    padding: 40px; 
    border-radius: 12px;
}

.feature-box-dark h4 {
    color: var(--primary); 
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
}

.check-list li {
    color: var(--text-main);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.ir-header {
    padding: 160px 0 80px; 
    background: var(--accent);
}

.ir-header h6 {
    color: var(--primary); 
    letter-spacing: 3px; 
    margin-bottom: 20px;
}

.logo img, .footer-logo img {
    height: 40px; 
    margin-right: 10px; 
    vertical-align: middle;
}

.search-toggle {
    background: transparent; 
    border: none; 
    color: #000; 
    font-size: 1.2rem; 
    cursor: pointer;
}
.text-decoration-none, a{ 
    text-decoration: none;
    color: #000;
}
.offcanvas-menu .close-menu {
    position: absolute; 
    top: 40px; 
    right: 40px; 
    cursor: pointer; 
    background: #000; 
    border: none;
}

.search-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(10,25,47,0.98); 
    backdrop-filter: blur(20px); 
    z-index: 2000; 
    display: none; 
    align-items: center; 
    justify-content: center;
}

.search-overlay .close-search {
    position: absolute; 
    top: 40px; 
    right: 40px; 
    background: transparent; 
    border: none; 
    color: #fff; 
    font-size: 2rem; 
    cursor: pointer;
}

.search-overlay .search-container {
    max-width: 800px;
    width: 90%;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-overlay input {
    width: 100%; 
    background: transparent; 
    border: none; 
    border-bottom: 2px solid var(--primary); 
    color: #fff; 
    font-size: 3.5rem; 
    padding: 20px 80px 20px 0; 
    outline: none;
    transition: 0.3s;
}

.search-overlay input:focus {
    border-bottom-color: #fff;
}

.search-submit-btn {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
    line-height: 1;
}

.search-submit-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

.search-hint {
    margin-top: 25px; 
    color: #8892B0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .search-overlay input {
        font-size: 2rem;
        padding-right: 50px;
    }
    .search-submit-btn {
        font-size: 1.8rem;
    }
}
.ir-sidebar-card {
    background: #fff; 
    padding: 30px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 

    top: 120px;
}

.ir-filter-group {
    margin-bottom: 30px;
}

.ir-filter-label {
    font-weight: 700; 
    display: block; 
    margin-bottom: 15px;
}

.ir-search-input-wrapper {
    position: relative;
}

.ir-search-input {
    width: 100%; 
    padding: 12px 40px 12px 15px; 
    border: 1px solid #ddd; 
    border-radius: 6px;
}

.ir-search-icon {
    position: absolute; 
    right: 15px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #999;
}

.ir-doc-card {
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap;
    gap:10px; 
    align-items: center; 
    padding: 25px 40px; 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ir-doc-info {
    display: flex; 
    align-items: center; 
    gap: 25px;
}

.ir-doc-icon {
    width: 50px; 
    height: 50px; 
    background: rgba(0, 163, 196, 0.1); 
    color: var(--primary); 
    border-radius: 8px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem;
}

.ir-doc-details h5 {
    margin-bottom: 5px; 
    color: var(--text-main);
}

.ir-doc-meta {
    display: flex; 
    gap: 20px; 
    font-size: 0.85rem; 
    color: var(--text-muted);
}

.ir-doc-btns {
    display: flex; 
    gap: 15px;
}

.btn-preview-outline {
    padding: 10px 20px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    text-decoration: none; 
    color: #666; 
    font-size: 0.9rem; 
    font-weight: 600;
}

.btn-download-fill {
    padding: 10px 20px; 
    background: var(--primary); 
    border-radius: 4px; 
    text-decoration: none; 
    color: #fff; 
    font-size: 0.9rem; 
    font-weight: 600;
}

.img-overlay-box {
    width: 100%; 
    aspect-ratio: 4/5; 
    background: #000; 
    border-radius: 12px; 
    overflow: hidden; 
    position: relative;
}

.img-overlay-box img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.7;
}

.img-overlay-box .overlay-content {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center;
}

.img-overlay-box .overlay-content i {
    color: var(--primary);
    font-size: 5rem;
}

/* Animations */
.-text {
    overflow: hidden;
}

/* Investor Relations Portal */
.ir-portal {
    background: var(--bg-light);
    color: var(--accent);
}

.ir-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.ir-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Mobile Menu Offcanvas */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 100px 40px 50px;
    overflow-y: auto;
    transition: right 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.offcanvas-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-link {
    font-size: 2.2rem;
    color: #000;
    text-decoration: none;
    margin: 15px 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.offcanvas-dropdown {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.offcanvas-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.offcanvas-dropdown-toggle i {
    font-size: 1.5rem;
    padding: 20px;
    cursor: pointer;
    color: var(--primary);
    transition: transform 0.3s;
}

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

.offcanvas-dropdown-menu {
    display: none;
    flex-direction: column;
    padding: 0 0 20px 20px;
}

.offcanvas-dropdown.active .offcanvas-dropdown-menu {
    display: flex;
}

.offcanvas-dropdown-menu a {
    font-size: 1.1rem;
    color: #666;
    text-decoration: none;
    margin: 10px 0;
    font-weight: 600;
    transition: color 0.3s;
}

.offcanvas-dropdown-menu a:hover {
    color: var(--primary);
}

.offcanvas-dropdown-menu .dropdown-header {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 20px 0 10px;
    font-weight: 700;
}

/* Horizontal Scroll */
.horizontal-wrapper {
    overflow: hidden;
}

.horizontal-item {
    flex-shrink: 0;
}

/* Magnetic Button Animation */
.btn-primary, .cta-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

/* Investor Portal Enhancements */
.btn-preview:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.btn-download:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.ir-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.ir-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Smooth Scroll Helper */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@media (max-width: 1024px) {
    .nav-menu, .cta-header { display: none; }
    .mobile-menu-toggle { display: block; }
}
