/* Global CSS Variables */
:root {
    --primary-color: #d62e6a;
    /* Primary color */
    --secondary-color: #e297c3;
    /* Secondary color */
    --dark-color: #96204a;
    /* Dark color */
    --background-color: #ffffff;
    /* Background color */
    --font-color: #333333;
    --hover-color: #c21e5a;
    --theme-gradient:linear-gradient(to right, #72006e 0%, var(--primary-color)100%);
    /* Hover color for button/link */
    --s: 130px;
    /* control the size*/
    --c1: #d62e6a;
    --c2: #d62e69f4;
    --c3: #d62e69f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Vollkorn", serif;
    font-optical-sizing: auto;
}

body {
    background-color: var(--background-color);
    color: var(--font-color);
    line-height: 1.6;
}

/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
/** {
  scrollbar-width: thin;
  scrollbar-color: #F81BC7 #F1F1F1;
}*/

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #F1F1F1;
}

*::-webkit-scrollbar-track:hover {
    background-color: #E7E7E7;
}

*::-webkit-scrollbar-track:active {
    background-color: #D8E2E4;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: var(--primary-color);
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #E297C3;
}

*::-webkit-scrollbar-thumb:active {
    background-color: var(--primary-color);
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    /* Background color matching your theme */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it's on top */
}

/* Loader Styles */
.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circle Animation */
.loader-circle {
    width: 80px;
    height: 80px;
    border: 8px solid #ffc0cb;
    /* Outer circle color */
    border-top: 8px solid #ff69b4;
    /* Top color for animation */
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

/* Loader Text */
.loader-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #ff69b4;
    /* Text color matching the theme */
}

/* Loader Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.relative {
    position: relative;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 20px;
    flex-direction: column;

}

.w-50 {
    width: 50%;
}
.w-40 {
    width: 40%;
}

.w-70 {
    width: 70%;
}

.w-30 {
    width: 30%;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-dark {
    color: var(--dark-color);
}

.mb-2m {
    margin-bottom: -10px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 40px;
}

.mt-6 {
    margin-top: 50px;
}

.mt-7 {
    margin-top: 60px;
}

.mt-8 {
    margin-top: 70px;
}

.mt-9 {
    margin-top: 80px;
}

.mt-10 {
    margin-top: 90px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 20px;
}

.mb-4 {
    margin-bottom: 30px;
}

.mb-5 {
    margin-bottom: 40px;
}

.mb-6 {
    margin-bottom: 50px;
}

.mb-7 {
    margin-bottom: 60px;
}

.mb-8 {
    margin-bottom: 70px;
}

.mb-9 {
    margin-bottom: 80px;
}

.mb-10 {
    margin-bottom: 90px;
}
.mr-2{
    margin-right: 10px;
}

.mr-3 {
    margin-right: 20px;
}

.mr-4 {     
    margin-right: 30px;
}

.mr-5 {
    margin-right: 40px;
}

.mr-6 {
    margin-right: 50px;
}
.pt-2 {
    padding-top: 10px;
}

.pt-3 {
    padding-top: 20px;
}

.pt-4 {
    padding-top: 30px;
}

.pt-5 {
    padding-top: 40px;
}

.pt-6 {
    padding-top: 50px;
}

.pt-7 {
    padding-top: 60px;
}

.pt-8 {
    padding-top: 70px;
}

.pt-9 {
    padding-top: 80px;
}

.pt-10 {
    padding-top: 90px;
}

.pb-2 {
    padding-bottom: 10px;
}

.pb-3 {
    padding-bottom: 20px;
}

.pb-4 {
    padding-bottom: 30px;
}

.pb-5 {
    padding-bottom: 40px;
}

.pb-6 {
    padding-bottom: 50px;
}

.pb-7 {
    padding-bottom: 60px;
}

.pb-8 {
    padding-bottom: 70px;
}

.pb-9 {
    padding-bottom: 80px;
}

.pb-10 {
    padding-bottom: 90px;
}

.font-b {
    font-weight: 700;
}

.px-5 {
    padding-left: 40px;
    padding-right: 40px;
}

.font-200 {
    font-weight: 200;
}

.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.py-5 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.pb-5{
    padding-bottom: 40px;
}
.py-8{
    padding-top: 80px;
    padding-bottom: 80px;
}

img {
    vertical-align: middle;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: normal;
}

h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: normal;
}

h3 {
    font-size: 24px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

h5 {
    font-size: 18px;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    font-weight: 400;
}

/* Navbar Styles */
.navbar {
    width: 100%;
    background-color: var(--background-color);
    border-bottom: 2px solid var(--dark-color);
    padding: 10px 50px;
    position: fixed;
    z-index: 1000;
}

