/**
 * Shivam Pandey - Premium Personal Branding Website
 * Complete Dark Premium UI Stylesheet
 * Colors: #031716, #032F30, #0A7075, #0C969C, #6BA3BE, #274D60
 */

/* ==================== CSS VARIABLES ==================== */
:root {
    --primary-dark: #031716;
    --primary-deep: #032F30;
    --primary: #0A7075;
    --primary-light: #0C969C;
    --accent: #6BA3BE;
    --secondary: #274D60;
    --text-primary: #ffffff;
    --text-secondary: #b0c4d0;
    --text-muted: #6b8a9a;
    --bg-dark: #031716;
    --bg-card: rgba(3, 47, 48, 0.7);
    --bg-glass: rgba(10, 112, 117, 0.15);
    --border-glow: rgba(12, 150, 156, 0.4);
    --gradient-primary: linear-gradient(135deg, #0A7075 0%, #0C969C 50%, #6BA3BE 100%);
    --gradient-dark: linear-gradient(135deg, #031716 0%, #032F30 50%, #0A7075 100%);
    --gradient-glow: linear-gradient(135deg, rgba(10,112,117,0.3) 0%, rgba(12,150,156,0.2) 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(10, 112, 117, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px rgba(12, 150, 156, 0.5), 0 0 40px rgba(10, 112, 117, 0.3);
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-spinner {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(10, 112, 117, 0.2);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    margin-top: 25px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-light);
}

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

/* ==================== PARTICLE CANVAS ==================== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==================== MUSIC TOGGLE ==================== */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-smooth);
    animation: pulse-glow 2s ease-in-out infinite;
}

.music-toggle:hover {
    transform: scale(1.1);
}

.music-toggle.muted {
    background: var(--secondary);
    animation: none;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(10, 112, 117, 0.4); }
    50% { box-shadow: 0 0 40px rgba(12, 150, 156, 0.6); }
}

/* ==================== FLOATING WHATSAPP ==================== */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    animation: bounce-in 0.6s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounce-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ==================== NAVBAR ==================== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.main-navbar.scrolled {
    background: rgba(3, 23, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary) !important;
    padding: 10px 18px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
}

/* Mega Menu */
.mega-menu-wrapper {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(3, 23, 22, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glow);
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9998;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.mega-menu-item:hover {
    background: var(--bg-glass);
    border-color: var(--border-glow);
    transform: translateX(5px);
}

.mega-menu-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.mega-menu-item .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

/* Mobile Menu */
.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 8px 12px;
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(10, 112, 117, 0.3);
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(10, 112, 117, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(12, 150, 156, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-glow:hover::before {
    opacity: 0.6;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 112, 117, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12, 150, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 10s ease-in-out infinite reverse;
}

@keyframes float-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

.hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: 33px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
}

/* Floating Icons Animation */
.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    backdrop-filter: blur(10px);
    animation: float-icon 6s ease-in-out infinite;
}

.float-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
.float-icon:nth-child(3) { bottom: 20%; left: 8%; animation-delay: 2s; }
.float-icon:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 3s; }
.float-icon:nth-child(5) { top: 50%; left: 3%; animation-delay: 1.5s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Typing Animation */
.typing-text {
    border-right: 3px solid var(--primary-light);
    animation: blink-cursor 0.75s step-end infinite;
    display: inline;
}

@keyframes blink-cursor {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--primary-light); }
}

/* ==================== SECTION STYLES ==================== */
.section-padding {
    padding: 100px 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-light);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, rgba(3, 47, 48, 0.8) 0%, rgba(39, 77, 96, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(12,150,156,0.3)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.stat-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 10px;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card .service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card:hover .service-image {
    opacity: 0.1;
}

.service-card > *:not(.service-image) {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 5px 20px rgba(10, 112, 117, 0.5);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.service-link:hover {
    gap: 15px;
}

/* ==================== SKILL CARDS ==================== */
.skill-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.skill-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.skill-card:hover::after {
    opacity: 0.05;
}

.skill-card > * {
    position: relative;
    z-index: 1;
}

.skill-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--transition-smooth);
}

.skill-card:hover .skill-image {
    opacity: 0.15;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.skill-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

.skill-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.skill-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1.5s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 12px;
    height: 12px;
    background: var(--primary-light);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(12, 150, 156, 0.5);
}

/* ==================== TIMELINE ==================== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    padding-bottom: 50px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: 4px solid var(--primary-dark);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateX(10px);
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    padding: 5px 15px;
    background: var(--bg-glass);
    border-radius: 50px;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.timeline-company {
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ==================== TRAINING CARDS ==================== */
.training-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
}

.training-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.training-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 2;
}

.training-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.training-body {
    padding: 25px;
}

.training-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.training-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.training-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.training-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 5px 0;
}

.training-features li i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

/* ==================== CASE STUDY CARDS ==================== */
.case-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

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

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(3, 23, 22, 0.95));
}

.case-body {
    padding: 30px;
}

