@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,200;0,300;0,400;0,500;0,700;0,800;0,900;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

:root {
    --LogoFont: 'Kalam', cursive;
    --rusoOneFonts: 'Russo One', sans-serif;
    --Pink: #fd3d77;
    --Pink2: rgb(255, 97, 152);
    --dimBlack: rgb(0, 0, 0);
    --white: white;
    --likeBlue: #2f0f62;
    --PoppinsFonts: 'Poppins', sans-serif;
    --SairaFonts: 'Saira', sans-serif;
    --primary: #FF6F0F;
    --success: #14d406;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

*,
::after,
::before {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    /* border: 1px solid #1e7e34; */
}

/* ---------- Some Custome Font size and Style (used Globaly) ------ */
.rusoFont {
    font-family: var(--rusoOneFonts);
}

.poppinFont {
    font-family: var(--PoppinsFonts);
}

.fs-5 {
    font-size: 1rem !important;
}

.orangeClr {
    color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--success) !important;
}

.addBoxShadow1 {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.923) !important;
}

.rounded-pill1 {
    background: rgb(255, 240, 230);
    border-radius: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

.rounded-pill-success {
    background: rgb(237, 255, 230);
    border-radius: 20px;
    padding-left: 5px;
    padding-right: 5px;
}

/* change custom image size  */
.my_img-w_70 {
    /* // at large screen  */
    width: 70% !important;
    height: auto;
}

.MongoBg {
    background: #ff4b1f;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ff9068, #ff4b1f);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff9068, #ff4b1f);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.bgLight {
    background-color: var(--light);
}

.bg-frost {
    background: #000428;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #004e92, #000428);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #004e92, #000428);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.bg-frost-1 {
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, rgb(19, 4, 48), rgb(7, 193, 187));
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, rgb(19, 4, 48), rgb(7, 193, 187));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bg-whiteGrad {
    background-color: #FFDEE9;
    background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);
}

.bg-mauve {
    background: #42275a;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #734b6d, #42275a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #734b6d, #42275a);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


}

/* Custom scrollbar styles */
::-webkit-scrollbar {
    width: 12px;
    /* Width of the scrollbar */
    height: 12px;
    /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the scrollbar track */
    border-radius: 10px;
    /* Round edges of the track */
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Color of the scrollbar thumb */
    border-radius: 10px;
    /* Round edges of the thumb */
    border: 3px solid #f1f1f1;
    /* Space between thumb and track */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Thumb color on hover */
}


.mapIfram {
    width: 500px;
    height: 400px;
}

/* ------------ Custome End ------- */

body {

    font-family: var(--PoppinsFonts);
    background: hsl(0, 71%, 99%);
    scroll-behavior: smooth;
}

/* ======= blur Body background when sidebar open or Modal ========= */
.container-fluid.blur {
    filter: blur(5px);
}

/* ============ Header Desing============= */

header {
    position: sticky !important;
    top: 0;
    left: 0;
    z-index: 100;
    /* background: #00c6ff; */
    background: white;
    /* background: -webkit-linear-gradient(to right, #0072ff, #00c6ff);
    background: linear-gradient(to right, #0072ff, #00c6ff);
   */
    padding-left: 5px !important;
    padding-right: 5px !important;
    -webkit-box-shadow: 0px 3px 5px -3px rgba(46, 44, 46, 1);
    -moz-box-shadow: 0px 3px 5px -3px rgba(46, 44, 46, 1);
    box-shadow: 0px 3px 5px -3px rgba(46, 44, 46, 1);
}

header .logo {
    font-size: 1.56rem;
    font-family: var(--rusoOneFonts);
    font-weight: 300;
    color: var(--dimBlack);

    text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.28);
}

header .logo span:nth-child(2) {
    line-height: 20px;
    color: var(--primary);
    font-family: var(--SairaFonts);
    text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

header .navIconbtn {
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease-in;
    transform-origin: center;
    padding-left: 5px;
    padding-right: 5px;
    background: var(--likeBlue);

}

header .navIconbtn:is(:hover, :focus) {
    font-size: 1.6rem;
    color: var(--white);
    border: 1px dashed var(--likeBlue);
    background: var(--likeBlue);
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 3px;
}


/* ========= Header Sidebar======= */
header .sidebar {
    position: fixed;
    transition: all 0.4s ease;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(18, 17, 17, 0.563);
    z-index: 1;
    transform-origin: left;
}


header .sidebar.meActive {
    left: 0
}

header .sidebar #sideMenuBox {
    position: absolute;
    transition: all 0.9s;
    transform-origin: left;
    top: 0;
    left: -250px;
    width: 250px;
    background-color: var(--white);
    height: 100vh;
    overflow: auto;
    z-index: 1999;
    box-shadow: 7px -1px 12px -3px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 7px -1px 12px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 7px -1px 12px -3px rgba(0, 0, 0, 0.75);

}

/* ############### For Show Sidebar ################### */
header .sidebar #sideMenuBox.activeSidebar {
    left: 0;
}

/* menu scrollbar == */
header .sidebar #sideMenuBox::-webkit-scrollbar {
    width: 0px;
}

header .sidebar #sideMenuBox .logoBox {
    padding: 1rem;
    border-bottom: 1px dashed var(--likeBlue);
}

header .sidebar #sideMenuBox .logoBox span {
    color: var(--likeBlue);
    font-family: var(--rusoOneFonts);
    font-size: 1.5rem;
    text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.28);
}

