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: left;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    padding-left: 20px;
        font-size: 15px;
}

.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: none;
    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;

    color: #fff;
    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;
    }
}

/* CITY WARANGAL SLIDER STYLES */
#cityWarangalSlider {
    padding: 0;
}

#cityWarangalSlider .splide__arrow {
    background: #FF8DC7;
    width: 40px;
    height: 40px;
    opacity: 0.9;
    border-radius: 10px;
    transition: all 0.3s ease;
    z-index: 10;
}

#cityWarangalSlider .splide__arrow:hover {
    background: #6f5acd;
    transform: scale(1.1);
}

#cityWarangalSlider .splide__arrow--prev {
    left: calc(33.33% + 15px);
    /* Position it at the start of the image column */
}

#cityWarangalSlider .splide__arrow--next {
    right: 15px;
}

#cityWarangalSlider .splide__arrow svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}

@media (max-width: 991px) {
    #cityWarangalSlider .splide__arrow--prev {
        left: 10px;
    }

    #cityWarangalSlider .splide__arrow--next {
        right: 10px;
    }
}

/* Menu animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.towards {
    margin-bottom: 25px;
}

.home-tagline {
    margin-top: 15px;
    color: rgb(0 0 0);
    font-weight: 400;
    font-size: 15px;
    font-style: normal;
    font-kerning: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-align: justify !important;
    margin-right: 20px;
    margin-bottom: 20px !important;
}

.subpage h3 {
    color: #6f5acd !important;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 30px;
}

.subpage h4 {
    font-weight: 700;
    font-style: normal;
    color: #ff6fb6;
    margin-top: 30px !important;
}

.subpage h5 {
    font-weight: 600;
    color: #006986;
    margin-top: 30px;
}

.read-more-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover lift + glow */
.read-more-animate:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Sliding background effect */
.read-more-animate::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #ff8dc7, #6f5acd) !important;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

/* Slide in on hover */
.read-more-animate:hover::before {
    transform: translateX(0);
}

/* Keep text above animation */
.read-more-animate {
    color: #000;
}

.read-more-animate:hover {
    color: #fff;
}

.read-more-animate span,
.read-more-animate {
    position: relative;
    z-index: 1;
}


/* Target only the Join Us button */
a[data-as-button="true"][data-as-button-theme="primary"] {
    display: inline-block;
    padding: 10px 34px;
    border-radius: 50px;
    background: linear-gradient(120deg, #4facfe, #00c6ff);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hover animation */
a[data-as-button="true"][data-as-button-theme="primary"]:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(120deg, #00c6ff, #4facfe);
}

/* Click effect */
a[data-as-button="true"][data-as-button-theme="primary"]:active {
    transform: translateY(-1px);
}

.fb {
    background: #005ebb !important;
    color: #ffffff !important;
}

.fb:hover {
    background: #606060 !important;
    color: #ffffff !important;
}

.insta {
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
}


.insta:hover {
    background: #606060 !important;
}



/* SERVICES PAGE STYLES */
.services-title {
    color: #ff6fb6 !important;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.service-item-card {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border: none;
    background: #fff;
}

.service-item-card:nth-child(even) {
    background-color: #fce7f3;
    /* Light pink background */
}

.service-item-card:nth-child(odd) {
    background-color: #ffffff;
    /* Light blue background */
}

.service-item-card:hover {
    transform: translateY(-5px);
}

.service-img-wrapper {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6f5acd;
    margin-bottom: 8px;
}

.service-info p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: left !important;
}

.read-more-link {
    color: #007bff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .service-item-card {
        flex-direction: column;
        text-align: center;
    }

    .service-img-wrapper {
        margin: 0 auto;
    }

    .service-info p {
        text-align: center !important;
    }

    .read-more-link {
        justify-content: center;
    }
}

.carousel-control-prev-icon {
    background-color: #600031;
    padding: 20px 20px;
    border-radius: 20px;
}

.carousel-control-next-icon {
    background-color: #600031;
    padding: 20px 20px;
    border-radius: 20px;
}