  <style>

/*  global css */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Light.woff2') format('woff2'),
                 url('https://uat.mica.ac.in/endowment/fonts/Gottak-Light.woff') format('woff');
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Regular.woff2') format('woff2'),
                 url('https://uat.mica.ac.in/endowment/fonts/Gottak-Regular.woff') format('woff');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-SemiBold.woff2') format('woff2'),
                 url('https://uat.mica.ac.in/endowment/fonts/Gottak-SemiBold.woff') format('woff');
            font-weight: 600;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Bold.woff2') format('woff2'),
                 url('https://uat.mica.ac.in/endowment/fonts/Gottak-Bold.woff') format('woff');
            font-weight: 700;
            font-style: normal;
        }

        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Thin.woff2') format('woff2'),
                 url('https://uat.mica.ac.in/endowment/fonts/Gottak-Thin.woff') format('woff');
            font-weight: 100;
            font-style: normal;
        }
	
		/* =====================================================
   ROOT VARIABLES
===================================================== */

        :root {
            --primary-color: #981c20;
            --text-color: #404040;
            --light-bg: #fffaf7;
            --white: #ffffff;
            --border-color: #e5e5e5;
            --transition: all 0.3s ease;
        }

        html, body {
            height: 100%;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            font-family: 'Gottak', sans-serif;
            background: #f2f2f2;
        }
		
        main {
            flex: 1;
        }

        .container {
            max-width: 1566px;
            margin: 0 auto;
            width: 100%;
			border-bottom: 1px solid #E5E5E5;
    		padding: 60px 20px;
        }
		.proceed-button {
            min-height: 52px;
            background: var(--primary-color);
            border: 1px solid var(--primary-color);
            color: var(--white);
            font-size: 16px;
            font-weight: 500;
            border-radius: 3px;
            transition: var(--transition);
            text-align: left;
        }

        .proceed-button:hover {
            background: #7E1E21;
            border-color: #7E1E21;
            color: #FFFFFF;
        }

        .proceed-button:focus,
        .proceed-button:active {
            box-shadow: none !important;
        }

        .proceed-button:disabled {
            background-color: #b5b5b5;
            border-color: #b5b5b5;
            cursor: not-allowed;
            opacity: 0.7;
            text-align: left;
        }

.proceed-button-help {
            min-height: 52px;
            background: #FEF2F2;
            border: 1px solid #FEF2F2;
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 500;
            border-radius: 3px;
            transition: var(--transition);
            text-align: left;
        }

        .proceed-button-help:hover {
            background: #7E1E21;
            border-color: #7E1E21;
            color: #FFFFFF;
        }

        .proceed-button-help:focus,
        .proceed-button-help:active {
            box-shadow: none !important;
        }

        .proceed-button-help:disabled {
            background-color: #b5b5b5;
            border-color: #b5b5b5;
            cursor: not-allowed;
            opacity: 0.7;
            text-align: left;
        }

h1{
	font-size: 40px;
}
h2{
	font-size: 32px;
	color: var(--text-color);
}
p {
    font-size: 18px;
	font-weight: 300;
    line-height: 1.5;
    color: var(--text-color);
	margin-bottom: 0rem !important;
}
.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
	border-radius: 2px;
}

/* Hover */
.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Focus */
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(152, 28, 32, 0.25);
}

/* Active */
.btn-outline-primary:active {
    background: #7f1417;
    border-color: #7f1417;
    color: #fff;
}
@media (max-width: 576px) {
	.btn-primary {
		width: 100%;
	}
}

/* Header */
:root {
    --hero-overlap: clamp(3rem, 8vw, 10rem);
}