header .sidebar #sideMenuBox .logoBox span:nth-child(2) {
    color: var(--primary);
    font-family: var(--SairaFonts);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.2);
}

header .sidebar #sideMenuBox ul {
    padding-left: 0px !important;
    list-style: none;
}

header .sidebar #sideMenuBox .mainMenu li {
    width: 100%;
    margin-top: 2px;
}

header .sidebar #sideMenuBox .mainMenu li a {
    position: relative;
    text-decoration: none;
    width: 100%;
    /* background: rgb(241, 97, 97); */
    padding: 9px 10px;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 35px;
}

header .sidebar #sideMenuBox .mainMenu li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid rgb(0, 157, 255);
    transition: all 2s;
}

header .sidebar #sideMenuBox .mainMenu li a:hover::before {
    width: 100%;
}

header .sidebar #sideMenuBox .mainMenu li a.active {
    background: rgb(125, 251, 203);
    color: var(--dimBlack);
}

header .sidebar #sideMenuBox .mainMenu li a:is(:hover) {
    background: rgb(125, 251, 203);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

header .sidebar #sideMenuBox .mainMenu li a .iconSize {
    font-size: 1.3rem;
    padding-right: 8px;
    color: var(--Pink2);
}

/* =========== Sub menu code ======== */
header .sidebar #sideMenuBox .mainMenu .subMenu {
    background-color: rgba(224, 223, 223, 0.637);
    display: none;

}

/* ======== sub menu list style === */
header .sidebar #sideMenuBox .mainMenu .subMenu li a {
    padding-left: 50px;
    border-bottom: 1px solid var(--white);
    line-height: 20px;
}

header .sidebar #sideMenuBox .mainMenu .subMenu li a:hover {

    background-color: var(--primary);
    color: var(--white);

}

/* ============ Hero Section Banner with Extra ================ */
.heroSection {
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* Ensures the section takes full viewport height */
    /* background-color: var(--primary); */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.heroSection .carousel-inner {
    height: 100vh;
    /* Carousel inner container takes the full viewport height */
}

.heroSection .carousel-item img {
    width: 100%;
    /* Makes the image take full width of the carousel */
    height: 100vh;
    /* Makes the image take full height of the viewport */
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
    object-position: center;
    /* Centers the image within the container */
}

.heroSection .TopHeroHeading {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    /* background-color: rgba(102, 51, 153, 0.875); */
    /* rebeccapurple */
}

.heroSection .TopHeroHeading h1 {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    color: #A6AEBF;
    font-weight: 900;
    font-size: 1.4rem;
    padding-bottom: 1rem;
}


/* new added class only styled   */

/* Responsive Horizontal Line */
.horizontal-line {
    width: 20%;
    /* Width is adjustable to fit different designs */
    height: 1px;
    /* Height of the line */
    background-color: #e2e2e2;
    /* Line color (customizable) */
    margin: 5px auto;
    /* Center-aligns and adds top/bottom spacing */
    position: relative;
}

.horizontal-line::before,
.horizontal-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    /* Length of the edge decorations */
    height: 0.5px;
    background-color: #e2e2e2;
}

.horizontal-line::before {
    left: -20px;
    /* Adjust the spacing to the left side of the line */
}

.horizontal-line::after {
    right: -20px;
    /* Adjust the spacing to the right side of the line */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .horizontal-line {
        width: 90%;
        /* Increase width on smaller screens */
        height: 1.5px;
        /* Thinner line for smaller screens */
    }

    .horizontal-line::before,
    .horizontal-line::after {
        width: 10px;
        /* Shorten edge decorations on smaller screens */
    }
}

@media (max-width: 576px) {
    .horizontal-line {
        width: 70%;
        /* Further increase width for very small screens */
        height: 1px;
        /* Even thinner line for very small screens */
    }

    .horizontal-line::before,
    .horizontal-line::after {
        width: 8px;
        /* Further shorten edge decorations */
    }
}


/* end class only  */

.button-24 {
    text-decoration: none;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.button-24:hover,
.button-24:active {
    background-color: initial;
    background-position: 0 0;
    color: var(--primary);
}

.button-24:active {
    opacity: .5;
}

/* ======== new button ===  */
.button-25 {
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    min-height: 40px;
    outline: 0;
    padding: 12px 14px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
}

.button-25:hover,
.button-25:active {
    background: var(--primary);
    background-position: 0 0;
    color: var(--dark);
}

.button-25:active {
    opacity: .5;
}

/* ====== new button ====  */

.button-40 {
    text-decoration: none;
    background-color: #111827;
    border: 1px solid transparent;
    border-radius: 2.1rem;
    box-sizing: border-box;
    color: var(--white);
    cursor: pointer;
    flex: 0 0 auto;
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2rem;
    padding: .4rem 1rem;
    text-align: center;
    text-decoration: none #6B7280 solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
}

.button-40:hover {
    background-color: #374151;
    color: var(--white);
}

.button-40:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .button-40 {
        padding: .5rem 1.5rem;
    }
}

/* // green button  */

.button-40-green {
    text-decoration: none;
    background-color: #28a745;
    border: 1px solid transparent;
    border-radius: 2.1rem;
    box-sizing: border-box;
    color: var(--white);
    cursor: pointer;
    flex: 0 0 auto;
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.2rem;
    padding: .4rem 1rem;
    text-align: center;
    text-decoration: none #6e806b solid;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
}

