/* Modern, Premium Styles for MyEventSetu */
:root {
    --primary-bg: #000e23;
    --navy-dark: #001f3f;
    --text-light: #d9e6ff;
    --text-muted: #94acd4;
    --accent-blue: #85adff;
    --accent-purple: #ac8aff;
    --gradient-primary: linear-gradient(135deg, #91b6ff 0%, #8c5bff 100%);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-light);
    font-family: var(--font-main);
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #a65eff transparent;
}

/* Custom Scrollbar for Webkit Browsers */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #2a003a77;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a65eff 0%, #d0aafd 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}


/* Header & Navigation - Floating Oval Style */
.navbar {
    background-color: rgba(24, 0, 54, 0.247);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    border-radius: 50px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991px) {
    .navbar {
        width: 95%;
        padding: 0.8rem 1.2rem;
        border-radius: 25px;
    }
}

/* Scroll Effect - Full Width Navbar */
.navbar.scrolled {
    width: 100%;
    max-width: 100%;
    top: 0;
    border-radius: 0;
    background-color: rgba(8, 0, 36, 0.671);
    border-bottom: 1px solid rgba(133, 173, 255, 0.2);
}

.navbar-brand img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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


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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/home-banner-bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.5); /* Slightly more blur and darkness */
    transform: scale(1.1);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 30%, #a65eff 100%); /* Brighter Purple */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#typing-text {
    color: #ba81ff;
    -webkit-text-fill-color: #ba81ff; /* Override title transparency */
}

.cursor {
    color: #ffffff;
    animation: blink 0.7s infinite;
    -webkit-text-fill-color: #ffffff;
    font-weight: 300;
}

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


@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: #94acd4;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tags {
    margin-top: 3rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    /* opacity: 0.8; */
}

.hero-tags span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}


/* Core Modules Section */
.section-padding {
    padding: 120px 0;
    position: relative;
    background: #000a1a;
    overflow: hidden;
}

/* Organic Noise Texture */
.section-padding::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 1;
}


/* Modern Aura Background */
.section-padding::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(166, 94, 255, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: aura-move-1 15s infinite alternate ease-in-out;
}

.section-padding::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(145, 182, 255, 0.1) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: aura-move-2 20s infinite alternate ease-in-out;
}

.section-padding .container {
    position: relative;
    z-index: 1;
}

@keyframes aura-move-1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, 100px); }
}

/* Pricing Section Variation */
#pricing {
    background: #000c1d;
}

#pricing::before {
    background: radial-gradient(circle, rgba(133, 173, 255, 0.12) 0%, transparent 70%);
}

#pricing::after {
    background: radial-gradient(circle, rgba(200, 100, 255, 0.08) 0%, transparent 70%);
}

.section-title {

    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fff 0%, #a65eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; /* Slightly wider */
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(166, 94, 255, 0.4);
    animation: divider-pulse 2s infinite ease-in-out;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #94acd4;
    font-size: 1.1rem;
    line-height: 1.6;
}

@keyframes divider-pulse {
    0%, 100% { width: 80px; opacity: 0.8; }
    50% { width: 120px; opacity: 1; }
}




.module-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(133, 173, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.module-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(248, 36, 255, 0.514);
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(248, 36, 255, 0.342);
}

.module-card:hover::before {
    opacity: 1;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: rgba(145, 182, 255, 0.1);
    border: 1px solid rgba(133, 173, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    color: var(--accent-blue);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.module-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.module-card:hover .module-icon {
    color: #fff;
    border-color: transparent;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(133, 173, 255, 0.4);
}

.module-card:hover .module-icon::after {
    opacity: 1;
}


.module-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.module-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Advanced Features Styles */
#advanced-features {
    background: #000814;
}

#advanced-features::before {
    background: radial-gradient(circle, rgba(255, 36, 255, 0.08) 0%, transparent 70%);
    top: 50%;
    right: -20%;
}

