/* ... keep your existing * and body styles ... */

.slide {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Keeps content to the left */
    padding-left: 7%;
    /* Space from the left edge */
}

/* Darker, more substantial overlay for maximum text contrast */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deep blue/black gradient covering the left side heavily */
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    /* Sets the width of the text block to 85% of its parent container */
    width: 90%;
    max-width: 1100px;
    /* Optional: prevents text from becoming too long on huge monitors */
    color: #ffffff;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);

    /* Adds a subtle dark blur behind the text for extra clarity */
    /* background: rgba(0, 0, 0, 0.2); */
    /* backdrop-filter: blur(5px); */
    padding: 40px;
    border-left: 4px solid #0062cc;
    /* Professional accent line */
}

.slide.active .content {
    opacity: 1;
    transform: translateX(0);
}

.title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    /* Makes title pop */
}

.description {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}


/* =========================
   SECTION
========================= */

.org-section {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    min-height: 100vh;

    background:
        linear-gradient(rgba(2, 8, 23, 0.92), rgba(2, 8, 23, 0.95)),
        url('assets/img/about/img9.jpg');

    background-size: cover;
    background-position: center;
}

/* 
.container {
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
} */

/* =========================
   GLOW EFFECT
========================= */

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.glow1 {
    width: 350px;
    height: 350px;
    background: #00aaff;
    top: -100px;
    left: -100px;
}

.glow2 {
    width: 300px;
    height: 300px;
    background: #0047ff;
    right: -80px;
    bottom: -80px;
}

/* =========================
   HEADING
========================= */

.section-heading {
    text-align: center;
    margin-bottom: 90px;
}

.section-heading span {
    display: inline-block;
    color: #38bdf8;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;

    background: linear-gradient(to right, #ffffff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-heading p {
    max-width: 750px;
    margin: auto;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

/* =========================
   CENTER LOGO
========================= */

.main-center {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.logo-circle {
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 40px rgba(0, 170, 255, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.04);
}

.logo-circle img {
    width: 110px;
}

.main-title {
    margin-top: 30px;
    display: inline-block;

    padding: 18px 40px;
    border-radius: 60px;

    background: linear-gradient(135deg, #0f172a, #1e3a8a);

    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* =========================
   CONNECTOR LINE
========================= */

.line-horizontal {
    width: 70%;
    height: 2px;
    margin: auto;
    margin-bottom: 0;

    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
}

/* =========================
   GRID
========================= */

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;

    margin-top: 60px;
}

/* =========================
   CARD
========================= */

.org-card {
    position: relative;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 30px;

    padding: 45px 35px;

    text-align: center;

    transition: 0.4s ease;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.35);
}

.org-card:hover {
    transform: translateY(-12px);

    border-color: rgba(56, 189, 248, 0.4);

    box-shadow:
        0 30px 80px rgba(0, 170, 255, 0.2);
}

/* Featured Card */

.featured {
    transform: translateY(-25px);

    background: linear-gradient(180deg,
            rgba(0, 170, 255, 0.15),
            rgba(255, 255, 255, 0.06));
}

/* Top Connector */

.top-line {
    position: absolute;
    top: -60px;
    left: 50%;

    transform: translateX(-50%);

    width: 2px;
    height: 60px;

    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.5),
            transparent);
}

/* Icon */

.card-icon {
    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 30px;

    border-radius: 50%;

    background: linear-gradient(135deg, #0284c7, #2563eb);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    box-shadow:
        0 10px 30px rgba(0, 153, 255, 0.3);
}

/* Text */

.org-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.org-card p {
    color: #dbeafe;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Button */

.org-card a {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    background: linear-gradient(135deg, #0ea5e9, #2563eb);

    transition: 0.3s;
}

.org-card a:hover {
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .org-grid {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

    .line-horizontal {
        display: none;
    }

    .top-line {
        display: none;
    }

    .section-heading h2 {
        font-size: 42px;
    }

}

@media(max-width:600px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .main-title {
        font-size: 16px;
        padding: 15px 25px;
    }

    .org-card {
        padding: 35px 25px;
    }

    .org-card h3 {
        font-size: 24px;
    }

}

.animated-horizontal-border {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

/* Animated Highlight */
.animated-horizontal-border::before {
    content: "";
    position: absolute;
    left: -150px;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            #00aaff,
            transparent);
    animation: borderMove 3s linear infinite;
}

/* Moving Dot */
.moving-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    background: #00aaff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow:
        0 0 10px #00aaff,
        0 0 20px #00aaff,
        0 0 35px #00aaff;
    animation: dotMove 3s linear infinite;
}

/* Animations */
@keyframes borderMove {

    0% {
        left: -150px;
    }

    100% {
        left: 100%;
    }
}

@keyframes dotMove {

    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