.button-40-green:hover {
    background-color: #22c849;
    color: var(--white);
}

.button-40-green:focus {
    box-shadow: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .button-40-green {
        padding: .5rem 1.5rem;
    }
}


/* ---- Button ----  */

/* CSS */
.button-29 {
    align-items: center;
    text-decoration: none;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%);
    border: 0;
    border-radius: 30px;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--rusoOneFonts);
    letter-spacing: 0.4px;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow, transform;
    font-size: 18px;
}

.button-29:focus {
    box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
}

.button-29:hover {
    color: var(--white);
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset;
    transform: translateY(-2px);
}

.button-29:active {
    box-shadow: #3c4fe0 0 3px 7px inset;
    transform: translateY(2px);
}

/* shortSection  */

/* Container for the angled background */
.angled-bg {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--Pink));
    /* Gradient background */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    /* Creates the angled shape */
    color: white;
    /* Text color */
}

/* Heading text styling */
.angled-bg h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.angled-bg-both {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgb(19, 4, 48), rgb(7, 193, 187));
    /* Gradient background */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    /* Creates the angled shape */
    color: white;
    /* Text color */
}

/* Heading text styling */
.angled-bg-both h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

/* // for green color  */
.angled-bg-green {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--success), green);
    /* Gradient background */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    /* Creates the angled shape */
    color: white;
    /* Text color */
}

/* Heading text styling */
.angled-bg-green h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}


/* ------------little Bit About Section ------------ */
.littleBitAbout .row .LittleBitAboutImg_box {
    position: relative;
    width: 100%;
    height: auto;
}

.littleBitAbout .row .LittleBitAboutImg_box img {
    width: 100%;
    height: auto;
}

.littleBitAbout .row h2 {
    font-family: var(--SairaFonts);
    font-weight: 700 !important;
    line-height: 1.2;
}

/*--------- initiativeSec Initiative Section for Centers */
.initiativeSec .container .row .card .card-body .tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF5F6D;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FFC371, #FF5F6D);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FFC371, #FF5F6D);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    color: var(--light);
    z-index: 99;
    border-radius: 2px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.initiativeSec .container .row .card .card-body .tag p {
    font-family: var(--rusoOneFonts);
}

/* Transition effect for cards */
.initiativeSec .transition {
    transition: transform 0.3s, box-shadow 0.3s, border 0.3s, background-color 0.3s;
}

.initiativeSec .transition:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* border: 1px dashed green !important; */
    background-color: var(--secondary);
}

/* Badge Styling */
.initiativeSec .badge.bg-success {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
}

/* Icon Styling */
.initiativeSec .icon i {
    color: #28a745;
    /* Bootstrap success color */
}

/* Button Styling */
.initiativeSec .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.initiativeSec .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Responsive Text Alignment for Mobile */
@media (max-width: 576px) {
    .initiativeSec .card-title {
        font-size: 1.1rem;
    }

    .initiativeSec .card-text {
        font-size: 0.95rem;
    }
}



/* styles of our event at index page  */

.eventNewSection {
    background-color: #f8f9fa;
}

.eventNewSection .event-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.eventNewSection .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.eventNewSection .event-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.eventNewSection .status-upcoming {
    background-color: #28a745;
    color: white;
}

.eventNewSection .status-ongoing {
    background-color: #ffc107;
    color: dark;
}

.eventNewSection .status-closed {
    background-color: #dc3545;
    color: white;
}

.eventNewSection .event-image-wrapper {
    height: 250px;
    overflow: hidden;
}

.eventNewSection .event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.eventNewSection .event-card:hover .event-image-wrapper img {
    transform: scale(1.1);
}

.eventNewSection .event-date {
    color: #6c757d;
    margin-bottom: 10px;
}

.eventNewSection .event-title {
    color: #343a40;
    margin-bottom: 15px;
    font-weight: 700;
}

.eventNewSection .event-description {
    color: #6c757d;
    line-height: 1.6;
}

.eventNewSection .learn-more-btn {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease;
}

.eventNewSection .learn-more-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 767px) {
    .eventNewSection .event-card {
        margin-bottom: 20px;
    }

    .eventNewSection .event-image-wrapper {
        height: 200px;
    }
}

/* our center posts our_work */
.centersSec .topbanner {
    width: 100%;
    height: 250px;
}

.centersSec .topbanner h4 {
    font-size: 3rem;
}

.centersSec .topbanner.banner1 {
    background: url('../Images/centers/card.jpg'), no-repeat;
    background-size: cover;
}

.centersSec .topbanner.banner2 {
    background: url('../Images/centers/cles.jpg'), no-repeat;
    background-size: cover;
}

.centersSec .topbanner.banner3 {
    background: url('../Images/centers/cmhw.jpg'), no-repeat;
    background-size: cover;
}

.centersSec .topbanner.banner4 {
    background: url('../Images/centers/cccep.jpg'), no-repeat;
    background-size: cover;
}

.centersSec .topbanner.banner5 {
    background: url('../Images/centers/csei.jpg'), no-repeat;
    background-size: cover;
}

/* for mobile  */
@media screen And (max-width:869px) {
    .centersSec .topbanner h4 {
        font-size: 2rem;
    }
}


