/* CSS Variables for Color Palette */
:root {
    --primary-blue: #10599B;
    --accent-gold: #D4AF37;
    --white: #FFFFFF;
    --charcoal-gray: #333333;
    --mid-gray: #666666;
    --sky-blue: #EDF4FA;
    --emerald-green: #28A745;
    --coral-red: #E63946;
    
    /* Additional Variables */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #ffc107;
}

/* Contact page specific overrides for better readability */
.contact-info-card p {
    color: #374151 !important;
    font-weight: 500;
    line-height: 1.6;
}

.contact-info-card h5 {
    color: #1f2937 !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Ensure contact links are readable */
.contact-info-card a {
    color: #3b82f6 !important;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #1e40af !important;
    text-decoration: underline;
}

/* Contact info card styling */
.contact-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.contact-icon {
    margin-bottom: 1.5rem;
}

.contact-info-card .btn {
    margin-top: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
}

/* Mobile navigation fixes */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(16, 89, 155, 0.25);
}

.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%2816, 89, 155, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 0.5rem;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: var(--shadow-medium);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 0.375rem;
        margin-bottom: 0.25rem;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(16, 89, 155, 0.1);
    }
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
}

.brand-text {
    color: var(--primary-blue);
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal-gray) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: url("../images/hero-bg2.png") no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.hero-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="10" r="1" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="70" r="1.2" fill="rgba(255,255,255,0.09)"/><circle cx="70" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: particles 20s linear infinite;
}

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

@keyframes particles {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-100px); }
}

/* Hero Content */
.hero-content {
    z-index: 2;
    position: relative;
}

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

.title-highlight {
    color: #F6DA50;;
    font-weight: 800;
    font-size: 0.7em;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
    padding-top: 100px;
}

.title-main {
    color: var(--white);
    font-weight: 800;
    font-size: 1em;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 90%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.7rem;
}

.hero-stat-item {
    position: relative;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.hero-stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    transition: all 0.3s ease;
}

.hero-stat-item:hover .stat-number {
    color: #f4d03f;
    transform: scale(1.1);
}

.hero-stat-item .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
        margin-bottom: 0.7rem;
    }

.hero-btn-primary {
    background: linear-gradient(45deg, var(--accent-gold), #f4d03f);
    color: var(--charcoal-gray);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--charcoal-gray);
}

.hero-btn-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

.hero-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-2px) scale(1.02);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-btn-outline .btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn-outline:hover .btn-arrow {
    transform: translateX(3px);
}

/* Hero Visual */
.hero-visual {
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-bg {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-icon-grid {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotateGrid 20s linear infinite;
}

.hero-icon-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: all 0.3s ease;
    animation: pulse 3s ease-in-out infinite;
}

.hero-icon-item:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.hero-icon-item i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hero-icon-item span {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-center-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-gold), #e8b20b);
    color: var(--charcoal-gray);
    border-color: var(--accent-gold);
    animation: none;
}

.hero-center-icon i {
    font-size: 2rem;
}

.hero-center-icon span {
    font-size: 0.8rem;
    font-weight: 700;
}

/* Perfect hexagonal positioning using transform rotation method */
.hero-icon-item:nth-child(1) { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(0deg) translateY(-120px) rotate(0deg); 
    animation-delay: 0s; 
}
.hero-icon-item:nth-child(2) { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(60deg) translateY(-120px) rotate(-60deg); 
    animation-delay: 0.3s; 
}
.hero-icon-item:nth-child(3) { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(120deg) translateY(-120px) rotate(-120deg); 
    animation-delay: 0.6s; 
}
.hero-icon-item:nth-child(4) { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(180deg) translateY(-120px) rotate(-180deg); 
    animation-delay: 0.9s; 
}
.hero-icon-item:nth-child(6) { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(240deg) translateY(-120px) rotate(-240deg); 
    animation-delay: 1.2s; 
}
.hero-icon-item:nth-child(7) { 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%) rotate(300deg) translateY(-120px) rotate(-300deg); 
    animation-delay: 1.5s; 
}

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

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

/* Icons are positioned with perfect spacing using transform rotation */

/* Additional modern animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
}

.hero-center-icon {
    animation: glow 2s ease-in-out infinite;
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.title-accent {
    margin-top :1rem;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8em;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced button animations */
.hero-btn-primary::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.5s;
}

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

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

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

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bounce-animation {
    animation: bounce 2s infinite;
}

.scroll-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: ring-glow 2s ease-in-out infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    transform: scale(1.1);
}

.scroll-arrow:hover i {
    color: var(--accent-gold);
}

