/* ===== MODERN RAMS PHARMA STYLES ===== */

/* CSS Variables */
:root {
    --rp-primary: #0036bf;
    --rp-accent: #fc8e05;
    --rp-bg: #ffffff;
    --rp-text: #2c3e50;
    --rp-light: #f8f9fa;
    --rp-gradient-primary: linear-gradient(135deg, #0036bf 0%, #002a9e 100%);
    --rp-gradient-accent: linear-gradient(135deg, #fc8e05 0%, #e67e00 100%);
    --rp-gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --rp-shadow: 0 10px 30px rgba(0, 54, 191, 0.1);
    --rp-shadow-hover: 0 20px 40px rgba(0, 54, 191, 0.2);
    --rp-border-radius: 20px;
    --rp-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--rp-text);
    background: var(--rp-bg);
    overflow-x: hidden;
    padding-top: 80px;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    transition: var(--rp-transition);
    box-shadow: 0 4px 20px rgba(0, 54, 191, 0.3);
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.navbar::after {
    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: shine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

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

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 54, 191, 0.3);
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%) !important;
    padding: 0.5rem 0;
}

.navbar-brand-text {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Arial Black', 'Helvetica Neue', sans-serif;
    color: var(--rp-accent) !important;
    text-shadow: 0 2px 8px rgba(252, 142, 5, 0.4), 0 0 20px rgba(252, 142, 5, 0.2);
    transition: var(--rp-transition);
    position: relative;
    display: inline-block;
    z-index: 2;
}

.navbar-brand-text:hover {
    transform: scale(1.05) translateY(-2px);
    text-shadow: 0 4px 12px rgba(252, 142, 5, 0.5), 0 0 25px rgba(252, 142, 5, 0.3);
}

/* ===== MOBILE NAVBAR TOGGLE BUTTON ===== */
.navbar-toggler {
    border: 2px solid var(--rp-accent) !important;
    background-color: var(--rp-accent) !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(252, 142, 5, 0.25) !important;
    border-color: var(--rp-accent) !important;
}

.navbar-toggler:hover {
    background-color: #e67e00 !important;
    border-color: #e67e00 !important;
    transform: scale(1.05);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5em !important;
    height: 1.5em !important;
}

/* Mobile navbar collapse */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 54, 191, 0.3);
    }
    
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--rp-accent) !important;
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link.active {
        background-color: var(--rp-accent) !important;
        color: #ffffff !important;
    }
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    transition: var(--rp-transition);
    padding: 0.75rem 1.25rem !important;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover,
.nav-link.active {
    color: #fc8e05 !important;
    text-decoration: underline;
    text-decoration-color: #fc8e05;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.btn-accent {
    background: transparent !important;
    border: 2px solid rgba(252, 142, 5, 0.6) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: var(--rp-transition);
    backdrop-filter: blur(10px);
}

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

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 142, 5, 0.4);
}

/* ===== HERO BANNER SLIDER ===== */
.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.banner-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.banner-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--rp-accent);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Banner Slider */
@media (max-width: 768px) {
    .banner-slider-container {
        height: 70vh;
        min-height: 400px;
    }
    
    .banner-nav {
        padding: 0 1rem;
    }
    
    .banner-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .banner-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .banner-slider-container {
        height: 60vh;
        min-height: 350px;
    }
    
    .banner-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .banner-indicators {
        bottom: 0.5rem;
    }
}


.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 60px 60px;
    animation: move 20s linear infinite;
}

@keyframes move {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

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

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats-modern {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item-modern {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions-modern {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--rp-transition);
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary-modern:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-accent-modern {
    background: var(--rp-gradient-accent);
    color: white;
    border: none;
}

.btn-accent-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 142, 5, 0.4);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    height: 500px;
    z-index: 2;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%);
    position: relative;
    overflow: hidden;
}