.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.case-meta span {
    font-size: 0.8rem;
    padding: 5px 15px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    color: var(--primary-light);
    font-weight: 600;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 150, 156, 0.2);
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.testimonial-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.blog-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.blog-body {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ==================== FAQ ACCORDION ==================== */
.faq-section {
    background: linear-gradient(135deg, rgba(3, 47, 48, 0.5) 0%, rgba(39, 77, 96, 0.5) 100%);
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 16px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 600;
    padding: 25px 30px;
    font-size: 1.05rem;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230C969C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body ul, .accordion-body ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 112, 117, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-control, .form-select {
    background: rgba(3, 23, 22, 0.5);
    border: 2px solid rgba(12, 150, 156, 0.2);
    border-radius: 12px;
    color: #fff;
    padding: 15px 20px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    background: rgba(3, 23, 22, 0.7);
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(12, 150, 156, 0.1);
    color: #fff;
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-select option {
    background: var(--primary-dark);
    color: #fff;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: var(--transition-smooth);
    margin-bottom: 25px;
}

.contact-info-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 20px;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: linear-gradient(135deg, #020d0d 0%, #031716 100%);
    border-top: 1px solid rgba(12, 150, 156, 0.2);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact-item div strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.footer-contact-item div span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(12, 150, 156, 0.1);
    margin-top: 60px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ==================== GLASSMORPHISM CARD ==================== */
.glass-card {
    background: rgba(3, 47, 48, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(12, 150, 156, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

/* ==================== GLOW EFFECTS ==================== */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition-smooth);
}

.glow-border:hover::before {
    opacity: 0.5;
}

/* ==================== ANIMATIONS ==================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==================== ABOUT SECTION ==================== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 24px;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-glow);
}

.about-experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature-text {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-top: 20px;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ==================== ALERTS ==================== */
.alert {
    border-radius: 12px;
    border: none;
    padding: 18px 25px;
}

.alert-success {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.alert-info {
    background: rgba(10, 112, 117, 0.15);
    color: var(--primary-light);
    border: 1px solid var(--border-glow);
}

/* ==================== PAGINATION ==================== */
.pagination .page-link {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.2);
    color: var(--text-secondary);
    padding: 12px 18px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.pagination .page-link:hover {
    background: var(--bg-glass);
    color: #fff;
    border-color: var(--primary-light);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    background: var(--bg-card);
    color: var(--text-muted);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-section {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(3, 47, 48, 0.9) 0%, rgba(39, 77, 96, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(12,150,156,0.2)"/></svg>');
    background-size: 40px 40px;
}

.breadcrumb-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb-nav {
    position: relative;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
}

.breadcrumb-nav a:hover {
    color: var(--primary-light);
}

/* ==================== INNER PAGE CONTENT ==================== */
.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-primary);
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary-light);
}

.page-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--primary-light);
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.page-content strong {
    color: var(--text-primary);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    color: var(--text-secondary);
}

.page-content th,
.page-content td {
    padding: 15px 20px;
    border: 1px solid rgba(12, 150, 156, 0.2);
    text-align: left;
}

.page-content th {
    background: var(--bg-glass);
    color: var(--text-primary);
    font-weight: 600;
}

.page-content tr:nth-child(even) {
    background: rgba(3, 47, 48, 0.3);
}

.page-content pre {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.2);
    border-radius: 12px;
    padding: 25px;
    overflow-x: auto;
    margin: 25px 0;
}

.page-content code {
    background: var(--bg-glass);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.page-content blockquote {
    border-left: 4px solid var(--primary-light);
    padding: 20px 30px;
    margin: 25px 0;
    background: var(--bg-glass);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* ==================== ADMIN STYLES ==================== */
.admin-body {
    background: var(--primary-dark);
    font-family: var(--font-body);
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: var(--primary-deep);
    border-right: 1px solid rgba(12, 150, 156, 0.2);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.admin-sidebar.collapsed {
    width: 80px;
}

.admin-brand {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(12, 150, 156, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.admin-brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.admin-nav {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 25px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: var(--bg-glass);
    color: #fff;
    border-left-color: var(--primary-light);
}

.admin-nav li a i {
    width: 24px;
    text-align: center;
    font-size: 1rem;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(12, 150, 156, 0.2);
}

.admin-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-card-admin {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 16px;
    padding: 25px;
    transition: var(--transition-smooth);
}

.stat-card-admin:hover {
    border-color: var(--border-glow);
}

.stat-card-admin .stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    margin: 0 0 15px 0;
}

.stat-card-admin .stat-number {
    font-size: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: var(--bg-glass);
    color: var(--text-primary);
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(12, 150, 156, 0.3);
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(12, 150, 156, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.admin-table tr:hover td {
    background: var(--bg-glass);
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(12, 150, 156, 0.2);
}

.admin-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.btn-admin {
    padding: 10px 25px;
    font-size: 0.8rem;
}

.btn-sm-admin {
    padding: 6px 15px;
    font-size: 0.75rem;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.status-inactive {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.status-new {
    background: rgba(52, 152, 219, 0.15);
    color: #3498db;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 112, 117, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.login-card {
    background: var(--bg-card);
    border: 1px solid rgba(12, 150, 156, 0.2);
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
}

.login-logo h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199.98px) {
    .mega-menu {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.show {
        transform: translateX(0);
    }
    .admin-main {
        margin-left: 0;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding-top: 100px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .float-icon {
        display: none;
    }

    .scroll-top {
        right: 30px;
        bottom: 100px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .stat-card {
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .music-toggle {
        bottom: 100px;
        left: 20px;
        width: 45px;
        height: 45px;
    }

    .float-whatsapp {
        bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    .about-experience-badge {
        right: 10px;
        padding: 15px 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
