@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* common-css-start */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
}

.myClass {
    overflow: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

.section-heading {
    position: relative;
    z-index: 1;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

/* common-css-end */



/*header-css-start*/

.custom-header {
    background-color: #ffffff;
}

/* Logo Styling */
.custom-header .logo-img {
    width: max-content;
    object-fit: cover;
}

/* Navigation Links & Dropdown Setup */
.custom-header .navbar-nav .nav-item {
    position: relative;
}

.custom-header .container-fluid {
    padding: 0 45px;
}

.custom-header .navbar {
    padding: 10px 0;
}

.custom-header .navbar-nav {
    gap: 30px;
}

.custom-header .navbar-nav .nav-link {
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 169%;
    color: #000;
}

/* Standard Dropdown Arrow Remove Karke Clean Bootstrap Icon Lagaya */
.custom-header .navbar-nav .dropdown-toggle::after {
    display: none !important;
}

.custom-header .dropdown-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Beautiful Menu Dropdown Styling */
.custom-header .navbar-nav .dropdown-menu {
    border: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
}

.custom-header .dropdown-item {
    border-radius: 8px;
    padding: 5px;
    transition: all 0.2s ease;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    line-height: 169%;
    color: #000;
}

.custom-header .dropdown-item:hover, .custom-header .dropdown-item:active {
    background-color: #fe6a8a;
    color: #fff;
}
/* Same to Same Pink Donate Button */
.custom-header .btn-donate {
    color: #FFFFFF !important;
    padding: 9px 32px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-radius: 100px;
    background: #fe6a8a;
    font-weight: 900;
    font-size: 16px;
    line-height: normal;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.custom-header .btn-donate:hover {
    background-color: #fe6a8a;
    transform: translateY(-1px);
}

/* Hover hone par dropdown smoothly display hoga */
.custom-header .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-header .navbar-nav .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-header .navbar-nav .nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: #fe6a8a;
}

.sticky-header {
    position: fixed;
    width: 100%;
    box-shadow: 0px 0px 30px -5px #9698a6;
    animation: goDown 0.5s ease-in-out forwards;
    z-index: 9999;
}

.sub-heading {
    font-weight: 900;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

    100% {
        top: 0;
    }
}

/*header-css-end*/
/* BANNER CSS START */

/* Main Section Wrapper with Red Gradient */
.community-slider-section {
    position: relative;
    overflow: hidden;
}

.custom-row-padding {
    padding-left: 20px;
    padding-right: 20px;
}

/* Headings & Sub-headlines (Poppins) */
.sub-headline {
    display: block;
    margin-bottom: 12px;
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #fff;
    width: max-content;
}

.subline {
    display: block;
    width: max-content;
    margin-left: auto;
    height: 7px;
}

.subline svg {
    height: 100% !important;
    display: block;
}

.main-heading {
    font-family: 'Poppins', sans-serif;

    /* Extra Bold */
    margin-bottom: 24px;
    font-weight: 900;
    font-size: 72px;
    line-height: 103%;
    text-transform: uppercase;
    color: #fff;
}

/* Yellow Highlighted Text Box */
.highlighted-text {
    background-color: #E5A124;
    color: #ffffff;
    display: inline-block;
    font-weight: 900;
}

/* Description Paragraph (Inter) */
.description-text {
    font-family: 'Inter', sans-serif;
    width: 90%;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
}

/* Call To Action Button (Poppins/Inter mix) */
.btn-partner {
    color: #ffffff !important;
    letter-spacing: 0.5px;
    padding: 14px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 18px;
    line-height: normal;
    background: #fe6a8a;
    text-transform: uppercase;
}

.btn-partner:hover {
    background-color: #e24968;
    transform: translateY(-2px);
}

.arrow-icon {
    background: transparent;
    color: #ffffff;
    width: 24px;
    border: 2px solid #ffffff;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Right Side Image Layout & Mask Frame */
.image-frame-container {
    position: relative;
    border: 10px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    margin-left: auto;
    width: 100%;
}


.featured-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.comunity-bxx {
    padding: 75px 0;
    height: 650px;
    display: flex;
    align-items: center;
}

/* Absolute Vector Floating Icons */
.vector-icon {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    opacity: 0.85;
}

.icon-top-rays {
    top: -40px;
    left: -50px;
    width: max-content;
}

.icon-heart-brain {
    top: 150px;
    left: -42px;
    width: 70px;
}

.icon-brain-bottom {
    bottom: -50px;
    left: -130px;
    width: 100px;
}

.icon-hearts-right {
    top: -20px;
    right: -110px;
    width: 80px;
}

.vector-icon img {
    width: 100%;
    height: auto;
}

/* Owl Carousel Custom Navigation Arrows */
.community-slider-section .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin: 0 !important;
    pointer-events: none;
}

.community-slider-section .owl-theme .owl-nav [class*='owl-'] {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto;
}

.community-slider-section .nav-btn {
    position: absolute;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.2s ease;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff;
}

.prev-slide {
    left: -45px;
}

.next-slide {
    right: -45px;
}

/* Owl Carousel Custom Dots Indicator */
.community-slider-section .owl-theme .owl-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.community-slider-section .owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4) !important;
    margin: 5px 6px;
    transition: all 0.3s ease;
}

.community-slider-section .owl-theme .owl-dots .owl-dot.active span {
    background: #ffffff !important;
    width: 24px;
    border-radius: 8px;
}

.mosaic-wrapper {
    position: relative;
}

.mosaic-wrapper .mosic-imag {
    width: 100%;
}

.mosaic-wrapper .mosic-imag img {
    width: 100%;
    object-fit: cover;
}


.highlighted-box-text {
    background: #DC201A;
    display: inline-block;
}

/* BANNER CSS END */
/* INVESTMENT SECTION WRAPPER START */
.investment-section-wrapper {

    z-index: 1;
}

.investment-section-wrapper .investment-main-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: -42px;
}

.investment-section-wrapper .title-highlight {
    display: inline-block;
    background: #E5A124;
}

.investment-section-wrapper .custom-cards-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.investment-section-wrapper .grid-card-1,
.investment-section-wrapper .grid-card-2,
.investment-section-wrapper .grid-card-3 {
    grid-column: span 2;
}

.investment-section-wrapper .grid-card-4 {
    grid-column: 2 / span 2;
}

.investment-section-wrapper .grid-card-5 {
    grid-column: 4 / span 2;
}

.investment-section-wrapper .community-feature-card {
    border-radius: 24px;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}
.investment-section-wrapper .card-heading {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 6px;
    z-index: 2;
    font-weight: 900;
    font-size: 24px;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
}

.investment-section-wrapper .card-body-text {
    font-family: 'Inter', sans-serif;
    margin: 0;
    z-index: 2;
    font-weight: 500;
    font-size: 12px;
    line-height: 169%;
    color: #fff;
}

/* --- CARD DECORATIVE ABSTRACT SHAPES --- */
.investment-section-wrapper .card-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Variant A: TogetherWePlay (Dark Red) */
.investment-section-wrapper .card-together-play {
    background-color: #cb2424;
    color: #ffffff;
}

.investment-section-wrapper .card-together-play .shape-top-right {
    top: 0;
    right: 0;
    width: 65px;
}

.investment-section-wrapper .card-together-play .shape-bottom-left {
    bottom: 0;
    left: 0;
    width: 45px;
}

/* Variant B: TogetherWeThrive (Pink) */
.card-together-thrive {
    background-color: #f45b7a;
    color: #ffffff;
}

.investment-section-wrapper .card-together-thrive .shape-top-right {
    top: 0;
    right: 0;
    width: 55px;
}

.investment-section-wrapper .card-together-thrive .shape-bottom-left {
    bottom: 0;
    left: 0;
    width: 50px;
}

/* Variant C: Wellness Camps (Black) */
.investment-section-wrapper .card-wellness-camps {
    background-color: #050505;
    color: #ffffff;
}

.investment-section-wrapper .card-wellness-camps .shape-top-right {
    top: -5px;
    right: -5px;
    width: 60px;
}

.investment-section-wrapper .card-wellness-camps .shape-bottom-left {
    bottom: 0;
    left: 0;
    width: 40px;
}

/* Variant D: ElevateFive10 (Mustard Yellow) */
.investment-section-wrapper .card-elevate-five {
    background-color: #dba01a;
    color: #ffffff;
}

.investment-section-wrapper .card-elevate-five .shape-top-right {
    top: 0;
    right: 0;
    width: 70px;
}

.investment-section-wrapper .card-elevate-five .shape-bottom-left {
    bottom: -5px;
    left: -5px;
    width: 45px;
}

/* Variant E: SEL Workshops (Minimal White) */
.investment-section-wrapper .card-sel-workshops {
    background-color: #fafafa;
    color: #000000;
    border: 1px solid #f0f0f0;
}

.investment-section-wrapper .card-sel-workshops .shape-top-right {
    top: 25px;
    right: 25px;
    width: 55px;
}

.investment-section-wrapper .card-sel-workshops .shape-bottom-left {
    bottom: 0;
    left: 20px;
    width: 35px;
}

.investment-section-wrapper .sub-heading {
    text-align: center;
}

.investment-section-wrapper svg {
    width: max-content;
    margin: 0 auto;
    margin: 15px 0 25px;
}

.invest-svgbxx {
    text-align: center;
}

h3.card-heading {
    text-shadow: 1px 2px 0 #e5a124;
}

.comunity-after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.comunity-after img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* INVESTMENT SECTION WRAPPER END */
/* WHO WE ARE SECTION  END */
.who-we-are-section .figma-video-frame-outer {
    position: relative;
    width: 100%;
    margin-left: auto;
}

