/* Modern Design Inspired by Gravity India - Updated Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gold/Bronze color scheme matching logo */
    --primary-color: #D4AF37;
    --secondary-color: #B8860B;
    --accent-color: #FFD700;
    --gradient-start: #D4AF37;
    --gradient-end: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #F4D03F;
    --bronze: #CD7F32;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --shadow-sm: 0 1px 3px rgba(212, 175, 55, 0.12), 0 1px 2px rgba(212, 175, 55, 0.24);
    --shadow: 0 4px 6px rgba(212, 175, 55, 0.15), 0 2px 4px rgba(212, 175, 55, 0.1);
    --shadow-lg: 0 10px 25px rgba(212, 175, 55, 0.2), 0 4px 10px rgba(212, 175, 55, 0.15);
    --gold-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.company-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.company-info span {
    font-weight: 500;
}

.login-btn {
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-color: var(--primary-color);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: var(--gold-shadow);
}

.navbar {
    padding: 18px 0;
    background: white;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo .logo-img {
    height: 80px;
    max-width: 300px;
    margin: 0 auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 250px;
    padding: 12px 0;
    border-radius: 10px;
    margin-top: 5px;
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Keep dropdown visible when hovering over it */
.dropdown-menu:hover {
    display: block !important;
}

/* Ensure dropdown parent stays hoverable */
.dropdown:hover .dropdown-menu {
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    padding-left: 30px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.dropdown-menu a.active::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #1a1a1a;
    border-radius: 2px;
}

.dropdown.active > a,
.nav-menu > li.dropdown.active > a {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.dropdown.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 650px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-slide-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #1a1a1a;
    font-size: 55px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    animation: pulse 3s infinite;
}

/* Hero Section - Modern Style (for backward compatibility) */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero-slide h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    color: #D4AF37;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-nav-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.slider-nav-btn:hover {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Hero Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.indicator:hover {
    transform: scale(1.2);
    background: rgba(212, 175, 55, 0.5);
}

/* Buttons - Modern Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: var(--gold-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gradient-end) 100%);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
}

.btn-hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--gold-shadow);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gradient-end) 100%);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
    display: block;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Services Hero Cards */
.services-hero {
    background: var(--bg-light);
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-hero-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.service-hero-card:hover::before {
    transform: scaleX(1);
}

.service-hero-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #1a1a1a;
    font-size: 45px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.service-hero-card:hover .service-hero-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-hero-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-hero-card p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
}

/* Statistics Showcase */
.stats-showcase {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.stats-showcase .stat-card {
    text-align: center;
    padding: 35px 25px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.stats-showcase .stat-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

.stats-showcase .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.stats-showcase .stat-label {
    font-size: 16px;
    color: rgba(212, 175, 55, 0.9);
    font-weight: 500;
}

/* About Section */
.about-section {
    background: var(--bg-color);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    padding: 15px 0;
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 20px;
}

.about-stats-inline {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.about-stat-label {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 80px;
    box-shadow: var(--gold-shadow);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Core Strength Section */
.core-strength-section {
    background: white;
    padding: 80px 0;
}

.core-strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.core-strength-item {
    background: var(--bg-light);
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.core-strength-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.core-strength-item:hover::before {
    transform: scaleX(1);
}

.core-strength-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: white;
}

.core-strength-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    line-height: 1;
}

.core-strength-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1a1a1a;
    font-size: 40px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.core-strength-item:hover .core-strength-icon {
    transform: scale(1.1) rotate(5deg);
}

.core-strength-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.core-strength-item p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.core-strength-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.core-strength-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Investor Section - Card Style */
.investor-section {
    background: var(--bg-light);
}

.investor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.investor-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.investor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.investor-card:hover::before {
    transform: scaleX(1);
}

.investor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.investor-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1a1a1a;
    font-size: 40px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.investor-card:hover .investor-icon {
    transform: scale(1.1) rotate(5deg);
}

.investor-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.investor-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    box-shadow: var(--gold-shadow);
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* News Section */
.news-section {
    background: white;
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.news-card-content {
    padding: 30px;
}

.news-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-color);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.page-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.breadcrumb {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-block {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.content-block h2,
.content-block h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-block h2 {
    font-size: 36px;
}

.content-block h3 {
    font-size: 28px;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 16px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 18px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.strength-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--primary-color);
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a1a1a;
    font-size: 30px;
    box-shadow: var(--gold-shadow);
}

.strength-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.strength-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    border-radius: 15px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
    border: 1px solid #ef4444;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card h3 i {
    font-size: 24px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 15px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.footer-section h3 {
    margin-bottom: 30px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-info-item {
    margin-bottom: 25px;
}

.footer-info-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
    width: 24px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-info-item strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-info-item span {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.project-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #1a1a1a;
    font-size: 45px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
}

.project-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.project-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.project-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0;
}

.project-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.project-features i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 16px;
}

/* Project Detail Pages */
.project-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.project-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #1a1a1a;
    font-size: 60px;
    box-shadow: var(--gold-shadow);
}

.project-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.project-header .lead {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.project-details {
    margin-bottom: 50px;
}

.project-details h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background: var(--bg-light);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
    background: white;
}

.service-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.project-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 50px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--gold-shadow);
}

.project-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.project-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    color: rgba(212, 175, 55, 0.9);
}

