/* ========================================
   Padhaan - Scholarship Platform Styles
   ======================================== */

/* CSS Variables */
:root {
    --coral: #ffc108;
    --blue: #6C5CE7;
    --green:#6BCB77;
    --light-gray: #F7F9FC;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --accent-gold: #c69214;
    --accent-indigo: #2f4bbd;
    --accent-indigo-strong: #253a8f;
    --accent-violet: #4f46c9;
    --heading-accent: #243b8f;
    --focus-ring: rgba(198, 146, 20, 0.28);
    --button-shadow: 0 10px 24px rgba(47, 75, 189, 0.22);
    
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Animations & Keyframes
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* ========================================
   Navbar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    animation: fadeInDown 0.5s ease-out;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    transition: var(--transition);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}
.stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;

  /* Important */
  flex-wrap: nowrap;   /* sab ek line mein rahenge */
}

.stat-item {
  flex: 1;             /* sab equal width lenge */
  min-width: 0;        /* overflow prevent karega */

  background: #f8f9fb;
  padding: 18px 20px;
  border-radius: 16px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(90deg, #f59e0b, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .stats {
    flex-wrap: wrap;
  }
}
.logo:hover .logo-icon {
    animation: wiggle 0.5s ease;
}

.logo-icon svg {
    color: var(--white);
}

.logo-text {
    background: linear-gradient(135deg, var(--coral), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accessibility-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(108, 92, 231, 0.18);
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font-inter);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.accessibility-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.accessibility-toggle.is-active {
    background: linear-gradient(135deg, var(--accent-indigo-strong), var(--accent-violet));
    color: var(--white);
    border-color: rgba(198, 146, 20, 0.35);
}

.accessibility-toggle__dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.85;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-primary {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: var(--white);
    border: none;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-primary:focus-visible,
.accessibility-toggle:focus-visible,
.btn-hero:focus-visible,
.btn-submit:focus-visible,
.view-details-btn:focus-visible,
.btn-cta:focus-visible,
.submit-btn:focus-visible,
.filter-buttons button:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

/* Accessibility theme overrides: map green to an accessible indigo/blue when enabled */
body[data-accessible-theme="colorblind"] {
    --green: var(--accent-indigo-strong);
}

body[data-accessible-theme="colorblind"] .status-open {
    background: rgba(37, 58, 143, 0.12);
    color: var(--accent-indigo-strong);
}

body[data-accessible-theme="colorblind"] .icon-green {
    background: linear-gradient(135deg, rgba(47, 75, 189, 0.1), rgba(47, 75, 189, 0.2));
}

body[data-accessible-theme="colorblind"] .icon-green svg,
body[data-accessible-theme="colorblind"] .hero-badge,
body[data-accessible-theme="colorblind"] .partner-hero-icon svg,
body[data-accessible-theme="colorblind"] .checkmark {
    color: var(--accent-indigo-strong);
}

body[data-accessible-theme="colorblind"] .partner-hero-icon svg {
    filter: drop-shadow(0 10px 20px rgba(37, 58, 143, 0.25));
}

/* Override inline SVG strokes/fills that use the original green hex */
body[data-accessible-theme="colorblind"] svg[stroke="#6BCB77"],
body[data-accessible-theme="colorblind"] svg[fill="#6BCB77"],
body[data-accessible-theme="colorblind"] [stroke="#6BCB77"],
body[data-accessible-theme="colorblind"] [fill="#6BCB77"] {
    stroke: var(--accent-indigo-strong) !important;
    fill: var(--accent-indigo-strong) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: var(--dark);
    display: block;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    animation: fadeInDown 0.3s ease-out;
}

.mobile-menu .accessibility-toggle {
    width: fit-content;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: var(--coral);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--blue);
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--green);
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(107, 203, 119, 0.1);
    border: 2px solid var(--green);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 1.5rem;
    animation: bounceIn 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-poppins);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--coral), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: var(--white);
}

.btn-hero.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--light-gray);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    animation: fadeInUp 1s ease-out;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-poppins);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray);
    opacity: 0.3;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

.hero-illustration {
    position: relative;
    height: 400px;
}

.illustration-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.illustration-card svg {
    color: var(--coral);
}

.illustration-card span {
    font-weight: 600;
    color: var(--dark);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 0;
    background: linear-gradient(135deg, var(--blue), var(--coral));
    color: var(--white);
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-2 svg,
.card-2 span {
    color: var(--white);
}

.card-3 {
    bottom: 0;
    left: 30%;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.illustration-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Section Styles
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-coral {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--coral);
    color: var(--coral);
}

.badge-blue {
    background: rgba(77, 150, 255, 0.1);
    border: 2px solid var(--blue);
    color: var(--blue);
}

.badge-green {
    background: rgba(107, 203, 119, 0.1);
    border: 2px solid var(--green);
    color: var(--green);
}

.section-title {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Scholarship Awareness Sessions
   ======================================== */

.sessions-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.sessions-hero-card {
    margin-top: 2rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    position: relative;
    background: #000;
}

.sessions-hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: 520px;
    overflow: hidden;
    background: #000;
}

.sessions-hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.28));
}

