/* ===============================
   ROOT & TYPOGRAPHY
   =============================== */
:root {
    --primary-color: #27ae60;
    --secondary-color: #2ecc71;
    --accent-color: #f39c12;
    --dark-color: #1a1a1a;
    --light-color: #ecf0f1;
    --text-color: #333;
    --border-color: #ddd;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   NAVIGATION
   =============================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-logo {
    max-width: 50px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.navbar-brand i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===============================
   HERO SECTION
   =============================== */
/* .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
} */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

/* ===============================
   BUTTONS
   =============================== */
.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===============================
   ANIMATED SHAPES
   =============================== */
.hero-animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.12;
    animation: float 8s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation: float 9s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(1px);
}

.shape-2 {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 30% 70% 70% 30%;
    bottom: 20%;
    right: 15%;
    animation: float 11s infinite cubic-bezier(0.34, 1.56, 0.64, 1) reverse;
    filter: blur(1px);
}

.shape-3 {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    top: 50%;
    right: 10%;
    animation: float 13s infinite cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: blur(1px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(35px) rotate(8deg) scale(1.04);
    }
}

/* ===============================
   MESSAGE SECTIONS
   =============================== */
.message-section {
    padding: 80px 0;
    background: white;
}

.president-message {
    background: linear-gradient(to bottom, white, #f8f9fa);
}

.director-message {
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.message-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.message-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: green; */
}

.message-text {
    line-height: 1.8;
}

.message-text p:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.message-text p:nth-child(2) {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.message-body {
    color: #555;
}

.message-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.message-body ul {
    margin: 20px 0 20px 30px;
}

.message-body li {
    margin-bottom: 10px;
    color: #555;
}

.message-highlight {
    display: grid;
    gap: 20px;
    align-items: center;
    text-align: center;
    margin: auto;
}

.message-highlight, p, h3{
    color: #555;
}


.highlight-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.highlight-stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.16);
}

.highlight-stat h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-stat p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* ===============================
   QUICK LINKS SECTION
   =============================== */
.quick-links {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.section-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.link-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    opacity: 0;
    animation: scaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.link-card:hover::before {
    left: 100%;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }
.link-card:nth-child(5) { animation-delay: 0.5s; }
.link-card:nth-child(6) { animation-delay: 0.6s; }

.link-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(39, 174, 96, 0.18);
}

.link-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2);
    position: relative;
    z-index: 2;
}

.link-card:hover .link-icon {
    transform: rotateY(360deg) scale(1.12);
    box-shadow: 0 16px 40px rgba(39, 174, 96, 0.35);
}

.link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.link-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* ===============================
   STATISTICS SECTION
   =============================== */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    background: none !important;
}

.statistics .section-title {
    color: white;
    margin-bottom: 60px;
}

.statistics .section-title::after {
    background: var(--accent-color);
}

a p {
    color: black !important;
}

.president-message-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.95;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 10px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
}