/* White Thick Border Wrapper */
.who-we-are-section .figma-video-inner-container {
    border: 6px solid #ffffff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background-color: #000000;
    aspect-ratio: 1.68 / 1;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.who-we-are-section .figma-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.who-we-are-section .figma-floating-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.who-we-are-section .figma-circle-btn {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    padding: 0;
}

.who-we-are-section .figma-circle-btn:hover {
    background-color: rgba(0, 0, 0, 0.85);
    transform: scale(1.05);
}

.who-we-are-section .figma-circle-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.who-we-are-section {
    background-color: #ffffff;
    padding: 60px 0 30px;
}

.who-we-are-card {
    background-color: #f45b7a;
    border-radius: 36px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.whoweare-sub-headline {
    font-family: 'Poppins', sans-serif;
    display: block;
    position: relative;
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    color: #fff;
}

.whoweare-sub-headline::after {
    left: 0;
    bottom: -6px;
    width: 120px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 112 6' fill='none'%3E%3Cpath d='M2 4C24 1.5 88-1.5 110 4' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.whoweare-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}


.yellow-highlight-box {
    background-color: #E5A124;
    color: #ffffff;
    display: inline-block;
}

.whoweare-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 530px;
    opacity: 0.95;
    margin-bottom: 35px;
}


.btn-readmore {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000 !important;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.btn-readmore:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.black-arrow-circle {
    background: #000000;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-frame-outer {
    position: relative;
    width: 100%;
    z-index: 2;
}

.media-frame-inner {
    border: 6px solid #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    position: relative;
}

.media-frame-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.doodle-artifact {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.doodle-rays {
    top: -70px;
    left: 5px;
    width: 55px;
    transform: rotate(30deg);
}

.doodle-rays img {
    width: 100%;
}

.doodle-brain {
    bottom: -110px;
    left: 0;
    width: 100px;
    transform: rotate(-20deg);
}

.doodle-brain img {
    width: 100%;
}

.doodle-hearts {
    top: 30px;
    right: 35px;
    width: 55px;
}

.who-we-are-card .sub-heading {
    font-weight: 900;
    font-size: 58px;
    line-height: 102%;
    text-transform: uppercase;
    color: #fff;
}


.wwc {
    height: 8px;
    margin-bottom: 15px;
}

.wwc svg {
    height: 100% !important;
    object-fit: cover;
    display: block;
    width: max-content;
}

.left-content-block p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
    margin: 15px 0;
}

.left-content-block .btn-partner {
    background: #ffffff;
    color: #000000 !important;
}

.left-content-block .btn-partner .arrow-icon {
    color: #000000;
    border-color: #000000;
}

/* WHO WE ARE SECTION  END */
/* IMPACT SECTION  START */

.impact-section {
    padding: 35px 0 35px 0;
    text-align: center;
}

.impact-section .heading-underline {
    width: max-content;
    margin: 0 auto 30px auto;
}

.impact-section .counter-item {
    padding: 15px;
    position: relative;
}

.impact-section .counter-icon {
    margin-bottom: 12px;
}

.impact-section .counter-number {
    margin-bottom: 6px;
    line-height: normal;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 42px;
    text-align: center;
    color: #dc201a;
}

/* Subtext Description */
.impact-section .counter-text {
    width: 100%;
    margin: 0 auto;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    line-height: 147%;
    text-align: center;
    color: #000;
}

.impact-section .heading-underline svg {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.impact-section .sub-heading {
    font-size: 58px;
    line-height: normal;
}

/*  IMPACT SECTION END */
/*  SERVE SECTION START */

.serve-section .section-heading .highlight {
    background-color: #E5A124;
    color: #ffffff;
    display: inline-block;
}

.serve-section .sub-heading {
    font-size: 58px;
    color: #fff;
}

.serve-section .serve-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border: none;
    box-shadow: 8px 8px 0px #dc201a;
    transition: transform 0.2s ease;
}

.serve-section .icon-blob {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.serve-section .card-title {
    margin: 0;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 17px;
    line-height: 141%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.serve-section .card-title span {
    display: block;
    font-weight: 700;
}

.serve-section .serve-bxx {
    background: #fe6a8a;
    padding: 50px;
    border-radius: 24px;
}

.serve-section {
    padding: 25px 0;
}

.serve-section .serve-underline {
    margin: 14px 0;
}

.serve-section .serve-bxx .section-heading p {
    font-weight: 500;
    font-size: 16px;
    line-height: 138%;
    text-align: center;
    font-family: 'Inter';
    color: #fff;
    width: 50%;
    margin: 0 auto 40px;
}

.serve-section .serve-brain {
    position: absolute;
    left: 50px;
    top: 20px;
    width: 100px;
}

.serve-section .serve-brain img {
    width: 100%;
}

.serve-section .serve-hearts-right {
    position: absolute;
    right: 0;
    top: 0;
}

.serve-section .serve-hearts-right img {
    width: 100%;
}

/*  SERVE SECTION END */
/*  APPROACH SECTION START */

.approach-section .approach-card-wrapper {
    background-color: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    background: linear-gradient(102.25deg, #E5A124 6.61%, #FE6A8A 70.7%);
}

.approach-section .approach-img-col {
    position: relative;
    min-height: 400px;
}

.approach-section .approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-section .approach-info-col {
    padding: 50px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-section .section-heading span.highlight {
    background-color: #DDA62A;
    color: #ffffff;
    padding: 2px 12px;
    display: inline-block;
    margin-top: 5px;
}

.approach-section .approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approach-section .approach-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.approach-section .list-icon-box {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.approach-section .list-icon-box img {
    width: 100%;
}

.approach-section .list-item-text {
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
    line-height: 173%;
    color: #fff;
}


.approach-section .highlight {
    background: #E5A124;
    display: inline-block;
    width: max-content;
}

.approach-section .approach-card-wrapper .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
}

.approach-section .approach-info-col p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
    margin: 15px 0 0;
}

.approach-section .approch-underline {
    margin: 15px 0;
}

.approach-section {
    padding: 25px 0 80px;
}

/*  APPROACH SECTION END */
/* FEEDBACK SECTION START */


.feedback-section {
    background-color: #DDA62A;
    padding: 70px 0;
    position: relative;
}

.testimonial-card {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    margin: 15px 10px;
    border-radius: 8px;
    overflow: hidden;
}

.testimonial-body {
    background-color: #ffffff;
    padding: 35px 30px 45px 30px;
    position: relative;
    min-height: 230px;
}

.testimonial-quote {
    margin-bottom: 0;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 184%;
    color: #000;
}

.quote-icon-box {
    position: absolute;
    bottom: 15px;
    right: 25px;
    font-size: 32px;
    color: #EAEAEA;
    line-height: 1;
}

.testimonial-footer {
    background-color: #FF6685;
    /* Theme pink color */
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    transform: rotate(180deg);
    border-width: 10px 10px 010px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.author-img {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    flex-shrink: 0;
}

.author-meta {
    color: #ffffff;
}

.author-name {
    margin: 0;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}

.author-role {
    margin: 0;
    margin-top: 6px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
}

.feedback-section .owl-theme .owl-dots {
    margin-top: 30px !important;
}

.feedback-section .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.4) !important;
    width: 10px;
    height: 10px;
}

.feedback-section .owl-theme .owl-dots .owl-dot.active span {
    background: #ffffff !important;
    transform: scale(1.2);
}

.wave-container {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-container svg {
    position: relative;
    width: 100% !important;
    object-fit: cover;
    height: unset;
}

.feedback-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
}

.feedback-section .section-heading {
    width: 60%;
    margin: 0 auto;
}

.feedback-section .section-heading .feedback-underline {
    margin: 20px 0 35px;
}

.feedback-heart {
    transform: rotate(23deg);
    width: 98px;
    height: 98px;
    position: absolute;
    top: 50px;
    right: -100px;
}

.feedback-heart img {
    width: 100%;
}

.feedback-hearts-right {
    position: absolute;
    left: -200px;
    top: 20px;
}

.feedback-hearts-right img {
    width: 100%;
}

/* FEEDBACK SECTION END */
/* ========================================Partners-section-start========================================= */
.Partners-image a {
    display: block;
    padding: 30px 12px;
    background: #fff;
    border: 1.11px solid #e3e3e3;
    border-radius: 13px;
    text-align: center;
    width: 100%;
}

.Partners-image a img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.Partnerss-section {
    padding: 70px 0;
}

.Partnerss-main .section-heading p {
    font-weight: normal;
    font-size: 17px;
    line-height: 159%;
    color: #585858;
    margin: 50px 0 30px;
}

.l-traignlebxx {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.l-bxx {
    position: relative;
}

.l-svgbxx-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 60%;
    margin: 0 auto;
}

.l-svgbxx {
    width: 100%;
}

.l-svgbxx svg,
.l-svgbxx img {
    width: 100%;
}

.l-traignlebxx .l-bxx:nth-child(2) .l-svgbxx-content,
.l-traignlebxx .l-bxx:last-child .l-svgbxx-content {
    width: 100%;
}

.l-svgbxx-content p {
    font-family: 'Work Sans';
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.l-svgbxx-content p a {
    color: inherit;
}

.arrow-bxx {
    position: absolute;
    right: 0;
    top: -25px;
    left: 0;
    width: 30px;
    margin: 0 auto;
}

.partners-image img {
    aspect-ratio: 2/1;
    object-fit: contain;
    width: 120px !important;
    margin: 0 auto;
}

.partners-bxx .owl-stage {
    display: flex;
    align-items: center;
}

.partners-image {
    width: 100%;
    text-align: center;
}

.partners-section {
    padding: 120px 0 80px;
}

.partners-svgbxx {
    height: 8px;
    margin: 8px 0 35px;
}

.partners-svgbxx svg {
    display: block;
    width: max-content;
    margin: 0 auto;
}

.partners-section .sub-heading {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #000;
}

/* =========================================Partners-section-end======================================== */
/* NEWSLETTER SECTION CSS START */
.join-us-section {
    padding: 0 0 0;
}

.join-card-container {
    background: linear-gradient(135deg, #E23E3B 0%, #D83633 100%);
    border-radius: 28px 28px 0 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(226, 62, 59, 0.15);
    padding: 40px 30px 0;
    width: 90%;
    margin: 0 auto;
}

.doodle-overlay {
    position: absolute;
    top: 20px;
    left: 20%;
    opacity: 0.15;
    font-size: 5rem;
    color: #ffffff;
    user-select: none;
    pointer-events: none;
}

.team-cutout-img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.content-box-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    padding: 20px 20px 35px;
}

.content-box-col h2 {
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 34px;
    line-height: 118%;
    text-transform: uppercase;
    color: #fff;
}

.content-box-col p {
    margin-bottom: 35px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 17px;
    line-height: 159%;
    color: #fff;
}

.cta-actions-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-brand-pink {
    background-color: #FF6685;
    letter-spacing: 0.3px;
    padding: 10px 32px;
    border-radius: 50px;
    border: none;
    transition: all 0.2s ease-in-out;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 18px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}

.btn-brand-pink:hover {
    background-color: #ffffff;
    color: #E23E3B;
    transform: translateY(-2px);
}

.btn-brand-outline {
    background-color: transparent;
    letter-spacing: 0.3px;
    padding: 10px 40px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    transition: all 0.2s ease-in-out;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 18px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}

.btn-brand-outline:hover {
    background-color: #ffffff;
    color: #E23E3B;
    transform: translateY(-2px);
}

/* NEWSLETTER SECTION CSS END */

/* FOOTER CSS START */
.studio-main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 90px 0 30px 0;
    font-size: 15px;
}

/* Brand Column Details */
.footer-identity-box img {
    width: 102px;
    display: inline-block;
}

.footer-identity-box p {
    max-width: 300px;
    margin: 20px 0;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 20px;
    line-height: 130%;
    color: #fff;
}

/* Premium Capsule Subscription Bar Form Structure */
.footer-email-capsule {
    border-radius: 50px;
    /* Perfect oval outline pill element */
    padding: 5px 6px 5px 18px;
    display: flex;
    align-items: center;
    max-width: 320px;
    border: 2px solid #fff;
}

.footer-email-capsule input {
    background: transparent;
    border: none;
    width: 100%;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    line-height: 238%;
    color: rgba(255, 255, 255, 0.85);
}

.footer-email-capsule input::placeholder {
    color: #757575;
}

.footer-email-capsule input:focus {
    outline: none;
}

.footer-email-capsule button {
    background: #fe6a8a;
    border-radius: 50px;
    letter-spacing: 0.5px;
    padding: 5px 22px;
    transition: opacity 0.2s ease;
    font-family: 'Poppins';
    font-weight: 900;
    border: none;
    font-size: 14px;
    line-height: 193%;
    text-transform: uppercase;
    color: #fff;
}

.footer-email-capsule button:hover {
    opacity: 0.9;
}

/* Typography Lists Column Links Formatting */
.footer-col-title {
    margin-bottom: 25px;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 18px;
    color: #fff;
}

.footer-links-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-tree li {
    margin-bottom: 15px;
}

.footer-links-tree a {
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    color: #fff;
}

.footer-links-tree a:hover {
    color: #ffffff;
}

/* Contact Details Context Rows Block Grid */
.footer-contact-item {
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-label-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-label-flex i {
    font-size: 14px;
    color: #fff;
}

.contact-value-txt {
    padding-left: 0;
    margin: 0;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    color: #fff;
}

.contact-value-txt a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.contact-value-txt a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* --- Footer Bottom Base Copyright Bar --- */
.footer-base-hr {
    border-top: 1px solid #ffffff;
    margin: 80px 0 25px 0;
}

.base-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: #fff;
}

.base-bar-flex a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.base-bar-flex a:hover {
    color: #ffffff;
}

/* Circular Clean Social Icons Links Box Wrap */
.social-links-row {
    display: flex;
    gap: 12px;
}

.social-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.social-icon-circle:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}


/* FOOTER CSS END */


/* ==================================ABOUT US PAGE CSS START============================================ */

.partners-section {
    padding: 80px 0;
}

/* -------------------------------------upr vali css yhi rene dena bhai------------------------------------------------------ */


/* Banner Container Styling */
.about-banner {
    color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(98.23deg, #DC201A 0.45%, #FE6A8A 86.86%);
}

/* Top Subtitle 'About Us' */
.about-banner .about-us-tag {
    display: inline-block;
    position: relative;
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #fff;
}




/* Highlight Block Behind 'STUDIOFIVE10' */
.about-banner .highlight-block {
    color: #ffffff;
    background: #e5a124;
    display: inline-block;
}




/* Profile Container and Outer Border Box */
.about-banner .profile-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    width: 100%;
    background: #fe6a8a;
}

/* Inner Profile Image Box */
.about-banner .profile-card {
    background-color: #E7373D;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    padding: 0px;
}

.about-banner .profile-img-container {
    width: 100%;
    overflow: hidden;
    background-color: #e62229;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-banner .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Profile Meta Details */
.about-banner .profile-info {
    padding: 15px 10px 0;
}

.about-banner .profile-name {
    margin: 0;
    font-family: 'Inter';
    font-weight: 900;
    font-size: 17px;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.about-banner .profile-role {
    margin: 5px 0 0 0;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 15px;
    line-height: 173%;
    text-align: center;
    color: #fff;
}



.about-banner .about-saprkeline {
    height: 9px;
    display: block;
    width: max-content;
    margin: 10px 0 20px;
}

.about-banner .about-saprkeline svg {
    height: 100%;
    display: block;
}

.about-banner .main-heading {
    margin: 0;
}

.about-banner .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    margin: 20px 0 15px;
}

.about-banner .profile-top {
    position: absolute;
    left: -60px;
    top: -40px;
    width: 129px;
}

.about-banner .profile-middle {
    position: absolute;
    right: -60px;
    width: 52px;
    height: 72px;
    transform: rotate(23deg);
    top: 10px;
}

.about-banner .profile-botm {
    position: absolute;
    right: -100px;
    border: 0;
    width: 121px;
    height: 121px;
    bottom: -80px;
}

.about-banner .profile-top img {
    width: 100%;
    object-fit: cover;
}

.about-banner .profile-middle img {
    width: 100%;
    object-fit: cover;
}

.about-banner .profile-botm img {
    width: 100%;
    object-fit: cover;
}

.story-section {
    padding-bottom: 50px;
}

.values-lines {
    height: 19px;
    margin: 20px 0;
}

.values-lines svg {
    display: block;
    height: 100%;
    margin: auto;
}

.story-section .sub-heading {
    font-family: 'Poppins', sans-serif;
}

.story-section .story-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #2a2a2a;
}

/* Background Outer Section (Pinkish Top Bar Simulation) */
.story-section .outer-wrapper {
    background: linear-gradient(to bottom, #e62229 0%, #e62229 60px, #f4f4f4 60px, #f4f4f4 100%);
    padding: 20px 15px;
    min-height: 100vh;
}

/* Main Story Card Styling */
.story-section .story-card {
    border-radius: 24px;
    padding: 60px 40px;
    margin: -25px auto;
    box-shadow: 0 4px 8px 0 rgba(207, 207, 207, 0.1), 0 14px 14px 0 rgba(207, 207, 207, 0.09), 0 32px 19px 0 rgba(207, 207, 207, 0.05), 0 57px 23px 0 rgba(207, 207, 207, 0.01), 0 89px 25px 0 rgba(207, 207, 207, 0);
    background: #fff;
    position: relative;
}

/* Heading Structure & Yellow Highlight Block */
.story-section .section-heading .sub-heading {
    display: inline-block;
    font-size: 58px;
    line-height: 102%;
}

.story-section .highlight-story {
    background-color: #E5A125;
    display: inline-block;
}

/* Text Block Adjustments */
.story-section .story-content-box {
    max-width: 720px;
    margin: 0 auto;
}

.story-section .story-sparkle-lines {
    width: 55px;
    display: inline-block;
    position: absolute;
    top: -30px;
    left: 110px;
}

.story-section .heading-curve {
    height: 19px;
    margin: 15px auto 20px;
}

.story-section .heading-curve svg {
    height: 100%;
    display: block;
    margin: auto;
}

.gallery-section {
    padding: 50px 0;
}

.gallery-section .gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gallery-section .img-box {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.gallery-section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Internal image smooth corners */
}

/* Left Pink Box */
.gallery-section .box-pink {
    border: 15px solid #fe6a8a;
    width: 320px;
    height: 220px;
}

/* Center Large Yellow Box */
.gallery-section .box-yellow {
    border: 20px solid #e5a124;
    width: 380px;
    height: 280px;
    z-index: 2;
}

/* Right Red Box */
.gallery-section .box-red {
    border: 15px solid #dc201a;
    width: 320px;
    height: 220px;
}

/* Zigzag Wave Separator CSS */
.gallery-section .wave-separator {
    width: 15px;
    height: 140px;
    flex-shrink: 0;

}

.gallery-section .wave-separator {
    object-fit: contain;
    height: auto;
}

.mission-section .mission-vision-card {
    border-radius: 24px;
    padding: 50px;
    position: relative;
    background: #fe6a8a;
}

/* Headings (Poppins) */
.mission-section .mv-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
}

/* Paragraphs (Inter) */
.mission-section .mv-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
    margin-top: 20px;
}

/* Icon Wrapper Styling */
.mission-section .icon-shape {
    width: 86px;
    margin-bottom: 15px;
}

.mission-section .icon-shape svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

/* Center Yellow Divider Line */
.mission-section .center-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-section .yellow-wave {
    width: 18px;
    height: 250px;
}

/* Top Right Corner Bulb/Brain Icon */
.mission-section .corner-icon {
    position: absolute;
    top: 35px;
    right: 50px;
    transform: rotate(30deg);
    width: 69px;
    height: 76px;
}

.mission-section .corner-icon svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
    stroke-width: 1.5;
    fill: none;
}



.mission-section .icon-shape img {
    width: 100%;
    object-fit: cover;
}

.mission-section .yellow-wave img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.mission-section {
    padding: 0 0 25px;
}



.values-section {
    padding: 25px 0;
}

.values-section .values-main {
    border-radius: 24px;
    background: #fafafa;
    padding: 50px;
}

.values-section .section-span {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #000;
    margin-bottom: 25px;
    display: inline-block;
}

.values-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
}

.values-section .sub-heading .highlights {
    background: #E5A125;
    display: inline-block;
}

.values-section .values-lines {
    height: 19px;
    margin: 17px 0 24px;
}

.values-section .values-lines svg {
    margin: auto;
    height: 100%;
    object-fit: cover;
}

.values-section .values-card {
    background: #fff;
    border-radius: 9px;
    height: 100%;
    overflow: hidden;
}

.values-section .values-content {
    padding: 24px 20px;
}

.values-section .values-content h4 {
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 18px;
    line-height: 122%;
    text-transform: uppercase;
    color: #000;
}

.values-section .values-content p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 164%;
    color: #2a2a2a;
}

