/* ===== PAGE COMMON STYLES ===== */
/* Common styles used across all pages including landing page */

/* ===== UNIFIED PAGE HERO SECTION ===== */
.page-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #100F57 0%, #1a1980 50%, #0a92dd 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    overflow: hidden;
}

/* Glowing Circle Effects */
.page-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 146, 221, 0.6) 0%, rgba(10, 146, 221, 0.3) 30%, rgba(10, 146, 221, 0.1) 60%, transparent 100%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    z-index: 0;
    filter: blur(60px);
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 146, 221, 0.5) 0%, rgba(10, 146, 221, 0.25) 30%, rgba(10, 146, 221, 0.05) 60%, transparent 100%);
    border-radius: 50%;
    bottom: -100px;
    left: -150px;
    z-index: 0;
    filter: blur(50px);
}

.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.page-hero .hero-content {
    text-align: center;
    color: #fff;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-hero .hero-badge i {
    color: #f1c40f;
    font-size: 1.2rem;
}

.page-hero .hero-badge span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
}

.page-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.page-hero .gradient-text {
    background: linear-gradient(135deg, #0a92dd, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SECTION HEADER COMMON STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: #fff;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: #fff;
}

.section-header h2 .highlight {
    color: #0a92dd;
}

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

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

/* ===== COMMON GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #0a92dd, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== COMMON CARD STYLES ===== */
.common-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.common-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: #0a92dd;
}

/* ===== COMMON BUTTON STYLES ===== */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0a92dd 0%, #667eea 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(10, 146, 221, 0.35);
    position: relative;
    overflow: hidden;
}

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

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

.btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 146, 221, 0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    color: #0a92dd;
    border: 2px solid #0a92dd;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #0a92dd;
    transition: width 0.3s ease;
    z-index: -1;
}

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

.btn-outline:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(10, 146, 221, 0.3);
}

/* ===== COMMON SECTION BACKGROUNDS ===== */
.section-light {
    background: #f8f9fa;
}

.section-white {
    background: #fff;
}

.section-dark {
    background: linear-gradient(135deg, #100F57 0%, #1a1980 100%);
    color: #fff;
}

/* ===== COMMON ICON BOX ===== */
.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a92dd, #667eea);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 1.5rem;
    color: #fff;
}

.icon-box.small {
    width: 45px;
    height: 45px;
}

.icon-box.small i {
    font-size: 1.1rem;
}

.icon-box.large {
    width: 80px;
    height: 80px;
}

.icon-box.large i {
    font-size: 2rem;
}

/* ===== COMMON ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

/* ===== COMMON UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }
