
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(59, 130, 246, 0.1);
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

/* Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95));
}

.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-bottom: 30px;
    border-radius: 50px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #cbd5e1;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #3b82f6;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrows {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 3px;
}

.arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #cbd5e1;
    border-bottom: 2px solid #cbd5e1;
    transform: rotate(45deg);
    animation: arrowDown 2s infinite;
}

.arrows span:nth-child(2) { animation-delay: 0.2s; }
.arrows span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrowDown {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-statement:hover::before {
    opacity: 1;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mission-icon i {
    font-size: 1.8rem;
    color: white;
}

.mission-statement h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.mission-statement p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.metric-card {
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.metric-card:hover::before {
    left: 100%;
}

.metric-card:hover {
    transform: translateY(-10px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.metric-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.metric-label {
    color: #64748b;
    font-weight: 500;
}

/* Principles Section */
.principles-section {
    padding: 100px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.principle-card {
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.principle-card:hover .card-glow {
    opacity: 1;
}

.principle-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.principle-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.icon-ring {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-ring::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

.icon-ring i {
    font-size: 2rem;
    color: #3b82f6;
    position: relative;
    z-index: 2;
}

.principle-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
    text-align: center;
}

.principle-card p {
    color: #475569;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.principle-tag {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.principle-tag span {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    color: white;
}

.leadership-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

.leader-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.leader-card:hover {
    transform: translateY(-15px) scale(1.03);
}

.leader-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .image-frame img {
    transform: scale(1.1);
}

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

.leader-card:hover .image-shine {
    left: 100%;
}

.leader-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
}

.leader-badge i {
    font-size: 1.2rem;
    color: white;
}

.leader-info {
    padding: 40px 25px 25px;
    text-align: center;
}

.leader-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: white;
}