.values-section .values-cardlines {
    margin: 12px 0 15px;
    height: 10px;
}

.values-section .values-cardlines svg {
    height: 100%;
    display: block;
}

.values-section .values-image {
    width: 100%;
    position: relative;
    z-index: 1;
}

.values-section .values-image a {
    display: block;
    width: 100%;
    position: relative;
}

.values-section .values-image a img {
    object-fit: cover;
    width: 100%;
}

.values-section .values-image a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    background-image: url('../images/values-afterimg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* -------------------------------------------------------------------------------------------------- */
.leadership-section {
    padding: 25px 0;
}

.leadership-section .team-section-wrapper {
    background-color: #E5A124;
    border-radius: 30px;
    padding: 50px 40px;
    color: #ffffff;
    position: relative;
}

/* Heading Style Customization */
.leadership-section .sub-heading {
    margin: 0;
    display: inline-block;
    font-weight: 900;
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
    color: #fff;
}

/* "TEAM" word highlight block */
.leadership-section .sub-heading .pink-highlight {
    background-color: #FE6A8A;
    display: inline-block;
    padding: 0 2px;
}

/* Underline wave under heading */
.leadership-section .heading-underline-curve {
    height: 19px;
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Top Right Slider Controls */
.leadership-section .slider-navigation {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 5px 27px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.leadership-section .slider-arrow {
    color: #ffffff;
    font-size: 18px;
}

.leadership-section .slider-arrow:hover {
    opacity: 0.7;
}

.leadership-section .slider-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.5);
}

.leadership-section .team-member-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

/* Image Mask/Wrapper */
.leadership-section .member-img-box {
    width: 100%;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

/* Background Doodle line vector */
.leadership-section .member-img-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    background-image: url("../images/team-member-after.png");
    background-repeat: no-repeat;
    z-index: 1;
}

.leadership-section .member-img-box img {
    width: 100% !important;
    /* Owl override fix */
    max-width: 100%;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

/* Card Content Texts */
.leadership-section .member-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 23px;
}
.leadership-section .member-name {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
    font-weight: 900;
    font-size: 18px;
    line-height: 122%;
    text-transform: uppercase;
    color: #fff;
}

.leadership-section .member-role {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 600;
    font-size: 13px;
    line-height: 154%;
    color: #fff;
    min-height: 40px;
}

/* Circular Link Arrow Button */
.leadership-section .card-action-btn {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.leadership-section .card-action-btn:hover {
    transform: scale(1.1);
    color: #000000;
}

/* Owl Dots Customization (Optional styling if enabled) */
.leadership-section .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.4);
}