/* ===== NARROW STATISTICS SECTION ===== */
.stats-section-narrow {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 54, 191, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section-narrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M15,25 Q20,20 25,25 Q30,30 35,25 Q40,20 45,25 Q50,30 55,25 Q60,20 65,25 Q70,30 75,25 Q80,20 85,25" stroke="%23ffffff" stroke-width="0.35" fill="none" opacity="0.12"/><path d="M10,35 Q15,30 20,35 Q25,40 30,35 Q35,30 40,35 Q45,40 50,35 Q55,30 60,35 Q65,40 70,35 Q75,30 80,35 Q85,40 90,35" stroke="%23fc8e05" stroke-width="0.3" fill="none" opacity="0.1"/><path d="M5,45 Q10,40 15,45 Q20,50 25,45 Q30,40 35,45 Q40,50 45,45 Q50,40 55,45 Q60,50 65,45 Q70,40 75,45 Q80,50 85,45 Q90,40 95,45" stroke="%23ffffff" stroke-width="0.32" fill="none" opacity="0.08"/><path d="M20,10 Q25,5 30,10 Q35,15 40,10 Q45,5 50,10 Q55,15 60,10 Q65,5 70,10 Q75,15 80,10" stroke="%23fc8e05" stroke-width="0.28" fill="none" opacity="0.06"/><path d="M8,60 Q12,55 16,60 Q20,65 24,60 Q28,55 32,60 Q36,65 40,60 Q44,55 48,60 Q52,65 56,60 Q60,55 64,60 Q68,65 72,60 Q76,55 80,60 Q84,65 88,60 Q92,55 96,60" stroke="%23ffffff" stroke-width="0.25" fill="none" opacity="0.05"/><path d="M12,75 Q16,70 20,75 Q24,80 28,75 Q32,70 36,75 Q40,80 44,75 Q48,70 52,75 Q56,80 60,75 Q64,70 68,75 Q72,80 76,75 Q80,70 84,75 Q88,80 92,75" stroke="%23fc8e05" stroke-width="0.22" fill="none" opacity="0.04"/><circle cx="20" cy="20" r="1.4" fill="%23fc8e05" opacity="0.12"/><circle cx="5" cy="5" r="1" fill="%230036bf" opacity="0.15"/><circle cx="35" cy="5" r="1" fill="%230036bf" opacity="0.15"/><circle cx="5" cy="35" r="1" fill="%230036bf" opacity="0.15"/><circle cx="35" cy="35" r="1" fill="%230036bf" opacity="0.15"/><circle cx="65" cy="15" r="0.8" fill="%23ffffff" opacity="0.1"/><circle cx="85" cy="25" r="0.8" fill="%23ffffff" opacity="0.1"/><circle cx="15" cy="55" r="0.8" fill="%23fc8e05" opacity="0.08"/><circle cx="45" cy="65" r="0.8" fill="%23fc8e05" opacity="0.08"/><circle cx="75" cy="75" r="0.8" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="85" r="0.8" fill="%230036bf" opacity="0.1"/><circle cx="55" cy="85" r="0.8" fill="%230036bf" opacity="0.1"/><circle cx="85" cy="85" r="0.8" fill="%23fc8e05" opacity="0.08"/><circle cx="95" cy="15" r="0.7" fill="%23ffffff" opacity="0.08"/><circle cx="95" cy="45" r="0.7" fill="%23fc8e05" opacity="0.06"/><circle cx="95" cy="75" r="0.7" fill="%230036bf" opacity="0.06"/><circle cx="5" cy="65" r="0.7" fill="%23ffffff" opacity="0.08"/><circle cx="5" cy="85" r="0.7" fill="%23fc8e05" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.stats-section-narrow::after {
    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: shine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.stats-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item-compact {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.stat-number-compact {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.stat-label-compact {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.1);
}

.stat-description-compact {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.3;
}

.stat-separator-compact {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stats-compact {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-separator-compact {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
    
    .stat-item-compact {
        max-width: none;
    }
    
    .stat-number-compact {
        font-size: 2rem;
    }
}

.stats-minimal-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item-blue {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 2rem 1rem;
}

.stat-number-blue {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-blue {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.95;
}

.stat-description-blue {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
}

.stat-separator {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
    margin: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-minimal-blue {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-separator {
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 80%, transparent 100%);
        margin: 1rem 0;
    }
    
    .stat-number-blue {
        font-size: 3.5rem;
    }
}

/* ===== WHY CHOOSE SECTION - VISUAL SHOWCASE ===== */
.why-choose-visual {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="visual-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="3" fill="%230036bf" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%23fc8e05" opacity="0.2"/><circle cx="60" cy="20" r="1" fill="%23fc8e05" opacity="0.2"/><circle cx="20" cy="60" r="1" fill="%23fc8e05" opacity="0.2"/><circle cx="60" cy="60" r="1" fill="%23fc8e05" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23visual-pattern)"/></svg>');
    opacity: 0.4;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 54, 191, 0.1);
}

.why-choose-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.about-us-visual {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

/* About RamsPharma watermark - middle left */
.about-watermark {
    position: absolute;
    width: 240px;
    height: auto;
    opacity: 0.1;
    filter: none; /* keep original colors */
    pointer-events: none;
    z-index: 1;
}

.about-watermark-ml {
    top: 50%;
    left: 300px;
    transform: translateY(-50%) rotate(8deg);
    transform-origin: center left;
}

@media (max-width: 768px) {
    .about-watermark {
        width: 190px;
    }
}

@media (max-width: 480px) {
    .about-watermark {
        width: 150px;
    }
}

.about-us-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%230036bf" opacity="0.1"/><circle cx="80" cy="30" r="2" fill="%23fc8e05" opacity="0.08"/><circle cx="50" cy="60" r="2.5" fill="%230036bf" opacity="0.06"/><circle cx="10" cy="80" r="1.5" fill="%23fc8e05" opacity="0.05"/><circle cx="90" cy="70" r="1" fill="%230036bf" opacity="0.04"/><circle cx="30" cy="40" r="1.8" fill="%23fc8e05" opacity="0.07"/><circle cx="70" cy="80" r="2.2" fill="%230036bf" opacity="0.05"/><circle cx="5" cy="50" r="1.2" fill="%23fc8e05" opacity="0.06"/><circle cx="95" cy="10" r="1.5" fill="%230036bf" opacity="0.04"/><circle cx="40" cy="10" r="1.3" fill="%23fc8e05" opacity="0.05"/><circle cx="60" cy="90" r="1.7" fill="%230036bf" opacity="0.06"/><circle cx="15" cy="15" r="0.8" fill="%23fc8e05" opacity="0.03"/><circle cx="85" cy="85" r="0.9" fill="%230036bf" opacity="0.04"/><circle cx="25" cy="75" r="1.1" fill="%23fc8e05" opacity="0.05"/><circle cx="75" cy="45" r="1.4" fill="%230036bf" opacity="0.06"/><path d="M10,20 Q30,10 50,20 Q70,30 90,20" stroke="%230036bf" stroke-width="0.5" fill="none" opacity="0.08"/><path d="M20,40 Q40,30 60,40 Q80,50 100,40" stroke="%23fc8e05" stroke-width="0.3" fill="none" opacity="0.06"/><path d="M0,60 Q20,50 40,60 Q60,70 80,60" stroke="%230036bf" stroke-width="0.4" fill="none" opacity="0.05"/><path d="M5,35 Q25,25 45,35 Q65,45 85,35" stroke="%23fc8e05" stroke-width="0.2" fill="none" opacity="0.04"/><path d="M15,75 Q35,65 55,75 Q75,85 95,75" stroke="%230036bf" stroke-width="0.3" fill="none" opacity="0.05"/><path d="M0,25 Q20,15 40,25 Q60,35 80,25 Q100,15 100,25" stroke="%23fc8e05" stroke-width="0.25" fill="none" opacity="0.03"/><path d="M10,85 Q30,75 50,85 Q70,95 90,85" stroke="%230036bf" stroke-width="0.35" fill="none" opacity="0.04"/><path d="M25,5 Q45,-5 65,5 Q85,15 100,5" stroke="%23fc8e05" stroke-width="0.15" fill="none" opacity="0.02"/><path d="M0,45 Q20,35 40,45 Q60,55 80,45 Q100,35 100,45" stroke="%230036bf" stroke-width="0.2" fill="none" opacity="0.03"/><polygon points="50,10 60,25 50,40 40,25" fill="%230036bf" opacity="0.08"/><polygon points="20,50 30,65 20,80 10,65" fill="%23fc8e05" opacity="0.06"/><polygon points="80,20 90,35 80,50 70,35" fill="%230036bf" opacity="0.05"/><polygon points="10,30 20,45 10,60 0,45" fill="%23fc8e05" opacity="0.04"/><polygon points="90,60 100,75 90,90 80,75" fill="%230036bf" opacity="0.06"/><polygon points="40,70 50,85 40,100 30,85" fill="%23fc8e05" opacity="0.05"/><polygon points="70,70 80,85 70,100 60,85" fill="%230036bf" opacity="0.04"/><polygon points="30,10 40,25 30,40 20,25" fill="%23fc8e05" opacity="0.03"/><polygon points="60,40 70,55 60,70 50,55" fill="%230036bf" opacity="0.05"/><polygon points="5,5 15,20 5,35 -5,20" fill="%23fc8e05" opacity="0.02"/><polygon points="95,95 105,110 95,125 85,110" fill="%230036bf" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.about-us-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    align-items: center;
    min-height: 700px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 54, 191, 0.1);
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--rp-primary), var(--rp-accent));
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--rp-accent);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(252, 142, 5, 0.1);
}

.about-description {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: justify;
}

