/* Modern CSS Reset & Variables */
:root {
    /* Vibrant Medical Green Palette */
    --primary-color: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;

    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;

    --accent-color: #06b6d4;
    --accent-cyan: #22d3ee;
    --accent-rose: #f43f5e;
    --accent-pink: #ec4899;
    --accent-emerald: #10b981;
    --accent-orange: #fb923c;

    --success-color: #10b981;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-colored: 0 20px 40px rgba(0, 104, 55, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 104, 55, 0.2);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Vibrant Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-accent: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, rgba(5, 150, 105, 0.85) 0%, rgba(16, 185, 129, 0.8) 100%);
    --gradient-warm: linear-gradient(135deg, #fbbf24 0%, #ff7e5f 100%);
    --gradient-cool: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-vibrant: linear-gradient(135deg, #10b981 0%, #f59e0b 50%, #fbbf24 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 140px;
    /* Navbar height clearance */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reusable Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn::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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    animation: pulse-glow 3s infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 104, 55, 0.5);
}

.btn-secondary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
    animation: pulse-glow 3s infinite 0.5s;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(250, 112, 154, 0.6);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.7);
    }
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

/* Navigation Styles - See Enhanced Navigation section below */

/* Hero Section - Ultra Modern */
.hero {
    position: relative;
    min-height: 25vh;
    height: auto;
    display: flex;
    align-items: center;
    background: var(--white);
    color: var(--text-dark);
    padding-top: 40px;
    /* Reduced from 70px */
    padding-bottom: 80px;
    /* Increased to allow stats card overlap */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.6;
    z-index: 1;
    transition: background-image 1s ease-in-out;
    background-image: url('../images/homepage/sahe1.png');
    /* Default fallback */
}

/* Background Variations - CSS Driven for Absolute Reliability */
.hero.bg-1::before {
    background-image: url('../images/homepage/sahe1.png');
}

.hero.bg-2::before {
    background-image: url('../images/homepage/sahe2.png');
}

.hero.bg-3::before {
    background-image: url('../images/homepage/sahe3.png');
}

.hero.bg-4::before {
    background-image: url('../images/homepage/sahe4.png');
}

.hero.bg-5::before {
    background-image: url('../images/homepage/sahe6.png');
}

.hero.bg-6::before {
    background-image: url('../images/homepage/sahe7.png');
}

/* Removed redundant ::before to ensure direct image visibility */

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float-circles {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(10px, -10px) scale(1.1);
    }

    66% {
        transform: translate(-10px, 10px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-subtitle {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary-dark);
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(254, 243, 199, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(254, 243, 199, 0.6), 0 0 40px rgba(254, 243, 199, 0.4);
    }
}

.hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-dark);
    animation: title-entrance 1s ease-out 0.3s both;
}

.hero-title span {
    background: linear-gradient(135deg, #10b981, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-text 3s linear infinite;
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
}

@keyframes gradient-text {
    to {
        background-position: 200% center;
    }
}

@keyframes title-entrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient-text {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: fadeInText 1.5s ease 1s forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        /* Full opacity for better contrast */
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.hero-buttons .btn {
    padding: 0.5rem 1.5rem;
    /* Smaller padding for buttons */
    font-size: 0.9rem;
}

.btn-glass {
    background: rgba(16, 185, 129, 0.05);
    color: var(--primary-dark);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
}

.btn-glass:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

/* Features/Stats Section - Enhanced */
.stats-section {
    position: relative;
    top: -30px;
    /* Moved down for better button clearance */
    z-index: 20;
    animation: slide-up 1s ease-out;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 104, 55, 0.08);
    text-align: center;
    transition: var(--transition-bounce);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: card-entrance 0.8s ease-out backwards;
}

@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #006837, #22a762, #10b981, #f59e0b);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 400% 400%;
    animation: gradient-rotate 8s ease infinite;
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.stat-card:hover::after {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-20px) scale(1.08) rotateY(5deg);
    box-shadow: 0 40px 80px rgba(0, 104, 55, 0.2);
}