.leadership-section .owl-theme .owl-dots .owl-dot.active span {
    background: #ff6584;
}


.leadership-section .team-wrapper {
    background: #E5A124;
    padding: 50px 35px;
    border-radius: 24px;
}



.leadership-section .heading-underline-curve svg {
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ------------------------------------------------------------- */
.partnerships-section .partnerships-container .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #2a2a2a;
    margin: 20px auto;
    width: 70%;
}

.partnerships-section {
    padding: 25px 0;
}

.partnerships-section .partnerships-curve {
    height: 19px;
    margin-bottom: 30px;
}

.partnerships-section .partnerships-curve svg {
    height: 100%;
    display: block;
    margin: 0 auto;
}

.partnerships-section .partnerships-sparkle-lines {
    width: 54px;
    display: inline-block;
    position: relative;
    top: -25px;
}

.partnerships-section .partnerships-container {
    background: #ffffff;
    border-radius: 40px;
    padding: 50px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.partnerships-section .sub-heading {
    display: inline-block;
    position: relative;
    font-size: 58px;
    line-height: 102%;
}

.partnerships-section .sub-heading .yellow-block {
    background-color: #E5A124;
    display: inline-block;
}


.partnerships-section .logo-card {
    /* Light yellow stroke matching the image */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
    border: 0.85px solid #e5a124;
    border-radius: 20px;
    height: 133px;
    background: #fff;
}

.partnerships-section .logo-card:hover {
    transform: translateY(-4px);
    border-color: #E5A124;
}

.partnerships-section .logo-card img {
    max-height: 85px;
    object-fit: contain;
}

/* ----------------------------------------------------------- */
.pillars-section .section-heading .sub-heading {
    display: inline-block;
    font-size: 58px;
    line-height: 102%;
}

.pillars-section .section-heading .sub-heading span.yellow-highlight {
    background-color: #E5A124;
    padding: 0 2px;
    display: inline-block;
}

.pillars-section .pillars-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0;
    margin-top: 20px;
    align-items: stretch;
}

.pillars-section .pillars-wrapper .pillar-connector:last-child {
    display: none;
}

.pillars-section .pillar-card {
    padding: 24px 22px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid #fe6a8a;
    border-radius: 5px;
    background: #fafafa;
}

.pillars-section .pillar-badge {
    width: 37px;
    height: 37px;
    background-color: #DC201A;
    /* Deep solid red */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 22px;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
}

.pillars-section .pillar-title {
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    font-weight: 800;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #000;
}

.pillars-section .pillar-text {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 500;
    font-size: 15px;
    line-height: 180%;
    color: #2a2a2a;
}

.pillars-section .pillar-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 4px;
    position: relative;
}



.pillars-section .pillar-connector span {
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    text-align: center;
    border: 1px dashed #e5a124;
    border-radius: 100px;
    width: 40px;
    height: 20px;
    align-items: center;
    justify-content: center;
    background: #fff;
}


.pillars-section {
    padding: 44px 0 25px;
}

.pillars-section .pillars-lines {
    height: 19px;
    margin: 17px 0 32px;
}

.pillars-section .pillars-lines svg {
    height: 100%;
    display: block;
    margin: auto;
}

/* --- Responsive Settings --- */



/* ------------------------------------------------------------------ */
.what-we-do-section {
    padding: 25px 0;
}

.what-we-do-section .wwd-dark-card {
    background: linear-gradient(126.34deg, #000000 28.81%, #FE6A8A 94.22%);
    padding: 50px 35px;
    border-radius: 24px;
}

.what-we-do-section .profile-middle {
    width: 62px;
    height: 62px;
    transform: rotate(-25deg);
    position: absolute;
}

.what-we-do-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #ffffff;
}


.what-we-do-section .wwd-dark-card {
    background: linear-gradient(135deg, #000000 0%, #1a0b10 40%, #d84b65 100%);
    border-radius: 35px;
    padding: 60px 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Brain/Lightbulb doodle element on top-left */
.wwd-doodle-icon {
    position: absolute;
    top: 45px;
    left: 20%;
    opacity: 0.85;
    width: 45px;
    height: 45px;
}

/* --- Aapka requested Section Heading template --- */
.section-heading .main-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

/* "WHAT WE DO" Text inside box highlight */
.section-heading .sub-heading span.yellow-box-accent {
    background-color: #E5A124;
    color: #000000;
    display: inline-block;
}

/* Underline wavy curve below main heading line */
.what-we-do-section .heading-curve-line {
    height: 19px;
    margin: 0 auto 25px auto;
}

/* Header Intro Description subtext (Inter) */
.what-we-do-section .wwd-intro-text {
    font-family: 'Inter', sans-serif;
    margin: 20px auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #fff;
    width: 50%;
}


.what-we-do-section .service-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 6px;
    font-weight: 800;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
}

.what-we-do-section .service-desc {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
}

.what-we-do-section .custom-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 20px 0 0;
    opacity: 1;
}

.what-we-do-section .action-btn-wrapper {
    display: flex;
    margin-top: 25px;
}




.what-we-do-section .profile-middle img {
    width: 100%;
}

.what-we-do-section .heading-curve-line svg {
    display: block;
    margin: auto;
    height: 100%;
}

/* --------------------------------------------------------------------------- */
.commitment-section {
    padding: 25px 0;
}


/* The decorative underline swoop */
.commitment-section .heading-underline {
    margin-bottom: 25px;
}

.commitment-section .family-image {
    max-width: 100%;
    width: 100%;
}

.commitment-section .spark-accent {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 54px;
}

.commitment-section .spark-accent img {
    width: 100%;
    object-fit: cover;
}


