body {
    /* background-image: url(../images/body-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;    
    width: 1330px;
    height: auto;
    object-fit: cover;
    object-position: 32% 0%; */
    font-family: 'Segoe UI', sans-serif;
}

.header-section .d-flex {
    gap: 20px;
    justify-content: center !important;
}

.main-title {
    font-weight: 800;
    letter-spacing: 2px;
    text-align: left;
    font-size: 60px;
    color: rgb(111, 90, 205);
}

.subtitle {
    font-size: 20px;
    font-style: normal;
    color: rgb(0, 0, 0);
    font-kerning: normal;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-align: center;
    margin: 0;
}

/* LEFT MENU */
.left-menu {
    padding: 30px 15px;
}

.menu-btn {
    display: block;
    background: #FF8DC7;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.menu-btn:hover,
.learn-btn:hover {
    background: #ff6fb6;
}

/* RIGHT CONTENT */
.right-content {
    padding: 20px;
}

.content-border {
    border-left: 4px solid #000;
    border-top: 4px solid #000;
    padding: 25px 0 15px 25px;
    height: 100%;
    border-radius: 15px 0 0 0;
}

/* TEXT */
.content-text h2 {
    font-size: 38px;
    font-weight: 400;
    font-style: normal;
    color: rgb(43, 19, 146);
    font-kerning: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-align: center;
}

.content-text span {
    font-weight: 900;
}

.learn-btn {
    margin-top: 20px;
    background: #FF8DC7;
    border: none;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 700;
    font-style: normal;
    color: rgb(255, 255, 255);
    font-kerning: none;
    text-decoration-line: underline;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    line-height: 15px;
}

.align-center {
    text-align: center;
}

/* IMAGE */
.content-image img {
    width: 100%;
    border-radius: 6px;
}

/* TAGLINE */
.tagline {
    margin-top: 15px;
    color: rgb(43, 19, 146);
    font-weight: 700;
    font-size: 21px;
    font-style: normal;
    font-kerning: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
}

/* FOOTER */
.footer {
    font-size: 14px;
    border-top: 1px solid #3333;
    color: #111;
}

.glass-design {
    background-color: rgb(255 255 255 / 57%);
    border-color: rgb(255 255 255 / 0.2);
    border-width: 1px;
    border-radius: 1.5rem;
}

/* landing animation */
.video-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

/* Video fills entire screen */
.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Brand overlay (VERY IMPORTANT) */
.video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(189, 244, 253, 0.85);
}

.learn-btn i {
    background-color: #fff;
    padding: 5px 2px 2px 3px;
    border-radius: 50px;
    color: #ff8dc7;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 10px;
    margin-left: 18px;
}

.menu-toggle {
    background: #ff8dc7;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 10px;
}

#mobileMenu .active {
    background-color: rgb(111, 90, 205);
}

.main-content p {
    text-align: justify;
}

/* LARGE CARD */
.feature-card {
    background: #6f5acd;
    display: flex;
    flex-direction: column;
}

.feature-card .circle-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.7s ease;
}

.feature-card:hover .circle-bg {
    transform: scale(1.5);
}