.JdfProject .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.JdfProject .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--primary);
}

.JdfProject .card-body i {
    font-size: 1.5rem;
}

.JdfProject .card-body h6 {
    font-size: 1rem;
    color: #333;
}


/* ----------------- Notification Section Display all Notice -----------  */
.AllPostedNotice {
    background-color: var(--light);
    padding-top: 1rem;
}

.AllPostedNotice .NoticeContentBox .card {
    border-radius: 0px !important;

    border: 1px dashed var(--primary);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    height: 300px;
}

.AllPostedNotice .NoticeContentBox .card .card-body marquee {
    height: 270px;
}

/* whatWeDoing classes  */
/* Card Styling */
.whatWeDoing .row .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    border: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
    height: 100%;
    /* Ensures consistent card height */
}

.whatWeDoing .row .card:hover {
    background-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.whatWeDoing .row .card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Aligns content at the top and button at the bottom */
    align-items: center;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    /* Takes full height to align items properly */
}

.whatWeDoing .row .card .card-body img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    padding: 10px;
    object-fit: cover;
    border: 2px solid var(--primary);
    background-color: #fff;
}

.whatWeDoing .row .card .card-body h3 {
    font-family: var(--SairaFonts);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.whatWeDoing .row .card .card-body p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    /* Allows p tag to take up available space for consistent button placement */
}

/* Button Styling */
.whatWeDoing .row .card .button-40 {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary);
    border-radius: 20px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    /* Pushes the button to the bottom */
}

.whatWeDoing .row .card .button-40:hover {
    background-color: var(--dark);
}

/* ----- Jdf modal for membership ----  */
#membershipModal .modal-header {
    background: linear-gradient(95deg, var(--likeBlue), var(--primary));
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

#membershipModal .modal-header h5 {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
}

#membershipModal .modal-body {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

#membershipModal .btn-primary {
    background-color: #2196f3;
    border-color: #2196f3;
}

#membershipModal .btn-primary:hover {
    background-color: #1e88e5;
    border-color: #1e88e5;
}

#membershipModal .btn-success {
    background-color: #4caf50;
    border-color: #4caf50;
}

#membershipModal .btn-success:hover {
    background-color: #43a047;
    border-color: #43a047;
}


/* ------------ Added new section at 23-04-2023 (SDGSec) ----------- */


.SDGSec .row .sdgImage img {
    width: 100%;
}


/* new added 14-11-2024  */
.ourProgramShowName .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 12px 20px rgba(47, 15, 98, 0.15);
}

.ourProgramShowName .card-body {
    transition: background-color 0.3s;
}

.ourProgramShowName .card:hover .card-body {
    background-color: var(--light);
}


/* // new added  */


.ourSchoolShowName .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.ourSchoolShowName .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.ourSchoolShowName .card-header {
    padding: 1.5rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.ourSchoolShowName .btn {
    font-weight: bold;
}

.ourSchoolShowName .rounded-pill {
    border-radius: 50px !important;
}

/* --------------- .Testimonial section ------------- */
.Testimonial span+h4 {
    font-family: var(--SairaFonts);
    font-weight: 700;
}

.Testimonial .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.Testimonial .swiper .swiper-slide {
    position: relative;
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 378px;
    max-height: 378px;
    box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(2px);
}


.Testimonial .swiper .swiper-slide-active {
    filter: blur(0px) !important;
}

.Testimonial .swiper-3d .swiper-slide-shadow-left,
.Testimonial .swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}


.Testimonial .swiper .swiper-slide img {
    display: block;
    width: 100%;
}

.Testimonial .swiper .card {
    width: 300px;
    height: 378px;
    border: 0px !important;
    background-color: #fff;
    padding: 0px !important;
}

.Testimonial .swiper .card .card-body {

    padding: 0px 10px 0px 10px !important;
    border-bottom: 3px solid var(--primary);
}

.Testimonial .swiper .card .card-body img {
    width: 50px;
    height: auto;
    opacity: 0.4;
}

.TestimonialFooterContent {
    position: absolute;
    bottom: 0;
    left: 10;
}

.Testimonial .swiper .card .card-body h6 {
    color: var(--primary);
    font-family: var(--LogoFont);
    line-height: 12px;
    text-transform: capitalize;
}

.Testimonial .swiper .card .card-body h6+p {
    color: var(--likeBlue);
    font-family: var(--rusoOneFonts);
    text-transform: capitalize;
}