.commitment-section .sub-heading {
    font-size: 38px;
    line-height: 105%;
}

.commitment-section .commitent-hightlight {
    background: #000;
    color: #fff;
    display: inline-block;
}

.commitment-section .heading-curve-line {
    height: 19px;
    margin: 10px 0;
}

.commitment-section .heading-curve-line svg {
    display: block;
    height: 100%;
}

.commitment-section .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #2a2a2a;
}

.commitment-section .cc-bxx {
    box-shadow: 0 4px 8px 0 rgba(207, 207, 207, 0.1), 0 14px 14px 0 rgba(207, 207, 207, 0.09), 0 32px 19px 0 rgba(207, 207, 207, 0.05), 0 57px 23px 0 rgba(207, 207, 207, 0.01), 0 89px 25px 0 rgba(207, 207, 207, 0);
    background: #fff;
    border-radius: 24px;
}

.commitment-section .cc-content {
    padding: 50px 0 50px 50px;
    position: relative;
}

.commitment-section .cc-content p {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
}

/* ----------------------------------------------------------------- */
.About_impact-section {
    padding: 25px 0 0;
}

.About_impact-section .About_impact-card {
    background: linear-gradient(126.34deg, #E5A124 28.81%, #FE6A8A 94.22%);
    border-radius: 24px;
}

.About_impact-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
}

.About_impact-section .sub-heading .highlight {
    display: inline-block;
    background: #e5a124;
    padding: 0 2px;
}

.About_impact-section .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
    margin: 28px 0 15px;
}

.About_impact-section .About_impact-line {
    height: 19px;
    margin-bottom: 20px;
}

.About_impact-section .About_impact-line svg {
    height: 100%;
    object-fit: cover;
    margin: auto;
}

.About_impact-section .About_impact-reportcard {
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 15px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 12px;
}

.About_impact-section .airlft h5 {
    background: #dc201a;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 26px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding: 2px;
}

.About_impact-section .airlft p {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    text-transform: capitalize;
    color: #fff;
    margin-top: 10px;
}

.About_impact-section .About_impact-reportcard:last-child {
    margin: 0;
}


.About_impact-section .About_impact-image {
    width: 100%;
    background: rgba(255, 255, 255, 0.16);
    height: 100%;
}

.About_impact-section .About_impact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.About_impact-section .About_impact-content {
    padding: 40px 40px 30px 40px;
}

.About_impactbrain-after {
    width: 93.58px;
    position: absolute;
    right: 0;
    transform: rotate(65deg);
    top: -35px;
}

.About_impactbrain-after img {
    width: 100%;
    object-fit: cover;
}

/* ==================================ABOUT US PAGE CSS END============================================ */
/* --- Right Side Photo Frames --- */
.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
}

/* Common Polaris Photo Box Style */
.photo-box {
    background-color: #ffffff;
    padding: 0;
    position: absolute;
    transition: transform 0.3s ease;
}

/* Image 1 (Top Left) */
.photo-one {
    transform: rotate(-8deg);
    top: 10px;
    left: 40px;
    z-index: 2;
    border: 10px solid #dc201a;
    border-radius: 8px;
    width: 283px;
    height: 284px;
}

/* Image 2 (Bottom Right) */
.photo-two {
    border: 10px solid #fe6a8a;
    transform: rotate(6deg);
    bottom: -20px;
    right: 40px;
    z-index: 3;
    border-radius: 8px;
    width: 219px;
    height: 219px;
}

.photo-box img {
    width: 100%;
    object-fit: cover;
}

/* Tape Effect on Photos */
.photo-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -21px;
    width: 70px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.45);
    transform: rotate(-30deg);
}

/* Background doodles simulation */
.doodle-svg {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
}

.doodle-top {
    top: 0;
    right: -20px;
}

.doodle-bottom {
    bottom: -80px;
    left: 10%;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {

    .gallery-wrapper {
        height: 360px;
        margin-top: 50px;
        display: flex;
        justify-content: center;
    }

    .photo-one {
        left: 15%;
    }

    .photo-two {
        right: 15%;
    }

    .photo-two,
    .photo-one {
        height: auto;
    }
}

@media (max-width: 576px) {

    .photo-box {
        width: 200px;
    }

    .flagship-section .flga-bxxx {
        padding: 20px;
    }

    .left-content-blocks {
        padding: 30px 20px;
    }

    .support-section .support-grid {
        grid-template-columns: repeat(1, 11fr);
    }

    .photo-one {
        left: 5%;
    }

    .photo-two {
        right: 5%;
        bottom: 10px;
    }
}

.photo-box.photo-two:before {
    right: -20px;
    left: unset;
    transform: rotate(33deg);
}

.about-banner {
    padding: 90px 0;
}

/* ------------------------------------- */


/* Inner White Program Cards with Thick Black Border */
.flagship-section .program-card {
    background-color: #ffffff;
    border: 4px solid #000000;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    color: #000000;
    overflow: hidden;
}

.flagship-section .program-card:last-child {
    margin: 0;
}



.flagship-section .section-heading .sub-heading {
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    color: #fff;
}

/* Paragraph targeted directly without any class */
.flagship-section .program-card p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 15px;
    line-height: 173%;
    color: #2a2a2a;
    margin-top: 20px;
}

/* Bottom Feature Highlights Structure */
.flagship-section .features-row {
    margin-top: 10px;
}

.flagship-section .feature-box h5 {
    margin-bottom: 5px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #000;
}

.flagship-section .feature-box p {
    margin-top: 5px;
}

/* Video Image Container with Red Offset Shadow */
.flagship-section .video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    background-color: #000;
    box-shadow: 8px 8px 0px #DC201A;
    overflow: hidden;
    cursor: pointer;
}

.flagship-section .video-thumbnail {
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button Overlay */
.flagship-section .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.flagship-section .video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #f0f0f0;
}




.flagship-section .flga-bxxx {
    background: linear-gradient(97.18deg, #E5A125 -6.7%, #FE6A8A 93.58%);
    border-radius: 24px;
    padding: 50px;
}

.flagship-section .sub-heading2 {
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 28px;
    line-height: 136%;
    text-transform: uppercase;
    color: #000;
}

.flagship-section .together-linrd {
    height: 19px;
    margin: 15px 0 0;
}

.flagship-section .together-linrd svg {
    height: 100%;
    object-fit: cover;
    display: block;
}

.flagship-section .flag-lines {
    height: 11px;
    margin: 15px 0 25px;
}

.flagship-section .flag-lines svg {
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.flagship-section .section-heading {
    display: block;
    width: max-content;
    margin: auto;
}

.flagship-section .section-heading .flg-sitkes {
    position: absolute;
    left: -60px;
    top: -10px;
}

.flagship-section {
    padding: 25px 0;
}

.flagship-section .flg-bxx {
    width: 47px;
    height: 47px;
    position: absolute;
    right: -60px;
    top: -10px;
}

.flagship-section .flg-bxx img {
    width: 100%;
    transform: rotate(23deg);
}



/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .flagship-section .program-card {
        padding: 20px;
    }

    .flagship-section .video-wrapper {
        margin-top: 25px;
        box-shadow: 5px 5px 0px #e63946;
    }

}

@media (max-width: 576px) {
    .flagship-section .main-flagship-title {
        font-size: 1.6rem;
    }

    .flagship-section .section-heading .heading,
    .flagship-section .section-heading .sub-heading {
        font-size: 1.4rem;
    }

    .flagship-section .features-row {
        gap: 10px;
    }

    .intro-lines svg {
        width: 150px;
    }

}



/* ----------------------------------------------------------- */


.additional-programs-section {
    padding: 25px 0;
}



.additional-programs-section .addi-lines {
    height: 11px;
    margin: 10px 00 20px;
}

.additional-programs-section .addi-lines svg {
    height: 100%;
    margin: auto;
    display: block;
}

.additional-programs-section .por-cbx-content {
    padding: 10px;
}

.additional-programs-section .sub-heading {
    font-size: 22px;
    line-height: 109%;
    margin: 5px 0 15px;
    text-transform: capitalize;
}

.additional-programs-section .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 17px;
    line-height: 165%;
    color: #2a2a2a;
}

.additional-programs-section .main-section-title {
    text-align: center;
    position: relative;
}

/* Custom Content Card Styling with Red Bottom-Right Shadow Offset */
.additional-programs-section .program-card-box {
    padding: 14px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
    background: #fafafa;
    border-radius: 5px;
}

/* Red Offset Shadow Simulation */
.additional-programs-section .program-card-box::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    background-color: #DC201A;
    border-radius: 5px;
}



/* Video / Image Thumbnail Wrapper inside Cards */
.additional-programs-section .card-video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
    display: block;
}

.additional-programs-section .card-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Overlay Fancybox Trigger Play Button */
.additional-programs-section .card-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.additional-programs-section .card-video-wrapper:hover .card-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #ffffff;
}

/* -------------------------------------------------------------------------------- */


.why-matters-section {
    padding: 25px 0;
}

.why-matters-card {
    background: linear-gradient(126.34deg, #000000 28.81%, #FE6A8A 94.22%);
    border-radius: 24px;
}

.why-matters-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
}

span.hightlight {
    background: #E5A124;
    display: inline-block;
    padding: 0 2px;
}

.intro-lines {
    height: 19px;
    margin: 20px 0 25px;
}

.intro-lines svg {
    height: 100%;
    display: block;
}

.intro-highlight {
    font-family: 'Inter';
    font-weight: 800;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    color: #e5a124;
}

.left-content-blocks p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
    margin: 15px 0;
}

.left-content-blocks {
    padding: 40px 40px;
}

.frame-graphics-holder {
    width: 100%;
    background: rgba(255, 255, 255, 0.16);
    height: 100%;
}

