@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

/* Logo Animation Slider */
.logo-slider-section {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-slider-track {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.logo-slide {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
}

.logo-slide img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-slide img[src*="solitaire-global"] {
    filter: none;
    opacity: 1;
    height: 70px;
}

.logo-slide img[src*="sattva"] {
    height: 80px;
}

.logo-slide img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-slider-section {
        padding: 30px 0;
    }
   
    .logo-slide {
        gap: 50px;
        padding: 0 25px;
    }
   
    .logo-slide img {
        height: 40px;
    }
}

/* Root Variables - Logo Color Theme */
:root {
    --primary-purple: #3d2f7c;
    --secondary-purple: #5a4794;
    --primary-orange: #f9a826;
    --secondary-orange: #fdb84d;
    --dark-bg: #2a1f5c;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success: #28a745;
    --error: #dc3545;
    --shadow: rgba(61, 47, 124, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.containernav{
    max-width: 1450px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: sticky;
    top: 15px;
    z-index: 1000;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    box-shadow: 0 8px 32px rgba(61, 47, 124, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.containernav:hover {
    box-shadow: 0 12px 48px rgba(61, 47, 124, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.container {
    max-width: 1200px;
    flex: 10px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar .container {
    padding-left: 20px;
}

/* Navbar Styles */
.navbar {
    background: #FFFFFF;
    color: var(--text-dark);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-purple);
    opacity: 1;
}

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

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

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-btn:hover {
    color: var(--primary-purple);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 4px;
    opacity: 1;
    color: var(--primary-purple) !important;
    font-weight: bold;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(61, 47, 124, 0.15), 0 2px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    z-index: 1001;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown.active .dropdown-content,
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-content a:hover {
    background: rgba(61, 47, 124, 0.08);
    color: var(--primary-purple);
    padding-left: 28px;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-orange);
    transition: height 0.2s ease;
}

.dropdown-content a:hover::before {
    height: 70%;
}

.logo {
    /* padding-left: 20px; */
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-image {
    height: 85px;
    width: 85px;
    /* background: rgba(158, 155, 155, 0.726); */
    padding-left: 0px;
    display: block;
    object-fit: contain;
}

.logo-text {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
}

.logo-text h1 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: none;
    color: var(--primary-purple);
    line-height: 1;
}

.logo-text .highlight {
    color: var(--primary-orange);
    text-shadow: none;
}

.logo-text .tagline {
    display: block;
    font-size: 10px;
    margin: 2px 0 0 0;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #555;
    line-height: 1.4;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-name {
    color: #ffffff;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-right: 15px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Real-time Status Indicator */
.realtime-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.status-connected {
    background: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

.status-dot.status-syncing {
    background: #ffa500;
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
    animation: pulse 1s ease-in-out infinite;
}

.status-dot.status-error {
    background: #f44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
    animation: none;
}

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

.status-text {
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.last-update {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
    white-space: nowrap;
}

/* Mobile Refresh Button - Floating Action Button */
.mobile-refresh-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-refresh-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.6);
}

.mobile-refresh-btn:active {
    transform: scale(0.95);
}

.mobile-refresh-btn.spinning .refresh-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide mobile refresh button on desktop, show on mobile */
@media (min-width: 769px) {
    .mobile-refresh-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-refresh-btn {
        display: flex;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
}

/* Button Styles */
.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #f7b84d 100%);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7b84d 0%, var(--primary-orange) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(249, 168, 38, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-purple);
    border-radius: 50px;
    border: 2px solid #f9a826;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: transparent;
    color: #666;
    border-color: #f9a826;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(249, 168, 38, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-secondary-outline:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249, 168, 38, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(249, 168, 38, 0.5);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-bg) 100%);
    color: var(--white);
    padding: 6rem 0;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 71, 148, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    will-change: transform;
}

.hero-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: white;
    margin-left: -18px;
}

.hero-logo:first-of-type {
    margin-left: 0;
}

.hero-logo-plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: white;
    margin-left: -18px;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1.5px;
    color: var(--white);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 0 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.hero-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(61, 47, 124, 0.1) 0%, rgba(249, 168, 38, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-image:hover::before {
    opacity: 0.7;
}

.hero-stats {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    padding-bottom: 8px;
}\n\n.section-label::after {\n    content: '';\n    position: absolute;\n    bottom: 0;\n    left: 50%;\n    transform: translateX(-50%);\n    width: 50px;\n    height: 3px;\n    background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));\n    border-radius: 2px;\n}\n\nsection > .container {\n    text-align: center;\n}

.section-label.light {
    color: var(--primary-orange);
    letter-spacing: 8px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.85;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 820px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

/* Decorative Background Elements */
.about::before {
    content: '';
    position: absolute;
    left: 5%;
    top: 15%;
    width: 180px;
    height: 180px;
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatSlow 8s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    right: 8%;
    bottom: 20%;
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-purple);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatSlow 10s ease-in-out infinite reverse;
}

.about .section-label {
    color: var(--primary-orange);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.about .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.about .section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Process Grid - Centered Layout */
.process-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    padding: 4rem 0;
}



/* Additional decorative elements */
.process-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}



.process-step {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #f7b84d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(249, 168, 38, 0.5);
    z-index: 2;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.process-copy {
    background: white;
    padding: 5.5rem 3rem 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.process-copy h3 {
    color: var(--primary-purple);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.process-copy p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
}

.process-step:hover .process-copy {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(61, 47, 124, 0.15);
}

/* Hide the old process elements */
.process-lines,
.process-target,
.process-plus,
.process-pin,
.process-illustration,
.step-number {
    display: none;
}

@media (max-width: 1024px) {
    .process-step {
        max-width: 90%;
    }
   
    .process-copy {
        padding: 5rem 2.5rem 2rem 2.5rem;
    }

    .process-badge {
        width: 65px;
        height: 65px;
    }
   
    .badge-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .process-grid::before,
    .process-grid::after {
        display: none;
    }
   
    .decoration-dot-1,
    .decoration-square-1 {
        display: none;
    }

    .process-step {
        max-width: 95%;
        margin-bottom: 2.5rem;
    }

    .process-copy {
        padding: 4.5rem 2rem 2rem 2rem;
    }

    .process-copy h3 {
        font-size: 1.4rem;
    }
   
    .process-copy p {
        font-size: 0.95rem;
    }

    .process-badge {
        width: 60px;
        height: 60px;
        top: 25px;
    }
   
    .badge-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-copy {
        padding: 4rem 1.5rem 1.5rem 1.5rem;
    }
   
    .process-badge {
        width: 55px;
        height: 55px;
    }
   
    .badge-number {
        font-size: 1.3rem;
    }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Courses Section */
.courses {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #2a1f5c 100%);
    padding: 5rem 0;
}

.courses .section-label {
    color: var(--primary-orange);
}

.courses .section-title {
    color: #ffffff;
}

.courses .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: var(--primary-purple);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    border: 1px solid rgba(61, 47, 124, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(61, 47, 124, 0.2);
    border-color: transparent;
}

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

.modern-card .course-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.course-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-visual {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    display: inline-block;
}

.visual-element {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(61, 47, 124, 0.08);
}

.visual-icon {
    font-size: 1.5rem;
}

.visual-text {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 0.9rem;
}

.course-card.detailed {
    text-align: left;
}

.course-details {
    display: flex;
    gap: 15px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.course-duration,
.course-level {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Benefits Section */
.benefits {
    background: var(--white);
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
    z-index: 0;
}

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

.benefit-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(61, 47, 124, 0.15);
    background: var(--white);
    border-color: var(--primary-orange);
}

.benefit-card:hover::after {
    width: 300px;
    height: 300px;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About SAIRA Section */
.about-saira {
    background: #ffffff;
    color: var(--primary-purple);
    padding: 5rem 0;
}

.about-saira-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-saira .section-title {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
}

.about-saira-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--primary-purple);
    margin-bottom: 2.5rem;
}

.about-saira .btn {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #f7b84d 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
}

.about-saira .btn:hover {
    background: linear-gradient(135deg, #f7b84d 0%, var(--primary-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 168, 38, 0.3);
}

/* What We Do Section */
.what-we-do-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.what-we-do-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 2rem;
}

.what-we-do-title-section {
    text-align: left;
    flex: 1;
}

.what-we-do-title-section .section-label {
    text-align: left;
    color: var(--primary-orange);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.what-we-do-title-section .section-label::after {
    display: none;
}

.what-we-do-title-section .section-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.3;
}

.highlight-blue {
    color: var(--primary-orange);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.what-we-do-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(61, 47, 124, 0.1);
}

.what-we-do-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(61, 47, 124, 0.15);
    border-color: var(--primary-orange);
}

.what-we-do-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5a4794 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(61, 47, 124, 0.2);
}

.what-we-do-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.what-we-do-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.learn-more-link {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    gap: 0.75rem;
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .what-we-do-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .what-we-do-title-section .section-title {
        font-size: 2rem;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing {
    background: var(--light-bg);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(61, 47, 124, 0.15);
    border-color: var(--primary-orange);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 168, 38, 0.3);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: 700;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-purple);
    font-weight: 700;
    line-height: 1;
    margin: 0 0.25rem;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.plan-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Partners Section */
.partners {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #2a1f5c 100%);
    padding: 5rem 0;
}

.partners .section-label {
    color: var(--primary-orange);
}

.partners .section-title {
    color: #ffffff;
}

.partners .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.school-logo {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.school-logo:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow);
}

.placeholder-logo {
    text-align: center;
}

.placeholder-logo h4 {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(61, 47, 124, 0.15);
    border-color: var(--primary-orange);
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: 5rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(61, 47, 124, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    color: #3d2f7c !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    color: #3d2f7c !important;
}

.faq-question:hover {
    background: rgba(61, 47, 124, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-purple) !important;
    font-weight: 700;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
    opacity: 1;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-bg) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

/* Auth Section */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
}

.auth-box.admin-box {
    border-top: 4px solid var(--primary-orange);
}

.admin-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.admin-badge span {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.auth-box h2 {
    color: var(--primary-purple);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(61, 47, 124, 0.1);
}

.form-group small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.error-message {
    background: #ffe6e6;
    color: var(--error);
    padding: 12px;
    border-radius: 5px;
    border-left: 4px solid var(--error);
}

.success-message {
    background: #e6f9e6;
    color: var(--success);
    padding: 12px;
    border-radius: 5px;
    border-left: 4px solid var(--success);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: var(--primary-orange);
}

.admin-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Dashboard Styles */
.dashboard-nav {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

.dashboard-container {
    display: flex;
    min-height: calc(100vh - 80px);
}

.sidebar {
    width: 280px;
    background: var(--white);
    border-right: 1px solid var(--border-color);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.menu-item:hover {
    background: var(--light-bg);
    color: var(--primary-purple);
}

.menu-item.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
}

.menu-item .icon {
    font-size: 1.3rem;
}

.dashboard-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tab-header .btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Touch feedback for mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Mobile touch device styles */
    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .menu-item:active {
        background: rgba(102, 126, 234, 0.15);
        transform: scale(0.98);
    }
    
    .stat-card {
        transition: transform 0.2s ease;
    }
    
    .stat-card:active {
        transform: scale(0.98);
    }
    
    /* Improve touch targets for mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .menu-item {
        min-height: 48px;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-details h3 {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin: 0;
}

.stat-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Table Styles */
.table-container {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow-x: auto;
}

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

.data-table thead {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
}

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.data-table tbody tr:hover {
    background: var(--light-bg);
}

.data-table .no-data {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.action-btn {
    padding: 6px 12px;
    margin: 0 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.action-btn.edit {
    background: var(--primary-orange);
    color: var(--white);
}

.action-btn.delete {
    background: var(--error);
    color: var(--white);
}

.action-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.active {
    background: #e6f9e6;
    color: var(--success);
}

.status-badge.inactive {
    background: #ffe6e6;
    color: var(--error);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: var(--error);
    transform: rotate(90deg);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* User Dashboard Specific */
.welcome-message {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.user-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    margin-top: 2rem;
}

.user-info-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item strong {
    color: var(--text-light);
    font-size: 0.9rem;
}

.info-item span {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.schools-list {
    display: grid;
    gap: 2rem;
}

.school-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(61, 47, 124, 0.2);
}

.school-logo-large {
    min-width: 120px;
    height: 120px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.school-logo-large h3 {
    color: var(--primary-purple);
    font-size: 1rem;
    text-align: center;
    padding: 10px;
}

.school-info h4 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(61, 47, 124, 0.1) 0%, rgba(90, 71, 148, 0.1) 100%);
    padding: 12px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.school-stats {
    display: flex;
    gap: 20px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Profile */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
}

.profile-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
}

.profile-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--white);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    border: 4px solid var(--white);
}

.profile-name h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-name p {
    opacity: 0.9;
}

.profile-details {
    padding: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--text-light);
}

.detail-row span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Recent Activity */
.recent-activity {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    margin-top: 2rem;
}

.recent-activity h3 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-list .no-data {
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
}

.info-message {
    background: linear-gradient(135deg, rgba(61, 47, 124, 0.1) 0%, rgba(90, 71, 148, 0.1) 100%);
    border: 2px solid rgba(61, 47, 124, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--primary-purple);
    font-size: 1.1rem;
    line-height: 1.6;
    backdrop-filter: blur(10px);
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand .highlight {
    color: var(--primary-orange);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 40px;
        width: 40px;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
        height: 300px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        height: auto;
        position: relative;
        padding: 1rem 0;
    }

    .sidebar-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .menu-item {
        padding: 12px 10px;
        font-size: 0.9rem;
        gap: 8px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .menu-item .icon {
        font-size: 1.5rem;
    }

    .dashboard-content {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .stat-details h3 {
        font-size: 2rem;
    }

    .stat-details p {
        font-size: 0.9rem;
    }

    .tab-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        margin-bottom: 1rem;
    }

    .tab-header h2 {
        font-size: 1.5rem;
    }

    .tab-header .btn {
        width: 100%;
    }

    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .data-table {
        font-size: 0.85rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .action-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
        margin: 2px;
    }

    .recent-activity {
        margin-top: 1.5rem;
    }

    .activity-list {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .nav-buttons {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .user-name {
        padding: 8px 12px;
        font-size: 0.85rem;
        margin-right: 0;
    }

    .realtime-status {
        padding: 6px 10px;
        font-size: 0.75rem;
        gap: 6px;
        flex: 1 1 100%;
        justify-content: center;
    }

    .last-update {
        display: none; /* Hide timestamp on mobile to save space */
    }

    .status-dot {
        width: 8px;
        height: 8px;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .navbar .logo {
        flex: 1 1 100%;
        justify-content: center;
    }

    .school-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* ===================================
   NEW PAGES STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background-color: var(--light-bg);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

.content-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.content-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Timeline/Approach */
.approach-timeline {
    max-width: 800px;
    margin: 3rem auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li:before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Certification Cards */
.certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.certification-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.certification-card.featured {
    border: 2px solid var(--primary-orange);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.cert-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.certification-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.cert-duration {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cert-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.cert-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.cert-features li:before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

.cert-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin: 1.5rem 0;
}

/* Mentors Grid */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.mentor-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mentor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

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

.mentor-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.25rem;
}

.mentor-title {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mentor-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mentor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    background: var(--light-bg);
    color: var(--primary-purple);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
    border-left: 4px solid var(--primary-orange);
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-rating {
    color: var(--primary-orange);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
}

.testimonial-author strong {
    color: var(--primary-purple);
}

.testimonial-author span {
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
}

.testimonial-impact {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-impact span {
    font-size: 0.875rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0;
}

.job-badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.job-school {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.job-location,
.job-department {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.job-details {
    display: flex;
    gap: 15px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.job-details span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.job-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 1rem 0;
}

.job-requirements {
    margin-top: 1rem;
}

.job-requirements strong {
    color: var(--primary-purple);
}

.job-requirements ul {
    list-style: none;
    margin-top: 0.5rem;
}

.job-requirements li {
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
}

.job-requirements li:before {
    content: "•";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.story-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.story-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.story-content {
    padding: 30px;
}

.story-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.story-category {
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.story-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.story-excerpt {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-stats {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

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

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.story-author {
    color: var(--text-dark);
    font-weight: 600;
    font-style: italic;
}

/* Impact Stories */
.impact-stories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.impact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.impact-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.impact-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.impact-story {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.impact-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

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

.result-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.result-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Case Studies */
.case-studies {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 3rem;
}

.case-study {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.case-study-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-study-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.case-study-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.case-study-content h4:first-child {
    margin-top: 0;
}

.results-list {
    list-style: none;
    margin-top: 0.5rem;
}

.results-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.results-list li:before {
    content: "✓";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card.featured {
    grid-column: span 2;
}

.blog-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

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

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-content h3 a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-content h3 a:hover {
    color: var(--primary-orange);
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--primary-purple);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-top: 60px;
}

.tip-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Career Tips */
.career-tips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.career-tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.career-tip-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.career-tip-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tip-checklist {
    list-style: none;
    margin-top: 1rem;
}

.tip-checklist li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.tip-checklist li:before {
    content: "→";
    color: var(--primary-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Events List */
.events-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 3rem;
}

.event-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 30px;
}

.event-card.announcement {
    background: linear-gradient(135deg, rgba(61, 47, 124, 0.05) 0%, rgba(249, 168, 38, 0.05) 100%);
}

.event-date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.announcement-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.event-details {
    flex: 1;
}

.event-type {
    background: var(--primary-purple);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.event-details p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-info {
    display: flex;
    gap: 20px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.event-info span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.download-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.download-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Options */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.contact-option-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-option-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.contact-option-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.contact-option-card a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin: 0.5rem 0;
}

.contact-option-card a.btn {
    color: var(--white);
}

.contact-option-card a:hover {
    color: var(--primary-purple);
}

.contact-option-card a.btn:hover {
    color: var(--white);
}

.timings {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Consultation */
.consultation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.consultation-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.consultation-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.consultation-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.consultation-features {
    list-style: none;
    margin-bottom: 2rem;
}

.consultation-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.office-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.office-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.office-details p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.office-details strong {
    color: var(--primary-purple);
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-list {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-list li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-top: 1rem;
}

.legal-note {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.cta-description {
    font-size: 1.25rem;
    opacity: 1;
    margin-bottom: 2rem;
    color: white !important;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.cta-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--primary-purple);
}

.modal-content h2 {
    color: var(--primary-purple);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
   
    .features-grid,
    .services-grid,
    .certification-grid,
    .blog-grid,
    .tips-grid,
    .values-grid,
    .downloads-grid,
    .career-tips {
        grid-template-columns: repeat(2, 1fr);
    }
   
    .mentors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
   
    .story-card {
        grid-template-columns: 1fr;
    }
   
    .story-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
   
    .section-heading {
        font-size: 2rem;
    }
   
    .features-grid,
    .services-grid,
    .certification-grid,
    .stats-grid,
    .mentors-grid,
    .testimonials-grid,
    .jobs-grid,
    .blog-grid,
    .tips-grid,
    .values-grid,
    .downloads-grid,
    .career-tips,
    .consultation-options,
    .offices-grid,
    .process-steps,
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
   
    .form-row {
        grid-template-columns: 1fr;
    }
   
    .blog-card.featured {
        grid-column: span 1;
    }
   
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
   
    .impact-results {
        grid-template-columns: 1fr;
    }
   
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
   
    .legal-document {
        padding: 40px 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
   
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Notification Badge */
.notification-badge {
    background: var(--error);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 5px;
    animation: pulse 2s infinite;
}

/* WhatsApp Widget Button Text Visibility */
div[style*="background"][style*="rgb(234, 163, 61)"],
div[style*="background"][style*="#eaa33d"],
div[style*="background"][style*="rgb(234, 163, 61)"] *,
div[style*="background"][style*="#eaa33d"] *,
button[style*="background"][style*="rgb(234, 163, 61)"],
button[style*="background"][style*="#eaa33d"],
.wa-widget-send-button,
.wa-widget-button,
div[class*="whatsapp"] button,
div[class*="wa-"] button,
div[class*="whatsapp"] button *,
div[class*="wa-"] button * {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Target any button or div with orange/yellow background */
button[style*="rgb(234"],
button[style*="#ea"],
button[style*="rgb(249"],
button[style*="#f9"],
div[style*="rgb(234"] button,
div[style*="#ea"] button,
div[style*="rgb(234"] button *,
div[style*="#ea"] button * {
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Force all text inside buttons to be visible */
button span,
button div,
button p,
button *,
a[style*="background"] *,
div[style*="background"] button *,
div[style*="background"] a * {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ultra specific for all widgets */
* [style*="rgb(234"] *,
* [style*="#ea"] * {
    color: #ffffff !important;
}

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

/* Notification Banner */
.notification-banner {
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.3);
    font-weight: 600;
}

.notification-banner button {
    background: white;
    color: var(--primary-purple);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notification-banner button:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
    height: 42px;
    min-height: 42px;
    white-space: nowrap;
}

.btn-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-icon:active {
    transform: translateY(0);
}

.btn-icon.btn-reply {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-icon.btn-reply:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-icon.btn-mark-read {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-icon.btn-mark-read:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-declined {
    background: #f8d7da;
    color: #721c24;
}

/* Contact Type Badges */
.type-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

.type-partner {
    background: #e3f2fd;
    color: #1565c0;
}

.type-educator {
    background: #f3e5f5;
    color: #6a1b9a;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
}

/* Custom Notification Modal */
.custom-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-notification-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.custom-notification-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
    pointer-events: auto;
}

.custom-notification-overlay.show .custom-notification-box {
    transform: scale(1);
}

.notification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

.notification-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.notification-message {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.custom-notification-box .btn {
    min-width: 150px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* Consultation Details Modal Styling */
.consultation-details-body {
    padding: 20px 0;
}

.detail-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.detail-row.full-width {
    flex-direction: column;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-purple);
    min-width: 180px;
    font-size: 0.95rem;
}

.detail-value {
    color: var(--text-dark);
    font-size: 0.95rem;
    flex: 1;
    word-break: break-word;
}

.detail-message {
    margin-top: 8px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.consultation-details-body .status-badge {
    display: inline-block;
}

/* Teacher Dashboard Specific Styles */
.courses-grid-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.course-card-dashboard {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-card-dashboard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.course-header h3 {
    font-size: 1.25rem;
    color: var(--primary-purple);
    margin: 0;
    flex: 1;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-progress {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-completed {
    background: #e8f5e9;
    color: #388e3c;
}

.badge-new {
    background: #fff3e0;
    color: #f57c00;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-orange));
    transition: width 0.3s ease;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-footer span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.resource-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 1.25rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.mentorship-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.mentor-info-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mentor-info-card h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.mentor-details {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.mentor-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mentor-details h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mentor-details p {
    color: var(--text-light);
    margin: 4px 0;
    font-size: 0.9rem;
}

.sessions-list {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sessions-list h3 {
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.session-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
}

.session-date {
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-orange));
    border-radius: 12px;
    color: white;
    min-width: 60px;
    flex-shrink: 0;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.session-details {
    flex: 1;
}

.session-details h4 {
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.session-details p {
    color: var(--text-light);
    margin: 2px 0;
    font-size: 0.9rem;
}

.session-time {
    font-weight: 600;
    color: var(--primary-purple);
}

.activity-list {
    margin-top: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.activity-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.activity-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.activity-details {
    flex: 1;
}

.activity-details p {
    margin: 4px 0;
}

.activity-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

.activity-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .courses-grid-dashboard,
    .resources-grid {
        grid-template-columns: 1fr;
    }
   
    .mentorship-section {
        grid-template-columns: 1fr;
    }
   
    .session-item {
        flex-direction: column;
        text-align: center;
    }
   
    .mentor-details {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Message Modal Styles */
.contact-details-body {
    padding: 20px 0;
}

.contact-details-body .detail-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}

.contact-details-body .detail-row.full-width {
    flex-direction: column;
}

.contact-details-body .detail-label {
    font-weight: 600;
    color: var(--primary-purple);
    min-width: 150px;
    font-size: 0.95rem;
}

.contact-details-body .detail-value {
    color: var(--text-dark);
    font-size: 0.95rem;
    flex: 1;
    word-break: break-word;
}

.contact-details-body .detail-message {
    margin-top: 8px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.status-new {
    background: #fff3e0;
    color: #f57c00;
}

.status-read {
    background: #e3f2fd;
    color: #1976d2;
}

.status-replied {
    background: #e8f5e9;
    color: #388e3c;
}

.status-closed {
    background: #f5f5f5;
    color: #757575;
}

/* Notification Close Button */
.notification-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.notification-close-btn:hover {
    background: #f0f0f0;
    color: #333;
    transform: rotate(90deg);
}
/* ============================================
   Careers Page Specific Styles
   ============================================ */

/* Section Header with Icon */
.section-header-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.section-icon {
    font-size: 3rem;
    line-height: 1;
}

/* Career Intro */
.career-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Internship Benefits Box */
.internship-benefits-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.internship-benefits-box h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: white;
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Job Meta Info */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 1rem 0;
}

.job-location,
.job-department,
.job-experience {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* No Match CTA */
.no-match-cta {
    margin-top: 3rem;
    padding: 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e7ed 100%);
    border-radius: 15px;
}

.no-match-cta h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

/* Mentor Info Box */
.mentor-info-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.mentor-info-box h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: white;
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 0.95rem;
}

/* Testimonial Box */
.testimonial-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid white;
}

.testimonial-box p {
    color: white;
    margin: 0 0 0.5rem;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    font-style: normal !important;
}

/* Mentor Types Grid */
.mentor-types {
    margin-top: 2rem;
}

.mentor-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 1rem;
}

.mentor-type-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mentor-type-card h5 {
    color: var(--primary-purple);
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
}

.mentor-type-card p {
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Design for Careers Page */
@media (max-width: 968px) {
    .jobs-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
   
    .mentor-type-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-icon {
        font-size: 2.5rem;
    }
   
    .internship-benefits-box,
    .mentor-info-box {
        padding: 20px;
    }
   
    .benefit-item,
    .info-item {
        padding: 10px;
    }
   
    .benefit-icon,
    .info-icon {
        font-size: 1.5rem;
    }
}