/* ===== GLOBAL STYLES ===== */
:root {
    /* Palette Colors */
    --primary-dark: #13293D;
    --primary: #265D7A;
    --primary-light: #A7C6DA;
    --secondary: #67C7C6;
    --accent: #A7E4DB;
    --background: #D4E7FE;
    --white: #FFFFFF;
    --shadow: 0 4px 16px 0 rgba(38,93,122,0.08);
    --shadow-lg: 0 10px 30px 0 rgba(38,93,122,0.15);
    --transition: 0.3s cubic-bezier(.4,2,.3,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    position: relative;
    z-index: 1;
    background: none !important;
    padding-top: 0;
}

body::before {
    background:
        radial-gradient(circle 320px at 80% 10%, rgba(103,199,198,0.45) 0%, transparent 80%),
        radial-gradient(circle 260px at 70% 80%, rgba(167,228,219,0.38) 0%, transparent 80%),
        radial-gradient(circle 200px at 30% 70%, rgba(38,93,122,0.28) 0%, transparent 80%),
        radial-gradient(circle 160px at 50% 50%, rgba(38,93,122,0.22) 0%, transparent 80%),
        radial-gradient(circle 120px at 90% 60%, rgba(167,198,218,0.28) 0%, transparent 80%),
        radial-gradient(circle 100px at 20% 85%, rgba(103,199,198,0.28) 0%, transparent 80%),
        radial-gradient(circle 80px at 60% 30%, rgba(167,228,219,0.28) 0%, transparent 80%);
}

.hero-section, .container, .row, .col-lg-6, .col-lg-4, .col-md-6 {
    position: relative;
    z-index: 2;
    background: transparent !important;
}

.container {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* ===== NAVBAR PILL CARD FLOATING ===== */
.navbar {
    background: linear-gradient(90deg, var(--primary-dark) 60%, var(--primary) 100%) !important;
    border-radius: 40px;
    box-shadow: 0 8px 32px 0 rgba(38,93,122,0.18), 0 1.5px 8px 0 rgba(38,93,122,0.10);
    margin: 24px auto 0 auto;
    width: 96%;
    max-width: 1400px;
    padding: 0.7rem 2.5rem;
    position: relative;
    z-index: 100;
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
    margin-top: 10px;
    margin-bottom: 2px;
}

.navbar:hover {
    box-shadow: 0 16px 48px 0 rgba(38,93,122,0.22), 0 3px 16px 0 rgba(38,93,122,0.13);
    transform: translateY(-4px) scale(1.012);
}

.navbar .navbar-nav .nav-link {
    color: var(--white) !important;
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    margin: 0 0.3rem;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.navbar .navbar-nav .nav-link:hover {
    background: var(--secondary);
    color: var(--primary-dark) !important;
    box-shadow: 0 2px 8px 0 rgba(38,93,122,0.10);
}

.navbar .navbar-brand {
    color: var(--white) !important;
}

.navbar .navbar-brand img {
    filter: brightness(0) invert(1);
}

/* إزالة الخلفية القديمة */
/* .navbar {
    background: var(--white) !important;
} */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(-4deg);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition);
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-nav .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    color: var(--primary-dark);
    border: none;
    box-shadow: var(--shadow);
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.navbar-nav .btn:hover {
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px) scale(1.04);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--background) 100%);
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    animation: fadeIn 1.2s;
    padding-top: 2px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
    opacity: 0.18;
    z-index: 1;
    animation: float 8s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--primary-dark);
    letter-spacing: -1px;
    text-shadow: 0 2px 8px rgba(167,198,218,0.08);
}

.hero-title .text-primary {
    color: var(--primary);
    text-shadow: 0 2px 8px rgba(38,93,122,0.10);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    line-height: 1.8;
    color: var(--primary);
}

.hero-buttons {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    border-radius: 30px;
    padding: 1rem 2.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow);
    border: none;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.hero-buttons .btn:hover {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px) scale(1.05);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 1.2rem 2.2rem;
    min-width: 120px;
    transition: box-shadow var(--transition), transform var(--transition);
    animation: fadeInUp 1.5s;
}