/* ===== User Feedback ====  */
.userFeedback .card {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.userFeedback .form-control {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* ------------- Contect us --------  */
.contectUs h3 {
    font-family: var(--SairaFonts);
    font-weight: 600;
}

.contectUs h3+h4 {
    font-family: var(--SairaFonts);
    font-weight: 600;
}

.contectUs .card .card-body h5 {
    font-family: var(--SairaFonts);
    font-weight: 600;
    color: var(--white);
    padding-top: 5px;
    border-radius: 7px;
    padding-bottom: 5px;
    background-color: var(--Pink);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* partner association logo */
.partnerAssoc .GeneratedMarquee img {
    width: 18% !important;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: color-burn;
    margin-right: 20px;
    margin-left: 10px;
}

:disabled {
    background-color: gray !important;
}

/* ------------- Footer section -----------  */
footer {
    background-color: #212529;
    color: var(--white);
}

footer p {
    font-weight: 100 !important;
}

footer .row .socialMedia a {
    font-size: 1.4rem;
    transition: all 0.3s ease;
    color: var(--white);
    padding: 5px;
}

footer .row .socialMedia a:hover {
    color: var(--white);
}

/* ------------ programSec in Program Page -------- *********  */
.programSec .card {
    border-radius: 5px !important;
}

.programSec .card .card-header {
    padding: 5px !important;
    border-radius: 5px !important;
}

.programSec .card .card-header h3 {
    font-family: var(--SairaFonts);
    color: var(--dimBlack);
}

.programSec .card .card-header small {
    font-family: var(--LogoFont);
}


/* ---- apply Program form section with contect us -----  */
.applyProgramForm .card {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.applyProgramForm .card .card-header {
    box-shadow: rgba(248, 146, 67, 0.3) 0px 1px 2px 0px, rgba(247, 156, 44, 0.15) 0px 1px 3px 1px;
}

.applyProgramForm .card .card-header span {
    font-family: var(--SairaFonts);
    font-weight: 600;
    font-size: 1.15rem;
}

.applyProgramForm .card .card-body form ::placeholder,
.contectUs form ::placeholder {
    color: var(--likeBlue);
    font-family: var(--PoppinsFonts);
    font-weight: 500;
}

.applyProgramForm .card .card-body .form-control,
.contectUs form .form-control {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* -------------- ActivitySec Activity Section --------  */

.ActivitySec .gallery img {
    object-fit: contain !important;
    width: 320px;
    height: 312px;
}

.ActivitySec .gallery .img-thumbnail {
    background-color: #0f1f44 !important;
}

/* Adding New Style for ourImpact Section StaticData */
/* Adding New Style for ourImpact Section StaticData */
.ourImpact .addDropShadow {
    filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ourImpact .addDropShadow:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0px 12px 15px rgba(0, 0, 0, 0.4));
}

.ourImpact .StatsBox {
    width: 160px;
    height: 160px;
    background: #001D23;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Heading styling */
.ourImpact .rounded-pill1 {
    font-size: 1.5rem;
    color: #F57C00;
    background: #FFE0B2;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

/* Font Sizes for Stats */
.ourImpact .StatsBox .countData .count {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.ourImpact .StatsBox h4 {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .ourImpact .StatsBox {
        width: 140px;
        height: 140px;
    }

    .ourImpact .rounded-pill1 {
        font-size: 1.3rem;
    }

    .ourImpact .StatsBox .countData .count {
        font-size: 2rem;
    }

    .ourImpact .StatsBox h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ourImpact .StatsBox {
        width: 120px;
        height: 120px;
    }

    .ourImpact .rounded-pill1 {
        font-size: 1.1rem;
    }

    .ourImpact .StatsBox .countData .count {
        font-size: 1.8rem;
    }

    .ourImpact .StatsBox h4 {
        font-size: 0.9rem;
    }
}


/* School Section  */
.SchoolSec .school_name {
    /* color: #b3c8cc;
    font: italic bold Georgia, Serif;
    text-shadow: -4px 2px 0 #535fac;
    font-weight: bold; */
    color: #e0eff2;
    background: #171c42;
    font: italic bold Georgia, Serif;
    text-shadow: -4px 3px 0 #434146, -3px 3px 0 #171c42;
}

/* ourTeam Section  */
/* Existing styles from your provided style.css */
.ourTeam .teamBanner {
    background: #0F2027;
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.ourTeam .teamBanner h1 {
    font-size: 3.6rem;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.ourTeam .container h4 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
    font-size: 3rem;
}

.ourTeam .container .ManagementTeam .card {
    border-radius: 0 !important;
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 2rem !important;
    box-shadow: 0px 4px 8px -2px rgba(9, 30, 66, 0.25), 0px 0px 0px 1px rgba(9, 30, 66, 0.08);
    border-top-width: 4px !important;
    border-top-style: solid !important;
    border-top-color: var(--primary) !important;
}

.ourTeam .container .ManagementTeam .card .card-body .team-info h5 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--likeBlue);
}

.ourTeam .container .ManagementTeam .card .card-body .team-info .team-post {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

.ourTeam .container .ManagementTeam .card .card-body .team-info .team-post span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000e3;
    color: #ffffff;
    font-weight: 580;
    letter-spacing: 0.3px;
    padding: 2px 5px;
    border-radius: 0.2rem;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.25), inset 0px 0px 0px 1px rgba(255, 255, 255, 0.1);
}

/* Styles for Administrative & Management Section */
.ourTeam .container .admin-management {
    padding: 2rem 0;
}

.ourTeam .container .admin-management .ManagementTeam {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.ourTeam .container .admin-management .ManagementTeam .card {
    position: relative;
    border-radius: 1rem !important;
    border-top-left-radius: 1rem !important;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top-width: 0 !important;
}

.ourTeam .container .admin-management .ManagementTeam .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.ourTeam .container .admin-management .ManagementTeam .card .team-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ourTeam .container .admin-management .ManagementTeam .card .team-img img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid var(--primary);
}

.ourTeam .container .admin-management .ManagementTeam .card .card-body {
    padding: 1.5rem;
}

.ourTeam .container .admin-management .ManagementTeam .card .card-body .team-info h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Overlay Effect */
.ourTeam .container .admin-management .ManagementTeam .card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 15, 98, 0.8);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.ourTeam .container .admin-management .ManagementTeam .card:hover .overlay {
    opacity: 1;
}

/* MainInfo Styles */
.ourTeam .container .admin-management .ManagementTeam .card .overlay .mainInfo {
    margin-bottom: 1rem;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition-delay: 0s;
}

.ourTeam .container .admin-management .ManagementTeam .card:hover .overlay .mainInfo {
    transform: translateY(0);
    opacity: 1;
}

.ourTeam .container .admin-management .ManagementTeam .card .overlay .mainInfo h5 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
}

/* Button Styles */
.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn {
    margin: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.ourTeam .container .admin-management .ManagementTeam .card:hover .overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn-website {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn-website:hover {
    background-color: transparent;
    color: var(--primary);
}

.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn-linkedin {
    background-color: #0077b5;
    color: #fff;
    border: 1px solid #0077b5;
}

.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn-linkedin:hover {
    background-color: transparent;
    color: #0077b5;
}

/* Staggered animation for buttons */
.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn-website {
    transition-delay: 0.1s;
}

.ourTeam .container .admin-management .ManagementTeam .card .overlay .btn-linkedin {
    transition-delay: 0.2s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ourTeam .container .admin-management .ManagementTeam {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .ourTeam .container .admin-management .ManagementTeam .card .team-img img {
        height: 200px;
    }

    .ourTeam .container .admin-management .ManagementTeam .card .card-body .team-info h5 {
        font-size: 1.3rem;
    }

    .ourTeam .container .admin-management .ManagementTeam .card .overlay .mainInfo h5 {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .ourTeam .container .admin-management .ManagementTeam {
        grid-template-columns: 1fr;
    }

    .ourTeam .container .admin-management .ManagementTeam .card .team-img img {
        height: 180px;
    }

    .ourTeam .container .admin-management .ManagementTeam .card .overlay .mainInfo h5 {
        font-size: 1rem;
    }

    .ourTeam .container .admin-management .ManagementTeam .card .overlay .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
/* Research Section  */
.ResearchSec .topBanner {
    background: #0F2027;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.ResearchSec .topBanner h1 {
    font-size: 3.6rem;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.ResearchSec .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;

    font-size: 1rem;
    color: #d9e9f9;
    text-align: left;
    background-color: #170420;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

.accordion-button::after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0iIzIxMjUyOSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6IiBzdHlsZT0iJiMxMDsgICAgZmlsbDogI2ZmMTg5NjsmIzEwOyIvPjwvc3ZnPg==) !important;
}

.ResearchSec .accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
    background: lavender;
}

/* Glitch Effect  */
.glitch {
    color: white;
    position: relative;
    width: auto;
    margin: 0 auto;
}

@keyframes noise-anim {
    0% {
        clip-path: inset(22% 0 8% 0);
    }

    5% {
        clip-path: inset(78% 0 15% 0);
    }

    10% {
        clip-path: inset(93% 0 5% 0);
    }

    15% {
        clip-path: inset(18% 0 14% 0);
    }

    20% {
        clip-path: inset(32% 0 46% 0);
    }

    25% {
        clip-path: inset(49% 0 20% 0);
    }

    30% {
        clip-path: inset(73% 0 10% 0);
    }

    35% {
        clip-path: inset(55% 0 29% 0);
    }

    40% {
        clip-path: inset(52% 0 8% 0);
    }

    45% {
        clip-path: inset(24% 0 57% 0);
    }

    50% {
        clip-path: inset(74% 0 1% 0);
    }

    55% {
        clip-path: inset(37% 0 63% 0);
    }

    60% {
        clip-path: inset(51% 0 27% 0);
    }

    65% {
        clip-path: inset(6% 0 27% 0);
    }

    70% {
        clip-path: inset(92% 0 7% 0);
    }

    75% {
        clip-path: inset(96% 0 2% 0);
    }

    80% {
        clip-path: inset(76% 0 24% 0);
    }

    85% {
        clip-path: inset(98% 0 1% 0);
    }

    90% {
        clip-path: inset(11% 0 72% 0);
    }

    95% {
        clip-path: inset(86% 0 2% 0);
    }

    100% {
        clip-path: inset(17% 0 35% 0);
    }
}

.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 red;
    top: 0;
    color: white;
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027);
    overflow: hidden;
    animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
    0% {
        clip-path: inset(75% 0 21% 0);
    }

    5% {
        clip-path: inset(23% 0 53% 0);
    }

    10% {
        clip-path: inset(58% 0 36% 0);
    }

    15% {
        clip-path: inset(24% 0 17% 0);
    }

    20% {
        clip-path: inset(40% 0 17% 0);
    }

    25% {
        clip-path: inset(65% 0 34% 0);
    }

    30% {
        clip-path: inset(83% 0 6% 0);
    }

    35% {
        clip-path: inset(79% 0 2% 0);
    }

    40% {
        clip-path: inset(15% 0 4% 0);
    }

    45% {
        clip-path: inset(55% 0 11% 0);
    }

    50% {
        clip-path: inset(89% 0 8% 0);
    }

    55% {
        clip-path: inset(14% 0 86% 0);
    }

    60% {
        clip-path: inset(74% 0 24% 0);
    }

    65% {
        clip-path: inset(45% 0 43% 0);
    }

    70% {
        clip-path: inset(57% 0 25% 0);
    }

    75% {
        clip-path: inset(90% 0 5% 0);
    }

    80% {
        clip-path: inset(87% 0 11% 0);
    }

    85% {
        clip-path: inset(11% 0 5% 0);
    }

    90% {
        clip-path: inset(45% 0 41% 0);
    }

    95% {
        clip-path: inset(68% 0 24% 0);
    }

    100% {
        clip-path: inset(47% 0 21% 0);
    }
}

.glitch::before {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: 1px 0 blue;
    top: 0;
    color: white;
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #8e2255);
    overflow: hidden;
    animation: noise-anim-2 15s infinite linear alternate-reverse;
}

/* network Section  */
.networkSec .topBanner {
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.networkSec .topBanner h1 {
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

/* network Section  */
.cpginSec .topBanner {
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.cpginSec .topBanner h1 {
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

/* network Section  */
.problemPage .topBanner {
    background-image: linear-gradient(to right, #cb4611 40%, #fc8625 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.problemPage .topBanner h1 {
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}


/* -----  */

.CsrPage .topBanner {
    background-color: #FA8BFF;
    /* background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%); */
    background-image: url("../Images/csr/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.CsrPage .topBanner h1 {
    font-weight: bold;
    font-size: 3.6rem;
    font-weight: bold;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

.aboutJeevanDarshanTopBanner .topBanner {
    background-image: url("../Images/About/AboutBanner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.aboutJeevanDarshanTopBanner .topBanner h1 {
    font-weight: bold;
    font-size: 2.6rem;
    font-weight: bold;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

.jdfLifeWorkshop .topBanner {
    background-image: linear-gradient(45deg, #100d10b4 30%, #762c078c 70%);
    /* background-image: url("../Images/otherBoximg/LifeWorks.webp"); */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.jdfLifeWorkshop .topBanner h1 {
    font-weight: bold;
    font-size: 3.6rem;
    font-weight: bold;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

/* start event OUR EVENT  page banner image  */

.ourEventPage .topBanner {
    background-color: #FA8BFF;
    /* background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%); */
    background-image: url("../Images/event/event_banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.ourEventPage .topBanner h1 {
    font-weight: bold;
    font-size: 3.6rem;
    font-weight: bold;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}



/* event page banner end  */


/* DonationSec  */

.DonationSec .topBanner {
    background-color: #FA8BFF;
    /* background-image: linear-gradient(45deg, #FA8BFF 0%, #2BD2FF 52%, #2BFF88 90%); */
    background-image: url("../Images/donation/banner.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    color: var(--white);
}

.DonationSec .topBanner h3 {
    font-weight: bold;
    font-size: 3.4rem;
    font-weight: bold;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

.DonationSec .mainText {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

.DonationSec .card {
    border: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.DonationSec .card .card-header {
    /* background-image: url("../Images/donation/blob-haikei.svg"); */
    background-image: linear-gradient(45deg, #f66147 0%, #ff8a2b 52%, #2BFF88 90%);
    background-repeat: no-repeat;
    background-size: cover;
}

.DonationSec .card .card-header h4 {
    /* font-family: var(--rusoOneFonts); */
    letter-spacing: 1px;
    /* font-weight: 900; */
    background-image: linear-gradient(76.3deg, rgba(44, 62, 78, 1) 12.6%, rgb(21, 29, 36) 82.8%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* waysSec */
.DonationSec .waysSec .card .card-header {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1015%26quot%3b)' fill='none'%3e%3crect width='1440' height='560' x='0' y='0' fill='rgba(8%2c 54%2c 105%2c 1)'%3e%3c/rect%3e%3cpath d='M886.67 245.64L908.06 245.64L908.06 267.03L886.67 267.03z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M190.96 137.22a30.46 30.46 0 1 0-53.88-28.42z' fill='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M898.43 554.92L924.1 554.92L924.1 574.56L898.43 574.56z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M1350.1 123.24L1372.66 123.24L1372.66 145.8L1350.1 145.8z' stroke='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M961.57 37.54a45.81 45.81 0 1 0 91.1 9.7z' fill='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M1049.89 393.53a18.47 18.47 0 1 0 36.94 0.84z' stroke='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M243.29 141.3a4.18 4.18 0 1 0 4.76-6.87z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M1132.06 440.45a3.45 3.45 0 1 0-2.99-6.21z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M694.17 184.84a36.08 36.08 0 1 0 9.73 71.5z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M68.73 543.48L80.86 543.48L80.86 587.04L68.73 587.04z' stroke='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M630.56 328.94L668.86 328.94L668.86 367.24L630.56 367.24z' fill='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M950.67 153.75L984.98 153.75L984.98 199.46L950.67 199.46z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M608.93 26.79a48.13 48.13 0 1 0-93.29 23.72z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M173.79 458.53L220.01 458.53L220.01 504.75L173.79 504.75z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M500.53 402.08a9.14 9.14 0 1 0-14.8 10.72z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M41 502.98L51.73 502.98L51.73 513.71L41 513.71z' fill='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M768.26 362.05L777.63 362.05L777.63 367.98L768.26 367.98z' stroke='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M1092.97 256.9 a9.81 9.81 0 1 0 19.62 0 a9.81 9.81 0 1 0 -19.62 0z' fill='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M743.09 556.68 a17.51 17.51 0 1 0 35.02 0 a17.51 17.51 0 1 0 -35.02 0z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M96.33 21.71L138.9 21.71L138.9 43.18L96.33 43.18z' stroke='rgba(3%2c 123%2c 11%2c 0.81)'%3e%3c/path%3e%3cpath d='M16.57 446.16a7.48 7.48 0 1 0-14.67-2.94z' fill='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M387.77 69.86L408.88 69.86L408.88 90.97L387.77 90.97z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M1021.18 173.72 a20.76 20.76 0 1 0 41.52 0 a20.76 20.76 0 1 0 -41.52 0z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M30.47 85.24 a46.77 46.77 0 1 0 93.54 0 a46.77 46.77 0 1 0 -93.54 0z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M330.2 254.18L344.26 254.18L344.26 282.58L330.2 282.58z' fill='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M981.99 125.46L993.57 125.46L993.57 169.45L981.99 169.45z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M1019.49 288.62 a15.3 15.3 0 1 0 30.6 0 a15.3 15.3 0 1 0 -30.6 0z' fill='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M260.49 248.26a44.43 44.43 0 1 0-56.41-68.66z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M658.94 23.88L661.6 23.88L661.6 26.54L658.94 26.54z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M1004.12 256.27L1016.36 256.27L1016.36 284.82L1004.12 284.82z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M1240.42 452.74 a48.98 48.98 0 1 0 97.96 0 a48.98 48.98 0 1 0 -97.96 0z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3cpath d='M176.4 172.41a22.28 22.28 0 1 0-18.5 40.53z' stroke='rgba(231%2c 54%2c 53%2c 0.87)'%3e%3c/path%3e%3cpath d='M68.61 71.52a37.05 37.05 0 1 0-19.11-71.59z' stroke='rgba(211%2c 183%2c 20%2c 0.79)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1015'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: cover;
}

.DonationSec .waysSec .card .card-header h3 {
    font-family: var(--rusoOneFonts);
    letter-spacing: 1px;
    font-weight: 900;
    background-image: linear-gradient(76.3deg, rgb(248, 248, 248) 12.6%, rgb(225, 237, 247) 82.8%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ------- Media Screen For Small Screen Mobile ----------- */
@media screen And (max-width:869px) {
    .heroSection .TopHeroHeading {
        /* background-color: rgba(102, 51, 153, 0.875); */
        /* rebeccapurple */
    }

    .heroSection .TopHeroHeading p {
        text-align: center;
        font-family: var(--PoppinsFonts);
        font-weight: 400;
        padding-bottom: 0.5rem;
        letter-spacing: 0.6px;
        font-style: italic;
    }

    /* --------- Notification Section at landing Page -------  */
    .AllPostedNotice .NoticeContentBox .w-75 {
        width: 100% !important;
    }

    /* change custom image size  */
    .my_img-w_70 {
        /*  at large screen  */
        width: 100% !important;
        height: auto;
    }

    .mapIfram {
        width: 300px;
        height: 300px;
    }

    /* ---- apply Program form section -----  */
    .applyProgramForm .w-75 {
        width: 100% !important;
    }

    /* ------------------ActivitySec img at mobile --------- */
    .ActivitySec .gallery img {
        object-fit: contain !important;
        width: 100% !important;
        height: 270px;
    }

    .userFeedback .w-50 {
        width: 100% !important;
    }

    /* partner association logo */
    .partnerAssoc .GeneratedMarquee img {
        width: 120px;
        height: auto;
        margin-right: 20px;
        margin-left: 20px;
    }

    /* Team  */
    .ourTeam .container h4 {
        font-size: 2rem;
        color: var(--dark);
    }

    .ourTeam .teamBanner h1 {
        font-size: 2.3rem;
    }

    /* Research Section  */
    .ResearchSec .topBanner h1 {
        font-size: 2.3rem;

    }

    /* Csr page Section  */
    .CsrPage .topBanner h1 {
        font-size: 2rem;

    }

    /* Donation Page  */
    .DonationSec .topBanner img {
        display: none;
    }

    .DonationSec .topBanner h3 {
        font-size: 2.1rem;
    }

}

/* ----------------- Media Screen for Big Screen -------------- */
@media screen and (min-width:870px) {
    .fs-5 {
        font-size: 1.25rem !important;
    }

    .text-white-50 {
        color: rgba(255, 255, 255, 0.88) !important;
    }

    header .logo {
        font-size: 1.66rem;
        line-height: 28px;
    }

    header .logo span:nth-child(2) {
        line-height: 30px;
    }

    .heroSection .TopHeroHeading h1 {
        /* font-family: var(--SairaFonts); */
        font-weight: 900;
        font-size: 4.4rem;
        letter-spacing: 0.6px;
    }

    .heroSection .TopHeroHeading p {
        text-align: center;
        width: 70%;
        padding-bottom: 0.6rem;
    }

    /* ------------little Bit About Section ------------ */
    .littleBitAbout .row .LittleBitAboutImg_box img {
        width: 75%;
        height: auto;
    }
}

.aboutJDF .flex-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutJDF .flex-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: none;
    border-radius: 10px;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}

.aboutJDF .button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.aboutJDF .button-content i {
    font-size: 24px;
    margin-bottom: 10px;
}

.aboutJDF .button-content span {
    font-size: 16px;
    text-align: center;
}

.aboutJDF .flex-button:hover {
    background-color: #3e8e41;
}

/* ------- new added 29-03-205 -------  */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}