/* TOP SECTION */
.top-section {
    background-color: rgb(152 28 32);
    background-image: url("../images/HeroBanner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 20px 20px calc(var(--hero-overlap) + 1rem);
}

.top-section .container,
.hero-floating-wrapper .container,
.help-section .container,
.breadcrumb-section .container,
.how-to-give-form .container,
.hero-section .container{
   border-bottom: none !important;
	
   padding: 0px !important;
}
.breadcrumb-section .container,
.how-to-give-form .container,
.hero-section .container,
.form-section .container{
	padding: 0px 20px !important;
}
@media (min-width: 1600px) {
.top-section .container,
.hero-floating-wrapper .container,
.help-section .container,
.breadcrumb-section .container,
.how-to-give-form .container
{
   border-bottom: none !important;
	
   padding: 0px 20px !important;
}
}
.hero-section .container{
	border-bottom: none !important;
	
   padding: 20px 20px !important;
}
@media (min-width: 1600px) {
.hero-section .container {
	border-bottom: none !important;
	
   padding: 20px 20px !important;
}
}
/* LOGO */
.logo {
    margin-bottom: 54px;
}

/* FLOATING WRAPPER */
.hero-floating-wrapper {
    position: relative;
    z-index: 5;
    padding: 0 20px 0px;
	background: var(--light-bg);
}

/* HERO CARD */
.hero-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;

    margin-top: calc(-1.5 * var(--hero-overlap));
}

.hero-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* TYPOGRAPHY */
h1 {
    font-weight: 500;
}

h6 {
    font-weight: 300;
	line-height: 1.5 !important;
}

/* OPTIONAL HERO STYLE (kept your original, cleaned) */
.hero {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    margin-top: 30px;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

/* DARK OVERLAY */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* CENTER TEXT */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    z-index: 2;
    padding: 20px;
}

@media (max-width: 576px) {
	.hero-card img {
    width: 100%;
	height: 240px;
    display: block;
    object-fit: cover;
}
.impact-nav {
    justify-content: center !important;
}
.info-card {
 min-height: 0px !important;
}
    .top-section {
        padding: 20px 20px calc(var(--hero-overlap) + 2.5rem);
    }

    .hero-card {
        margin-top: calc(-1.7 * var(--hero-overlap));
    }



}

/* =========================
   TABLET (576px - 992px)
========================= */
@media (min-width: 576px) and (max-width: 992px) {
    .top-section {
        padding-bottom: calc(var(--hero-overlap) + 2.5rem);
    }

    .hero-card {
        margin-top: calc(-1.6 * var(--hero-overlap));
    }

}

/* =========================
   LAPTOP (992px - 1200px)
========================= */
@media (min-width: 992px) and (max-width: 1200px) {
    .hero-card {
        margin-top: calc(-1.5 * var(--hero-overlap));
    }

    .top-section {
        padding-bottom: calc(var(--hero-overlap) + 4rem);
    }
}

/* =========================
   DESKTOP (≥1200px)
========================= */
@media (min-width: 1200px) and (max-width: 1500px) {
    .hero-card {
        margin-top: calc(-1.5 * var(--hero-overlap));
    }

    .top-section {
        padding-bottom: calc(var(--hero-overlap) + 5.2rem);
    }
}

/* =========================
   LARGE DESKTOP (>1566px)
    prevent over-stretching
========================= */
@media (min-width: 1500px) {
    .hero-card {
        margin-top: calc(-1.4 * var(--hero-overlap));
    }

    .top-section {
        padding-bottom: calc(var(--hero-overlap) + 5.2rem);
    }
}


/* Endowment Fund */
/* SECTION WRAPPER */
.endowment-section {
    background: var(--light-bg);
}

.fund-mb {
	margin-bottom: 1rem !important;
}
/* LEFT SIDE */
.left {
    flex: 1;
}

.left h2 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

/* RIGHT SIDE */
.right {
    flex: 1.5;
}

.right p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .left h2 {
        font-size: 22px;
    }
}

/*  Endowment Matters */
.endowment-matters{
  background: var(--light-bg);
}

.section-header p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 40px !important;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.info-card {
  background: #fff;
  padding: 30px 24px;
  min-height: 240px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 12px;
  line-height: 1.5;
}

.info-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
.section-header p,
.impact-desc,
.governance-header p
 {
	max-width: 100% !important;
}
}

@media (max-width: 640px) {
  .container {
    padding: 40px 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .cards-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Year Vision */
.founding-vision-section {
  background: var(--light-bg);
}

/* Top Content Layout */
.vision-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

/* Left Side */
.vision-left h2 {
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 28px;
}
.vision-right p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 1rem !important;
}

.vision-highlight {
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-color);
  max-width: 560px;
}

/* Image Grid */
.vision-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Swiper container */
.visionSwiper {
  width: 100%;
}