.about-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 54, 191, 0.25);
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 54, 191, 0.1) 0%, rgba(252, 142, 5, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-container:hover::before {
    opacity: 1;
}

.about-company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chairman-image-modern .about-image-container {
    min-height: 700px;
}

.chairman-image-modern .about-company-image {
    object-fit: contain;
    object-position: center;
}

.about-image-container:hover .about-company-image {
    transform: scale(1.08);
}

/* All features use brand colors only */

@media (max-width: 768px) {
    .about-us-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
        min-height: auto;
    }
    
    .about-content {
        order: 2;
        padding: 1rem 0;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .about-description {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .about-image-container {
        order: 1;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .about-us-showcase {
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .about-content {
        padding: 0.5rem 0;
    }
    
    .about-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-title::after {
        width: 30px;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .about-image-container {
        min-height: 280px;
    }
}

/* ===== WHY CHOOSE SECTION - HEXAGONAL GRID ===== */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="%230036bf" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title-large::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--rp-gradient-accent);
    border-radius: 2px;
}

.section-subtitle-large {
    font-size: 1.3rem;
    color: var(--rp-text);
    opacity: 0.8;
}

.hexagonal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hexagon-item {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rp-transition);
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.1);
}

.hexagon-item:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(0, 54, 191, 0.2);
}

.hex-content {
    text-align: center;
    color: var(--rp-text);
    z-index: 2;
}

.hex-content i {
    font-size: 2.5rem;
    color: var(--rp-accent);
    margin-bottom: 1rem;
    display: block;
}

.hex-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin-bottom: 0.5rem;
}

.hex-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hexagon positioning */
.hex-1 { grid-column: 1; grid-row: 1; }
.hex-2 { grid-column: 2; grid-row: 1; }
.hex-3 { grid-column: 3; grid-row: 1; }
.hex-4 { grid-column: 1; grid-row: 2; margin-top: -50px; }
.hex-5 { grid-column: 2; grid-row: 2; margin-top: -50px; }
.hex-6 { grid-column: 3; grid-row: 2; margin-top: -50px; }

/* ===== VISION MISSION VALUES - PHARMACEUTICAL TIMELINE ===== */
.vmv-timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.vmv-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pharma-pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%230036bf" opacity="0.1"/><rect x="15" y="15" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><rect x="15" y="23" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><circle cx="10" cy="10" r="2" fill="%230036bf" opacity="0.05"/><circle cx="30" cy="10" r="2" fill="%230036bf" opacity="0.05"/><circle cx="10" cy="30" r="2" fill="%230036bf" opacity="0.05"/><circle cx="30" cy="30" r="2" fill="%230036bf" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pharma-pattern)"/></svg>');
    opacity: 0.4;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    z-index: 2; /* lift above section overlays */
}

/* Visible watermark images in Foundation section */
.foundation-watermark {
    position: absolute;
    width: 260px;
    height: auto;
    opacity: 0.1;
    /* show original logo colors */
    filter: none;
    pointer-events: none;
    z-index: 1;
}

.foundation-watermark-tl {
    top: 0;
    left: 0;
    transform: rotate(8deg);
    transform-origin: top left;
}

.foundation-watermark-mr {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(-12deg);
    transform-origin: center;
}

.foundation-watermark-bl {
    bottom: 0;
    left: 0;
    transform: rotate(15deg);
    transform-origin: bottom left;
}

@media (max-width: 768px) {
    .foundation-watermark {
        width: 200px;
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .foundation-watermark {
        width: 150px;
        opacity: 0.1;
    }
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

.timeline-1 { transition-delay: 0.2s; }
.timeline-2 { transition-delay: 0.4s; }
.timeline-3 { transition-delay: 0.6s; }

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--rp-gradient-accent);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--rp-primary);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.1);
    position: relative;
    width: 45%;
    transition: var(--rp-transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 54, 191, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 54, 191, 0.15);
}

.timeline-content:hover::after {
    opacity: 1;
}

.timeline-1 .timeline-content,
.timeline-3 .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-2 .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-1 .timeline-content::before,
.timeline-3 .timeline-content::before {
    right: -30px;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-2 .timeline-content::before {
    left: -30px;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--rp-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--rp-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--rp-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(252, 142, 5, 0.3);
}

/* ===== PHARMACEUTICAL FLOATING ELEMENTS ===== */
.vmv-timeline-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><g id="pharma-icons"><circle cx="20" cy="20" r="8" fill="%230036bf" opacity="0.1"/><rect x="15" y="15" width="10" height="3" rx="1.5" fill="%23fc8e05" opacity="0.1"/><circle cx="50" cy="30" r="6" fill="%23fc8e05" opacity="0.1"/><rect x="45" y="25" width="10" height="2" rx="1" fill="%230036bf" opacity="0.1"/><circle cx="80" cy="25" r="7" fill="%230036bf" opacity="0.1"/><rect x="75" y="20" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><circle cx="120" cy="40" r="5" fill="%23fc8e05" opacity="0.1"/><rect x="115" y="35" width="10" height="2" rx="1" fill="%230036bf" opacity="0.1"/><circle cx="160" cy="20" r="6" fill="%230036bf" opacity="0.1"/><rect x="155" y="15" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><circle cx="30" cy="80" r="5" fill="%23fc8e05" opacity="0.1"/><rect x="25" y="75" width="10" height="2" rx="1" fill="%230036bf" opacity="0.1"/><circle cx="70" cy="90" r="7" fill="%230036bf" opacity="0.1"/><rect x="65" y="85" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><circle cx="110" cy="70" r="6" fill="%23fc8e05" opacity="0.1"/><rect x="105" y="65" width="10" height="2" rx="1" fill="%230036bf" opacity="0.1"/><circle cx="150" cy="85" r="5" fill="%230036bf" opacity="0.1"/><rect x="145" y="80" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><circle cx="40" cy="140" r="6" fill="%23fc8e05" opacity="0.1"/><rect x="35" y="135" width="10" height="2" rx="1" fill="%230036bf" opacity="0.1"/><circle cx="80" cy="150" r="5" fill="%230036bf" opacity="0.1"/><rect x="75" y="145" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/><circle cx="130" cy="130" r="7" fill="%23fc8e05" opacity="0.1"/><rect x="125" y="125" width="10" height="2" rx="1" fill="%230036bf" opacity="0.1"/><circle cx="170" cy="140" r="6" fill="%230036bf" opacity="0.1"/><rect x="165" y="135" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.1"/></g></defs><use href="%23pharma-icons" transform="translate(0,0)"/><use href="%23pharma-icons" transform="translate(100,0)"/><use href="%23pharma-icons" transform="translate(0,100)"/><use href="%23pharma-icons" transform="translate(100,100)"/></svg>');
    opacity: 0.3;
    animation: floatPharma 20s linear infinite;
    pointer-events: none;
}