.stat-card:nth-child(1):hover {
    box-shadow: 0 40px 80px rgba(0, 104, 55, 0.2);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 40px 80px rgba(16, 185, 129, 0.2);
}

.stat-card:nth-child(3):hover {
    box-shadow: 0 40px 80px rgba(245, 158, 11, 0.2);
}

.stat-card:nth-child(4):hover {
    box-shadow: 0 40px 80px rgba(0, 104, 55, 0.2);
}

.stat-card p {
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card:nth-child(4n+1) p {
    color: #4338ca;
}

/* Indigo */
.stat-card:nth-child(4n+2) p {
    color: #7c3aed;
}

/* Purple */
.stat-card:nth-child(4n+3) p {
    color: #b45309;
}

/* Amber/Gold */
.stat-card:nth-child(4n+4) p {
    color: #be123c;
}

/* Rose */

.stat-icon,
.stat-card ion-icon {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: inline-block;
    animation: icon-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(16, 185, 129, 0.3));
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.stat-card:nth-child(4n+1) .stat-icon {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(4n+2) .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(4n+3) .stat-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card:nth-child(4n+4) .stat-icon {
    background: linear-gradient(135deg, #ef4444, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    display: block;
    margin-bottom: 0.25rem;
    animation: shimmer 3s linear infinite;
    letter-spacing: -1px;
}

.stat-card:nth-child(4n+1) .stat-number {
    background-image: linear-gradient(135deg, #4f46e5, #3b82f6, #4f46e5);
}

.stat-card:nth-child(4n+2) .stat-number {
    background-image: linear-gradient(135deg, #8b5cf6, #a78bfa, #8b5cf6);
}

.stat-card:nth-child(4n+3) .stat-number {
    background-image: linear-gradient(135deg, #d97706, #f59e0b, #d97706);
}

.stat-card:nth-child(4n+4) .stat-number {
    background-image: linear-gradient(135deg, #b91c1c, #ef4444, #b91c1c);
}


/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-left: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    bottom: 15px;
    right: -15px;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 230px;
}

.badge-years {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* Programs Section - Ultra Vibrant */
.programs-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

.programs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-tag {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
    border-radius: 50px;
    animation: tag-pulse 2s ease-in-out infinite;
}

@keyframes tag-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transition: var(--transition-bounce);
    position: relative;
    transform-style: preserve-3d;
    animation: card-fly-in 0.8s ease-out backwards;
}

@keyframes card-fly-in {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-15deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.program-card:nth-child(1) {
    animation-delay: 0.2s;
}

.program-card:nth-child(2) {
    animation-delay: 0.4s;
}

.program-card:nth-child(3) {
    animation-delay: 0.6s;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 90px rgba(102, 126, 234, 0.3);
}

.program-card:nth-child(1) .program-image::after {
    background: linear-gradient(135deg, rgba(0, 104, 55, 0.7), rgba(16, 185, 129, 0.7));
}

.program-card:nth-child(2) .program-image::after {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.7), rgba(217, 119, 6, 0.7));
}

.program-card:nth-child(3) .program-image::after {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.7), rgba(0, 104, 55, 0.7));
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-top: -4rem;
    margin-bottom: 1.5rem;
    position: relative;
    border: 5px solid var(--white);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    transition: var(--transition-bounce);
    animation: icon-float 3s ease-in-out infinite;
}


@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.program-card:hover .program-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 104, 55, 0.5);
}

.program-card:nth-child(2) .program-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.program-card:nth-child(3) .program-icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.program-card:nth-child(1) .program-title {
    color: #1e40af;
}

.program-card:nth-child(2) .program-title {
    color: #92400e;
}

.program-card:nth-child(3) .program-title {
    color: #166534;
}

.program-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.program-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.program-card:nth-child(1) .program-link {
    background-image: linear-gradient(135deg, #1e40af, #3b82f6);
}

.program-card:nth-child(2) .program-link {
    background-image: linear-gradient(135deg, #92400e, #f59e0b);
}

.program-card:nth-child(3) .program-link {
    background-image: linear-gradient(135deg, #166534, #10b981);
}

.program-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.program-link:hover::after {
    width: 100%;
}

.program-link ion-icon {
    transition: transform 0.3s ease;
}

.program-link:hover ion-icon {
    transform: translateX(5px);
}

/* Footer structure - Compact & Beautiful */
.footer {
    background: linear-gradient(-45deg, #064e3b, #059669, #047857, #10b981);
    background-size: 400% 400%;
    animation: footer-gradient 15s ease infinite;
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
    z-index: 1;
}

@keyframes footer-gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    line-height: 1.5;
    font-size: 0.85rem;
}

.logo-white {
    color: white !important;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.text-secondary {
    color: var(--secondary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0;
    list-style: none;
}

.footer-title {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 3px;
    opacity: 1;
}

.contact-details p {
    margin: 0 0 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.85rem;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.map-container {
    border-radius: 0.75rem;
    overflow: hidden;
    height: 90px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Animations - Enhanced */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 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);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
        /* Reduced navbar height on mobile */
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}

/* Professional Navigation with Dropdowns */

/* Enhanced Navbar - Solid to Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(248, 250, 252, 0.30));
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 110px;
    position: relative;
    gap: 0;
    padding: 0;
}

/* Top Row Container */
.nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    z-index: 1001;
    flex-shrink: 0;
}

.logo ion-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

/* Navigation Links - Better Structure */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0.1rem 0;
    width: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 1.15rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus {
    background-color: #e2e8f0;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 260px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: var(--text-dark);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

.dropdown-item ion-icon {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 1.75rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

/* Enhanced Search Bar */
.nav-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 500px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-wrapper {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
}

.search-input {
    width: 100%;
    padding: 0.65rem 2.75rem 0.65rem 1rem;
    border: 2px solid rgba(13, 43, 91, 0.15);
    background: rgba(248, 250, 252, 0.8);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.search-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: var(--bg-light);
    padding-left: 1.5rem;
}

.search-result-icon {
    font-size: 1.25rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.search-result-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Portal Button Styling */
.btn-portal {
    background: linear-gradient(135deg, var(--primary-color), #164e8a);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 43, 91, 0.2);
    flex-shrink: 0;
}

.btn-portal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 43, 91, 0.3);
    background: linear-gradient(135deg, #0a1f47, var(--primary-color));
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-radius: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 0;
        margin-left: 0;
        padding-left: 1rem;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0.5rem;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-item.active .dropdown-menu {
        max-height: 800px;
    }

    .dropdown-item {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Keep nav-actions visible in header on mobile */
    .nav-actions {
        position: absolute;
        right: 4rem;
        display: flex;
        gap: 0.5rem;
    }

    .search-wrapper {
        width: 180px;
    }

    .search-input {
        padding: 0.4rem 2.5rem 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-portal {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Reduce logo size on tablets */
    .navbar .logo {
        font-size: 1.3rem;
    }

    .navbar .brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

    /* Hide portal button on smaller mobile */
    .btn-portal {
        display: none;
    }

    .search-wrapper {
        width: 140px;
    }

    .nav-actions {
        right: 3.5rem;
        gap: 0.3rem;
    }

    /* Further reduce logo on mobile phones */
    .navbar .logo {
        font-size: 1.2rem;
    }

    .navbar .brand-text {
        font-size: 0.85rem;
    }

    /* Reduce navbar padding */
    .navbar .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {

    /* Minimal search on very small screens */
    .search-wrapper {
        width: 36px;
        height: 36px;
    }

    .search-input {
        width: 36px;
        height: 36px;
        padding: 0;
        text-indent: -9999px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 0.8rem;
    }

    .search-input:focus {
        width: 160px;
        height: auto;
        padding: 0.4rem 2rem 0.4rem 0.8rem;
        text-indent: 0;
        border-radius: 50px;
    }

    .search-icon {
        pointer-events: none;
        font-size: 1rem;
    }

    .nav-actions {
        right: 2.8rem;
        gap: 0.25rem;
    }

    /* Extra small logo for very small phones */
    .navbar .logo {
        font-size: 1.1rem;
    }

    .navbar .brand-text {
        font-size: 0.75rem;
        max-width: 150px;
    }

    /* Smaller mobile menu button */
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    /* Tighter navbar padding */
    .navbar .container {
        padding: 0 0.75rem;
    }
}

/* Ultra-small screens (iPhone 5, etc.) */
@media (max-width: 360px) {
    .navbar .logo {
        font-size: 1rem;
    }

    .navbar .brand-text {
        font-size: 0.7rem;
        max-width: 120px;
    }

    .search-wrapper {
        width: 32px;
        height: 32px;
    }

    .search-input {
        width: 32px;
        height: 32px;
    }

    .search-input:focus {
        width: 140px;
        padding: 0.35rem 1.8rem 0.35rem 0.7rem;
    }

    .mobile-menu-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .nav-actions {
        right: 2.5rem;
    }

    .navbar .container {
        padding: 0 0.5rem;
    }
}

/* Utility Classes - Replace Inline Styles */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.news-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.news-card:nth-child(2n+1) .news-title {
    color: #1e40af;
}

.news-card:nth-child(2n+2) .news-title {
    color: #9d174d;
}

.program-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-bounce);
    animation: card-entrance 0.8s ease-out backwards;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 90px rgba(16, 185, 129, 0.25);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
}

.news-card-image {
    height: 220px;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 2rem;
}

.news-tag {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag-upcoming {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.tag-admissions {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.tag-announcement {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.news-title {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    /* Dark gray for visibility */
    font-size: 0.9rem;
}

/* Consolidated Mobile Responsive Styles */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Gallery Section - Ultra Modern & Attractive */
.gallery-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(132, 204, 22, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-bounce);
    cursor: pointer;
    height: 300px;
    animation: gallery-fade-in 0.8s ease-out backwards;
}

@keyframes gallery-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Grid item variations */
.gallery-item-large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item-wide {
    grid-column: span 2;
}

@media (max-width: 968px) {

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
        height: 300px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 77, 41, 0.9) 0%,
            rgba(0, 104, 55, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content ion-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--secondary-color);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: gallery-icon-float 3s ease-in-out infinite;
}

@keyframes gallery-icon-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.gallery-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-content p {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Hover Effect Variations */
.gallery-item:nth-child(1) .gallery-overlay {
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.92), rgba(5, 150, 105, 0.9));
}

.gallery-item:nth-child(2) .gallery-overlay {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.92), rgba(16, 185, 129, 0.9));
}

.gallery-item:nth-child(3) .gallery-overlay {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(52, 211, 153, 0.9));
}

.gallery-item:nth-child(4) .gallery-overlay {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.92), rgba(45, 212, 191, 0.9));
}

.gallery-item:nth-child(5) .gallery-overlay {
    background: linear-gradient(135deg, rgba(101, 163, 13, 0.92), rgba(132, 204, 22, 0.9));
}

.gallery-item:nth-child(6) .gallery-overlay {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.92), rgba(34, 197, 94, 0.9));
}

/* Gallery Hover Shadow Effects */
.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.35);
}

.gallery-item:nth-child(2):hover {
    box-shadow: 0 25px 60px rgba(16, 185, 129, 0.35);
}

.gallery-item:nth-child(3):hover {
    box-shadow: 0 25px 60px rgba(52, 211, 153, 0.35);
}

.gallery-item:nth-child(4):hover {
    box-shadow: 0 25px 60px rgba(20, 184, 166, 0.35);
}

.gallery-item:nth-child(5):hover {
    box-shadow: 0 25px 60px rgba(132, 204, 22, 0.35);
}

.gallery-item:nth-child(6):hover {
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.35);
}