/* Images styling */
.visionSwiper .swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}
.visionSwiper {
    overflow: hidden;
}
.visionSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.visionSwiper .swiper-slide {
    width: 100% !important;
}
/* Desktop fallback (optional if you still want grid on large screens) */
@media (min-width: 576px) {
  .visionSwiper .swiper-wrapper {
    display: none;
  }

}
@media (max-width: 577px) {
  .vision-gallery {
    display: none;
  }

}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 567px) {
  .vision-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }
}

@media (max-width: 640px) {

  .vision-left h2 {
    font-size: 32px;
  }

}

/*  Area of Impact */
.areas-impact-section {
  background: var(--light-bg);
}

.impact-desc {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 40px !important;
  max-width: 650px;
}

.impact-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.impact-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.impact-slider {
  display: flex;
  gap: 24px;
}

/* BASE */
.impact-card {
  background: #fff;
  padding: 28px;
  border-radius: 5px;
  transition: transform 0.3s ease;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex: 0 0 auto;
}

.impact-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-color);
}

.impact-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}

/* Responsive */
/* DESKTOP: ALWAYS 4 CARDS */
@media (min-width: 1025px) {
  .impact-card {
    flex: 0 0 calc((100% - 72px) / 4);
  }
}
@media (min-width: 576px) and (max-width: 1024px) {
  .impact-card {
    flex: 0 0 calc((100% - 48px) / 2);
  }
}

@media (max-width: 640px) {

  .areas-impact-section h2 {
    font-size: 32px;
  }

  .impact-card {
    flex: 0 0 100%;
  }
}
.impact-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.impact-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s;
}

.impact-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}
/* Impact Navigation */
.impact-nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.impact-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--text-color);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.impact-arrow:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.impact-arrow:active {
  transform: scale(0.96);
}


/* Governance & Transparency */
.governance-section {
  background: var(--light-bg);
}


/* Header */
.governance-header {
  margin-bottom: 40px;
}

.governance-header p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
}

/* Grid */
.governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Cards */
.governance-card {
  background: #fff;
  padding: 32px 16px;
  min-height: 230px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.governance-card h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 18px;
}

.governance-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}

/* Tablet */
@media (max-width: 1024px) {
  .governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .governance-header h2 {
    font-size: 32px;
  }

  .governance-grid {
    grid-template-columns: 1fr;
  }

  .governance-card {
    min-height: auto;
  }
}

/* Contributions Create Impact */
.impact-section {
  background: var(--light-bg);
}

/* Left column */
.impact-left {
  flex: 1;
  min-width: 280px;
}

.impact-left p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 40px !important;
}

/* Right column */
.impact-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

/* Step boxes */
.impact-step {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 4px;
  background: #fff;
  transition: all 0.3s ease;
}

.impact-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 500;
}

.impact-step p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .impact-container {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
.impact-section {
  background: var(--light-bg);
}
}

/* Ways to Give */
.ways-section {
  background: var(--light-bg);
}

.ways-header p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 40px !important;
  width: 50%;
}

/* Grid */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Cards */
.ways-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}


.ways-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-color);
}

.ways-card p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-color);

}

/* Tablet */
@media (max-width: 1024px) {
  .ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.ways-header p {
    	width: 100%;
	}
}

/* Mobile */
@media (max-width: 640px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }
  .ways-section {
  background: var(--light-bg);
}

  .ways-header h2 {
    font-size: 32px;
  }
	
}

/* How To Give */
    /* =====================================================
   HOW TO GIVE SECTION
===================================================== */

    .how-to-give {
        background: var(--primary-color);
        color: #fff;
    }

