/* White/Blue Corporate Theme - style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-dark: #f8f9fa;
    /* Now used as main light background */
    --primary: #0d6efd;
    /* Bootstrap primary blue */
    --secondary: #0a58ca;
    /* Darker blue */
    --accent: #0dcaf0;
    /* Cyan */
    --text-main: #212529;
    /* Dark text */
    --text-muted: #6c757d;
    /* Grey text */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(13, 110, 253, 0.15);
}

body {
    background-color: var(--bg-dark);
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dynamic background gradients */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

body::after {
    content: '';
    position: fixed;
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(10, 88, 202, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.3);
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    color: var(--text-main) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.navbar-brand img,
.brand-logo {
    height: auto;
    max-height: 55px;
    /* Adjust to navbar strip natively without spilling */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover,
.brand-logo:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
}

.btn-glow {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border: none;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
    transform: scale(1.05);
    color: #fff;
}

.btn-outline-glow {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 26px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-glow:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
}

/* Sections */
.hero-section {
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 50px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(to right, #007bff, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-gradient-accent {
    background: linear-gradient(to right, #0056b3, #0d6efd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-box {
    text-align: center;
    padding: 20px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
}

.stats-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.badge-custom {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}

/* Services */
.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card {
    text-align: center;
}

/* Forms */
.glass-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 10px;
}

.glass-input:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.2);
    color: var(--text-main);
    outline: none;
}

.glass-input::placeholder {
    color: var(--text-muted);
}

.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(13, 110, 253, 0.3);
    }

    100% {
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.1);
    }
}

.pulse-glow {
    animation: pulseGlow 3s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
}

@keyframes pulseText {
    0% {
        text-shadow: 0 0 10px rgba(13, 110, 253, 0.1);
    }

    50% {
        text-shadow: 0 0 20px rgba(13, 110, 253, 0.4);
    }

    100% {
        text-shadow: 0 0 10px rgba(13, 110, 253, 0.1);
    }
}

.text-glow-anim {
    animation: pulseText 2s infinite;
}

/* Background utilities */
.bg-hero {
    background: url('../images/hero.png') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.bg-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.95) 100%);
    z-index: -1;
}

.bg-about {
    background: url('../images/about.png') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.bg-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.bg-services {
    background: url('../images/services.png') center/cover fixed no-repeat;
    position: relative;
    z-index: 1;
}

.bg-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.bg-internship {
    background: url('../images/bg_careers.png') center/cover fixed no-repeat;
    position: relative;
    z-index: 1;
}

.bg-internship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.bg-features {
    background: url('../images/bg_features.png') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.bg-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 100%);
    z-index: -1;
}

.bg-why-us {
    background: url('../images/bg_why_us.png') center/cover fixed no-repeat;
    position: relative;
    z-index: 1;
}

.bg-why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: -1;
}

.bg-careers {
    background: url('../images/bg_careers.png') center/cover fixed no-repeat;
    position: relative;
    z-index: 1;
}

.bg-careers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: -1;
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.glass-card-premium:hover::before {
    opacity: 1;
}

.glass-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.15);
}

/* Dashboard layout */
.dashboard-sidebar {
    border-right: 1px solid var(--glass-border);
    height: calc(100vh - 76px);
    position: sticky;
    top: 76px;
    padding-top: 2rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(13, 110, 253, 0.05);
    color: var(--primary);
}

.sidebar-link i {
    margin-right: 15px;
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        position: relative;
        top: 0;
        padding-top: 1rem;
        margin-bottom: 2rem;
    }
}