.feature-card-advanced {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card-advanced:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(166, 94, 255, 0.3);
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.feature-card-advanced-pro:hover {
    background: linear-gradient(135deg, rgba(197, 197, 197, 0.158) 0%, rgba(152, 75, 253, 0.082) 100%);
    border-color: rgba(166, 94, 255, 0.3);
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(166, 94, 255, 0.1);
    border: 1px solid rgba(166, 94, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: #a65eff;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(166, 94, 255, 0.1);
}

.feature-card-advanced:hover .feature-icon-wrapper {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotateY(180deg);
    box-shadow: 0 0 30px rgba(166, 94, 255, 0.5);
}

.feature-card-advanced h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-advanced p {
    color: #94acd4;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .feature-card-advanced .col-md-4 {
        margin-bottom: 1.5rem;
    }
    .feature-card-advanced {
        text-align: center;
    }
}


/* Buttons */
.btn-login {

    color: var(--text-light);
    border: 1px solid rgba(133, 173, 255, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login:hover {
    background: rgba(133, 173, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-signup, .btn-hero {
    background: var(--gradient-primary);
    color: #fff !important;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(133, 173, 255, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 173, 255, 0.5);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    display: block;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Pricing Section */
.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    background: rgba(133, 173, 255, 0.05);
    border-color: rgba(133, 173, 255, 0.3);
    transform: scale(1.05);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-blue);
    margin-right: 10px;
}

.pricing-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.btn-outline-primary {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline-primary:hover {
    background: var(--accent-blue);
    color: #000;
    border-color: var(--accent-blue);
}

/* Footer Styles */
.footer {
    position: relative;
    background-image: url('imgs/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 10, 26, 0.623) 0%, rgba(0, 10, 26, 0.8) 100%);
    z-index: -1;
}

.footer-logo {
    width: 300px;
}

.footer-title {
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #c290ff;
}

.icon-color {
    color: #ffffff;
    background-color: #a65eff;
    border-radius: 50%;
    padding: 6px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7); /* Lighter than muted for visibility */
}

.powered-by-text {
    font-size: 0.85rem;
}

.powered-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.powered-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(133, 173, 255, 0.5);
}

@media (max-width: 991px) {
    .footer-bottom .row {
        text-align: center;
        gap: 1rem;
    }
}

/* Stats & Counters Section */
.counter-section {
    padding: 80px 0;
    background-color: #9b70ff;
    position: relative;
    overflow: hidden;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imgs/counter-section-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    mix-blend-mode: overlay;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .counter-number {
        font-size: 2.5rem;
    }
    .counter-label {
        font-size: 0.9rem;
    }
}

/* Feature Highlight Section */

.section-highlight {
    background: #000a1a;
    position: relative;
    overflow: hidden;
}

.highlight-item h2 {
    background: linear-gradient(135deg, #9b70fe 0%, #ffffff 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-item p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.badge-gradient {
    background: var(--gradient-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mockup-container {
    position: relative;
    padding: 20px;
}

@media (max-width: 991px) {
    .mockup-container {
        margin-left: 0;
        margin-top: 3rem;
    }
}

.mockup-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%; /* Larger glow */
    height: 130%;
    background: radial-gradient(circle, rgba(166, 94, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.mockup-img {
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 140%;
    max-width: none;
}

.mockup-container:hover .mockup-img {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(133, 173, 255, 0.2);
}




/* Contact Page Icon Boxes */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(133, 173, 255, 0.1);
    border: 1px solid rgba(133, 173, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Trust & Audience Section Styles */
.trust-section {
    background: #000c1d;
    position: relative;
    overflow: hidden;
}

.trust-aura-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(166, 94, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3.5rem 3rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.trust-card.highlight-border {
    border-color: rgba(166, 94, 255, 0.2);
}

.trust-card:hover {
    border: 1px solid rgba(166, 94, 255, 0.2);
    background: rgba(255, 255, 255, 0.041);
    box-shadow: 0 0 15px rgba(133, 173, 255, 0.30);
    transform: translateY(-5px);
}

.section-title-small {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
}

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

.trust-list li {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
}

.trust-list li i {
    margin-right: 15px;
    font-size: 1.4rem;
}

/* Specific icons color */
.trust-list li i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Check list specific */
.check-list li i {
    color: #00ff88 !important; /* Greenish for trust/checks */
    background: none;
    -webkit-text-fill-color: initial;
}

/* CTA Section Styles */
.cta-section {
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(135deg, #a65eff 0%, #6e3bff 100%);
    border-radius: 40px;
    padding: 5rem 4rem;
    box-shadow: 0 30px 60px rgba(110, 59, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none; /* Prevent blocking clicks */
    z-index: 0;
}

.cta-card .row {
    position: relative;
    z-index: 1; /* Ensure content is above decor */
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0;
}

.btn-cta {
    background: #fff;
    color: #a65eff !important;
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block; /* Ensure proper box model for clicking */
    position: relative;
    z-index: 2;
}


.btn-cta:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

@media (max-width: 991px) {
    .cta-card {
        padding: 3rem 2rem;
        text-align: center;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .cta-text {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
}

/* --- New Styles for Contact Page --- */
.page-header {
    position: relative;
    padding: 220px 0 100px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
}

.about-header {
    background-image: url('imgs/about-bg.png');
}

.features-header {
    background-image: url('imgs/feature-bg.png');
}


.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 10, 26, 0.4) 0%, var(--primary-bg) 100%);
    z-index: 1;
}

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

.page-header h1 {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.breadcrumb-nav a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(133, 173, 255, 0.5);
}

.breadcrumb-nav .separator {
    opacity: 0.3;
}

.breadcrumb-nav .active-page {
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #d1d1d1 0%, #9b70ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 900;
}

/* Mission & Vision Cards */
.mission-vision-section {
    background: #000814;
}

.mv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    border-color: rgba(166, 94, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(133, 173, 255, 0.3);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #9b70ff;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.about-main-img {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.5s ease;
}

.about-main-img:hover {
    transform: scale(1.02);
}

.core-values-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
}

.counter-text {
    color: #9b70ff;
    text-shadow: 0 0 15px rgba(155, 112, 255, 0.3);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-visible {
    opacity: 1;
    transform: translate(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Floating WhatsApp Icon */
.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
    
    /* Pulse Animation */
    animation: pulse 1.8s infinite;
}

.floating-wa img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    animation: none; /* hover par pulse band */
}

/* Pulse Keyframes */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}

/* Social Icons Default */
.social-links a {
    border: 1px solid #ffffff;
    color: #ffffffcc;
    background-color: transparent;
    transition: all 0.3s ease;
}

/* Icon color */
.social-links a i {
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Hover Effect */
.social-links a:hover {
    background-color: #ac8aff;
    border-color: #ac8aff;
    color: #ffffff;
    scale: 1.25;
}

/* Hover par icon */
.social-links a:hover i {
    color: #ffffff;
}

.extra-style {
    background: linear-gradient(135deg, #fff 0%, #a65eff 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-size: 2rem !important; 
    font-weight: 700; 
    margin-bottom: 1rem;
    background-clip: text; 
}

.error-box{
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