.sessions-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sessions-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.42));
}

.sessions-hero-copy {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    right: 2rem;
    color: var(--white);
    z-index: 1;
    max-width: 640px;
    backdrop-filter: blur(12px);
}

.sessions-hero-copy .badge-coral {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 193, 24, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 193, 24, 0.28);
}

.sessions-hero-copy h3 {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.sessions-hero-copy p {
    font-size: 1.05rem;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.9;
}

.sessions-gallery-heading {
    margin-top: 2.5rem;
}

.sessions-gallery-heading h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.sessions-marquee {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 1.5rem;
    padding: 1rem 0 1rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sessions-marquee::-webkit-scrollbar {
    display: none;
}

.sessions-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.sessions-marquee:hover .sessions-marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: clamp(260px, 20vw, 360px);
    min-width: 260px;
    height: 260px;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.marquee-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16);
}

.marquee-item:hover img {
    transform: scale(1.08);
}

.sessions-impact {
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 193, 24, 0.12), rgba(108, 92, 231, 0.12));
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.sessions-impact p {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 900px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .sessions-hero-media {
        min-height: 360px;
    }

    .marquee-item {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .sessions-hero-media {
        min-height: 300px;
        max-height: none;
    }

    .sessions-hero-copy {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .sessions-marquee-track {
        animation: none;
    }

    .sessions-gallery-heading h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 560px) {
    .sessions-marquee {
        padding: 0.75rem 0;
    }

    .sessions-marquee-track {
        gap: 1rem;
    }

    .marquee-item {
        width: min(85vw, 280px);
        height: 220px;
    }

    .sessions-hero-copy h3 {
        font-size: 1.8rem;
    }
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: var(--light-gray);
    transition: var(--transition);
    animation: fadeInScale 0.6s ease-out;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    animation: pulse 0.6s ease-in-out;
}

.icon-coral {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.2));
}

.icon-coral svg {
    color: var(--coral);
}

.icon-blue {
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(77, 150, 255, 0.2));
}

.icon-blue svg {
    color: var(--blue);
}

.icon-green {
    background: linear-gradient(135deg, rgba(107, 203, 119, 0.1), rgba(107, 203, 119, 0.2));
}

.icon-green svg {
    color: var(--green);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-poppins);
}

.feature-description {
    color: var(--gray);
    line-height: 1.8;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: 5rem 0;
    background: var(--light-gray);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    transition: var(--transition);
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-item:hover .step-number {
    animation: pulse 0.6s ease-in-out;
    box-shadow: var(--shadow-lg);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-poppins);
}

.step-description {
    color: var(--gray);
    line-height: 1.6;
}

.step-arrow {
    display: none;
}

/* ========================================
   Form Section
   ======================================== */

.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInScale 0.6s ease-out;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.scholarship-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-inter);
    transition: var(--transition);
    background: var(--light-gray);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(77, 150, 255, 0.1);
}

.form-note {
  background: #f8f9fb;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #6b7280;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.form-consent input {
  margin-top: 3px;
  accent-color: #8b5cf6; /* purple theme */
}

.form-consent label {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: var(--white);
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-family: var(--font-poppins);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* ========================================
   Results Section
   ======================================== */

.results-section {
    padding: 5rem 0;
    background: var(--white);
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.result-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.result-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--blue);
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.result-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.result-card-meta {
    display: flex;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-open {
    background: rgba(107, 203, 119, 0.2);
    color: var(--green);
}

.status-closed {
    background: rgba(255, 107, 107, 0.2);
    color: var(--coral);
}

.status-soon {
    background: rgba(77, 150, 255, 0.2);
    color: var(--blue);
}

.result-card-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.eligibility-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.eligibility-tag {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark);
}

.view-details-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--blue), var(--coral));
    color: var(--white);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
--------------------How it Works------------------
.how-it-works {
  padding: 60px 0;
}

.steps-grid {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.step-card {
  flex: 1;
  background: #f8f9fb;
  padding: 25px;
  border-radius: 18px;
  text-align: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.step-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #f59e0b, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step-card p {
  font-size: 14px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .steps-grid {
    flex-direction: column;
  }
}
/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--coral), var(--blue));
}

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.cta-content {
    color: var(--white);
}

.cta-title {
    font-family: var(--font-poppins);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    animation: fadeInLeft 0.6s ease-out;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInRight 0.6s ease-out;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

/* ========================================
   Scholarships Page
   ======================================== */

.scholarships-header {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
}

.scholarships-section {
    padding: 5rem 0;
    background: var(--white);
}
.scholarship-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.search-bar-wrapper {
    width: 100%;
}

.scholarship-search-input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 2px solid var(--light-gray);
    border-radius: 0.9rem;
    background: var(--light-gray);
    font-size: 1rem;
    font-family: var(--font-inter);
    color: var(--dark);
    transition: var(--transition);
}

.scholarship-search-input:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.12);
}