@keyframes floatPharma {
    0% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-30px) translateX(5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* ===== MOBILE RESPONSIVE FOR VISION MISSION VALUES ===== */
@media (max-width: 768px) {
    .vmv-timeline-section {
        padding: 4rem 0;
    }
    
    .timeline-container {
        max-width: 100%;
        padding: 1rem;
    }
    
    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        margin-bottom: 3rem;
        padding-left: 3rem;
    }
    
    .timeline-dot {
        left: 30px;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        border: 3px solid white;
        box-shadow: 0 0 0 3px var(--rp-primary);
    }
    
    .timeline-content {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 1.5rem;
        position: relative;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -8px;
        right: -8px;
    }
}

@media (max-width: 480px) {
    .vmv-timeline-section {
        padding: 3rem 0;
    }
    
    .timeline-container {
        padding: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-line {
        left: 25px;
        width: 3px;
    }
    
    .timeline-dot {
        left: 25px;
        width: 14px;
        height: 14px;
        border: 2px solid white;
        box-shadow: 0 0 0 2px var(--rp-primary);
    }
    
    .timeline-content {
        padding: 1.2rem;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: -6px;
        right: -6px;
    }
}

/* ===== TIMELINE PHARMACEUTICAL ICONS ===== */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="15" cy="15" r="8" fill="%23fc8e05" opacity="0.2"/><rect x="10" y="12" width="10" height="2" rx="1" fill="%230036bf" opacity="0.3"/><rect x="10" y="16" width="10" height="2" rx="1" fill="%230036bf" opacity="0.3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotatePharma 10s linear infinite;
}

.timeline-1 .timeline-content::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="15" cy="15" r="8" fill="%23fc8e05" opacity="0.2"/><rect x="10" y="12" width="10" height="2" rx="1" fill="%230036bf" opacity="0.3"/><rect x="10" y="16" width="10" height="2" rx="1" fill="%230036bf" opacity="0.3"/></svg>');
}

.timeline-2 .timeline-content::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><ellipse cx="15" cy="15" rx="10" ry="6" fill="%230036bf" opacity="0.2"/><rect x="12" y="12" width="6" height="2" rx="1" fill="%23fc8e05" opacity="0.3"/><rect x="12" y="16" width="6" height="2" rx="1" fill="%23fc8e05" opacity="0.3"/></svg>');
}

.timeline-3 .timeline-content::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><circle cx="15" cy="15" r="8" fill="%230036bf" opacity="0.2"/><rect x="10" y="12" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.3"/><rect x="10" y="16" width="10" height="2" rx="1" fill="%23fc8e05" opacity="0.3"/></svg>');
}

@keyframes rotatePharma {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== CONTACT SECTION - BEAUTIFUL DESIGN ===== */
.contact-beautiful {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

/* Contact section watermark - top right */
.contact-watermark {
    position: absolute;
    width: 240px;
    height: auto;
    opacity: 0.1;
    filter: none; /* keep original colors */
    pointer-events: none;
    z-index: 1;
}

.contact-watermark-tr {
    top: 0;
    right: 100px;
    transform: rotate(-8deg);
    transform-origin: top right;
}

@media (max-width: 768px) {
    .contact-watermark {
        width: 190px;
    }
}

@media (max-width: 480px) {
    .contact-watermark {
        width: 150px;
    }
}

.contact-beautiful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="3" fill="%230036bf" opacity="0.15"/><circle cx="15" cy="15" r="2" fill="%23fc8e05" opacity="0.2"/><circle cx="65" cy="15" r="2" fill="%23fc8e05" opacity="0.2"/><circle cx="15" cy="65" r="2" fill="%23fc8e05" opacity="0.2"/><circle cx="65" cy="65" r="2" fill="%23fc8e05" opacity="0.2"/><rect x="30" y="30" width="12" height="6" rx="3" fill="%230036bf" opacity="0.12"/><rect x="25" y="25" width="8" height="4" rx="2" fill="%23fc8e05" opacity="0.18"/><path d="M10,40 Q20,30 30,40 Q40,50 50,40 Q60,30 70,40" stroke="%230036bf" stroke-width="1" fill="none" opacity="0.1"/><path d="M15,50 Q25,45 35,50 Q45,55 55,50 Q65,45 75,50" stroke="%23fc8e05" stroke-width="0.8" fill="none" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.6;
}

.contact-beautiful::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 54, 191, 0.05), rgba(252, 142, 5, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 54, 191, 0.1);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 54, 191, 0.1);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 54, 191, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 54, 191, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rp-primary), var(--rp-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(252, 142, 5, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin: 0 0 0.5rem 0;
}

.contact-details p {
    font-size: 1.1rem;
    color: #495057;
    margin: 0 0 1rem 0;
    line-height: 1.6;
    font-weight: 500;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rp-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.contact-link:hover {
    color: var(--rp-primary);
    text-decoration: none;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 0.9rem;
}

.contact-map-section {
    display: flex;
    flex-direction: column;
}

.map-header {
    margin-bottom: 2rem;
}

.map-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin: 0 0 0.5rem 0;
}

.map-header p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* ===== FOOTER - BEAUTIFUL DESIGN ===== */
.footer-beautiful {
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 50%, #001d6b 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-beautiful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/footer.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-8deg);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rp-accent) !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(252, 142, 5, 0.3);
}

.footer-brand-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 54, 191, 0.4);
    color: #ffffff;
    text-decoration: none;
}

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

.footer-column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--rp-accent);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--rp-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-item i {
    color: var(--rp-accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

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

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

.footer-bottom-links a:hover {
    color: var(--rp-accent);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-brand-title {
        font-size: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ===== CHAIRMAN SECTION - TRANSPARENT GLASS DESIGN ===== */
/* Leadership Section - Clean Design */
.leadership-section {
    padding: 6rem 0;
    background: var(--rp-primary);
    position: relative;
}

.leadership-showcase {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    align-items: center;
}

.leadership-image-container {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 54, 191, 0.25);
    border-radius: 15px;
}

.leadership-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.leadership-image-container:hover .leadership-image {
    transform: scale(1.05);
}

.leadership-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.leadership-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.leadership-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.leadership-message {
    margin-bottom: 2rem;
}

.leadership-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.leadership-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.leadership-stat {
    text-align: left;
}

.leadership-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.leadership-stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .leadership-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .leadership-image-container {
        min-height: 400px;
    }
    
    .leadership-image {
        min-height: 400px;
    }
    
    .leadership-title {
        font-size: 2rem;
    }
    
    .leadership-stats {
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .leadership-content {
        text-align: center;
    }
    
    .leadership-badge {
        margin: 0 auto 1.5rem;
    }
}

.chairman-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(0, 54, 191, 0.1), rgba(252, 142, 5, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.chairman-visual {
    position: relative;
}

.chairman-image-modern {
    width: 100%;
    height: 400px;
    background: var(--rp-gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

.chairman-content-modern {
    padding-left: 2rem;
    position: relative;
    z-index: 2;
}

.chairman-badge {
    display: inline-block;
    background: var(--rp-gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.chairman-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
}

.chairman-content-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rp-text);
    margin-bottom: 0.5rem;
}

.chairman-title {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.chairman-content-modern p {
    color: var(--rp-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.chairman-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.chairman-stat {
    text-align: center;
}

.chairman-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--rp-primary);
}

.chairman-stat .stat-label {
    font-size: 0.9rem;
    color: var(--rp-text);
    opacity: 0.8;
}

/* ===== SUPPLIERS SECTION - SLIDER DESIGN ===== */
.suppliers-slider {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.suppliers-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    z-index: 0;
}

/* Transparent tablet watermark in Trusted Partners */
.suppliers-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tablet1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-8deg);
}

.suppliers-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.suppliers-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 54, 191, 0.1);
}

.suppliers-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
}

.partners-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;
}