.intro-image img {
    width: 100%;
    object-fit: cover;
}

.intro-image {
    width: 100%;
}

.support-section {
    padding: 25px 0;
}

.support-section .support-card {
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    position: relative;
    background: #fe6a8a;
}

.support-section .left-content-wrapper>p {
    font-style: italic;
    font-weight: 600;
    font-family: 'Poppins';
    font-size: 24px;
    line-height: 117%;
    color: #fff;
}


.support-section .section-heading .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
    margin-bottom: 20px;
}

.support-section .support-grid {
    display: grid;
    grid-template-columns: repeat(2, 11fr);
    gap: 15px;
}

.support-section .support-box {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
}


.support-section .support-box p {
    margin: 0;
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 16px;
    line-height: 113%;
    text-transform: uppercase;
    color: #fff;
}

.support-section .graphics-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(114.63% 114.63% at 70.85% 25.83%, #FE6A8A 0%, #DC201A 100%);
}


.who-linesss {
    height: 11px;
    margin: 8px 0 15px;
}

.who-linesss svg {
    height: 100%;
    display: block;
}

.section-heading .sub-heading .highlight {
    display: inline-block;
    background: #E5A124;
    padding: 0 3px;
}

.support-iocns {
    width: max-content;
    margin-bottom: 5px;
}

.support-iocns img {
    width: 100%;
    object-fit: cover;
}


.left-content-wrapper {
    padding: 26px 40px;
}

.support-image {
    width: 100%;
    padding: 20px;
}

.support-image img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .support-card {
        padding: 40px 0;
        /* Fallback vertical linear gradient */
        background: linear-gradient(180deg, #ff5c8a 0%, #ff477e 50%, #e61f43 50%, #d61c3c 100%);
    }


    .graphics-wrapper {
        min-height: 340px;
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .polaroid-frame,
    .blob-photo-frame {
        position: relative;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: none;
    }

    .polaroid-frame::before {
        display: none;
    }

    .story-section .story-sparkle-lines {
        display: none;
    }
}

@media (max-width: 576px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .graphics-wrapper {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    .polaroid-frame,
    .blob-photo-frame {
        width: 100%;
        max-width: 260px;
    }

    .blob-photo-frame {
        height: 240px;
        border-radius: 20px;
        /* Standardize on mobile */
    }
}

/* ------------------------------------------------------------------------------- */
.outcomes-section {
    padding: 25px 0 0;
}

.outcomes-section .outcomes-card {
    background: linear-gradient(126.34deg, #E5A124 28.81%, #FE6A8A 94.22%);
    border-radius: 24px;
}

.outcomes-section .headt-after {
    position: absolute;
    right: 33px;
    top: 33px;
    transform: rotate(23deg);
    width: 58px;
}

.outcomes-section .headt-after img {
    width: 100%;
    object-fit: cover;
}

.outcomes-section .out-comes-image {
    background: rgba(255, 255, 255, 0.16);
    width: 100%;
}

.outcomes-section .out-comes-image img {
    width: 100%;
    object-fit: cover;
}

.outcomes-section .out-comes-content {
    padding: 40px;
}

.outcomes-section .outcomes-sapn {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #fff;
}

.outcomes-section .outcomes-lines {
    height: 11px;
    margin: 8px 0 20px;
}

.outcomes-section .outcomes-lines svg {
    display: block;
    height: 100%;
}

.outcomes-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
}

.outcomes-section ul li {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 17px;
    line-height: 178%;
    color: #fff;
}

.outcomes-section ul {
    list-style: disc;
    padding-left: 25px;
    margin-top: 24px;
}

.outcomes-section span.hightlight {
    background: #dc201a;
}

/* ------------------------------------------------------- */
.get-involved-section {
    background: linear-gradient(126.34deg, #DC201A 28.81%, #FE6A8A 94.22%);
    height: 520px;
    padding: 74px 0;
}

.get-involved-section .right-bulb-vector {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 80px;
}

.get-involved-section .bottom-arc-ring {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: rotate(23deg);
    width: 60px;
}

.get-involved-section .waves-image {
    position: absolute;
    width: 135px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -40px;
}

.get-involved-section .wavy-doodle-lines {
    position: absolute;
    width: 100px;
    left: -30px;
}


.get-involved-section .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    margin: 20px 0;
}

.get-involved-section .buttons-flex-container .btn-partner:last-child {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
}

.get-involved-section .buttons-flex-container .btn-partner {
    box-shadow: none;
    padding: 12px 25px;
}

.get-involved-section .wavy-doodle-lines img {
    width: 100%;
    object-fit: cover;
}

.get-involved-section .blob-frame-wrapper {
    position: relative;
}

.get-involved-section .waves-image img {
    width: 100%;
    object-fit: cover;
}

.get-involved-section .bottom-arc-ring img {
    width: 100%;
    object-fit: cover;
}

.get-involved-section .right-bulb-vector img {
    width: 100%;
    object-fit: cover;
}



/* -------------------------------------------------- */
.volunteer-section .volunteer-card {
    padding: 50px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 4px 8px 0 rgba(207, 207, 207, 0.1), 0 14px 14px 0 rgba(207, 207, 207, 0.09), 0 32px 19px 0 rgba(207, 207, 207, 0.05), 0 57px 23px 0 rgba(207, 207, 207, 0.01), 0 89px 25px 0 rgba(207, 207, 207, 0);
    background: #fff;
    margin-top: -25px;
}

.volunteer-section .section-heading {
    margin-bottom: 20px;
    width: 100%;
}

.volunteer-section .section-heading .sub-heading {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
    font-weight: 900;
    font-size: 58px;
    line-height: 102%;
    text-transform: uppercase;
    text-align: center;
    color: #000;
}

.volunteer-section .section-heading .highlight {
    background-color: #E5A124;
    display: inline-block;
}

.volunteer-section .heading-curve {
    height: 18px;
    margin: 15px auto 0 auto;
}

.volunteer-section .volunteer-content p {
    font-family: 'Inter', sans-serif;
    max-width: 70%;
    margin: 0 auto 25px auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #2a2a2a;
}

.volunteer-section .volunteer-content h4 {
    font-family: 'Poppins', sans-serif;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    color: #000;
}





.volunteer-section .heading-curve svg {
    display: block;
    height: 100%;
    width: 100%;
}


.volunteer-section .volunteer-sparkle-lines {
    position: relative;
    top: -30px;
    left: 0;
    width: 53px;
    display: inline-block;
}

.volunteer-section .volunteer-sparkle-lines img {
    width: 100%;
    object-fit: cover;
}



/* ------------------------------------------------------ */
/* Main Wrapper Box */
.catalyst-section .donation-container {
    background-color: #ff5e85;
    /* Pink brand color */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- LEFT COLUMN: Marketing Content --- */
.catalyst-section .marketing-side {
    padding: 60px 45px;
    color: #ffffff;
}

.catalyst-section .donate-tag {
    display: inline-block;
    position: relative;
    font-family: 'Inter';
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #fff;
}


.catalyst-section .main-hero-heading {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 47px;
    line-height: 102%;
    text-transform: uppercase;
    color: #fff;
}

.catalyst-section .hero-highlight {
    background-color: #E5A124;
    /* Yellow highlight text box */
    color: #ffffff;
    display: inline-block;
}

.catalyst-section .marketing-side p {
    margin: 20px 0 25px;
    max-width: 500px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    color: #fff;
}



/* --- RIGHT COLUMN: Split Cards Area (With B&W Image BG) --- */
.catalyst-section .interactive-side {
    padding: 20px;
    display: flex;
    gap: 20px;
}
.catalyst-section iframe#iFrameResizer0 {
    width: 100% !important;
    height: auto !important;
    display: block;
}
.catalyst-section .rounded-b-2xl.border.border-t-0.border-gray-300.mr-auto.flex.w-full.items-center.justify-center.bg-gray-100.py-3.text-center {
    max-width: 100% !important;
    display: block;
}
/* --- Center White Info Card --- */
.catalyst-section .info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    height: max-content;
}

.catalyst-section .brand-logo-mock {
    text-align: center;
    margin-bottom: 15px;
}




.catalyst-section .info-card p {
    font-size: 0.82rem;
    color: #444;
    line-height: 1.5;
}

.catalyst-section .card-footer-verify {
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-family: 'Inter';
    font-size: 12px;
    color: #111;
    line-height: normal;
    margin: 0;
}

/* --- Right Donation Tiers Card --- */
.catalyst-section .form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    flex: 1.2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

/* Functional Tabs Switcher Style */
.catalyst-section .nav-pills-custom {
    background: #f1f3f5;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: none;
}

.catalyst-section .nav-pills-custom .nav-item {
    flex: 1;
}

.catalyst-section .nav-pills-custom .nav-link {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px;
    border-radius: 6px;
    color: #555555;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.catalyst-section .nav-pills-custom .nav-link.active {
    background: #ffccd5 !important;
    color: #ff5e85 !important;
    border: 1px solid #ff5e85;
}

/* Grid layout for amounts inside Tab Content */
.catalyst-section .tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

.catalyst-section .tier-box {
    border: 1px solid #e9ecef;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.catalyst-section .tier-box:hover {
    border-color: #ff5e85;
    background-color: #fffafb;
}

.catalyst-section .tier-amount {
    font-weight: 700;
    font-size: 0.9rem;
    color: #111;
    margin-bottom: 2px;
}

.catalyst-section .tier-desc {
    font-size: 12px;
    color: #111;
    line-height: normal;
    margin: 0;
}

.catalyst-section .custom-amount-input {
    position: relative;
    margin-bottom: 12px;
}

.catalyst-section .custom-amount-input input {
    padding-left: 20px;
    padding-right: 45px;
    font-size: 0.9rem;
    font-weight: 600;
}

.catalyst-section .currency-symbol {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #666;
}

.catalyst-section .currency-type {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #666;
}

.catalyst-section .note-checkbox {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 15px;
    text-align: left;
}

.catalyst-section .btn-submit-donation {
    width: 100%;
    background-color: #f38397;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px;
    border-radius: 8px;
    border: none;
    transition: opacity 0.2s;
}

.catalyst-section .btn-submit-donation:hover {
    opacity: 0.9;
}



.catalyst-section {
    padding: 50px 0 25px;
}

.catalyst-section .donate-tagwwc {
    height: 10px;
    margin: 8px 0 20px;
}

.catalyst-section .donate-tagwwc svg {
    height: 100%;
    display: block;
}

.catalyst-section .marketing-side .btn-partner {
    box-shadow: none;
    border-radius: 100px;
    background: #dc201a;
    font-weight: 900;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    padding: 14px 50px;
}

.catalyst-section .info-card p {
    font-family: 'Inter';
    font-size: 12px;
    color: #111;
    line-height: normal;
    margin: 15px 0;
}



/* --------------------------- */
.team-section {
    padding: 25px 0;
}

/* Top Subtitle Text */
.team-section .join-subtitle {
    font-family: 'Inter';
    position: relative;
    display: inline-block;
    font-style: italic;
    font-weight: 600;
    font-size: 24px;
    line-height: 117%;
    color: #000;
}



/* Yellow background highlight box */
.team-section .text-highlight {
    background-color: #E5A124;
    display: inline-block;
}



/* --- JOB CARDS STYLING --- */
.team-section .job-card {

    /* Pink Border */
    border-radius: 8px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid #fe6a8a;
    border-radius: 5px;
    background: #fafafa;
}

.team-section .job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 98, 137, 0.15);
}