.scholarship-search-input::placeholder {
    color: var(--gray);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-buttons button {
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 9999px;
    background: var(--light-gray);
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-buttons button.active {
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: var(--white);
}
.scholarships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* ========================================
   School Partner Page Styles
   ======================================== */

/* Partner Hero Section */
.partner-hero-section {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    overflow: hidden;
}

.partner-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partner-hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

.partner-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 4s ease-in-out infinite;
}

.partner-hero-icon svg {
    color: var(--green);
    filter: drop-shadow(0 10px 20px rgba(107, 203, 119, 0.3));
}

/* Why Partner Section */
.why-partner-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-partner-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.why-partner-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-partner-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-poppins);
}

.why-partner-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.checkmark {
    color: var(--green);
    font-weight: 700;
    font-size: 1.125rem;
}

/* Partnership Form Section */
.partnership-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.partnership-form-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: fadeInScale 0.6s ease-out;
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-poppins);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--coral), var(--blue));
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-inter);
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(77, 150, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: var(--coral);
}

/* Consent Box */
.consent-box {
    background: rgba(77, 150, 255, 0.08);
    border: 2px solid rgba(77, 150, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.consent-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
}

.consent-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.consent-checkbox {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.checkbox-label {
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    font-family: var(--font-poppins);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838, #1ea87a);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, rgba(107, 203, 119, 0.1), rgba(107, 203, 119, 0.2));
    border: 2px solid var(--green);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: bounceIn 0.6s ease-out;
}

.success-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-icon svg {
    color: var(--white);
}

body[data-accessible-theme="colorblind"] {
    --coral: #c69214;
    --blue: #2f4bbd;
    --green: #1f7a3f;
    --dark: #162033;
    --gray: #51607a;
}

body[data-accessible-theme="colorblind"] .gradient-text,
body[data-accessible-theme="colorblind"] .stat-item h3,
body[data-accessible-theme="colorblind"] .step-card h3 {
    background: none;
    color: var(--heading-accent);
    -webkit-text-fill-color: currentColor;
}

body[data-accessible-theme="colorblind"] .section-title,
body[data-accessible-theme="colorblind"] .form-section-title,
body[data-accessible-theme="colorblind"] .why-partner-card h3,
body[data-accessible-theme="colorblind"] .success-content h3,
body[data-accessible-theme="colorblind"] .result-card-title {
    color: var(--heading-accent);
}

body[data-accessible-theme="colorblind"] .btn-primary,
body[data-accessible-theme="colorblind"] .btn-hero.btn-primary,
body[data-accessible-theme="colorblind"] .btn-submit,
body[data-accessible-theme="colorblind"] .view-details-btn,
body[data-accessible-theme="colorblind"] .filter-buttons button.active,
body[data-accessible-theme="colorblind"] .filter-buttons button:hover {
    background: linear-gradient(135deg, var(--accent-indigo-strong), var(--accent-violet));
    border: 2px solid rgba(198, 146, 20, 0.35);
    box-shadow: var(--button-shadow);
    color: var(--white);
}

body[data-accessible-theme="colorblind"] .btn-primary:hover,
body[data-accessible-theme="colorblind"] .btn-submit:hover,
body[data-accessible-theme="colorblind"] .view-details-btn:hover,
body[data-accessible-theme="colorblind"] .submit-btn:hover {
    box-shadow: 0 14px 30px rgba(47, 75, 189, 0.28);
}

body[data-accessible-theme="colorblind"] .submit-btn {
    background: linear-gradient(135deg, #1f7a3f, #166a63);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(22, 106, 99, 0.24);
}

body[data-accessible-theme="colorblind"] .submit-btn:hover {
    background: linear-gradient(135deg, #196536, #125850);
    box-shadow: 0 14px 30px rgba(22, 106, 99, 0.28);
}

body[data-accessible-theme="colorblind"] .badge-coral {
    background: rgba(198, 146, 20, 0.12);
    border-color: var(--accent-gold);
    color: #7a5800;
}

body[data-accessible-theme="colorblind"] .badge-blue {
    background: rgba(47, 75, 189, 0.1);
    border-color: var(--accent-indigo);
    color: var(--accent-indigo);
}

body[data-accessible-theme="colorblind"] .form-section-title::before {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-indigo));
}

body[data-accessible-theme="colorblind"] .form-consent input,
body[data-accessible-theme="colorblind"] .consent-checkbox input[type="checkbox"] {
    accent-color: var(--accent-indigo);
}

body[data-accessible-theme="colorblind"] .underline {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-indigo));
}

body[data-accessible-theme="colorblind"] h1,
body[data-accessible-theme="colorblind"] h2 {
    color: var(--heading-accent);
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
    font-family: var(--font-poppins);
}

.success-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration {
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .results-grid,
    .scholarships-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .partner-hero-content {
        grid-template-columns: 1fr;
    }
    
    .partner-hero-icon {
        order: -1;
    }
    
    .why-partner-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .partnership-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    .filter-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}
}
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-buttons button {
    padding: 10px 20px;
    border-radius: 999px;
    border: none;

    background: #f1f5f9;
    color: #333;

    font-weight: 500;
    cursor: pointer;

    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

/* Hover */
.filter-buttons button:hover {
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: white;
    transform: translateY(-2px);
}

/* Active */
.filter-buttons button.active {
    background: linear-gradient(135deg, var(--coral), var(--blue));
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