.stat-item:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.06) rotate(-2deg);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--primary-dark);
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1.2s;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(.4,2,.3,1), box-shadow 0.4s;
}

.hero-image img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: var(--shadow-xl);
}

.hero-dashboard-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(.4,2,.3,1), box-shadow 0.4s;
}

.hero-dashboard-img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: var(--shadow-xl);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
}

/* ===== FEATURES ===== */
/* إزالة الأنيميشن والزخارف من البطاقات */
.features-section .row.g-4 {
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(38,93,122,0.18), 0 1.5px 8px 0 rgba(38,93,122,0.10);
    border: 1.5px solid var(--primary-light);
    padding: 2rem;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background 0.4s;
    height: 100%;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-18px) scale(1.05) rotate(-2deg);
    box-shadow: 0 16px 48px 0 rgba(38,93,122,0.22), 0 2px 12px 0 rgba(38,93,122,0.13);
    border-color: var(--secondary);
    background: rgba(255,255,255,0.32);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: var(--shadow);
    transition: background var(--transition), transform var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: scale(1.08) rotate(8deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
}

.feature-card p {
    color: var(--primary);
    opacity: 0.92;
    font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services-section {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(38,93,122,0.10), 0 1.5px 8px 0 rgba(38,93,122,0.06);
    border: none;
    padding: 2.5rem 1.5rem;
}

.service-card {
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    border-radius: 18px;
    box-shadow: 0 4px 16px 0 rgba(38,93,122,0.08);
    border: none;
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.5rem;
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: 0 8px 32px 0 rgba(38,93,122,0.13);
    transform: translateY(-4px) scale(1.012);
}

.service-item {
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-left: none;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-content h3 i {
    color: var(--primary-color);
}

.service-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-radius: 22px;
    box-shadow: 0 12px 40px 0 rgba(38,93,122,0.22), 0 2px 12px 0 rgba(38,93,122,0.13);
    transition: box-shadow var(--transition), transform var(--transition), background 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1.5px solid var(--primary-light);
}

.pricing-card:hover {
    transform: translateY(-18px) scale(1.05) rotate(-2deg);
    box-shadow: 0 24px 64px 0 rgba(38,93,122,0.28), 0 4px 18px 0 rgba(38,93,122,0.16);
    background: rgba(255,255,255,0.32);
    border-color: var(--secondary);
}

.pricing-card.featured {
    border: 2.5px solid #FFD700;
    box-shadow: 0 0 0 4px rgba(255,215,0,0.10), 0 16px 48px 0 rgba(38,93,122,0.18);
    position: relative;
    z-index: 2;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.10) translateY(-22px);
    border-color: #FFD700;
    box-shadow: 0 0 0 8px rgba(255,215,0,0.18), 0 32px 80px 0 rgba(255,215,0,0.18), 0 8px 32px 0 rgba(38,93,122,0.14);
    background: rgba(255,255,255,0.36);
}

.pricing-card .pricing-badge {
    position: absolute;
    top: 18px;
    right: -36px;
    background: linear-gradient(90deg, #FFD700 60%, #FFFACD 100%);
    color: #333;
    padding: 0.5rem 2.2rem;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 18px;
    box-shadow: 0 2px 8px 0 rgba(255,215,0,0.18);
    transform: rotate(18deg);
    letter-spacing: 1px;
    z-index: 3;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--secondary-color);
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.pricing-footer .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(135deg, var(--dark-color), #374151);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
}

.contact-item span {
    font-size: 1.1rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
    color: white;
}

.contact-form .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 2rem 0 1rem 0;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
    border-radius: 24px 24px 0 0;
    animation: fadeInUp 1.2s;
}