/* SERVICE CARDS */
.service-card {
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE BOX */
.img-box {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

/* HOVER GRADIENT BACKGROUNDS */
.hover-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
}

.service-card:hover .hover-bg {
    opacity: 1;
}

.bg-blue {
    background: linear-gradient(135deg, #e0f2fe, #ede9fe, #fce7f3);
}

.bg-green {
    background: linear-gradient(135deg, #ecfdf5, #ccfbf1, #d1fae5);
}

.bg-orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5, #fef3c7);
}

.bg-indigo {
    background: linear-gradient(135deg, #eef2ff, #e0e7ff, #cffafe);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.main-content h1 {
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    color: #ff6fb6;
    font-kerning: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    margin-bottom: 25px;
}

.main-content h5 {
    font-size: 18px;
}

/* CARD */
.event-card {
    background: rgb(111 90 205);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    color: #fff;
    display: flex;
    height: 100%;
    transition: all 0.35s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    background: rgb(50 145 167);
}

/* IMAGE */
.event-img {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITLE */
.event-card h3,
.support-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffb3dd;
    margin-bottom: 12px;
}

/* TEXT */
.event-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #f3f1ff;
    margin-bottom: 15px;
}

/* LINK */
.event-card a {
    color: #ffb3dd;
    font-weight: 600;
    text-decoration: underline;
}

.event-card a:hover {
    color: #fff;
}

.event-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.learn-more {
    margin-top: auto;
    text-align: center;
    color: #ffb3dd;
    font-weight: 600;
    text-decoration: underline;
}

.learn-more:hover {
    color: #ffffff;
}

/* CARD */
.support-card {
    background: rgb(111 90 205);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 60px 30px 30px;
    transition: all 0.35s ease;
}

.supporters-section {
    margin-top: 80px;
}

.support-card p {
    color: #fff !important;
}

.support-card:hover {
    transform: translateY(-10px);
    background: rgb(50 145 167);
}

/* ICON BOX */
.icon-box {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ec4899;
    transition: all 0.35s ease;
}

.support-card:hover .icon-box {
    transform: translateX(-50%) scale(1.12) rotate(6deg);
}

/* ROTATIONS */
.rotate-1 {
    transform: translateX(-50%) rotate(3deg);
}

.rotate-2 {
    transform: translateX(-50%) rotate(-3deg);
}

.rotate-3 {
    transform: translateX(-50%) rotate(2deg);
}

/* BUTTON */
.support-card .btn {
    transition: box-shadow 0.3s ease;
}

.support-card .btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ICON CIRCLES */
.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SOCIAL ICONS */
.social-icon {
    width: 40px;
    height: 40px;
    background: #f1f3f5;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--bs-primary);
    color: #fff;
}
.main-content a,
.footer a{
    text-decoration: none;
}
.table-bordered{
    background-color: #dcf0f4;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .event-card {
        padding: 25px 20px;
    }

    .event-card h3 {
        font-size: 18px;
    }

    .support-card {
        padding: 55px 25px 30px;
    }
     .filament-tiptap-grid, .filament-tiptap-grid-builder{
        display: contents !important;
    }
    .service-card{
        margin-top: 25px;
    }
    .main-content .right-content .g-10{
        gap: 25px;
    }
    .supporters-section .supporters{
        gap: 80px !important;
    }
    .bank-details{
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .left-menu {
        text-align: center;
    }

    .content-border {
        padding: 15px;
    }

    .main-title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 10px;
    }

    .site-logo img {
        width: 50px;
    }
    .filament-tiptap-grid, .filament-tiptap-grid-builder{
        display: contents !important;
    }
    .service-card{
        margin-top: 25px;
    }
    .main-content .right-content .g-10{
        gap: 25px !important;
    }
     .supporters-section .supporters{
        gap: 80px;
    }
    .bank-details{
        margin-top: 25px;
    }
}

@media (max-width: 991px) {

    .main-title {
        font-size: 20px;
        text-align: left;
    }

    .subtitle {
        font-size: 14px;
        text-align: left;
    }

    .mobile-header {
        flex-direction: row;
    }

    /* Hide menu initially */
    .left-menu {
        display: none;
        padding: 20px;
        border-radius: 20px;
        margin-bottom: 15px;
    }

    .left-menu.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .menu-btn {
        margin-bottom: 10px;
    }

    /* Content full width */
    .right-content {
        padding: 10px;
    }

    .content-border {
        border-left: none;
        border-top: 3px solid #000;
        border-radius: 15px;
    }
     .filament-tiptap-grid, .filament-tiptap-grid-builder{
        display: contents !important;
    }
    .service-card{
        margin-top: 25px;
    }
    .main-content .right-content .g-10{
        gap: 25px;
    }
     .supporters-section .supporters{
        gap: 80px !important;
    }
    .bank-details{
        margin-top: 25px;
    }
}

/* Menu animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.towards {
    margin-bottom: 25px;
}