.slider-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.partners-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.partner-logo {
    flex: 0 0 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 54, 191, 0.1);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 54, 191, 0.2);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slider-btn {
    position: static;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 54, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rp-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 54, 191, 0.25);
    z-index: 10;
    margin: 0 10px;
}

.slider-btn:hover {
    background: var(--rp-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 54, 191, 0.3);
}

.slider-btn-prev {
    /* Positioned below slider */
}

.slider-btn-next {
    /* Positioned below slider */
}

@media (max-width: 768px) {
    .partner-logo {
        flex: 0 0 150px;
        height: 100px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 8px;
    }
}

.supplier-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 54, 191, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.supplier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rp-primary), var(--rp-accent));
}

.supplier-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 30px rgba(0, 54, 191, 0.2);
    border-color: rgba(0, 54, 191, 0.3);
}

.supplier-logo {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    transition: all 0.3s ease;
}

.supplier-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.supplier-card:hover .supplier-logo {
    transform: scale(1.05);
}

.supplier-card h4 {
    display: none;
}

.supplier-card p {
    display: none;
}

/* ===== AWARDS SECTION - BEAUTIFUL WHITE DESIGN ===== */
.awards-timeline-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff; /* keep white base */
}

.awards-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    z-index: 0;
}

/* Transparent tablet watermark in Recognition & Awards */
.awards-timeline-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/tablet.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.07;
    z-index: 2;
    pointer-events: none;
    transform: rotate(-8deg);

}

@media (max-width: 768px) {
    .awards-timeline-section::after {
        width: 420px;
        height: 420px;
        top: 50%;
        left: 50%;
        opacity: 0.18;
        transform: translate(-50%, -50%) rotate(-6deg);
    }
}

@media (max-width: 480px) {
    .awards-timeline-section::after {
        width: 320px;
        height: 320px;
        top: 50%;
        left: 50%;
        opacity: 0.16;
        transform: translate(-50%, -50%) rotate(-5deg);
    }
}

.awards-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.awards-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 54, 191, 0.1);
}

.awards-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 400;
}

/* Single Row Awards Layout */
.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.award-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 54, 191, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 54, 191, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Alternate rows: even cards reverse so image appears on left */
.awards-grid .award-card:nth-child(even) {
    flex-direction: row-reverse;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 54, 191, 0.2);
    border-color: rgba(0, 54, 191, 0.2);
}

.award-card-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

/* Add subtle accent divider on content side */
.award-card-content {
    border-inline-start: 3px solid rgba(0, 54, 191, 0.08);
    padding-inline-start: 1rem;
}

/* For even rows, move divider to the other side */
.awards-grid .award-card:nth-child(even) .award-card-content {
    border-inline-start: 0;
    padding-inline-start: 0;
    border-inline-end: 3px solid rgba(0, 54, 191, 0.08);
    padding-inline-end: 1rem;
}

.award-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.award-card-header .award-icon {
    width: 50px;
    height: 50px;
    background: var(--rp-gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.award-year {
    background: var(--rp-gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.award-card-body {
    flex: 1;
}

.award-card-body h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.award-card-body p {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Decorative accent bar to beautify heading area */
.award-card-body {
    position: relative;
}
.award-card-body::before {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--rp-accent), rgba(252, 142, 5, 0.2));
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.award-organization {
    font-size: 0.9rem;
    color: var(--rp-accent);
    font-weight: 600;
    font-style: italic;
}

.award-certificate {
    flex-shrink: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 54, 191, 0.2);
    box-shadow: 0 4px 15px rgba(0, 54, 191, 0.15);
    padding: 8px;
    background: rgba(255, 255, 255, 0.9);
}

.award-certificate:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 54, 191, 0.3);
    border-color: rgba(0, 54, 191, 0.4);
}

.award-certificate img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Award Image Modal - Beautiful Design */
.award-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.award-modal.active {
    opacity: 1;
    visibility: visible;
}

.award-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.award-modal-container {
    position: relative;
    z-index: 10001;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.award-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.award-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.award-modal-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.award-modal-img {
    max-width: 80vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.award-modal-img:hover {
    transform: scale(1.02);
}

.award-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rp-primary);
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

/* Make award images clickable */
.award-image-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.award-image-clickable::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 54, 191, 0);
    border-radius: 8px;
    transition: background 0.3s ease;
    pointer-events: none;
}

.award-image-clickable:hover::after {
    background: rgba(0, 54, 191, 0.1);
}

.award-image-clickable:hover {
    transform: scale(1.05);
}

.award-image-clickable img {
    transition: all 0.3s ease;
}