/* ===============================
   ON-SCROLL ANIMATIONS
   =============================== */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(39, 174, 96, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(39, 174, 96, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .message-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .message-header {
        flex-direction: column;
        text-align: center;
    }

    .message-header h2 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .message-text p:first-child {
        font-size: 1rem;
    }
}

/* ===============================
   SCROLL BAR STYLING
   =============================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}





/* ===============================
   HERO SLIDESHOW
   =============================== */
.hero {
    /* background-image: url("../Img/banner.jpg"); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    color: white;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

/* Navigation Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: rgba(39, 174, 96, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}


/* =================================================
   FUTURISTIC VISUAL OVERRIDES
   ADD THIS AT THE VERY BOTTOM OF YOUR CSS FILE
================================================= */

/* BODY */
body{
    background:
        radial-gradient(circle at top left,#123524 0%,#08140d 40%,#050b07 100%);
    color:#f5f5f5;
}

/* NAVBAR */
.navbar{
    background:rgba(5,15,9,0.78) !important;
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    box-shadow:0 5px 30px rgba(0,0,0,0.35);
}

.nav-link{
    color:rgba(255,255,255,0.88);
}

.nav-link:hover{
    color:#4ade80;
}

/* HERO */
.hero{
    position:relative;
    overflow:hidden;
}

/* HERO GLOW EFFECT */
.hero::before{
    content:'';
    position:absolute;

    width:700px;
    height:700px;

    background:
        radial-gradient(circle,
        rgba(34,197,94,0.22),
        transparent 70%);

    top:-250px;
    right:-250px;

    filter:blur(40px);

    animation:heroGlow 8s ease-in-out infinite;

    z-index:1;
}

@keyframes heroGlow{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(35px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* HERO OVERLAY */
.hero-overlay{
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.72)
        ) !important;

    z-index:1;
}

/* HERO CONTENT */
.hero-content{
    background:
        rgba(0,0,0,0.3);

    /* backdrop-filter:blur(14px); */

    border:
        1px solid rgba(255,255,255,0.01);

    border-radius:28px;

    padding:50px;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45);

    z-index:5;
}

/* HERO TITLE */
.hero-title{
    font-size:4rem;
    line-height:1.1;

    text-shadow:
        0 0 20px rgba(0,0,0,0.45);
}

/* HERO SUBTITLE */
.hero-subtitle{
    color:#d1d5db;
    line-height:1.8;
}

/* BUTTONS */
.btn{
    border-radius:60px;
    transition:all 0.45s ease;
}

.btn-primary{
    background:
        linear-gradient(
            135deg,
            #22c55e,
            #4ade80
        );

    color:white;

    box-shadow:
        0 10px 35px rgba(34,197,94,0.3);
}

.btn-primary:hover{
    transform:
        translateY(-6px)
        scale(1.03);

    box-shadow:
        0 18px 45px rgba(34,197,94,0.45);
}

.btn-secondary{
    background:
        rgba(255,255,255,0.08);

    backdrop-filter:blur(10px);

    border:
        1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover{
    background:
        rgba(255,255,255,0.16);

    transform:translateY(-5px);
}

#netBtn{
   background: rgba(0,0,0,0.00002);
    transition:all 0.45s ease;
    width: 2px;
    height: 2px;
}

/* CARDS */
.link-card,
.highlight-stat,
.stat-card{
    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    border-radius:24px;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.25);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border 0.45s ease;
}

/* CARD HOVER */
.link-card:hover,
.highlight-stat:hover,
.stat-card:hover{
    transform:
        translateY(-12px)
        scale(1.02);

    border:
        1px solid rgba(74,222,128,0.3);

    box-shadow:
        0 25px 70px rgba(34,197,94,0.18);
}

/* ICONS */
.link-icon,
.message-icon{
    box-shadow:
        0 0 30px rgba(34,197,94,0.35);

    transition:all 0.45s ease;
}

.link-card:hover .link-icon{
    transform:
        rotateY(180deg)
        scale(1.12);
}

/* TITLES */
.section-title{
    color: rebeccapurple;
    letter-spacing:1px;
}

.section-title::after{
    background:
        linear-gradient(
            to right,
            transparent,
            #4ade80,
            transparent
        );
}

/* MESSAGE TEXT */
.message-body,
.message-text,
.link-card p,
.stat-card p{
    color:#d1d5db;
}

/* FOOTER */
.footer{
    background:
        linear-gradient(
            to bottom,
            #07110a,
            #030806
        );
}

/* SCROLLBAR */
::-webkit-scrollbar-thumb{
    background:
        linear-gradient(
            to bottom,
            #22c55e,
            #15803d
        );
}
/* HERO SLIDES */
.hero-slide{
    transform:scale(1.08);

    transition:
        opacity 1.5s ease,
        transform 8s ease;
}

.hero-slide.active{
    transform:scale(1);
}

/* BUTTONS FOR SLIDES */
.slide-btn{
    background:
        rgba(0,0,0,0.35);

    backdrop-filter:blur(8px);

    border:
        1px solid rgba(255,255,255,0.08);
}

.slide-btn:hover{
    background:
        rgba(34,197,94,0.85);

    box-shadow:
        0 0 25px rgba(34,197,94,0.45);
}

/* MOBILE */
@media(max-width:768px){

    .hero-title{
        font-size:2.5rem;
    }

    .hero-content{
        padding:30px 20px;
        margin:20px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }
}