.footer-link {
    color: var(--accent);
    margin: 0 0.7rem;
    font-weight: 600;
    transition: color var(--transition), text-decoration var(--transition);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-section {
        min-height: 60vh;
    }
    .stat-item {
        padding: 1rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.1rem;
    }
    .hero-buttons .btn {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .navbar-brand img {
        height: 32px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    background: var(--primary-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
} 

.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.45;
    filter: blur(1px);
    will-change: transform, opacity;
    mix-blend-mode: lighten;
    animation-timing-function: ease-in-out;
}

.circle1 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #A7C6DA 60%, transparent 100%);
    top: 8%; left: 5%;
    animation: move1 6s infinite alternate;
}
.circle2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #67C7C6 60%, transparent 100%);
    top: 2%; right: 8%;
    animation: move2 7.5s infinite alternate;
}
.circle3 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, #A7E4DB 60%, transparent 100%);
    bottom: 10%; right: 12%;
    animation: move3 6.75s infinite alternate;
}
.circle4 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #265D7A 60%, transparent 100%);
    bottom: 18%; left: 18%;
    opacity: 0.30;
    animation: move4 8.25s infinite alternate;
}
.circle5 {
    width: 160px; height: 160px;
    background: radial-gradient(circle, #13293D 60%, transparent 100%);
    top: 50%; left: 45%;
    opacity: 0.22;
    animation: move5 9s infinite alternate;
}
.circle6 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, #A7C6DA 60%, transparent 100%);
    bottom: 30%; left: 70%;
    animation: move6 7.5s infinite alternate;
}
.circle7 {
    width: 100px; height: 100px;
    background: radial-gradient(circle, #67C7C6 60%, transparent 100%);
    top: 80%; left: 10%;
    animation: move7 6.75s infinite alternate;
}
.circle8 {
    width: 80px; height: 80px;
    background: radial-gradient(circle, #A7E4DB 60%, transparent 100%);
    top: 30%; right: 30%;
    animation: move8 9s infinite alternate;
}

@keyframes move1 {
    0% { transform: translateY(0) scale(1); opacity: 0.45; }
    100% { transform: translateY(150px) scale(1.225); opacity: 0.7; }
}
@keyframes move2 {
    0% { transform: translateY(0) scale(1); opacity: 0.45; }
    100% { transform: translateY(-175px) scale(1.275); opacity: 0.7; }
}
@keyframes move3 {
    0% { transform: translateX(0) scale(1); opacity: 0.45; }
    100% { transform: translateX(-150px) scale(1.2375); opacity: 0.7; }
}
@keyframes move4 {
    0% { transform: translateY(0) scale(1); opacity: 0.30; }
    100% { transform: translateY(112.5px) scale(1.2875); opacity: 0.5; }
}
@keyframes move5 {
    0% { transform: translateX(0) scale(1); opacity: 0.22; }
    100% { transform: translateX(100px) scale(1.225); opacity: 0.4; }
}
@keyframes move6 {
    0% { transform: translateY(0) scale(1); opacity: 0.45; }
    100% { transform: translateY(-100px) scale(1.3125); opacity: 0.7; }
}
@keyframes move7 {
    0% { transform: translateX(0) scale(1); opacity: 0.45; }
    100% { transform: translateX(87.5px) scale(1.275); opacity: 0.7; }
}
@keyframes move8 {
    0% { transform: translateY(0) scale(1); opacity: 0.45; }
    100% { transform: translateY(75px) scale(1.35); opacity: 0.7; }
}

.glass-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.10);
    transition: background 0.5s;
}

body > *:not(.background-circles):not(.glass-layer) {
    position: relative;
    z-index: 2;
} 

.main-glass-card {
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(20px) saturate(1.25);
    -webkit-backdrop-filter: blur(20px) saturate(1.25);
    border-radius: 32px;
    box-shadow: 0 16px 56px 0 rgba(38,93,122,0.16), 0 4px 18px 0 rgba(38,93,122,0.10);
    border: 2.5px solid rgba(167,198,218,0.22);
    padding: 2.5rem 2rem;
    width: 95%;
    max-width: 1400px;
    min-height: 70vh;
    margin: 2rem auto;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background 0.4s;
}

.main-glass-card:hover {
    box-shadow: 0 28px 80px 0 rgba(38,93,122,0.22), 0 8px 32px 0 rgba(38,93,122,0.14);
    border-color: rgba(38,93,122,0.18);
    transform: translateY(-8px) scale(1.018);
} 