/* Responsive modal */
@media (max-width: 768px) {
    .award-modal-container {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .award-modal-content {
        padding: 1.5rem;
    }
    
    .award-modal-img {
        max-width: 90vw;
        max-height: 65vh;
    }
    
    .award-modal-title {
        font-size: 1.2rem;
    }
    
    .award-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .award-modal-content {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .award-modal-img {
        max-width: 95vw;
        max-height: 60vh;
    }
    
    .award-modal-title {
        font-size: 1rem;
    }
    
    .award-modal-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.award-organization {
    font-size: 0.9rem;
    color: var(--rp-accent);
    font-weight: 600;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-timeline-section {
        padding: 4rem 0;
    }
    
    .awards-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .awards-subtitle {
        font-size: 1.1rem;
    }
    
    .awards-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .award-card {
        flex-direction: column; /* stack vertically on mobile */
        align-items: stretch;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .award-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        border: 0;
        padding: 0;
    }
    
    .award-card-header {
        align-self: stretch;
        justify-content: space-between;
    }
    
    .award-certificate img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Remove alternating layout on mobile */
    .awards-grid .award-card:nth-child(even) {
        flex-direction: column;
    }
    .awards-grid .award-card:nth-child(even) .award-card-content {
        border: 0;
        padding: 0;
    }
    
    .timeline-award .award-timeline-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding: 1.5rem;
        width: 100%;
    }
    
    .award-timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .award-timeline-content p {
        font-size: 0.95rem;
    }
    
    .award-year-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .awards-timeline-section {
        padding: 3rem 0;
    }
    
    .awards-title {
        font-size: 2rem;
    }
    
    .awards-subtitle {
        font-size: 1rem;
    }
    
    .timeline-award {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline-award .award-timeline-dot {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .timeline-award .award-timeline-content {
        padding: 1.2rem;
    }
    
    .award-timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .award-timeline-content p {
        font-size: 0.9rem;
    }
}

/* ===== NETWORK SECTION - DASHBOARD STYLE ===== */
.network-dashboard {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 50%, #001d6b 100%);
    position: relative;
    overflow: hidden;
}

.network-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="network-pattern" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23fc8e05" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.15"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.15"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.15"/><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.15"/><rect x="25" y="25" width="8" height="4" rx="2" fill="%23fc8e05" opacity="0.08"/><rect x="20" y="20" width="6" height="3" rx="1.5" fill="%23ffffff" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23network-pattern)"/></svg>');
    opacity: 0.3;
}

.network-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.network-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.network-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.coverage-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--rp-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.stat-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

.map-and-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.iraq-map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.iraq-map {
    width: 100%;
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.map-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iraq-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
}

.city-points-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.city-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.city-dot {
    width: 4px;
    height: 4px;
    background: #fc8e05;
    border-radius: 50%;
    box-shadow: 0 0 0 0.5px rgba(252, 142, 5, 0.3), 0 0 0 1px rgba(252, 142, 5, 0.1);
    border: 0.5px solid white;
    position: relative;
}

.city-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

.city-name {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}



/* City Positioning */
.sulaymaniyah {
    top: 25%;
    left: 65%;
}

.baghdad {
    top: 50%;
    left: 55%;
}

.basra {
    top: calc(80% - 15px);
    left: 85%;
}

/* Najaf positioning (approximate central-south) */
.najaf {
    top: calc(62% + 50px);
    left: calc(48% + 20px);
}

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

.main-locations {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card.primary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rp-primary), var(--rp-accent));
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.location-card.primary:hover {
    background: rgba(0, 54, 191, 0.2);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.location-header i {
    font-size: 1.2rem;
    color: #ffffff;
    width: 40px;
    height: 40px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(252, 142, 5, 0.25);
}

.location-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.location-badge {
    background: var(--rp-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-details p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.location-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.location-stats span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Nationwide Coverage section: compress location card height to ~75% */
.main-locations .location-card {
    padding: 1.125rem; /* 75% of 1.5rem */
}

.main-locations .location-header {
    margin-bottom: 0.75rem; /* was 1rem */
}

.main-locations .location-header h4 {
    font-size: 1.2rem; /* slightly smaller */
}

.main-locations .location-details p {
    margin: 0 0 0.3rem 0; /* tighter spacing */
    line-height: 1.3; /* reduced line height */
}

.main-locations .location-stats {
    margin-top: 0.5rem; /* was 1rem */
    gap: 0.75rem; /* slightly tighter */
}

.main-locations .location-stats span {
    padding: 0.25rem 0.6rem; /* slightly tighter */
}

/* Responsive Design */
@media (max-width: 768px) {
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    
    .map-and-locations {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .location-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== AWARDS SECTION - MASONRY GALLERY (OLD) ===== */
.awards-gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.awards-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23fc8e05" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.5;
}

.awards-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 200px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.award-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--rp-transition);
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.award-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 54, 191, 0.2);
}

.award-large {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%);
    color: white;
}

.award-large .award-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.award-large .award-content h3,
.award-large .award-content p {
    color: white;
}

.award-medium {
    grid-row: span 1;
}

.award-small {
    grid-row: span 1;
    background: linear-gradient(135deg, var(--rp-accent) 0%, #e67e00 100%);
    color: white;
}

.award-small .award-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.award-small .award-content h3,
.award-small .award-content p {
    color: white;
}

.award-badge {
    width: 60px;
    height: 60px;
    background: var(--rp-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: var(--rp-transition);
}

.award-item:hover .award-badge {
    transform: scale(1.1) rotate(10deg);
}

.award-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin-bottom: 1rem;
}

.award-content p {
    color: var(--rp-text);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.award-year {
    display: inline-block;
    background: var(--rp-gradient-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.award-large .award-year {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.award-small .award-year {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.award-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 142, 5, 0.1) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

/* Masonry positioning */
.award-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.award-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.award-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.award-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.award-item:nth-child(5) { grid-column: 3; grid-row: 2; }

/* ===== NETWORK SECTION ===== */
.network-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.network-visual {
    position: relative;
}

.map-container-modern {
    width: 100%;
    height: 400px;
    background: var(--rp-gradient-primary);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.network-cities {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.city-dot {
    position: absolute;
    background: var(--rp-accent);
    color: white;
    padding: 0.15rem 0.3rem;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.network-content-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1.5rem;
}

.network-content-modern p {
    color: var(--rp-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--rp-transition);
}

.city-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.city-item i {
    color: var(--rp-accent);
    font-size: 1.2rem;
}

.city-item span {
    font-weight: 600;
    color: var(--rp-text);
}

/* ===== CONTACT SECTION ===== */
.contact-modern {
    padding: 6rem 0;
    background: var(--rp-bg);
}

.contact-info-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1rem;
}

.contact-info-modern p {
    color: var(--rp-text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--rp-transition);
}

.contact-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item-modern i {
    width: 50px;
    height: 50px;
    background: var(--rp-gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-item-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin-bottom: 0.25rem;
}

.contact-item-modern p {
    color: var(--rp-text);
    margin: 0;
}

.contact-map-modern {
    height: 400px;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--rp-shadow);
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.footer-modern {
    background: var(--rp-gradient-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-modern h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--rp-transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== ABOUT PAGE STYLES ===== */
.service-list {
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.service-item i {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.compliance-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 54, 191, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 54, 191, 0.1);
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.2);
}

.commitment-item {
    padding: 1rem 0;
}

.commitment-item h5 {
    color: var(--rp-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: #6c757d;
    margin: 0;
}

.feature-card-modern {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 54, 191, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 54, 191, 0.1);
}

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.2);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--rp-gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-card-modern {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 54, 191, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 54, 191, 0.1);
}

.value-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.2);
}

.value-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--rp-gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-item {
    padding: 1rem;
}

.value-item i {
    color: var(--rp-accent);
}

/* ===== PARTNERS LOGO GRID ===== */
.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 54, 191, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 54, 191, 0.1);
    min-height: 150px;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.2);
    border-color: rgba(0, 54, 191, 0.2);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .partners-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .partner-logo-item {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    .partner-logo-item img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo-item {
        padding: 1rem;
        min-height: 100px;
    }
    
    .partner-logo-item img {
        max-height: 60px;
    }
}

/* ===== DIRECTORS PAGE STYLES ===== */
.director-row-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 54, 191, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 54, 191, 0.1);
}

.director-row-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 54, 191, 0.15);
    border-color: rgba(0, 54, 191, 0.2);
}