.leader-title {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.leader-divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 15px;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.leader-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.leader-contact:hover {
    color: white;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

@media (max-width: 992px) {
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

.doc-card, .reg-card {
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.doc-header, .reg-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.doc-icon, .reg-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-icon i, .reg-icon i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.doc-header h3, .reg-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: #1e293b;
}

.doc-card p, .reg-card p {
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Providers List */
.providers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.provider-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.provider-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.provider-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.provider-icon img {
    max-width: 100%;
    max-height: 30px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.provider-item:hover .provider-icon img {
    filter: grayscale(0%);
}

.provider-info {
    flex: 1;
}

.provider-info strong {
    display: block;
    color: #1e293b;
    margin-bottom: 2px;
}

.provider-info span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
}

/* Regulatory List */
.reg-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reg-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.reg-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.reg-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reg-badge i {
    font-size: 1.3rem;
    color: white;
}

.reg-info {
    flex: 1;
}

.reg-info strong {
    display: block;
    color: #1e293b;
    margin-bottom: 2px;
}

.reg-info span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
}

.reg-status {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Closing Statement */
.closing-statement {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 20px;
}

.statement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.statement-icon i {
    font-size: 1.5rem;
    color: white;
}

.closing-statement p {
    font-size: 1.2rem;
    color: #1e293b;
    font-style: italic;
    margin: 0;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-ghost {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #3b82f6;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .doc-card, .reg-card {
        padding: 30px 20px;
    }
    
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mission-metrics {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .closing-statement {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}
body {
  overflow-x: hidden;
}
.about-hero,
.mission-section,
.principles-section,
.leadership-section,
.compliance-section,
.about-cta {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.about-hero *,
.mission-section *,
.principles-section *,
.leadership-section *,
.compliance-section *,
.about-cta * {
  max-width: 100%;
}

@media (max-width: 768px) {
  .about-hero *,
  .mission-section *,
  .principles-section *,
  .leadership-section *,
  .compliance-section *,
  .about-cta * {
    transform: translateX(0) !important;
  }
}
.about-hero {
  height: 79vh;
  min-height: unset;
}
.about-hero .video-overlay {
  display: none;
}
.about-hero .video-overlay {
  display: block;
  background: rgba(0, 0, 0, 0.65);
}

.about-hero .scroll-indicator {
  margin-top: 32px;
}
.about-hero .scroll-indicator {
  position: relative;
  top: 40px;
}

.about-hero .scroll-indicator {
  position: relative;
  top: 5px;
  left: 1%;
  transform: translateX(-50%);
}




/* ===== COMPACT PRINCIPLES SECTION ===== */
.principles-section {
    padding: 50px 0 !important;
}

.principles-section .section-header {
    margin-bottom: 30px !important;
}

.principles-section .section-header h2 {
    font-size: 2.2rem !important;
    margin-bottom: 5px !important;
}

.principles-section .section-header p {
    font-size: 0.9rem !important;
    color: #666 !important;
}

.principles-grid {
    gap: 20px !important;
    max-width: 1000px !important;
}

.principles-grid .principle-card {
    padding: 25px !important;
}

.principles-grid .principle-icon {
    width: 60px !important;
    height: 60px !important;
    margin: 0 auto 20px !important;
}

.principles-grid .icon-ring {
    width: 60px !important;
    height: 60px !important;
}

.principles-grid .icon-ring i {
    font-size: 1.5rem !important;
}

.principles-grid .principle-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 12px !important;
}

.principles-grid .principle-card p {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
}

.principles-grid .principle-tag {
    gap: 8px !important;
}

.principles-grid .principle-tag span {
    padding: 4px 10px !important;
    font-size: 0.8rem !important;
}



.principles-section {
  background: #ebdcbf;
}

.principles-section .principle-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.principles-section .principle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.9),
    rgba(200,200,200,0.4),
    rgba(255,255,255,0.9)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.principles-section {
  background: #e9dfc7 !important;
}




/* ===== COMPACT LEADERSHIP SECTION ===== */
.leadership-section {
    padding: 50px 0 !important;
}

.leadership-section .section-header {
    margin-bottom: 30px !important;
}

.leadership-section .section-header h2 {
    font-size: 2.2rem !important;
    margin-bottom: 5px !important;
}

.leadership-section .section-header p {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.leadership-grid {
    gap: 20px !important;
}

.leadership-grid .leader-card {
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.leadership-grid .leader-card:hover {
    transform: translateY(-5px) !important;
}

.leadership-grid .leader-image {
    height: 180px !important;
    position: relative !important;
}

.leadership-grid .image-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.leadership-grid .leader-badge {
    width: 40px !important;
    height: 40px !important;
    bottom: -15px !important;
    border-width: 3px !important;
}

.leadership-grid .leader-badge i {
    font-size: 1rem !important;
}

.leadership-grid .leader-info {
    padding: 25px 20px 20px !important;
    text-align: center !important;
}

.leadership-grid .leader-info h3 {
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
    color: white !important;
}

.leadership-grid .leader-title {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
    color: #3b82f6 !important;
}

.leadership-grid .leader-divider {
    width: 30px !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    margin: 0 auto 10px !important;
}

.leadership-grid .leader-bio {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    min-height: 36px !important;
}

.leadership-grid .leader-contact {
    font-size: 0.8rem !important;
    color: #3b82f6 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    background: rgba(59, 130, 246, 0.1) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.leadership-grid .leader-contact:hover {
    background: rgba(59, 130, 246, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Responsive for leadership cards */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .leadership-grid .leader-image {
        height: 160px !important;
    }
}

@media (max-width: 576px) {
    .leadership-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
}

.leadership-section {
  background: #3b2a1e !important;
}



.leadership-section .leader-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 0 18px rgba(255,255,255,0.35),
    0 25px 45px rgba(0,0,0,0.45);
}

.leadership-section .leader-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,1),
    rgba(200,200,200,0.4),
    rgba(255,255,255,1)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}



.leadership-section .leader-card {
  height: 350px;
}

.leadership-section .leader-card {
  margin: 14px;
}

.leadership-section .leader-card {
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.leadership-section .leader-info {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
}



.leadership-section .leader-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
}

.leadership-section .leader-info h3 {
  color: #c9a24d; /* deep gold */
}

.leadership-section .leader-info .leader-title {
  color: #2f6aff; /* same blue */
}


.leadership-section .leader-info {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 85%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-align: center;
}

.leadership-section .leader-info h3 {
  margin: 0;
  font-weight: 600;
  color: #c9a24d; /* deep gold */
}

.leadership-section .leader-info .leader-title {
  margin-top: 4px;
  font-weight: 500;
  color: #2f6aff;
}


.leadership-section .leader-info {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  text-align: center;
}

.leadership-section .leader-info h3 {
  margin: 0;
  color: #c9a24d;
}

.leadership-section .leader-info .leader-title {
  margin-top: 4px;
  color: #2f6aff;
}





.leadership-section .leader-info {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.leadership-section .leader-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #c9a24d;
}

.leadership-section .leader-info .leader-title {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: #2f6aff;
}

.leadership-section .leader-info {
  max-width: 500px;
}


.leadership-section .leader-glass {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 1px 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px; /* pill */
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.35),
    0 6px 18px rgba(0,0,0,0.35);
}


.leadership-section .leader-info {
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: none;
  border: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.leadership-section .leader-glass {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 14px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: fit-content;
}


.leadership-section .leader-name {
  color: #c9a24d !important;
}
.leadership-section .leader-glass h3 {
  color: #c9a24d !important;
}





.leadership-section .leader-card {
  position: relative;
  overflow: hidden;
}

.leadership-section .leader-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  border: 1.5px solid transparent;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(180,180,180,0.35),
    rgba(255,255,255,0.95)
  ) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}




/* ===== COMPACT COMPLIANCE SECTION ===== */
.compliance-section {
    padding: 50px 0 !important;
}

.compliance-section .section-header {
    margin-bottom: 30px !important;
}

.compliance-section .section-header h2 {
    font-size: 2.2rem !important;
    margin-bottom: 5px !important;
}

.compliance-section .section-header p {
    font-size: 0.9rem !important;
    color: #666 !important;
}

.compliance-grid {
    gap: 25px !important;
    margin-bottom: 30px !important;
}

.doc-card,
.reg-card {
    padding: 25px !important;
    border-radius: 16px !important;
}

.doc-header,
.reg-header {
    margin-bottom: 15px !important;
}

.doc-icon,
.reg-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
}

.doc-icon i,
.reg-icon i {
    font-size: 1.2rem !important;
}

.doc-header h3,
.reg-header h3 {
    font-size: 1.3rem !important;
}

.doc-card p,
.reg-card p {
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}

.providers-list,
.reg-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.provider-item,
.reg-item {
    padding: 12px 15px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.2s ease !important;
}

.provider-item:hover,
.reg-item:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: translateX(3px) !important;
}

.provider-icon {
    width: 35px !important;
    height: 35px !important;
    border-radius: 8px !important;
    padding: 5px !important;
}

.provider-icon img {
    max-height: 25px !important;
    filter: grayscale(100%) !important;
    opacity: 0.8 !important;
}

.provider-item:hover .provider-icon img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

.provider-info strong,
.reg-info strong {
    font-size: 0.95rem !important;
    color: #1e293b !important;
    margin-bottom: 2px !important;
}

.provider-info span,
.reg-info span {
    font-size: 0.8rem !important;
    color: #64748b !important;
    line-height: 1.4 !important;
}

.reg-badge {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
}

.reg-badge i {
    font-size: 1.1rem !important;
}

.reg-status.active {
    font-size: 0.75rem !important;
    padding: 3px 10px !important;
    border-radius: 12px !important;
}

.reg-item {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
}

.reg-info {
    min-width: 0 !important;
}

.closing-statement {
    padding: 20px 25px !important;
    border-radius: 16px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.closing-statement p {
    font-size: 0.95rem !important;
    margin: 0 !important;
    color: #1e293b !important;
    font-style: italic !important;
}

.statement-icon {
    width: 45px !important;
    height: 45px !important;
    border-radius: 10px !important;
    flex-shrink: 0 !important;
}

.statement-icon i {
    font-size: 1.3rem !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .compliance-grid {
        grid-template-columns: 1fr !important;
    }
    
    .compliance-docs,
    .compliance-regulatory {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .doc-card,
    .reg-card {
        padding: 20px !important;
    }
    
    .provider-item,
    .reg-item {
        padding: 10px !important;
    }
    
    .closing-statement {
        padding: 15px 20px !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
}


.compliance-section .provider-icon img {
  filter: none !important;
  opacity: 1 !important;
}

.compliance-section .provider-icon {
  transform: scale(7.15);
}



.compliance-section .doc-card {
  position: relative;
  background: #0f0f12;
  color: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

.compliance-section .doc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.95),
    rgba(190,190,190,0.35),
    rgba(255,255,255,0.95)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.compliance-section .doc-card h3,
.compliance-section .doc-card p,
.compliance-section .provider-info strong,
.compliance-section .provider-info span {
  color: #ffffff;
}




.compliance-section .providers-list .provider-item {
  position: relative;
  background: #ffffff !important;
  border-radius: 14px;
  padding: 16px 18px !important;
}

.compliance-section .providers-list .provider-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  border: 1.5px solid transparent;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,1),
    rgba(160,160,160,0.45),
    rgba(255,255,255,1)
  ) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.compliance-section .providers-list .provider-info strong {
  color: rgba(0,0,0,0.95) !important;
}

.compliance-section .providers-list .provider-info span {
  color: rgba(0,0,0,0.8) !important;
}



.compliance-section .doc-card {
  position: relative;
  background: #0f0f12 !important;
  border-radius: 20px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

.compliance-section .doc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(
    140deg,
    rgba(255,255,255,1),
    rgba(210,210,210,0.55),
    rgba(255,255,255,1)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.compliance-section .doc-card {
  position: relative;
  background: #0f0f12 !important;
  border-radius: 20px;
  border: 2px solid #cfcfcf; /* HARD silver edge */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 0 22px rgba(255,255,255,0.45),
    0 30px 60px rgba(0,0,0,0.7);
}

.compliance-section .providers-list .provider-item {
  background: #ffffff !important;
  border-radius: 16px;
  border: 2px solid #cfcfcf; /* real silver edge */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 0 18px rgba(255,255,255,0.4),
    0 14px 28px rgba(0,0,0,0.25);
}
.compliance-section .providers-list .provider-item {
  padding: 8px 10px !important;
  transform: scale(0.92);
}




/* REGULATORY MAIN CARD — dark + heavy silver edge */
.compliance-section .reg-card {
  position: relative;
  background: #0f0f12 !important;
  border-radius: 20px;
  border: 2px solid #cfcfcf;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 0 22px rgba(255,255,255,0.45),
    0 30px 60px rgba(0,0,0,0.7);
  color: #ffffff;
}

/* EACH REGULATOR ITEM — white card + silver edge */
.compliance-section .reg-list .reg-item {
  background: #ffffff !important;
  border-radius: 16px;
  border: 2px solid #cfcfcf;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 0 18px rgba(255,255,255,0.4),
    0 14px 28px rgba(0,0,0,0.25);
}

/* REGULATOR NAME + DESCRIPTION — readable black */
.compliance-section .reg-list .reg-info strong {
  color: rgba(0,0,0,0.95) !important;
}

.compliance-section .reg-list .reg-info span {
  color: rgba(0,0,0,0.8) !important;
}
.compliance-section .reg-card h3,
.compliance-section .reg-card p {
  color: rgba(255, 255, 255, 0.85) !important;
}


.compliance-section .reg-list .reg-item {
  padding: 2px 6px !important;
  transform: scale(0.92);
}


.compliance-section .closing-statement {
  background: #000000 !important;
  color: rgba(255,255,255,0.9);
  border-radius: 18px;
  border: 2px solid #cfcfcf;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.9),
    0 0 22px rgba(255,255,255,0.45),
    0 22px 44px rgba(0,0,0,0.6);
}

.compliance-section .closing-statement i,
.compliance-section .closing-statement p {
  color: rgba(255,255,255,0.9) !important;
}


.compliance-section .closing-statement p {
  font-style: normal !important;
}

.compliance-section .closing-statement p {
  font-size: 11px !important;
}


.about-hero {
  height: 70vh;
}

.about-hero .hero-container {
  padding-top: 60px;
  padding-bottom: 40px;
}

.about-hero .hero-title {
  font-size: clamp(36px, 5vw, 38px);
  line-height: 1.15;
}

.about-hero .hero-subtitle {
  font-size: 14px;
  max-width: 520px;
  margin-top: 10px;
}


.leadership-section .leader-glass .leader-title {
  color: #000000 !important;
}

.principles-section .principle-card {
  background: #ffffff !important;
}