.team-section .job-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 20px;
    line-height: 150%;
    color: #000;
}

/* Apply Button Styling */
.team-section .btn-apply {
    background-color: #ff6289;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    transition: background-color 0.2s ease;
}

.team-section .btn-apply:hover {
    background-color: #e04f73;
    color: #ffffff;
}



.team-section .join-tagwwc {
    height: 11px;
    margin: 8px auto 20px;
    text-align: center;
    width: 228px;
}

.team-section .join-tagwwc svg {
    height: 100%;
    display: block;
}


.team-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
}

.team-section .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #2a2a2a;
    width: 70%;
    margin: 20px auto 25px;
}


.team-section .job-card .btn-partner {
    width: max-content;
}

/* 0------------------------------------------------------------------- */

.partner-section .partner-card {
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 4px 8px 0 rgba(207, 207, 207, 0.1), 0 14px 14px 0 rgba(207, 207, 207, 0.09), 0 32px 19px 0 rgba(207, 207, 207, 0.05), 0 57px 23px 0 rgba(207, 207, 207, 0.01), 0 89px 25px 0 rgba(207, 207, 207, 0);
    background: #fff;
}

/* Heading Style */
.partner-section .section-heading .sub-heading {
    position: relative;
    display: inline-block;
    font-size: 58px;
    line-height: 102%;
}


.partner-section .highlight-yellow {
    background: #E5A124;
    display: inline-block;
}

/* Sub-sections styling */
.partner-section .content-heading {
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: #000;
}

/* List styling */
.partner-section .partner-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.partner-section .partner-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    color: #2a2a2a;
}

.partner-section .partner-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}


.partner-section {
    padding: 25px 0;
}

.partner-section .partner-sparkle-lines {
    position: relative;
    top: -40px;
    left: 0;
}

.partner-section .partner-tagwwc {
    height: 19px;
    margin: 10px auto 25px;
}

.partner-section .partner-tagwwc svg {
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto;
}

.partner-section .partner-card p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #2a2a2a;
    width: 81%;
    margin: auto;
}



.partner-section .partner-btm-content p {
    width: 100%;
    text-align: left;
    margin: 10px 0 !important;
}

.partner-section .btn-partner {
    margin-top: 20px;
}


/* ---------------------------------------------------------- */
.internship-section {
    padding: 25px 0;
}

.internship-section .videoslider-bx {
    margin-top: 20px;
}

/* Heading Style */
.internship-section .main-title {
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
    max-width: 800px;
    margin: 0 auto 25px auto;
}

/* Paragraphs */
.internship-section .intro-text {
    margin: 20px auto;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 163%;
    text-align: center;
    color: #fff;
    width: 80%;
}

/* Highlights Section */
.internship-section .program-title {
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
    width: 60%;
    text-align: left;
    margin: 15px auto;
}

.internship-section .highlight-list {
    list-style: none;
    padding-left: 0;
    display: inline-block;
    text-align: left;
    width: 60%;
    margin: 0 auto;
}

.internship-section .highlight-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 18px;
    line-height: 178%;
    color: #fff;
}

.internship-section .highlight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Slider / Card Styling */
.internship-section .slider-container {
    position: relative;
    overflow: hidden;
    overflow: visible;
    padding: 40px 0;
}



.internship-section .internship-bxx {
    background: linear-gradient(126.34deg, #000000 28.81%, #FE6A8A 94.22%);
    padding: 50px;
    border-radius: 24px;
    position: relative;
}

.internship-section .sub-heading {
    font-size: 58px;
    line-height: 102%;
    color: #fff;
    width: 70%;
    margin: 0 auto 0;
    position: relative;
}

.internship-section .internship-sparkle-lines {
    width: 54px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -10px;
}

.internship-section .internship-sparkle-lines img {
    width: 100%;
    object-fit: cover;
}

.internship-section .internship-bxx .btn-partner {
    padding: 13px 43px;
    line-height: normal;
}



/* OWL */
/* Premium Micro Gradient Framework */







.internship-section .card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}



.internship-section .control-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgb(0 0 0 / 38%);
    color: #fff;
    display: flex;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s, transform 0.1s;
}

.internship-section .control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Caption Typography */
.internship-section .video-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
    z-index: 5;
    padding: 0 15px;
    transform: translateY(5px);
    transition: transform 0.4s ease;
}



.internship-section .video-caption .highlight {
    background: #f65c78;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-left: 4px;
}

/* Slick Navigation System */
.internship-section .slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
}

.internship-section .slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.internship-section .slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.internship-section .prev-btn {
    left: 0;
}

.internship-section .next-btn {
    right: 0;
}
.internship-section .owl-carousel .owl-nav.disabled    {
    display: block !important;
}

/* ----------------------------------------------------------------------------------------------------------------------------- */


.internship-section #sliderRow {
    display: block;
    /* Owl apna layout handle karta hai */
    will-change: transform;
}



/* Aspect Container 9:16 Custom Layer */
.internship-section .video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%;
    background: #111;
    border-radius: 28px;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}



/* Control Action Buttons Layer */
.internship-section .video-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show controls only on focused element */
.internship-section .owl-item.center .video-controls {
    opacity: 1;
}




.internship-section .owl-item.center .video-caption {
    transform: translateY(0);
}


/* Owl Nav Arrows — aapke existing .slider-arrow style se match */
.internship-section .owl-nav button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    background: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: background 0.3s, transform 0.2s;
}

.internship-section .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

.internship-section .owl-nav button:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.internship-section .owl-prev {
    left: 0;
}

.internship-section .owl-next {
    right: 0;
}

/* Owl Dots */
.internship-section .owl-dots {
    margin-top: 18px;
    text-align: center;
}

.internship-section .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
    transition: background 0.3s;
}

.internship-section .owl-dot.active span {
    background: #f65c78 !important;
}

/* Premium Apply Block Accent */
.internship-section .btn-apply {
    background: #ff5e7e;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 94, 126, 0.45);
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), background 0.2s;
}

.internship-section .btn-apply:hover {
    background: #ff456a;
    transform: translateY(-2px);
}

/* Responsive Configuration Layer */
@media (max-width: 1200px) {
    .internship-section .owl-prev {
        left: -20px;
    }

    .internship-section .owl-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .internship-section .video-slider-div {
        padding: 40px 0 0;
    }

    .internship-section .owl-nav {
        display: none;
    }

}

/* --------------------------------------------------------- */
.contact-banner .main-heading {
    margin: 0;
}

/* CONTACT word ke piche ka yellow box */
.contact-banner .main-heading .highlight-bg {
    background-color: #E5A124;
    color: #ffffff;
    display: inline-block;
}

/* Paragraph Style - Inter Font */
.contact-banner .sub-text {
    font-family: 'Inter', sans-serif;
    opacity: 0.95;
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #fff;
    width: 80%;
    margin: 20px auto 35px;
}

/* --- Side ke Doodles/Icons --- */
.contact-banner .sparkle-lines {
    position: absolute;
    left: -70px;
    top: -20px;
    width: 56px;
    height: 52px;
}

.contact-banner .bulb-icon {
    position: absolute;
    right: -95px;
    top: -25px;
    width: 98px;
    height: 98px;
    background-size: cover;
    transform: rotate(25deg);
}

.contact-banner .decor-left-bottom {
    position: absolute;
    bottom: 44px;
    left: 5px;
    width: 119px;
    border-bottom: 0;
    border-right: 0;
    border-radius: 50% 0 0 0;
}

.contact-banner .decor-left-bottom img {
    width: 100%;
    object-fit: cover;
}

.contact-banner .decor-right-bottom {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 160px;
    height: 161px;
}

.contact-banner .decor-right-bottomimg {
    width: 100%;
    object-fit: cover;
}