.projects-cta {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    border: 2px solid var(--border-color);
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        position: static;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    /* Mobile dropdown menu */
    .nav-menu .dropdown-menu {
        position: static;
        display: none;
        margin-top: 0;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        border-radius: 5px;
        margin-left: 20px;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .core-strength-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .company-info {
        flex-direction: column;
        gap: 5px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    section {
        padding: 50px 0;
    }

    .logo-img {
        height: 50px;
        max-width: 200px;
    }

    .login-logo .logo-img {
        height: 70px;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero,
    .hero-slider {
        min-height: 500px;
    }

    .hero-slides-container {
        height: 500px;
    }

    .hero h1,
    .hero-slide h1 {
        font-size: 32px;
    }

    .hero-slide-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

    .hero-slider-indicators {
        bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .investor-grid,
    .news-grid,
    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .content-block {
        padding: 30px 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .project-header h2 {
        font-size: 28px;
    }

    .project-icon-large {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }
}

/* Team Page Styles - Committees and Directors */
.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.directors-grid,
.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.director-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.director-card:hover::before {
    transform: scaleX(1);
}

.director-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.director-card.highlight-card {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.director-card.highlight-card::before {
    height: 5px;
    transform: scaleX(1);
}

.director-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.director-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 35px;
    box-shadow: var(--gold-shadow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.director-card:hover .director-avatar {
    transform: scale(1.1) rotate(5deg);
}

.director-avatar.highlight-avatar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.director-title {
    flex: 1;
}

.director-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.director-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.info-item i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.info-item span {
    flex: 1;
}

.info-item strong {
    color: var(--text-color);
    font-weight: 600;
}

.committee-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.committee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.committee-card:hover::before {
    transform: scaleX(1);
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.committee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1a1a1a;
    font-size: 45px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.committee-card:hover .committee-icon {
    transform: scale(1.1) rotate(5deg);
}

.committee-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.committee-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
    font-style: italic;
}

.committee-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.committee-list li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.committee-list li:last-child {
    border-bottom: none;
}

.committee-list li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Directors Table Styles */
.directors-table-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow-x: auto;
    margin-top: 40px;
}

.directors-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 1000px;
}

.directors-table thead {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
}

.directors-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid rgba(26, 26, 26, 0.2);
}

.directors-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.directors-table tbody tr:hover {
    background: var(--bg-light);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.directors-table tbody tr.highlight-row {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
}

.directors-table tbody tr.highlight-row:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.directors-table td {
    padding: 18px 15px;
    color: var(--text-color);
    vertical-align: top;
    line-height: 1.6;
}

.directors-table td strong {
    color: var(--text-color);
    font-weight: 600;
}

.directors-table td:nth-child(3) {
    max-width: 400px;
    word-wrap: break-word;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-director {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.badge-ceo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.badge-cfo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.badge-secretary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    font-size: 12px;
    padding: 6px 12px;
}

/* Responsive Table */
@media (max-width: 768px) {
    .committees-grid,
    .directors-grid,
    .management-grid {
        grid-template-columns: 1fr;
    }

    .director-card {
        padding: 25px;
    }

    .director-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .director-avatar {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .directors-table-wrapper {
        padding: 20px;
        border-radius: 15px;
    }

    .directors-table {
        font-size: 13px;
        min-width: 800px;
    }

    .directors-table th,
    .directors-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .directors-table td:nth-child(3) {
        max-width: 250px;
        font-size: 12px;
    }

    .badge {
        font-size: 11px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .directors-table {
        min-width: 600px;
    }

    .directors-table th,
    .directors-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .committee-card {
        padding: 30px 25px;
    }

    .committee-icon {
        width: 80px;
        height: 80px;
        font-size: 35px;
    }

    .accordion-container {
        margin-top: 20px;
    }

    .accordion-item {
        margin-bottom: 15px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .reports-grid {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 20px;
        gap: 15px;
    }

    .accordion-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .accordion-title h3 {
        font-size: 18px;
    }

    .year-accordion-header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .year-title {
        font-size: 16px;
    }

    .year-count {
        font-size: 11px;
        padding: 4px 10px;
    }

    .report-card {
        padding: 15px;
    }

    .registrar-card {
        flex-direction: column;
        padding: 30px 25px;
    }

    .registrar-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin: 0 auto;
    }
}

/* Investor Relations Accordion Styles */
.accordion-container {
    max-width: 1000px;
    margin: 40px auto 0;
}

.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-bottom: 2px solid var(--primary-color);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.accordion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 24px;
    box-shadow: var(--gold-shadow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: scale(1.1);
}

.accordion-title {
    flex: 1;
}

.accordion-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.accordion-count {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-toggle i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.accordion-item.active .accordion-toggle {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.accordion-item.active .accordion-toggle i {
    color: #1a1a1a;
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 30px 25px;
    background: var(--bg-light);
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Year Accordion */
.year-accordion-item {
    background: white;
    border-radius: 12px;
    margin: 15px 0;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.year-accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.year-accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.year-accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.year-accordion-header:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
}

.year-accordion-item.active .year-accordion-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-bottom: 2px solid var(--primary-color);
}

.year-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 18px;
    box-shadow: var(--gold-shadow);
    flex-shrink: 0;
}

.year-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
}

.year-count {
    font-size: 13px;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.year-toggle {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.year-toggle i {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.year-accordion-item.active .year-toggle {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.year-accordion-item.active .year-toggle i {
    color: #1a1a1a;
    transform: rotate(90deg);
}

.year-accordion-content {
    display: none;
    padding: 20px 25px;
    background: white;
}

.year-accordion-item.active .year-accordion-content {
    display: block;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding-top: 10px;
}

.report-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.report-card:hover::before {
    transform: scaleY(1);
}

.report-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.report-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.report-info {
    flex: 1;
    min-width: 0;
}

.report-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.report-type {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.report-action {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.report-card:hover .report-action {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #1a1a1a;
    transform: rotate(-45deg);
}

/* No Reports Message */
.no-reports-message {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px dashed var(--border-color);
}

.message-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #1a1a1a;
    font-size: 45px;
    box-shadow: var(--gold-shadow);
}

.no-reports-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.no-reports-message p {
    font-size: 16px;
    color: var(--text-light);
}

/* Registrar Card */
.registrar-card {
    max-width: 800px;
    margin: 40px auto 0;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.registrar-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.registrar-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 35px;
    box-shadow: var(--gold-shadow);
    flex-shrink: 0;
}

.registrar-info {
    flex: 1;
}

.registrar-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.registrar-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registrar-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.registrar-detail-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.registrar-detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.registrar-detail-item a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Under Construction Page Styles */
.under-construction {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.under-construction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.construction-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #1a1a1a;
    font-size: 55px;
    box-shadow: var(--gold-shadow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--gold-shadow);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    }
}

.under-construction h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.under-construction p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.construction-message {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}

.under-construction .btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .under-construction {
        padding: 40px 30px;
        margin: 40px 20px;
    }

    .construction-icon {
        width: 100px;
        height: 100px;
        font-size: 45px;
    }

    .under-construction h2 {
        font-size: 28px;
    }

    .under-construction p {
        font-size: 16px;
    }
}

/* About Page - Hero Card */
.about-hero-card {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.about-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.about-hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-logo-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 55px;
    box-shadow: var(--gold-shadow);
    flex-shrink: 0;
}

.company-info-text {
    flex: 1;
    min-width: 300px;
}

.company-info-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.company-tagline {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.company-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.company-detail-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    transform: translateY(-3px);
}

.company-detail-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.company-detail-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.company-detail-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

/* History Card */
.history-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
}

.history-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.history-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 35px;
    box-shadow: var(--gold-shadow);
    flex-shrink: 0;
}

.history-content {
    flex: 1;
}

.history-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.history-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.history-highlight i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.history-highlight p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}

/* Business Verticals Grid */
.business-verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.business-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 40px;
    box-shadow: var(--gold-shadow);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.business-card:hover .business-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.business-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.business-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.business-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    transition: gap 0.3s ease;
}

.business-card:hover .business-card-link {
    gap: 12px;
    color: var(--secondary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 15px 15px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a1a1a;
    font-size: 30px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Enhanced Stats Cards */
.stats-showcase {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a1a1a;
    font-size: 30px;
    box-shadow: var(--gold-shadow);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-card {
        padding: 30px 25px;
    }

    .about-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .company-details-grid {
        grid-template-columns: 1fr;
    }

    .history-card {
        flex-direction: column;
        padding: 30px 25px;
    }

    .business-verticals-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .company-info-text h2 {
        font-size: 28px;
    }

    .history-content h3 {
        font-size: 24px;
    }
}