.how-to-give .container{
	padding: 40px 20px !important;
}

    .how-to-give .title {
        color: #fff;
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* =====================================================
   ACCORDION
===================================================== */

    .how-to-give .custom-accordion .accordion-item {
        border: 1px solid #ececec;
        border-radius: 8px !important;
        overflow: hidden;
        margin-bottom: 16px;
        background: var(--white);
    }

    .how-to-give .custom-accordion .accordion-button {
        background: var(--white);
        padding: 20px;
        box-shadow: none !important;
        border: none !important;
    }

    .how-to-give .custom-accordion .accordion-button:not(.collapsed) {
        background: var(--white);
        padding-bottom: 0px;
    }

    .how-to-give .custom-accordion .accordion-body {
        padding: 0 24px 24px 98px;
        background: var(--white);
        font-size: 16px;
		font-weight: 300;
        line-height: 1.5;
        color: var(--text-color);
    }

    .how-to-give .custom-accordion .accordion-footer {
        padding: 0 24px 24px 98px;
        background: var(--white);
        font-size: 16px;
        line-height: 1.5;
        color: var(--text-color);
    }


    /* =====================================================
   TITLE WRAP
===================================================== */

    .how-to-give .accordion-title-wrap {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .how-to-give .accordion-icon {
        flex-shrink: 0;
    }

    .how-to-give .accordion-img {
        width: 58px;
        height: 58px;
        object-fit: contain;
    }

    .how-to-give .accordion-title {
        font-size: 20px;
        font-weight: 500;
        color: #262626;
        text-align: left;
    }

    /* =====================================================
   CUSTOM ARROW
===================================================== */

    .how-to-give .accordion-button::after {
        background-image: url("../images/icons/Chevron down.png") !important;
        background-size: 16px;
        width: 16px;
        height: 16px;
    }

    .how-to-give .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg);
    }

    /* =====================================================
   CONTENT STYLING
===================================================== */

    .how-to-give .payment-note,
    .how-to-give .verification-note {
        font-size: 16px;
        line-height: 1.5;
        color: var(--text-color);
		font-weight: 300;
    }

    .how-to-give .bank-transfer-box a {
        color: var(--text-color);
        text-decoration: underline;
    }

    .how-to-give .detail-row {
        display: flex;
        margin-bottom: 18px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .how-to-give .detail-label {
        font-weight: 400;
        min-width:420px;
    }

    .how-to-give .detail-value {
        color: var(--text-color);
    }

    .how-to-give .cheque-list {
        padding-left: 28px;
        margin-bottom: 20px;
    }

    .how-to-give .address-box {
        border-radius: 6px;
        line-height: 1.5;
        color: var(--text-color);
    }

    /* =====================================================
   RESPONSIVE
===================================================== */

    @media (max-width: 768px) {

        .how-to-give .container {
            padding: 30px 15px !important;
        }

        .how-to-give h2 {
            font-size: 28px;
        }

        .how-to-give .accordion-title {
            font-size: 16px;
        }

        .how-to-give .accordion-img {
            width: 45px;
            height: 45px;
        }

        .how-to-give .custom-accordion .accordion-body {
            padding: 20px;
        }
		
		.how-to-give .custom-accordion .accordion-footer {
            padding: 20px;
        }

        .how-to-give .detail-row {
            flex-direction: column;
            gap: 4px;
        }
    }
/* FAQ */
/* FAQ Section */
.faq-section {
  background: #E5E5E5;
  border-radius: 6px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-color);
  font-size: 28px;
}

.faq-sub-section {
  margin: 0 auto;
  max-width: 80%;
  background: #fff;
  overflow: hidden;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #e2e2e2;
}

.faq-item:last-child {
  border-bottom: none;
}

/* FAQ Header */
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.faq-header p {
  margin: 0;
  color: var(--text-color);
  font-weight: 400;
}

/* Arrow */
.faq-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
  background-image: url("../images/icons/Chevron down.png");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

/* Rotate Arrow */
.faq-header.active .faq-arrow {
  transform: rotate(180deg);
}

/* FAQ Content Smooth Animation */
.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

/* Active State */
.faq-item.active .faq-content {
  max-height: 300px;
  padding: 0 20px 20px;
}

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

  .faq-sub-section {
    max-width: 100%;
  }

  .faq-section h2 {
    font-size: 24px;
  }

  .faq-header {
    padding: 16px;
  }

  .faq-content {
    font-size: 15px;
  }
}
/* Help */
.help-section {
  background: #404040; /* dark background like your screenshot */
  padding: 60px 20px;
  color: #fff;
}

.help-section .section-header h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.help-section .section-header p {
  max-width: 650px;
  margin: 0 auto 40px auto !important;
  font-size: 16px;
  line-height: 1.5;
  color: #e0e0e0;
}