.director-image-row {
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 54, 191, 0.15);
    background: linear-gradient(135deg, var(--rp-primary) 0%, #002a9e 100%);
}

.director-image-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.director-row-card:hover .director-image-row img {
    transform: scale(1.05);
}

.director-info-row {
    padding-left: 2rem;
}

.director-info-row h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin-bottom: 0.75rem;
}

.director-position-row {
    font-size: 1.2rem;
    color: var(--rp-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.director-email-row {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.director-email-row i {
    color: var(--rp-primary);
}

.director-email-row a {
    color: var(--rp-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.director-email-row a:hover {
    color: var(--rp-accent);
    text-decoration: underline;
}

.director-about-row {
    color: #495057;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 992px) {
    .director-info-row {
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .director-image-row {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .director-row-card {
        padding: 1.5rem;
    }
    
    .director-info-row h3 {
        font-size: 1.5rem;
    }
    
    .director-position-row {
        font-size: 1.1rem;
    }
    
    .director-image-row {
        height: 220px;
    }
}

/* ===== STYLED SECTION TITLES ===== */
.section-title-styled {
    font-size: 3rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    position: relative;
    display: inline-block;
    text-align: center;
}

.section-title-styled::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--rp-gradient-accent);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(252, 142, 5, 0.3);
}

.section-title-styled::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(252, 142, 5, 0.2), transparent);
    border-radius: 3px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .section-title-styled {
        font-size: 2.5rem;
    }
    
    .section-title-styled::after,
    .section-title-styled::before {
        width: 80px;
    }
    
    .section-title-styled::before {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .section-title-styled {
        font-size: 2rem;
    }
    
    .section-title-styled::after,
    .section-title-styled::before {
        width: 60px;
    }
    
    .section-title-styled::before {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .banner-image {
        height: 60vh;
        min-height: 400px;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-stats-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .chairman-content-modern {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-image {
        height: 50vh;
        min-height: 350px;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
}
    
    .chairman-stats {
        justify-content: center;
    }
    
    .cities-list {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hexagonFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes awardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes timelineSlide {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes timelineSlideRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* Hexagon hover effects */
.hexagon-item:hover {
    animation-play-state: paused;
}

/* Timeline item animations */
.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.timeline-1.active .timeline-content {
    animation: timelineSlide 0.8s ease-out;
}

.timeline-2.active .timeline-content {
    animation: timelineSlideRight 0.8s ease-out;
}

.timeline-3.active .timeline-content {
    animation: timelineSlide 0.8s ease-out;
}

/* Award item animations */
.award-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* History Flow Diagram - Minimalist Design */
.history-flow-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

.history-header {
    text-align: center;
    margin-bottom: 5rem;
}

.history-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
}

.history-flow-diagram {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.flow-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.flow-item:nth-child(1) { animation-delay: 0.1s; }
.flow-item:nth-child(2) { animation-delay: 0.2s; }
.flow-item:nth-child(3) { animation-delay: 0.3s; }
.flow-item:nth-child(4) { animation-delay: 0.4s; }
.flow-item:nth-child(5) { animation-delay: 0.5s; }
.flow-item:nth-child(6) { animation-delay: 0.6s; }
.flow-item:nth-child(7) { animation-delay: 0.7s; }
.flow-item:nth-child(8) { animation-delay: 0.8s; }
.flow-item:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flow-year {
    min-width: 80px;
    height: 80px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(252, 142, 5, 0.25);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.flow-item:hover .flow-year {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(252, 142, 5, 0.35);
}

.flow-content {
    flex: 1;
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--rp-primary);
    transition: all 0.3s ease;
}

.flow-item:hover .flow-content {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(10px);
}

.flow-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin: 0 0 0.5rem 0;
}

.flow-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.flow-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 4rem);
    background: linear-gradient(180deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    opacity: 0.3;
    z-index: 1;
}

.flow-item:last-child .flow-connector {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .history-flow-section {
        padding: 4rem 0;
    }
    
    .flow-item {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .flow-year {
        min-width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }
    
    .flow-content {
        padding: 1.5rem;
        border-left: none;
        border-top: 4px solid var(--rp-primary);
        width: 100%;
    }
    
    .flow-item:hover .flow-content {
        transform: translateY(-5px);
    }
    
    .flow-connector {
        display: none;
    }
}

@media (max-width: 576px) {
    .flow-content h3 {
        font-size: 1.3rem;
    }
    
    .flow-content p {
        font-size: 0.9rem;
    }
    
    .history-subtitle {
        font-size: 1rem;
    }
}

/* Legacy Section - Minimalist Design */
.legacy-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.legacy-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legacy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-top: 1.5rem;
    line-height: 1.7;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.legacy-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.legacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.legacy-card:hover::before {
    transform: scaleX(1);
}

.legacy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 54, 191, 0.15);
    border-color: rgba(0, 54, 191, 0.1);
}

.legacy-icon {
    width: 80px;
    height: 80px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(252, 142, 5, 0.25);
    transition: all 0.3s ease;
}

.legacy-card:hover .legacy-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(252, 142, 5, 0.35);
}

.legacy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin: 0 0 1rem 0;
}

.legacy-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Legacy Section */
@media (max-width: 768px) {
    .legacy-section {
        padding: 4rem 0;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legacy-card {
        padding: 2rem;
    }
    
    .legacy-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .legacy-card h3 {
        font-size: 1.3rem;
    }
    
    .legacy-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .legacy-card {
        padding: 1.5rem;
    }
    
    .legacy-card h3 {
        font-size: 1.2rem;
    }
    
    .legacy-card p {
        font-size: 0.9rem;
    }
}

/* Branches Contact Section */
.branches-contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.branches-header {
    text-align: center;
    margin-bottom: 4rem;
}

.branches-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.branch-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.branch-card:hover::before {
    transform: scaleX(1);
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 54, 191, 0.15);
    border-color: rgba(0, 54, 191, 0.1);
}

.branch-badge {
    display: inline-block;
    background: var(--rp-accent);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(252, 142, 5, 0.3);
}

.branch-icon {
    width: 80px;
    height: 80px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(252, 142, 5, 0.25);
    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(252, 142, 5, 0.35);
}

.branch-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin: 0 0 2rem 0;
}

.branch-info {
    text-align: left;
    margin-bottom: 2rem;
}

.branch-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.branch-detail:last-child {
    margin-bottom: 0;
}

.branch-detail i {
    font-size: 1.2rem;
    color: var(--rp-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.branch-detail p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.branch-detail a {
    color: var(--rp-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.branch-detail a:hover {
    color: var(--rp-accent);
}

.branch-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--rp-accent);
    text-decoration: none;
    font-size: 1.5rem;
    border: 2px solid var(--rp-accent);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.branch-link:hover {
    background: var(--rp-accent);
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(252, 142, 5, 0.4);
}

/* Responsive Design for Branches Section */
@media (max-width: 768px) {
    .branches-contact-section {
        padding: 4rem 0;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .branch-card {
        padding: 2rem;
    }
    
    .branch-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .branch-card h3 {
        font-size: 1.5rem;
    }
}

/* Network Coverage Modern Style (Different from index.html) */
.network-coverage-modern {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.network-coverage-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(252, 142, 5, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 54, 191, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.network-coverage-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.network-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.network-particles .particle {
    opacity: 0.1;
}

.network-particles .particle-capsule,
.network-particles .particle-tablet,
.network-particles .particle-oval-pill,
.network-particles .particle-ampoule,
.network-particles .particle-bottle,
.network-particles .particle-patch {
    opacity: 0.1 !important;
}

.particle {
    position: absolute;
    opacity: 0.4;
    animation: floatParticle 15s infinite ease-in-out;
}

.page-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.page-particles .particle {
    opacity: 0.15;
}

.page-particles .particle-capsule {
    opacity: 0.1 !important;
}

.particle-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rp-accent);
    box-shadow: 0 0 10px rgba(252, 142, 5, 0.3);
}

.particle-square {
    width: 10px;
    height: 10px;
    background: var(--rp-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 54, 191, 0.3);
}

.particle-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid var(--rp-accent);
    box-shadow: 0 0 10px rgba(252, 142, 5, 0.3);
}

.particle-diamond {
    width: 10px;
    height: 10px;
    background: var(--rp-primary);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 54, 191, 0.3);
}

.particle-capsule {
    width: 100px;
    height: 40px;
    border-radius: 50px;
    background: linear-gradient(to right, var(--rp-accent) 0%, var(--rp-accent) 50%, var(--rp-primary) 50%, var(--rp-primary) 100%);
    box-shadow: 0 0 20px rgba(252, 142, 5, 0.2), 0 0 20px rgba(0, 54, 191, 0.2);
    position: relative;
    opacity: 0.01;
}

.particle-capsule::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.particle-capsule:nth-child(even) {
    width: 80px;
    height: 30px;
    border-radius: 40px;
}

.particle-tablet {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0.1 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.particle-tablet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 35px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

.particle-oval-pill {
    width: 60px;
    height: 30px;
    border-radius: 15px;
    background: #f5f5f0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.05);
    position: relative;
    opacity: 0.1 !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.particle-oval-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

.particle-ampoule {
    width: 12px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(200, 220, 240, 0.7) 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    opacity: 0.1 !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), inset 0 0 10px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.particle-ampoule::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.9);
}

.particle-ampoule::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 6px 6px;
}

.particle-bottle {
    width: 20px;
    height: 35px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.8) 50%, rgba(220, 220, 220, 0.7) 100%);
    border-radius: 3px 3px 8px 8px;
    position: relative;
    opacity: 0.1 !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.particle-bottle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px 2px 0 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.particle-bottle::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 3px;
    background: rgba(200, 200, 200, 0.6);
    border-radius: 1px;
}

.particle-patch {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 5px;
    position: relative;
    opacity: 0.1 !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1), inset 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.particle-patch::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.particle-patch::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-40px) translateX(30px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-80px) translateX(-20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(15px) rotate(270deg);
        opacity: 0.45;
    }
}

.network-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.network-subtitle-modern {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
}

.coverage-dashboard-modern {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.stat-item-modern {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item-modern:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 54, 191, 0.15);
    border-color: var(--rp-primary);
}

.stat-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--rp-accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(252, 142, 5, 0.3);
}