.contact-banner {
    min-height: 520px;
    padding: 85px 0;
    overflow: hidden;
    background: linear-gradient(97.49deg, #FE6A8A 0%, #DC201A 99.32%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-info-section {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
}

/* Container Card Layer with Rounded Corners */
.contact-info-section .contact-container-card {
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid #f1f1f1;
    margin-top: -300px;
}

/* Headings Style - Poppins Font */
.contact-info-section .section-heading {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 145%;
    text-transform: uppercase;
    color: #000;
    font-weight: 800;
}

/* Left Side Text Styling */
.contact-info-section .info-paragraph {
    margin-bottom: 30px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: #2a2a2a;
}

/* Divider Line */
.contact-info-section .info-divider {
    border-top: 1px solid #eaeaea;
    margin: 25px 0;
}

.contact-info-section .contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 154%;
    color: #000;
}

.contact-info-section .contact-detail-item i {
    font-size: 18px;
    color: #333333;
    margin-right: 12px;
    margin-top: 2px;
}

/* Right Side Form Box Card */
.contact-info-section .form-box-card {
    padding: 30px 25px;
    border-radius: 12px;
    background: #fafafa;
}

/* Input Controls Setup */
.contact-info-section .custom-form-group {
    margin-bottom: 18px;
}

.contact-info-section .custom-form-input {
    padding: 12px 20px;
    width: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e3e3e3;
    border-radius: 100px;
    background: #fff;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 151%;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.contact-info-section .custom-form-input:focus {
    outline: none;
    border-color: #ff5e7e;
    box-shadow: 0 0 0 3px rgba(255, 94, 126, 0.1);
}


.contact-info-section textarea.custom-form-input {
    border: 1px solid #e3e3e3;
    border-radius: 18px;
    margin-bottom: 0;

}


.contact-info-section .text-danger-star {
    color: #ff5e7e;
    margin-left: 2px;
}




.contact-info-section .btn-partner {
    border-radius: 100px;
    background: #fe6a8a;
    box-shadow: none;
}


.map-wrapper-section {
    padding: 25px 0 25px;
    background-color: #ffffff;
}

/* Main Outer Card Container */
.map-wrapper-section .map-container-card {
    position: relative;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 400px;
    /* Map ki height aap apne hisab se badha sakte hain */
    border: 1px solid #f1f1f1;
}

/* Iframe styling inside card */
.map-wrapper-section .map-container-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 24px;
}

/* Floating Address Badge Component */
.map-wrapper-section .address-floating-badge {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 30px;
    min-width: 320px;
    max-width: 90%;
    border-radius: 10px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.06);
    z-index: 10;
    background: #fafafa;
}

/* Badge Header - Poppins Font */
.map-wrapper-section .badge-title {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 20px;
    line-height: normal;
    text-transform: uppercase;
    color: #000;
    gap: 10px;
}


/* Horizontal Divider Line inside Badge */
.map-wrapper-section .badge-divider {
    border-top: 0.85px solid rgba(0, 0, 0, 0.16);
    margin-bottom: 12px;
    width: 100%;
}

/* Address Text - Inter Font */
.map-wrapper-section .map-wrapper-section .badge-text {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #2a2a2a;
}

/* ------------------------------------------------------------------------------------- */
.events-hero-section {
    padding: 50px 0 65px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(98deg, #E5A125 -6.69%, #FE6A8A 78.56%);
}


.events-hero-section .image-grid-container {
    position: relative;
    z-index: 2;
}


.events-hero-section .main-event-img {
    width: 100%;
    border: 5px solid #ffffff;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Bottom Small Images Layout */
.events-hero-section .bottom-img-row {
    margin-top: 10px;
}

.events-hero-section .small-event-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* --- Decorative Vector Doodles --- */

/* Top White Lines Sparkle */
.events-hero-section .top-sparkle {
    position: absolute;
    top: -25px;
    left: -35px;
    width: 45px;
}

/* Center Yellow Abstract Shape/Flower Doodle */
.events-hero-section .yellow-doodle {
    position: absolute;
    left: -25px;
    bottom: 100px;
    width: 93px;
    z-index: 3;
    opacity: 0.9;
}

/* Right Side White Bulb/Brain Line Art */
.events-hero-section .right-bulb-art {
    position: absolute;
    right: -95px;
    top: 35%;
    background-size: cover;
    width: 98px;
    height: 98px;
    transform: rotate(25deg);
}

.events-hero-section .block-bg {
    display: inline-block;
    background: #DC201A;
    margin: 0;
}

.events-hero-section .main-heading {
    margin: 0;
}

.events-hero-section .section-heading p {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 18px;
    line-height: 156%;
    color: #fff;
    margin: 25px 0 20px;
}

.events-hero-section .btn-partner shadow-none {
    box-shadow: none;
}

/* Main Section Wrapper */
.upcoming-events-section {
    padding: 00 0 25px;
}


/* Left Side ke top lines (Sparkle) */
.upcoming-events-section .title-sparkle-lines {
    position: absolute;
    left: -52px;
    top: -35px;
    width: 56px;
}

/* --- Custom Cards Styling --- */
.upcoming-events-section .event-custom-card {
    background-color: #f9f9f9;
    border-radius: 20px;
    border: none;
    overflow: hidden;
    height: 100%;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-events-section .event-custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Images inside cards */
.upcoming-events-section .card-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
}

.upcoming-events-section .card-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.upcoming-events-section .card-content-body {
    padding: 15px;
}

/* Card Titles - Poppins Font */
.upcoming-events-section .event-card-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000;
    width: 90%;
}

/* Meta details text style - Inter Font */
.upcoming-events-section .event-meta-text {
    font-family: 'Inter', sans-serif;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 171%;
    font-weight: 500;
    color: #2a2a2a;
}

.upcoming-events-section .event-meta-text strong {
    color: #000000;
    font-weight: 700;
}

/* Description text layout - Inter Font */
.upcoming-events-section .event-desc-text {
    font-family: 'Inter', sans-serif;
    margin-top: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #2a2a2a;
    width: 95%;
}

.upcoming-events-bxx {
    border-radius: 24px;
    box-shadow: 0 4px 8px 0 rgba(207, 207, 207, 0.1), 0 14px 14px 0 rgba(207, 207, 207, 0.09), 0 32px 19px 0 rgba(207, 207, 207, 0.05), 0 57px 23px 0 rgba(207, 207, 207, 0.01), 0 89px 25px 0 rgba(207, 207, 207, 0);
    background: #fff;
    padding: 50px 30px;
    margin-top: -30px;
}

.upcoming-events-section .upcoming-events-bxx .sub-heading {
    font-size: 58px;
    line-height: 102%;
    margin-bottom: 20px !important;
}

.past-events-section {
    padding: 25px 0;
}

.past-events-section .past-event-card {
    background-color: #ffffff;
    border-radius: 20px;
    border: none;
    overflow: hidden;
    height: 100%;
    padding: 7px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.past-events-section .flyer-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    transition: transform 0.3s ease;
}


.past-events-section .flyer-wrapper img {
    width: 100%;
    display: block;
}

.past-events-section .past-card-body {
    padding: 17px 15px;
}

.past-events-section .past-card-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    /* Title grid alignment */
    font-weight: 900;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000;
}

.past-events-section .past-meta-text {
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 171%;
    font-weight: 500;
    color: #2a2a2a;
}


.past-events-section .past-events-bxx {
    background: linear-gradient(126.34deg, #000000 28.81%, #FE6A8A 94.22%);
    padding: 50px 30px;
    border-radius: 24px;
}


.past-events-section .past-card-title a {
    color: inherit;
}

.past-events-section .past-events-bxx .sub-heading {
    font-weight: 900;
    font-size: 58px;
    line-height: 102%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.past-events-section .red-block {
    display: inline-block;
    background: #DC201A;
}

.past-events-section .past-events-bxx .section-heading {
    margin-bottom: 32px;
}

.past-events-section .fw-inner  , .upcoming-events-bxx .fw-inner{
    width: 100%;
    display: block;
    position: relative;
    padding: 35%;
}
.past-events-section .fw-inner img , .upcoming-events-bxx .fw-inner img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

/* this is custom css for newsletter in footer. */


.footer-identity-box .tnp-subscription form {
    border-radius: 50px;
    padding: 5px 6px 5px 18px;
    display: flex;
    align-items: center;
    max-width: 320px;
    border: 2px solid #fff;
}



.footer-identity-box .tnp-subscription form label {
    display: none;
}

.footer-identity-box .tnp-subscription input {
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    font-family: 'Inter' !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: normal !important;
    color: rgba(255, 255, 255, 0.85) !important;
    outline: none !important;
    padding: 0 !important;
    padding-right: 5px !important;
}

.footer-identity-box .tnp-subscription input.tnp-submit {
    background: #fe6a8a !important;
    border-radius: 50px;
    letter-spacing: 0.5px;
    padding: 8px 22px !important;
    transition: opacity 0.2s ease;
    font-family: 'Poppins' !important;
    font-weight: 900 !important;
    border: none !important;
    font-size: 14px !important;
    line-height: normal !important;
    text-transform: uppercase;
    color: #fff !important;
}

.footer-identity-box .tnp-subscription .tnp-field.tnp-field-email {
    margin: 0 !important;
}

.footer-identity-box .tnp-subscription div.tnp-field,
.footer-identity-box .tnp-subscription .tnp-profile div.tnp-field {
    margin: 0 !important;
}

.footer-identity-box .tnp-subscription form p {
    font-size: 14px;
    margin: 5px 0;
    text-align: center;
    font-weight: 300;
    font-family: 'Poppins';
}

form.tnp-ajax {
    justify-content: center;
    padding: 5px 5px 5px 10px !important;
}

p.badge-text a {
    color: inherit;
}
.contact-info-section .contact-detail-item a {
    color: inherit !important;
}

.get-involved-section .yellow-block {
    background-color: #E5A124;
    display: inline-block;
}

span.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50% , -50%);
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}