.help-section .btn {
  display: inline-block;
  padding: 10px 10px 7px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.help-section .btn-primary {
  background-color: #FEF2F2;
  color: #7E1E21;
  border: none;
}

.help-section .btn-primary:hover {
  background-color: #861a1f;
  color: #FEF2F2;
}

.help-section .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.help-section .btn-secondary:hover {
  background-color: #fff;
  color: #1e1e1e;
}

/* Responsive */
@media (max-width: 640px) {
  .help-section .section-header h2 {
    font-size: 28px;
  }

  
  .help-section .btn {
    width: 100%;
    margin: 10px 0;
  }
}





/* Donation Form */
@font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Light.woff2') format('woff2'),
                url('https://uat.mica.ac.in/endowment/fonts/Gottak-Light.woff') format('woff');
            font-weight: 300;
            font-style: normal;
        }

        /* Regular */
        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Regular.woff2') format('woff2'),
                url('https://uat.mica.ac.in/endowment/fonts/Gottak-Regular.woff') format('woff');
            font-weight: 400;
            font-style: normal;
        }

        /* SemiBold */
        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-SemiBold.woff2') format('woff2'),
                url('https://uat.mica.ac.in/endowment/fonts/Gottak-SemiBold.woff') format('woff');
            font-weight: 600;
            font-style: normal;
        }

        /* Bold */
        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Bold.woff2') format('woff2'),
                url('https://uat.mica.ac.in/endowment/fonts/Gottak-Bold.woff') format('woff');
            font-weight: 700;
            font-style: normal;
        }

        /* Thin */
        @font-face {
            font-family: 'Gottak';
            src: url('https://uat.mica.ac.in/endowment/fonts/Gottak-Thin.woff2') format('woff2'),
                url('https://uat.mica.ac.in/endowment/fonts/Gottak-Thin.woff') format('woff');
            font-weight: 100;
            font-style: normal;
        }

        /* =====================================================
   ROOT VARIABLES
===================================================== */

        :root {
            --primary-color: #981c20;
            --text-color: #404040;
            --light-bg: #fffaf7;
            --white: #ffffff;
            --border-color: #e5e5e5;
            --transition: all 0.3s ease;
        }

        /* =====================================================
   GLOBAL
===================================================== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Gottak', sans-serif;
            background: var(--light-bg);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* =====================================================
   CONTAINER
===================================================== */

        .container {
            width: 100%;
            max-width: 1566px !important;
            margin: 0 auto;
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        /* =====================================================
   HERO SECTION
===================================================== */

        .hero-section {
            position: relative;
            background: var(--primary-color);
            display: flex;
        }

        .hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

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

        .logo-img {
            margin-bottom: 54px;
        }

        .hero-title,
        .hero-section h1 {
            font-size: 40px;
            font-weight: 500;
            line-height: 1.2;
            color: var(--white);
            margin-bottom: 16px;
        }

        .hero-section p,
        .hero-description {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.5;
            color: var(--white);
            max-width: 630px;
        }

        .hero-bg-img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        /* =====================================================
   BREADCRUMB
===================================================== */

        .breadcrumb-section {
            background: var(--light-bg);
            border-bottom: 1px solid var(--border-color);
            padding: 14px 0;
        }

        .breadcrumb {
            margin: 0;
        }

        .breadcrumb-item,
        .breadcrumb-item a {
            font-size: 14px;
        }

        .breadcrumb-item a {
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 500;
        }

        .breadcrumb-item.active {
            color: #525252;
        }

        /* =====================================================
   SECTION TITLE
===================================================== */

        .section-title {
            font-size: 24px;
            font-weight: 500;
            color: var(--text-color);
            margin-bottom: 24px;
        }

        /* =====================================================
   FORM
===================================================== */

        .form-control,
        .form-select {
            border: 1px solid #d5d5d5;
            border-radius: 0;
            min-height: 54px;
            padding: 12px 16px;
            font-size: 16px;
            color: var(--text-color);
            background: var(--white);
            box-shadow: none !important;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-color);
        }

        textarea.form-control {
            min-height: 160px;
        }

        .form-label {
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 8px;
            color: var(--text-color);
        }

        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 16px 12px;
            transition: 0.2s;
        }

        .form-select.arrow-up {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 11l6-6 6 6'/%3e%3c/svg%3e");
        }

        /* =====================================================
   RADIO BUTTON
===================================================== */

        .form-check {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 0;
            margin-bottom: 14px;
        }

        .form-check-input[type="radio"] {
            appearance: none;
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border: 2px solid var(--text-color);
            border-radius: 50%;
            position: relative;
            cursor: pointer;
            background: #fff;
            margin: 0;
        }

        .form-check-input[type="radio"]::before {
            content: "";
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--text-color);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: var(--transition);
        }

        .form-check-input[type="radio"]:checked::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .form-check-input:focus {
            outline: none;
            box-shadow: none;
        }

        .form-check-label {
            font-size: 16px;
            color: var(--text-color);
            cursor: pointer;
        }

        /* =====================================================
   SUMMARY CARD
===================================================== */

        .summary-card {
            position: sticky;
            top: 30px;
        }

        .sub-summary-card {
            background: var(--white);
            padding: 20px;
        }

        .amount-display {
            font-size: 48px;
            font-weight: 500;
            line-height: 1.2;
            color: var(--text-color);
        }

        a {
            color: var(--text-color);
        }

        .summary-title {
            font-size: 18px;
        }

        .summary-note {
            font-size: 14px;
        }

        .summary-warning {
            font-size: 14px;
        }

        /* =====================================================
   BUTTON
===================================================== */

        .sub-summary-card .proceed-button {
            width: 100%;
            min-height: 52px;
            background: var(--primary-color);
            border: 1px solid var(--primary-color);
            color: var(--white);
            font-size: 16px;
            font-weight: 500;
            border-radius: 3px;
            transition: var(--transition);
            text-align: left;
        }

        .sub-summary-card .proceed-button:hover {
            background: #7E1E21;
            border-color: #7E1E21;
            color: #FFFFFF;
        }

        .sub-summary-card .proceed-button:focus,
        .sub-summary-card .proceed-button:active {
            box-shadow: none !important;
        }

        .sub-summary-card .proceed-button:disabled {
            background-color: #b5b5b5;
            border-color: #b5b5b5;
            cursor: not-allowed;
            opacity: 0.7;
            text-align: left;
        }

        /* =====================================================
   ACCORDION
===================================================== */

        /* MAIN ACCORDION */

        .how-to-give-form #mainHowToGiveAccordion .accordion-item {
            border: 1px solid #e4ddd7;
            border-radius: 8px;
            overflow: hidden;
            background: transparent;
        }

        .how-to-give-form .main-accordion-btn {
            background: var(--light-bg) !important;
            color: var(--text-color) !important;
            font-size: 24px;
            font-weight: 500;
            padding: 10px 0px;
            box-shadow: none !important;
            border: none !important;
        }

        .how-to-give-form .main-accordion-btn:not(.collapsed) {
            background: var(--light-bg) !important;
        }

        /* INNER ACCORDION */

        .how-to-give-form .custom-accordion .accordion-item {
            border: 1px solid #ececec;
            border-radius: 8px !important;
            overflow: hidden;
            margin-bottom: 0px;
            background: var(--white);
        }

        .how-to-give-form .custom-accordion .accordion-button {
            background: var(--white);
            padding: 20px;
            box-shadow: none !important;
            border: none !important;
        }

        .how-to-give-form .custom-accordion .accordion-button:not(.collapsed) {
            background: var(--white);
            padding-bottom: 0px;
        }

        .how-to-give-form .custom-accordion .accordion-body {
            padding: 0 24px 24px 98px;
            background: var(--white);
            font-size: 16px;
            line-height: 1.5;
			font-weight: 300;
            color: var(--text-color);
        }

        .how-to-give-form .accordion-title-wrap {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .how-to-give-form .accordion-icon {
            flex-shrink: 0;
        }

        .how-to-give-form .accordion-img {
            width: 58px;
            height: 58px;
            object-fit: contain;
        }

        .how-to-give-form .accordion-title {
            font-size: 20px;
            font-weight: 500;
            color: #262626;
        }

        /* REMOVE BOOTSTRAP ARROW */

        .how-to-give-form .accordion-button::after {
            background-image: url("../images/icons/Chevron down.png") !important;
            background-size: 16px;
            width: 16px;
            height: 16px;
        }

        .how-to-give-form .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        /* =====================================================
   BANK DETAILS
===================================================== */

        .how-to-give-form .detail-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 10px;
        }

        .how-to-give-form .detail-label {
            width: 320px;
            font-size: 16px;
            font-weight: 500;
            color: var(--text-color);
        }

        .how-to-give-form .detail-value {
            font-size: 16px;
            color: #222;
            font-weight: 600;
        }

        .how-to-give-form .payment-note,
        .how-to-give-form .verification-note,
        .how-to-give-form .cheque-list li,
        .how-to-give-form .address-box {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-color);
        }

        /* =====================================================
   EXTRA
===================================================== */

        .how-to-give-form .payment-extra {
            display: none;
        }

        .iti {
            width: 100%;
        }

        input[type="file"].form-control {
            padding: 12px;
            height: auto;
        }

        /* =====================================================
   LARGE SCREEN
===================================================== */

        @media (min-width: 1600px) {

            .h2,
            h2 {
                font-size: 40px;
            }

            .hero-title,
            .hero-section h1 {
                font-size: 40px;
            }

            .hero-section p {
                font-size: 16px;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* 1800px and above */
        @media (min-width: 1800px) {

            .hero-section p,
            .hero-description {
                max-width: 648px;
            }
        }

        /* =====================================================
   LAPTOP
===================================================== */

        @media (max-width: 1366px) {

            .hero-title,
            .hero-section h1 {
                font-size: 40px;
            }

        }

        @media (min-width: 1024px) and (max-width: 1200px) {
            .btn {
                --bs-btn-padding-x: 0.70rem !important;
            }
        }

        /* =====================================================
   TABLET
===================================================== */

        @media (max-width: 991px) {

            .sub-hero {
                margin-top: 0px;
            }

            h2 {
                font-size: 36px;
            }

            .hero-section .container {
                justify-content: center;
            }

            .logo-img {
                margin: 0 auto 20px;
			    margin-bottom: 54px !important;
            }

            .hero-title,
            .hero-section h1 {
                font-size: 40px;
            }

            .hero-section p {
                font-size: 16px;
                margin: 0 auto;
            }

            .amount-display {
                font-size: 30px;
                font-weight: 500;
                line-height: 1.2;
                color: var(--text-color);
            }

            a {
                color: var(--text-color);
            }

            .summary-title {
                font-size: 14px;
            }

            .summary-note {
                font-size: 12px;
            }

            .summary-warning {
                font-size: 12px;
            }

            .sub-summary-card {
                background: var(--white);
                padding: 20px;
            }

            .proceed-button {
                min-height: 40px;
                font-size: 10px;

            }

            .detail-label {
                margin-bottom: 6px;
            }

            .section-title {
                font-size: 20px;
            }

            .form-control,
            .form-select {
                font-size: 12px;

                min-height: 45px;
            }

            .form-label {
                font-size: 12px;
            }

            .form-check-label {
                font-size: 14px;
            }

            .main-accordion-btn {
                font-size: 20px;
                padding: 0px;
            }

            .accordion-title {
                font-size: 16px;
            }

            .custom-accordion .accordion-body {
                font-size: 14px;
            }

            .detail-label,
            .detail-value {
                font-size: 14px;
            }

            .payment-note,
            .verification-note,
            .cheque-list li,
            .address-box {
                font-size: 14px;
            }

        }

        /* =====================================================
   MOBILE
===================================================== */

        @media (max-width: 576px) {

            html,
            body {
                overflow-x: hidden;
                max-width: 100%;
            }

            .container {
                padding-left: 18px !important;
                padding-right: 18px !important;
            }

            .row {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .row>* {
                padding-right: 0px !important;
                padding-left: 0px !important;
            }

            .hero-title,
            .hero-section h1 {
                font-size: 40px;
            }

            .hero-section p {
                font-size: 16px;
                line-height: 1.5;
            }

            .section-title {
                font-size: 22px;
            }

            .main-accordion-btn {
                font-size: 20px;
                padding: 0px;
            }

            .custom-accordion .accordion-button {
                padding: 18px;
            }

            .accordion-title {
                font-size: 15px;
            }

            .accordion-img {
                width: 42px;
                height: 42px;
            }

            .custom-accordion .accordion-body {
                padding: 18px;
                font-size: 14px;
            }

            .form-control,
            .form-select {
                min-height: 48px;
                font-size: 15px;
            }

            .form-check-label {
                font-size: 15px;
            }

            .amount-display {
                font-size: 38px;
            }

            .proceed-button {
                min-height: 50px;
                font-size: 15px;
            }

        }

        .p-4,
        .px-4 {
            padding: 20px !important;
        }
    </style>