.stat-info-modern h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--rp-primary);
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-info-modern p {
    font-size: 1.1rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    font-weight: 600;
}

.map-and-locations-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.iraq-map-container-modern {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.iraq-map-modern {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.map-image-container-modern {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iraq-map-image-modern {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1) contrast(1.05);
}

.city-points-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.city-marker-modern {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: pulse-modern 2s infinite;
}

.city-dot-modern {
    width: 12px;
    height: 12px;
    background: var(--rp-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(252, 142, 5, 0.2), 0 0 0 8px rgba(252, 142, 5, 0.1);
    border: 3px solid #ffffff;
    position: relative;
}

.city-dot-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
}

.city-name-modern {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rp-primary);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 54, 191, 0.3);
}

/* City Positioning for Modern Style */
.city-marker-modern.sulaymaniyah {
    top: 25%;
    left: 65%;
}

.city-marker-modern.baghdad {
    top: 50%;
    left: 55%;
}

.city-marker-modern.basra {
    top: calc(80% - 15px);
    left: 85%;
}

.city-marker-modern.najaf {
    top: calc(62% + 50px);
    left: calc(48% + 20px);
}

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

.main-locations-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card-modern {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.location-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--rp-primary) 0%, var(--rp-accent) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card-modern:hover::before {
    opacity: 1;
}

.location-card-modern.primary {
    background: linear-gradient(135deg, rgba(0, 54, 191, 0.05) 0%, rgba(252, 142, 5, 0.05) 100%);
    border-color: var(--rp-primary);
}

.location-card-modern:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 54, 191, 0.15);
    border-color: var(--rp-primary);
}

.location-card-modern.primary:hover {
    background: linear-gradient(135deg, rgba(0, 54, 191, 0.08) 0%, rgba(252, 142, 5, 0.08) 100%);
}

.location-header-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.location-header-modern i {
    font-size: 1.2rem;
    color: #ffffff;
    width: 40px;
    height: 40px;
    background: var(--rp-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(252, 142, 5, 0.25);
}

.location-header-modern h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rp-primary);
    margin: 0;
    flex: 1;
}

.location-badge-modern {
    background: var(--rp-accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(252, 142, 5, 0.3);
}

.location-details-modern p {
    font-size: 0.95rem;
    color: #555;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.location-details-modern p strong {
    color: var(--rp-primary);
    font-weight: 700;
}

.location-stats-modern {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.location-stats-modern span {
    background: linear-gradient(135deg, rgba(0, 54, 191, 0.1) 0%, rgba(252, 142, 5, 0.1) 100%);
    color: var(--rp-primary);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 54, 191, 0.2);
}

/* Responsive Design for Modern Network Coverage */
@media (max-width: 992px) {
    .map-and-locations-modern {
        grid-template-columns: 1fr;
    }
    
    .coverage-stats-modern {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stat-item-modern {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-info-modern h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .network-coverage-modern {
        padding: 4rem 0;
    }
    
    .coverage-stats-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iraq-map-container-modern {
        padding: 1.5rem;
    }
    
    .iraq-map-modern {
        min-height: 350px;
    }
    
    .location-card-modern {
        padding: 1.5rem;
    }
}