@keyframes ring-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Hero Section Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-graphic {
        max-width: 400px;
        height: 400px;
    }
    
    .hero-circle-bg {
        width: 300px;
        height: 300px;
    }
    
    .hero-icon-item {
        width: 60px;
        height: 60px;
    }
    
    .hero-icon-item i {
        font-size: 1.2rem;
    }
    
    .hero-icon-item span {
        font-size: 0.6rem;
    }
    
    .hero-center-icon {
        width: 80px;
        height: 80px;
    }
    
    .hero-center-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-btn-primary,
    .hero-btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
        margin-top: 0;
    }
    
    .hero-graphic {
        max-width: 300px;
        height: 300px;
    }
    
    .hero-circle-bg {
        width: 250px;
        height: 250px;
    }
    
    .hero-icon-item {
        width: 50px;
        height: 50px;
    }
    
    .hero-icon-item i {
        font-size: 1rem;
    }
    
    .hero-icon-item span {
        font-size: 0.5rem;
    }
    
    .hero-center-icon {
        width: 70px;
        height: 70px;
    }
    
    .hero-center-icon i {
        font-size: 1.3rem;
    }
    
    .hero-center-icon span {
        font-size: 0.7rem;
    }
    
    .hero-shape.shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .hero-shape.shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .hero-shape.shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 0.8em;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .hero-stat-item .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Styles for larger screens */
    .title-highlight {
        font-size: 0.8em;
    }
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.delay-1 {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.delay-2 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

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

/* Button Styles */
.btn {
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.join-community-btn {
    background: #fff;
    color: #145084;
    box-shadow: var(--shadow-light);
}

.join-community-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgb(0 0 0 / 40%);
    color: #ffffff;
    background-color: #e8b20b !important;
}

.btn-primary:hover {
    background: #0d4a82;
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--mid-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

/* About Preview Section */
.about-preview {
    padding: 5rem 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease-in-out;
}

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

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

.about-image img:hover {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.feature-list i {
    margin-right: 1rem;
}

/* Removed duplicate - using updated about-image styles above */

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--sky-blue);
    padding: 5rem 0;
}

/* Blog Preview Section */
.blog-preview {
    padding: 5rem 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #001525 0%, #218ad5 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Featured On Section */
.featured-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.featured-logos-container {
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.featured-logos-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.featured-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.media-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 1);
}

.media-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.media-logo-card:hover .media-logo-img {
    filter: brightness(1) contrast(1.2);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for Featured On section */
@media (max-width: 768px) {
    .featured-logo {
        width: 150px;
        height: 100px;
    }
    
    .media-logo-card {
        padding: 0.8rem;
    }
    
    .featured-logos-track {
        gap: 2rem;
        animation-duration: 20s;
    }
}

/* Footer */
.footer {
    background: var(--charcoal-gray) !important;
    color: var(--white);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-color: #555;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: #ccc;
    margin: 0;
}

.footer-legal-link {
    color: #ccc;
    margin-left: 1rem;
    text-decoration: none;
}

.footer-legal-link:hover {
    color: var(--accent-gold);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--emerald-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #20803a;
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.7rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-image {
        height: 300px;
        margin-top: 2rem;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

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

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-blue) !important;
}

.text-accent {
    color: var(--accent-gold) !important;
}

.bg-primary-custom {
    background-color: var(--primary-blue) !important;
}

.bg-accent {
    background-color: var(--accent-gold) !important;
}

.border-primary-custom {
    border-color: var(--primary-blue) !important;
}

.border-accent {
    border-color: var(--accent-gold) !important;
}

/* Modern Blog Page Styles */
.modern-blog-hero {
    background: linear-gradient(135deg, #0f4c81 0%, #1e5a8a 25%, #2d6999 50%, #1a5c8c 75%, #0d4474 100%);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.modern-blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.modern-blog-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    margin-top: 1.7rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #F6DA50;
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-section {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal-gray);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--mid-gray);
    max-width: 500px;
    margin: 0 auto;
}

.featured-article-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.search-filter-section {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.modern-search-wrapper {
    position: relative;
}

.filter-controls {
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-gray);
    margin-bottom: 0;
    white-space: nowrap;
}

.modern-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: white;
    color: var(--charcoal-gray);
    min-width: 140px;
    transition: all 0.3s ease;
}

.modern-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(16, 89, 155, 0.1);
    outline: none;
}

.blog-grid-section {
    background: white;
}

.blog-header-modern {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1rem;
}

.articles-count {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal-gray);
}

.loading-state {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.loading-spinner {
    margin-bottom: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    color: var(--mid-gray);
    font-size: 1.1rem;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.modern-blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.modern-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--mid-gray);
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal-gray);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    color: var(--mid-gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-gray);
}

.blog-card-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--mid-gray);
}

.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    background: white;
    color: var(--charcoal-gray);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination-btn:hover {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: white;
}

.pagination-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modern-newsletter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-card-modern {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal-gray);
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--mid-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.modern-newsletter-form {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.input-group {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    outline: none;
    background: #f8f9fa;
}

.newsletter-btn {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: #0d4a82;
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--mid-gray);
}

.feature-item i {
    color: var(--emerald-green);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* OB Team Section - Simple Clean Design */
.simple-team-card {
    padding-bottom: 1rem;
    transition: transform 0.3s ease;
    background-color:#fbfbfb;
    border:1px solid #e8b20b;
    border-radius:20px;
    max-width: 250px;
    margin: 0 auto;
}

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

.team-photo-frame {
    width: 100%;
    height: 200px;
    margin: 0 auto 1rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.simple-team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.team-position {
    font-size: 0.9rem;
    color: var(--charcoal-gray);
    margin-bottom: 0;
    font-weight: 500;
}

/* Leadership Section */
.leadership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.leader-image img {
    border: 4px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.leader-image img:hover {
    transform: scale(1.05);
}

/* Featured On Section */
.featured-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.featured-logos-container {
    overflow: hidden;
    padding: 2rem 0;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.featured-logos-track {
    display: flex;
    gap: 3rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.featured-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.media-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 1);
}

.media-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.media-logo-card:hover .media-logo-img {
    filter: brightness(1) contrast(1.2);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for Featured On section */
@media (max-width: 768px) {
    .featured-logo {
        width: 150px;
        height: 100px;
    }
    
    .media-logo-card {
        padding: 0.8rem;
    }
    
    .featured-logos-track {
        gap: 2rem;
        animation-duration: 20s;
    }
}