.container {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.container2 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Logo Styles */
.logo img {
    height: 50px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease-in;
}

.nav-item {
    color: var(--dark-color);
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease-in;
}

.nav-links .active {
    color: var(--primary-color);
    /* Primary color */
    border-bottom: 2px solid var(--primary-color);
}

.nav-item:hover {
    color: var(--primary-color);
    /* Primary color on hover */
}

/* Donate Button Styles */
.donate-btn {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 1px 4px 8px rgba(255, 40, 169, 0.404);
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.donate-btn a{
    color: white;
}

.donate-btn:hover {
    background-color: var(--hover-color);
    box-shadow: 0 4px 8px rgba(255, 94, 191, 0.2);
    transform: translateY(-1px);
}

.donate-btn2 {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 46, 171, 0.497);
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.donate-btn2:hover {
    background-color: rgba(255, 255, 255, 0.971);
    box-shadow: 1px 4px 8px rgba(255, 255, 255, 0.466);
    transform: translateY(-2px);
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    border: none;
    background: white;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
    color: var(--dark-color);
}

.hamburger>i.close {
    display: none;
}

.hamburger.active>i.close {
    display: block;
}

.hamburger.active>i.open {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu {
    opacity: 0;
    z-index: -1;
    position: fixed;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    /* Initially hidden */
    transform: translateY(-10px);
    padding: 5px;
    top: 72px;
    display: flex;
    flex-direction: column;
    left: 0;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.848);
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--dark-color);
    border-bottom: 2px solid var(--dark-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* Main */

main {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 72px 0px 0px 0px;
}

/* Hero Section */
.hero-section {
    width: 100%;
    min-height: 104vh;
    padding: 0px 20px;
    display: flex;
    color: white;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/banner2.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    clip-path: polygon(100% 0%, 0% 0%, 0.00% 86.85%, 2.00% 86.53%, 4.00% 86.19%, 6.00% 85.83%, 8.00% 85.46%, 10.00% 85.10%, 12.00% 84.74%, 14.00% 84.39%, 16.00% 84.07%, 18.00% 83.78%, 20.00% 83.53%, 22.00% 83.33%, 24.00% 83.17%, 26.00% 83.06%, 28.00% 83.01%, 30.00% 83.01%, 32.00% 83.06%, 34.00% 83.18%, 36.00% 83.34%, 38.00% 83.55%, 40.00% 83.80%, 42.00% 84.09%, 44.00% 84.41%, 46.00% 84.76%, 48.00% 85.12%, 50.00% 85.49%, 52.00% 85.85%, 54.00% 86.21%, 56.00% 86.55%, 58.00% 86.87%, 60.00% 87.15%, 62.00% 87.39%, 64.00% 87.59%, 66.00% 87.74%, 68.00% 87.84%, 70.00% 87.89%, 72.00% 87.88%, 74.00% 87.81%, 76.00% 87.69%, 78.00% 87.52%, 80.00% 87.30%, 82.00% 87.04%, 84.00% 86.74%, 86.00% 86.42%, 88.00% 86.07%, 90.00% 85.71%, 92.00% 85.34%, 94.00% 84.97%, 96.00% 84.62%, 98.00% 84.28%, 100.00% 83.97%);
}
.t-just{
    text-align: justify;
}
.hero-design {
    position: absolute;
    background-color: #e2e2e28f;
    width: 100%;
    height: 550px;
    bottom: 0;
    clip-path: polygon(100% 0%, 0% 0%, 0.00% 86.85%, 2.00% 86.53%, 4.00% 86.19%, 6.00% 85.83%, 8.00% 85.46%, 10.00% 85.10%, 12.00% 84.74%, 14.00% 84.39%, 16.00% 84.07%, 18.00% 83.78%, 20.00% 83.53%, 22.00% 83.33%, 24.00% 83.17%, 26.00% 83.06%, 28.00% 83.01%, 30.00% 83.01%, 32.00% 83.06%, 34.00% 83.18%, 36.00% 83.34%, 38.00% 83.55%, 40.00% 83.80%, 42.00% 84.09%, 44.00% 84.41%, 46.00% 84.76%, 48.00% 85.12%, 50.00% 85.49%, 52.00% 85.85%, 54.00% 86.21%, 56.00% 86.55%, 58.00% 86.87%, 60.00% 87.15%, 62.00% 87.39%, 64.00% 87.59%, 66.00% 87.74%, 68.00% 87.84%, 70.00% 87.89%, 72.00% 87.88%, 74.00% 87.81%, 76.00% 87.69%, 78.00% 87.52%, 80.00% 87.30%, 82.00% 87.04%, 84.00% 86.74%, 86.00% 86.42%, 88.00% 86.07%, 90.00% 85.71%, 92.00% 85.34%, 94.00% 84.97%, 96.00% 84.62%, 98.00% 84.28%, 100.00% 83.97%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.5;
    z-index: -1;
}


.hero-section h4 {
    margin-bottom: 20px;
}

.hero-section button {
    font-size: 16px;
}

/* About Section */
.about-section {
    width: 100%;
    min-height: 80vh;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-color: var(--background-color);
    color: #000000;
}

.abt-h {
    display: none;
}
.pagination{
    padding: 30px 10px;
}
.pagination ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

.pagination ul li {
    display: inline;
    margin: 0 5px;
}

.pagination ul li a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.pagination ul li a.active,
.pagination ul li a:hover {
    background-color: var(--primary-color);
    color: white;
}

.about-section .about-1 {
    width: 40%;
    position: relative;
    z-index: 1;
}

.about-section .about-2 {
    width: 45%;
}

.about-section .about-1 .about-img-1 {
    width: 95%;
    clip-path: url("#blob4");
    transform: translate(-25px, -20px);

}

.about-section .about-1 .about-img-2 {
    width: 80%;
    clip-path: url("#blob3");
    position: absolute;
    right: -15px;
    bottom: -25px;
    border: 1px solid var(--primary-color);
}

.about-section .about-2 .counter {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

.about-section .about-2 .counter span {
    font-size: 40px;
    color: #333;
    position: relative;
    line-height: 1;
}

.about-section .about-2 .counter span:before {
    content: "+";
    position: absolute;
    right: -16px;
    top: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.about-section .about-2 .counter i {
    font-size: 13px;
    color: #808080;
    font-style: normal;
}

.facts_counter {
    display: flex;
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 20px;
}

/* Magazines */
.pattern1 {
    background: url(../images/pattern1.jpg);
}
.pattern2{
    background: url("../images/pattern2.jpg") no-repeat center center/cover;
}
.pattern2::before {
    background-color: rgba(255, 255, 255, 0.711);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}

.double_title {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.double_title>i {
    font-size: 48px;
    position: absolute;
    font-style: normal;
    line-height: 0.9;
    color: #dadada;
    font-weight: 800;
    left: 0;
    width: 100%;
    top: -20px;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

section:hover .double_title i {
    top: -36px;
}
.team-tit>i {
    font-size: 24px;
    position: absolute;
    font-style: normal;
    line-height: 0.9;
    color: #dadada;
    font-weight: 800;
    left: 0;
    width: 100%;
    top: -9px;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}
.t-section:hover .team-tit i {
    top: -16px;
}
.z-1 {
    z-index: 1;
}
/* .eve-overlay{
    background: linear-gradient(to right, #72006e 30%, var(--primary-color)100%);
    width: fit-content;
    margin-left: auto;
    font-size: 32px;
    margin-top: -135px;
    position: relative;
    margin-right: 109px;
    padding: 20px 70px 20px 20px;
    z-index: 1;
    border-radius: 100px 0 0 100px;
}
.eve-overtext{
        position: absolute;
        right: 0;
        top: 0;
        background: white;
        width: 50px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
}

.eve-overtext span{
        writing-mode: vertical-lr;
        color: var(--primary-color);
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
} */
.double_title h2 {
    font-size: 70px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    font-stretch: extra-expanded;
    line-height: 1;
    position: relative;
    z-index: 1;
    margin-top: -20px;
}

.magasec {
    width: 100%;
    min-height: 50vh;
    position: relative;
    padding-bottom: 50px;
    /* min-height: 70vh; */
}

.magasecmain {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    place-items: center;
    width: 100%;
    min-height: 50vh;
    padding: 0px 30px 100px 30px;
}
.donate-camp{
    border: 1px solid white;
    padding: 4px 7px;
    border-radius: 50px;
    box-shadow:     1px 1px 5px #ff00a29d;
    background-color: var(--primary-color);
    color: white;
}
.swiper {
    width: 100%;
    height: 100%;
    padding: 50px 20px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #d4d4d4;
}

.swiper-slide {
    text-align: center;
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* frame kind of border */
.card {
    width: 100%;
    height: 100%;
    padding: 10px 10px 0px 10px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.051);
    min-height: 300px;
    position: relative;
    border: 1px solid white;
    box-shadow: 0 0 20px #00000029;
}

.card-img {
    width: 100%;
    max-height: 460px;
    overflow: hidden;
}

.card img {
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 10px 0px;
    position: relative;
    text-align: justify;
    background-color: rgba(255, 255, 255, 0.136);
}

.card-month {
    position: absolute;
    top: -20px;
    left: 50%;
    border-radius: 50px;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid black;
    color: black;
    font-weight: bold;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
}

.card-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.card-buttons {
    display: flex;
    justify-content: flex-start;
}

.card-buttons button,
.card-buttons a {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card-buttons button {
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 1px 4px 8px rgba(255, 40, 169, 0.404);
}

.card-buttons button:hover {
    background-color: var(--hover-color);
    box-shadow: 0 4px 8px rgba(255, 94, 191, 0.627);
    transform: translateY(-1px);
}

.card-buttons a {
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 1px 4px 8px rgba(255, 40, 169, 0.404);
}

.card-buttons a:hover {
    box-shadow: 1px 4px 8px rgba(237, 0, 142, 0.4);
    transform: translateY(-1px);
}

/* EVENTS SEction */

.events-section {
    width: 100%;
    min-height: 100vh;
    padding: 10px;
    display: flex;
    justify-content: center;
    color: white;
    align-items: center;
    gap: 20px;
    background-size: cover;
}

.flex{
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}
.flex button{
    font-size: 16px;
}
.text-primary2{
    color: #ff2f78;
}
.events-section>div{
    width: 45%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:20px;
    flex-direction: column;
}
.left-eve h3{
    color: white;
    font-size: 52px;
    width: 100%;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}
.left-eve .eve-h span{
    font-size: 52px;
}
.left-eve span{
    font-size: 20px;
}
.left-eve p{
    font-size: 18px;
}
.events-section::before {
    background-color: rgba(0, 0, 0, 0.793);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
}
.left-eve h2{
        font-size: 90px;
        font-weight: 700;
}
.events-form{
    max-width: 70%;
    position: relative;
    width: 100%;
    transition: all 0.3s ease-in-out;
    padding: 30px 20px;
    margin-top: -40px;
    border-radius: 0px 10px 10px 0px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.4);
    background-color: var(--background-color);
}
.eve-form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease-in-out;
    width: 100%;
}
.blog-item {
    padding: 20px;
    border: 2px solid rgba(140, 82, 255, .2);
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.blog-item-img {
    border-radius: 15px;
    overflow: hidden;
}
.blog-item-img img {
    border-radius: 12px;
    max-width: 100%;
}
.event-wrap-cont{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    align-items: center;
    gap: 20px;
    width: 100%;
}
.event-wrap-cont>div{
    width: 30%;
}
.blog-date::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 8px;
    transform: skewX(-10deg);
    z-index: -1;
}
.blog-item h4{
    margin: 10px 0px;
    color: black;
}
.con-h{
    position: absolute;
    top: 16%;
    font-size: 130px;
    left: 9%;
    z-index: 0;
    color: #eeeeee45;
}
.blog-date {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
    color: white;
    padding: 0px 10px;
    box-shadow: 0 0 15px 0 rgba(219, 219, 219, 0.4);

    z-index: 1;
}
.eve-form input{
    width: 100%;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: none;
    color: black;
    outline: none;
    font-size: 18px;
}
.eve-form button{
    background:linear-gradient(to right, #72006e 0%, var(--primary-color)100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 18px;
    cursor: pointer;
}
.eve-form-head{
    display: flex;
    background-color: rgba(238, 238, 238, 0.582);
    align-items: center;
    border-radius: 50px;
}
.eve-form-head i{
padding: 10px 10px 10px 20px;
color: var(--primary-color);
border-radius: 50px;
font-size: 16px;
}
.row-g{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.container-g{
    max-width: 90%;
    width: 100%;
}
.events-form:hover{
    box-shadow: 0 0 20px 5px rgba(108, 108, 108, 0.2);
}
.events-form:hover .eve-form input{
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.2);
}
.events-form:hover .eve-form button{
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.2);
}
.choose-img::before {
    content: "";
    position: absolute;
    left: 55px;
    top: 30px;
    background: var(--primary-color);
    border-radius: 20px;
    width: 70%;
    height: 88%;
    transform: rotate(-8deg);
    z-index: -1;
}

.home-2 .hero-img::before {
    content: "";
    position: absolute;
    right: 20px;
    top: -15px;
    max-width: 480px;
    background: linear-gradient(to right, #72006e 30%, var(--primary-color)100%);
    width: 65%;
    height: 100%;
    transform: rotate(10deg);
    border-radius: 50px;
    z-index: -1;
} 
.home-2 .hero-img{
    max-width: 400px;
    text-align: end;
}
.home-2 .hero-img img{
    border-radius: 15px 100px 15px 100px;
    width: 90%;
    max-width: 100%;
    height: auto;
}
.sec-eve img{
    border-radius: 50%;
    border: 10px solid white;
    width: 100%;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.sec-eve .img-3{
    position: absolute;
    right: -30px;
    top: -30px;
    width: 200px;
    box-shadow: none;
}
.sec-eve2{
    flex: 1;
}
.choose-img{
    position: relative;
    text-align: end;
}
.sec-eve2 img{
    max-width: 80%;
    border-radius: 20px;
    height: auto;
}
.events2-section{
    width: 100%;
    min-height: 60vh;
    display: flex;
    padding: 80px 0px;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.site-shadow-text {
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 0;
    font-size: 100px;
    font-weight: bold;
    color: #eee;
    text-transform: uppercase;
    z-index: -1;
}
.site-shadow-text2 {
    position: absolute;
    right: 10%;
    top: 70px;
    line-height: 0;
    font-size: 100px;
    font-weight: bold;
    color: #eee;
    text-transform: uppercase;
    z-index: -1;
}
.events2-section>div{
width: 40%;
}
.sec-eve .img-2 {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 280px;
    box-shadow: none;
}
.sec-eve-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.num{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.more-eve{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    padding-bottom: 70px;
    background-color: rgba(241, 240, 240, 0.303);
    color: var(--primary-color);
    font-weight: 600;
}
.more-eve>span{
    font-size: 24px;
    text-transform: uppercase;
}
.more-eve h3{
    font-size: 48px;
    font-weight: 700;
    color: black;
    text-align: center;
    line-height: 1;
}

/* Give me Design for inner span h3 p ul in .sec-eve-content */
.sec-eve-content>span{
    font-size: 24px;
    line-height: 1;
    color: var(--primary-color);
    font-weight: 600;
}
.sec-eve-content h3{
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
}
.choose-item-info {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    flex: 1;
}
.choose-item-icon img {
    width: 35px;
    filter: brightness(0) invert(1);
}
.choose-item-icon {
    width: 60px;
    height: 60px;
    line-height: 55px;
    border-radius: 50px;
    background: var(--primary-color);
    text-align: center;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}
.choose-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.choose-content-wrap {

}

.sec-eve-content p{
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}
.sec-eve-content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;

}
.sec-eve-content ul li{
    border-bottom: 1px solid rgb(217, 217, 217);
    font-size: 22px;
    font-weight: 600;
}
.sec-eve-content ul li span{ 
color: var(--primary-color);
}
.sec-eve-content button{
    width: 200px;
    height: 60px;
    border-radius: 50px;
    border: none;
    background: var(--theme-gradient);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.sec-eve-content button:hover{
    box-shadow: 0 0 10px 5px rgba(228, 0, 156, 0.892);
}

/* .events-section .double_title>i {
    font-size: 48px;
    top: -20px;
}

.events-section:hover .double_title i {
    top: -34px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item::before {
    content: "";
    position: absolute;
    border-left: 3px dashed var(--primary-color);
    left: 35px;
    top: 50%;
    height: 100%;
    z-index: 0;
}

.schedule-item:last-child::before {
    display: none;
}

.schedule-count {
    width: 70px;
    height: 70px;
    line-height: 68px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    position: relative;
    color: white;
    box-shadow: 0 0 20px #00000029;
}

.schedule-content-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 20px #00000029;
}

.schedule-img img {
    width: 280px;
    height: auto;
    border-radius: 15px;
}

.schedule-img {
    overflow: hidden;
    border-radius: 15px;
}

.schedule-content {
    flex: 1;
}

.schedule-meta {
    margin-bottom: 15px;
}

.schedule-meta ul {
    display: flex;
    gap: 20px;
}

.schedule-meta ul li {
    color: var(--primary-color);
    font-weight: 500;
}

.schedule-meta ul li i {
    margin-right: 5px;
}

.schedule-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid gray;
} */





/* BeadCrumb */
.breadcrumb {
    background: url(../images/pattern3.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    min-height: 170px;
    display: flex;
    background-size: 100%;
    background-position: center bottom;
    justify-content: space-between;
    padding: 0 10%;
    align-items: center;
    background-color: #222222;
}
.white{
    color: white;}
.simpleSlide_Text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
/* Breadcrumb Links */
.breadcrumb a {
    color: #bd0075;
    /* Primary brand color (Purple) */
    text-decoration: none;
    font-weight: 300;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c16fa4;
    /* Slightly lighter purple */
}

/* Breadcrumb Separator */
.breadcrumb span.separator {
    color: #888;
    /* Gray separator */
    font-weight: 600;
    margin-right: 10px;
}

/* Active Link Styling */
.breadcrumb .active {
    color: #ff0080;
    /* Darker purple for active link */
    font-weight: 700;
}
.t-center{
    text-align: center;
}
.event-main{
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* PDF MODAL */
.modal {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}


.modal-content {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    padding: 0px 10px;
    cursor: pointer;
}

#donationForm{
    max-width: 400px;
    margin: 0 auto;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

#donationForm label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

#donationForm input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.pay-now-btn {
    width: 100%;
    padding: 10px;
    margin-top:10px;
    background-color: #ff0084;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.privacy-policy-container 
{
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy-container h1{
    margin-bottom: 10px;
    text-align: center;
}

.privacy-policy-container hr{
    margin: 10px 0;
}

.pay-now-btn:hover {
    background-color: #ca006f;
}

/* Blogs */
.blog-section{
    display: flex;
    flex-direction:column;
    font-size: 1rem;
    justify-content: center;
    padding: 10px;
    align-items: center;
    min-height: 10vh;
}
.blog-section5{
    display: flex;
    font-size: 1rem;
    justify-content: center;
    padding: 10px;
    gap: 40px;
    min-height: 100vh;
}
.blog-section2{
    display: flex;
    flex-direction:column;
    font-size: 1rem;
    justify-content: center;
    padding: 10px;
    max-width: 60%;
    min-height: 100vh;
}
.pt-50{
    padding-top: 50px;
}
.blog-section3{
    max-width: 30%;
    margin-top: 30px;
}
.blog-section3 .blog-sectionside img{
max-width: 200px;
margin-bottom: 5px;
}
.blog-section3 .blog-sectionside .read-more2{
    margin-bottom: 30px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.blog-section3 .blog-sectionside .read-more2 a{
    transition: all 0.3s ease;
}
.blog-section3 .blog-sectionside .read-more2 a:hover{
    scale: 1.1;
}
.blog-card {
    display: flex;
    flex-direction: column;
    margin: 1rem auto;
    box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.6%;
    background: #fff;
    line-height: 1.4;
    width: 100%;
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
  }
  .blog-card a {
    color: inherit;
  }
  .blog-card a:hover {
    color: var(--primary-color);
  }
  .blog-card:hover .photo {
    transform: scale(1.3) rotate(3deg);
  }
  .blog-card .meta {
    position: relative;
    z-index: 0;
    height: 200px;
  }
  .blog-card .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s;
  }
  .blog-card .details,
  .blog-card .details ul {
    margin: auto;
    padding: 0;
    list-style: none;
  }
  .blog-card .details {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    margin: auto;
    transition: left 0.2s;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    width: 100%;
    font-size: 0.9rem;
  }
  .blog-card .details a {
    -webkit-text-decoration: dotted underline;
            text-decoration: dotted underline;
  }
  .blog-card .details ul li {
    display: inline-block;
  }
  .blog-card .details .author:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "";
  }
  .blog-card .details .date:before {
    font-family: FontAwesome;
    margin-right: 10px;
    content: "";
  }
  .blog-card .details .tags ul:before {
    font-family: FontAwesome;
    content: "";
    margin-right: 10px;
  }
  .blog-card .details .tags li {
    margin-right: 2px;
  }
  .blog-card .details .tags li:first-child {
    margin-left: -4px;
  }
  .blog-card .description {
    padding: 1rem;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  .blog-card .description h1,
  .blog-card .description h2 {
    font-family: Poppins, sans-serif;
  }
  .blog-card .description h1 {
    line-height: 1;
    margin: 0;
    font-size: 1.7rem;
  }
  .blog-card .description h2 {
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #a2a2a2;
    margin-top: 5px;
  }
  .blog-card .description .read-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .blog-card .description .read-more a {
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding: 10px;
    box-shadow: inset 0 0 0 1px rgba(228, 228, 228, 0.749);
  }
  .blog-card .description .read-more a:after {
    content: "";
    font-family: FontAwesome;
    margin-left: -10px;
    opacity: 0;
    vertical-align: middle;
    transition: margin 0.3s, opacity 0.3s;
  }
  .blog-card .description .read-more a:hover:after {
    margin-left: 5px;
    opacity: 1;
  }
  .blog-card p {
    position: relative;
    margin: 1rem 0 0;
  }
  .blog-card p:first-of-type {
    margin-top: 1.25rem;
  }
  .blog-card p:first-of-type:before {
    content: "";
    position: absolute;
    height: 5px;
    background: var(--primary-color);
    width: 35px;
    top: -0.75rem;
    border-radius: 3px;
  }
  .blog-card:hover .details {
    left: 0%;
  }
  @media (min-width: 640px) {
    .blog-card {
      flex-direction: row;
      max-width: 95%;
    }
    .blog-card .meta {
      flex-basis: 40%;
      height: auto;
    }
    .blog-card .description {
      flex-basis: 60%;
    }
    .blog-card .description:before {
      transform: skewX(-3deg);
      content: "";
      background: #fff;
      width: 30px;
      position: absolute;
      left: -10px;
      top: 0;
      bottom: 0;
      z-index: -1;
    }
    .blog-section .blog-card:nth-child(even) {
      flex-direction: row-reverse;
    }
    .blog-section .blog-card:nth-child(even) .description:before {
      left: inherit;
      right: -20px;
      transform: skew(3deg);
    }
    .blog-section .blog-card:nth-child(even) .details {
      padding-left: 25px;
    }
  }
  .sbloghead{
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  .sbloghead h1{
    width: 100%;
    margin-bottom: -5px;
    text-align: start;
  }
  .sbloghead span{
    width: 100%;
    color: black;
    
  }
  .w-full{
    width: 100%;
  }
  .sblogimg{
    width: 100%;
    height: 100%;
    max-height: 500px;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .sblogdetail{
    margin-top: 30px;
  }
  .sblogdetail p{
    text-align: justify;
    margin-bottom: 4px;
  }
  .sblogdetail ul{
    list-style: disc;
    margin-bottom: 4px;
    margin-left: 15px;
  }
/* Causes Section */
.causes-section {
    width: 100%;
    min-height: 70vh;
    padding: 60px 40px;
}

.causes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.bar_title {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 20px;
    position: relative;
    margin: 0 0 30px;
    color: #333;
}

.bar_title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.product-card {
    background-color: var(--background-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card__image {
    height: 250px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 20px;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-card__description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-card__btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card__btn:hover {
    background-color: #c71772;
    box-shadow: 0 4px 8px rgba(255, 75, 183, 0.478);
}

/* Gallery */
.gallery-sec {
    width: 100%;
    min-height: 100vh;
    padding: 40px;
}

.gallery-sec h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}

.gallery-img {
    width: 100%;
    border-radius: 10px;
    max-height: 300px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover img {
    transform: scale(1.05);
}

.gallery-container h3 {
    text-align: center;
    margin-top: 10px;
}

/* Message */
.message-section {
    width: 100%;
    min-height: 100vh;
}
.message-section2 {
    width: 100%;
    min-height: 40vh;
}

.message-container {
    width: 100%;
    position: relative;
    display: flex;
}
.message-container12 {
    width: 100%;
    background:
        conic-gradient(from 75deg, var(--c1) 15deg, var(--c2) 0 30deg, #0000 0 180deg,
            var(--c2) 0 195deg, var(--c1) 0 210deg, #0000 0) calc(0.5*var(--s)) calc(0.5*var(--s)/0.577),
        conic-gradient(var(--c1) 30deg, var(--c3) 0 75deg, var(--c1) 0 90deg, var(--c2) 0 105deg,
            var(--c3) 0 150deg, var(--c2) 0 180deg, var(--c3) 0 210deg, var(--c1) 0 256deg,
            var(--c2) 0 270deg, var(--c1) 0 286deg, var(--c2) 0 331deg, var(--c3) 0);
    background-size: var(--s) calc(var(--s)/0.577);
    position: relative;
    display: flex;
    align-items: center;
}

.message-box1 {
    background:
        conic-gradient(from 75deg, var(--c1) 15deg, var(--c2) 0 30deg, #0000 0 180deg,
            var(--c2) 0 195deg, var(--c1) 0 210deg, #0000 0) calc(0.5*var(--s)) calc(0.5*var(--s)/0.577),
        conic-gradient(var(--c1) 30deg, var(--c3) 0 75deg, var(--c1) 0 90deg, var(--c2) 0 105deg,
            var(--c3) 0 150deg, var(--c2) 0 180deg, var(--c3) 0 210deg, var(--c1) 0 256deg,
            var(--c2) 0 270deg, var(--c1) 0 286deg, var(--c2) 0 331deg, var(--c3) 0);
    background-size: var(--s) calc(var(--s)/0.577);
    color: var(--background-color);
    padding: 20px;
    width: 70%;
    padding-right: 20%;
    min-height: 400px;
}
.message-box12 {
    color: var(--background-color);
    padding: 20px;
    width: 50%;
    min-height: 400px;
}
.message-box12 span{
font-size: 26px;
font-weight:800;
}

.message-box2 {
    top: 50px;
    max-width: 50%;
    position: absolute;
    right: 0;
    max-height: 400px;
    overflow: hidden;
    border-left: 15px solid #FFF;
    border-top: 15px solid #FFF;
    border-bottom: 15px solid #FFF;
    box-shadow: 0 0 17px rgb(0 0 0 / 17%);
}
.counter-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    background: white;
    padding: 15px;
    width: 45%;
    border-radius: 15px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    z-index: 1;
}
.message-box21{
    padding: 0px 30px;
    max-width: 50%;
}
.counter-info{
    margin-bottom: -10px;
}
.counter-info span{
    font-size: 22px;
    font-weight: 700;
}
.counter-content{
    flex: 1;
}
.counter-content h4{
    font-size: 16px;
    font-weight: 500;
}
.counter-box .icon {
    width: 70px;
    height: 70px;
    line-height: 60px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: white;
    background: var(--theme-gradient);
    position: relative;
}
.counter-box .icon::before {
    content: "";
    position: absolute;
    left: -7px;
    top: -7px;
    bottom: -7px;
    right: -7px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    transition: all .5s ease-in-out;
    z-index: -1;
}
.message-box2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.counter-box .icon i{
    width: 42px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}
.sci img{
    scale: 1.7;
}
.counter-box .icon img {
    width: 42px;
    filter: brightness(0) invert(1);
}
.counter-box .counter-info {
    display: flex;
    align-items: center;
    gap: 2px;
}

.message-container2 {
    width: 100%;
    min-height: 400px;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    padding-top: 90px;
    background-color: #2c2c2c;
}

.message-container2 h2 {
    text-align: center;
}

.message-container2 p {
    text-align: center;
    max-width: 80%;
    font-weight: 300;
    color: #D8E2E4;
}

.message-container2 button {
    font-size: 16px;
}

/* TEAM SECTION */
.team-section {
    width: 100%;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}


.team-section span {
    color: var(--background-color);
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 50px;
}

.team-body {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.team-container {
    max-width: 300px;
    width: 50%;
    position: relative;
}

.team-img {
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #FFF;
    box-shadow: 0 0 10px rgb(0 0 0 / 40%);
    margin-top: 0;
    position: absolute;
    left: 52%;
    max-width: 250px;
    max-height: 250px;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 10px;
    transform: translateX(-50%);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease-in-out;
}

.team-info {
    text-align: center;
    margin-top: 120px;
    color: #FFF;
    width: 300px;
    height: 300px;
    background: rgb(37, 37, 37);
    z-index: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 160px 30px 0;
}

.team-info:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -120px;
    width: 260px;
    height: 260px;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease-in-out
}

.team-info:hover:before {
    bottom: -120px;
    width: 270px;
    height: 270px;
}

.team-info .team-social {
    color: white;
}

.team-info h3 {
    font-size: 28px;
}
/* MISSION & VISION */
.mission-vision {
    width: 100%;
    padding: 0px 5%;
    min-height: 50vh;
}
.vis{
    height: 100%;
    width: 1%;
    background-color: black;
}
.mission-vision .mission{
width: 48%;
display: flex;
justify-content: center;
text-align: center;
align-items: center;
flex-direction: column;
gap: 20px;
}
.mission-vision .vision{
width: 48%;
display: flex;
justify-content: center;
text-align: center;
align-items: center;
flex-direction: column;
gap: 20px;
}

/* LAST SECTION */
.last-section {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 40px;
    margin: 0px auto;
}

.last-section span {
    color: #565656;
}

.last-section p {
    font-size: 28px;
}

form.subscribeForm {
    display: flex;
    margin-top: 10px;
    background: #212121;
    padding: 15px;
    border-radius: 5px;
    column-gap: 10px;
    width: 70%;
    color: white;
}

form.subscribeForm input {
    background: #5a5858;
    height: 51px;
    border: 0;
    border-radius: 5px;
    padding: 10px 20px;
    color: #FFF;
    flex: auto;
}

form.subscribeForm input::placeholder {
    color: #FFF;
}

form.subscribeForm button {
    margin: -15px -15px -15px 10px;
    border-radius: 0 5px 5px 0;
    background: var(--primary-color);
    padding: 0 20px;
    min-width: 190px;
    cursor: pointer;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
}

/* Mission and Vision CSS */


/* Footer */
.footer-container {
    width: 100%;
    padding: 30px 20px;
    background-color: var(--background-color);
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    box-shadow: inset 3px 4px 12px 2px rgba(255, 94, 191, 0.2);
    margin: 0px auto;
}

.footer-container .footer-1 {
    width: 40%;
}

.footer-container .footer-2 {
    width: 30%;
}

.footer-container .footer-3 {
    width: 15%;
}

.footer-container p {
    margin-top: 20px;
    font-weight: 300;
    font-size: 16px;
}

.footer-container h3 {
    color: var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary-color);
}

.footer-container a {
    color: black;
    font-weight: 600;
}

.footer-container .social-icons {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.footer-container .social-icons i {
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
}

.copyright-container {
    width: 100%;
    padding: 30px 20px;
    background-color: var(--background-color);
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    gap: 50px;
    box-shadow: inset 0px -20px 20px 0px rgba(255, 94, 191, 0.2);
    justify-content: space-around;
    align-items: center;
}

.copy2 a {
    color: #000000;
    font-weight: 400;
}
.gap-0{
    gap: 0px;
}
.gal>i {
    font-size: 32px;
    top: -14px;
}
section:hover .gal i {
    top: -22px;
}


/* Contact Page */
.contact-section{
    background-color: var(--primary-color);
    min-height: 70vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 20px;
}
.contact-1{
    width: 50%;
    display: flex;
    padding: 30px;
    margin: auto;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.black{
    color: black;
}
.contact-2{
    width: 50%;
    padding: 40px 20px 0px 40px;
}
.contact-info{
    padding: 20px;
    width: 90%;
    height: 100%;
    background-color: white;
    border-radius: 10px 10px 0px 0px;
    color: #565656;
    text-align: center;
}
.contact-form{
    text-align: left;
    margin-top: 30px;
}
.contact-form h4{
    margin-bottom: 10px;
}
.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact-form form input{
    margin-bottom: 10px;
    padding:5px;
    border-radius: 5px;
    border: 1px solid #565656;
}
.contact-form form textarea{
border-radius: 5px;
}
#googlemap{
    width: 100%;
}
#googlemap iframe{
    width: 100%;
}

.contact-form form button{
margin-top: 20px;
padding: 10px;
border-radius: 5px;
border: 1px solid #565656;
background-color: white;
display: inline-flex;
width: max-content;
transition: all 0.3s ease-in;
cursor: pointer;
text-align: end;
border-bottom: 2px solid black;
color: var(--primary-color);
}
.contact-form form button:hover{
    background-color: var(--primary-color);
    color: white;
    border-bottom: 1px solid black;
}

.contact-form form .submit-btn{
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
}
  
  .social-media p {
    color: #ffffff;
  }
  
  .social-iconsf {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .social-iconsf a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, #ffffff, #f3f3f3);
    color: var(--primary-color);
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
  }
  
  .social-iconsf a:hover {
    transform: scale(1.05);
  }

/* Responsive Styles */
@media (max-width: 1280px) {
    .facts_counter {
        column-gap: 20px;
    }
    .eve-form-head{
     max-width: 35%;
    }
    .counter-info span{
        font-size: 16px;
        font-weight: 700;
    }
}

@media (max-width: 991px) {
    .schedule-content-wrap {
        flex-direction: column;
    }
    .events2-section{
        flex-direction: column;
        overflow: hidden;
    }
    .sec-eve-content h3 {
        font-size: 32px;
    }
    .sec-eve .img-2 {
        width: 200px;
    }
    .counter-info span{
        font-size: 22px;
        font-weight: 700;
    }
    .sec-eve{
        left: -15px;
    }
    .sec-eve-content ul li {
        font-size: 18px;
    }
    .events2-section>div{
        width: 90%;
    }
    .event-wrap-cont{
        flex-direction: column;
    }
    .event-wrap-cont>div{
        width: 90%;
    }
    .eve-form-head{
        max-width: 100%;
       }
    .blog-section5{
flex-direction: column;
    }
    .blog-section2 {
        max-width: 100%;
    }
    .blog-section3{
        max-width: 100%;
        padding: 0px 10px;
        margin-top: 30px;
    }
    .schedule-count {
        display: none;
    }
    .message-container12 {
     flex-direction: column;
     padding: 20px 0px 40px 0px;
    }
    .events-form {
        max-width: 95%;
        margin-top: -60px;
    }
    .eve-form{
        flex-direction: column;
    }
    .counter-box {
        width: 95%;
    }
    .message-box12{
        width: 95%;
    }
    .message-box21 {
        max-width: 100%;
    }
    .schedule-item::before {
        display: none;
    }

    .schedule-meta ul {
        flex-direction: column;
        gap: 10px;
    }
    .events-section {
        flex-direction: column;
        padding: 40px 0px;
        gap: 40px;
        margin-bottom: 40px;
    }
    .events-section>div{
        width: 95%;
    }
    .hero-img{
        margin-top: 70px;
    }
    .contact-section{
        flex-direction: column;
        align-items: center;
    }
    .contact-1{
        width: 100%;
    }
    .contact-info{
        width: 100%;
    }
    .contact-2{
        width: 100%;
        padding: 10px 10px 0px 10px;
    }
    .con-h{
        font-size: 60px;
        top: 6%;
        left: 8%;
        z-index: 0;
        color: #eeeeee45;
    }
    .home-2 .hero-img{
        max-width: 300px;
        text-align: end;
    }
    .home-2 .hero-img:before{
        height: 80%;
        width: 80%;
        top: 50px;
    }
    .home-2 .hero-img img{
        border-radius: 15px 100px 15px 100px;
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .left-eve h2{
        font-size: 80px;
        font-weight: 700;
}.left-eve .eve-h span{
    font-size: 36px;
}
.left-eve h3{
    font-size: 36px;
}
.flex button{
    font-size: 14px;
}
.left-eve span{
    font-size: 16px;
}
.left-eve p{
    font-size: 14px;
}
    form.subscribeForm {
        flex-direction: column;
        margin-bottom: 40px;
        width: 90%;
        gap: 20px;
    }

    form.subscribeForm button {
        margin: 0;
        padding: 10px;
    }

    .cause3,
    .cause2 {
        display: none;
    }

    .mb-2m {
        margin-bottom: -5px;
    }

    .navbar {
        padding: 10px 30px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.active {
        transform: translateY(0px);
        opacity: 1;
        visibility: visible;
        z-index: 999;
    }

    .copyright-container {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 14px;
    }

    .footer-container p {
        font-size: 14px;
    }

    .about-section {
        flex-direction: column;
        gap: 80px;
    }

    .about-section .about-1 {
        order: 1;
        width: 100%;
        margin-bottom: 40px;
    }

    .about-section .about-2 {
        margin-top: -40px;
        order: 2;
        width: 100%;
    }

    .abt-h {
        display: block;
        text-align: center;
    }

    .abt-h2 {
        display: none;
    }

    .message-container {
        flex-direction: column;
        padding: 10px;
        justify-content: center;
        align-items: center;
    }

    .message-box1 {
        width: 100%;
        padding: 10px;
        min-height: 300px;
    }

    .message-box2 {
        top: 0;
        position: relative;
        height: auto;
        max-width: none;
        border-right: 15px solid #FFF;
        width: 100%;
    }

    .message-container2 {
        padding: 10px;
        min-height: 400px;
    }

    .message-container2 p {
        max-width: 100%;
    }

    .magasecmain {
        grid-template-columns: 1fr 1fr;
        padding: 0px 15px 100px 15px;
    }

    .causes-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }

    .gallery-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }

    .px-5 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .gal>i {
        font-size: 26px;
        top: -14px;
    }
    section:hover .gal i {
        top: -22px;
    }
}

@media (max-width: 767px) {
    .loader-text {
        font-size: 14px;
        /* Text color matching the theme */
    }

    .navbar {
        padding: 10px;
    }

    .team-container {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-container .footer-1 {
        width: 100%;
    }

    .footer-container .footer-2 {
        width: 100%;
    }

    .footer-container .footer-3 {
        width: 100%;
    }
    .campaign-cont .product-card:nth-child(2), .campaign-cont .product-card:nth-child(3) {
        display: none;
    }
    .footer-container h3 {
        margin-bottom: 10px;
    }
    .more-eve h3{
        font-size: 36px;
        font-weight: 700;
        color: black;
        text-align: center;
        line-height: 1;
    }
    .copyright-container {
        flex-direction: column;
        /* Change to column */
        gap: 10px;
        text-align: center;
        padding: 10px;
    }

    .double_title>i {
        font-size: 32px;
        top: -14px;
    }

    .events-section .double_title>i {
        font-size: 28px;
        top: -10px;
    }

    .events-section:hover .double_title i {
        top: -22px;
    }

    .double_title h2 {
        font-size: 50px;
    }

    section:hover .double_title i {
        top: -24px;
    }

    .causes-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .gallery-sec {
        padding: 40px 30px;
    }

    .gallery-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
    }
    .gal>i {
        font-size: 22px;
        top: -8px;
    }
    section:hover .gal i {
        top: -15px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 5%;
    justify-content: center;
    }
    .gallery-sec {
        padding: 40px 10px;
    }
    .simpleSlide_Text span{
       font-size: 10px;
    }
    .navbar {
        padding: 10px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
        font-weight: 400;
    }

    p {
        font-size: 14px;
    }

    .hero-section {
        min-height: 90vh;
        text-align: center;
    }

    .facts_counter>div {
        width: 35%;
    }

    .double_title>i {
        font-size: 28px;
        top: -14px;
    }

    .double_title h2 {
        font-size: 42px;
        margin-top: -15px;
    }

    section:hover .double_title i {
        top: -20px;
    }
    .choose-img {
        text-align: left;
        padding-left: 40px;
    }
    .choose-img::before {
        top: 25px;
        left: 23px;
    }
    .magasecmain {
        grid-template-columns: 1fr;
        padding: 0px 15px 100px 15px;
    }

    .product-card__image {
        height: 200px;
    }

    .product-card__title {
        font-size: 1.3rem;
    }

    .product-card__description {
        font-size: 0.8rem;
    }

    .product-card__price {
        font-size: 1.1rem;
    }

    .product-card__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .causes-section {
        width: 100%;
        min-height: 70vh;
        padding: 40px 10px;
    }

    .last-section span {
        color: #565656;
        font-size: 12px;
    }
    .bg-white{
        background-color: white;
    }
    .last-section p {
        font-size: 22px;
    }
    .blog-section2{
        max-width: 100%;
    }
    .sbloghead{
        margin-bottom: 20px;
    }
    .team-tit>i {
        font-size:14px;
        position: absolute;
        font-style: normal;
        line-height: 0.9;
        color: #dadada;
        font-weight: 800;
        left: 0;
        width: 100%;
        top: -6px;
        z-index: -1;
        transition: all 0.5s ease-in-out;
    }
    .t-section:hover .team-tit i {
        top: -12px;
    }
    .sbloghead h1{
        font-size: 22px;
        margin-bottom: 0px;
    }
    .blog-card .description h1 {
        font-size: 1.2rem;
      }
      .blog-card .description h2 {
        font-size: 0.8rem;
      }
      .gal>i {
        font-size: 18px;
        top: -8px;
    }
    section:hover .gal i {
        top: -14px;
    }
    .py-8{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .choose-item-info h4{
        font-weight: 800;
    }
    .site-shadow-text {
        position: absolute;
        right: 20px;
        top: 0px;
        line-height: 0;
        font-size: 60px;
        font-weight: bold;
        color: #eee;
        text-transform: uppercase;
        z-index: -1;
    }
    .site-shadow-text2 {
        position: absolute;
        right: 3%;
        top: 40px;
        line-height: 0;
        font-size: 60px;
        font-weight: bold;
        color: #eee;
        text-transform: uppercase;
        z-index: -1;
    }
}