/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    background: #fff;
}

.logo-img {
    width: 200px;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    color: #8a8d2b;
}

.logo-subtitle {
    color: #666;
    font-size: 12px;
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #111;
    margin-left: 20px;
    position: relative;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #000;
}

.navbar-nav .nav-link.active::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
}

.hero-slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 35px;
}

.hero-btn {
    background: #FFFFFF;
    color: #657D18;
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: #111;
}

/* =========================
   CAROUSEL CONTROLS
========================= */

.custom-carousel-btn {
    width: 6%;
    opacity: 1;
}

.carousel-icon-wrapper {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.carousel-arrow {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.custom-carousel-btn:hover .carousel-icon-wrapper {
    background: #fff;
    transform: scale(1.08);
}

.custom-carousel-btn:hover .carousel-arrow {
    color: #000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 20px;
}

/* =========================
   REACH SECTION
========================= */

.reach-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.reach-heading {
    gap: 20px;
}

.heading-line {
    width: 110px;
    height: 3px;
    background: #222;
}

.reach-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.reach-heading {
gap: 22px;
}

/* =========================
   MAP AREA
========================= */

.reach-map-wrapper {
    position: relative;
}

.reach-map {
    max-width: 100%;
    width: 320px;
    margin: auto;
}

.states-label {
    margin-top: 20px;
    gap: 12px;
}

.state-icon {
    width: 45px;
}

.states-label span {
    font-size: 42px;
    font-weight: 700;
    color: #666;
}

/* =========================
   STAT CARDS
========================= */

.reach-card {
    background: #657d18;
    color: #fff;
    padding: 28px 24px;
    min-height: 150px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reach-card:hover {
    transform: translateY(-6px);
    background: #111;
}

.reach-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.reach-card p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    max-width: 180px;
}

/* =========================
   REACH CARD ICONS
========================= */

.reach-icon {
    font-size: 46px;
    color: #fff;
    align-self: flex-end;
    opacity: 0.95;
    transition: 0.3s ease;
}

.reach-card:hover .reach-icon {
    transform: scale(1.08);
    opacity: 1;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* =========================
   ABOUT US SECTION
========================= */

.about-us-section {
    padding: 50px 0;
    background: #EEF2D4;
    overflow: hidden;
}

/* =========================
   SECTION HEADING
========================= */

.about-section-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 55px;
}

.about-section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* =========================
   IMAGE
========================= */

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* =========================
   CONTENT
========================= */

.about-content-wrapper {
    padding-left: 20px;
}

.about-content-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-content-wrapper p {
    font-size: 14px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 28px;
    font-weight: 400;
}

/* =========================
   ACTIVITIES SECTION
========================= */

.activities-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   SECTION HEADING
========================= */

.activities-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.activities-heading-line {
    width: 110px;
    height: 3px;
    background: #222;
}

.activities-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* =========================
   DESCRIPTION
========================= */

.activities-description {
    max-width: 1120px;
    margin-bottom: 55px;
}

.activities-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* =========================
   SLIDER WRAPPER
========================= */

.activities-slider-wrapper {
    position: relative;
}

/* =========================
   NAV BUTTONS
========================= */

.activities-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #333;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    transition: 0.3s ease;
}

.activities-nav-btn i {
    font-size: 24px;
}

.activities-prev-btn {
    left: -24px;
}

.activities-next-btn {
    right: -24px;
}

.activities-nav-btn:hover {
    background: #000;
}

/* =========================
   CARD
========================= */

.activity-card-box {
    background: #657D18;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
}

.activity-card-box:hover {
    transform: translateY(-6px);
}

.activity-card-image {
    overflow: hidden;
}

.activity-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.4s ease;
}

.activity-card-box:hover .activity-card-image img {
    transform: scale(1.05);
}

/* =========================
   CARD CONTENT
========================= */

.activity-card-content {
    padding: 20px;
}

.activity-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 12px;
}

.activity-card-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #f1f1f1;
    margin-bottom: 25px;
}

/* =========================
   ACTIVITIES CAROUSEL FIX
========================= */

#activitiesCarousel {
    position: relative;
}

#activitiesCarousel .carousel-inner {
    overflow: visible;
}

#activitiesCarousel .carousel-item {
    transition: transform 0.7s ease-in-out;
}

/* Equal Height Cards */

.activity-card-box {
    display: flex;
    flex-direction: column;
}

.activity-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-read-btn {
    margin-top: auto;
}

/* =========================
   BUTTON
========================= */

.activity-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    width: 40%;
}

.activity-read-btn:hover {
    background: #fff;
    color: #000;
}

/* =========================
   PRESS RELEASE SECTION
========================= */

.press-release-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.press-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.press-heading-line {
    width: 110px;
    height: 4px;
    background: #222;
}

.press-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* =========================
   DESCRIPTION
========================= */

.press-description {
    max-width: 1180px;
    margin-bottom: 55px;
}

.press-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* =========================
   CAROUSEL
========================= */

.press-carousel-wrapper {
    position: relative;
}

#pressCarousel {
    position: relative;
}

#pressCarousel .carousel-inner {
    overflow: visible;
}

/* =========================
   NAV BUTTONS
========================= */

.press-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: #333;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    transition: 0.3s ease;
}

.press-nav-btn i {
    font-size: 24px;
}

.press-prev-btn {
    left: -28px;
}

.press-next-btn {
    right: -28px;
}

.press-nav-btn:hover {
    background: #000;
}

/* =========================
   PRESS CARD
========================= */

.press-card-box {
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.press-card-box:hover {
    transform: translateY(-6px);
}

.press-image-wrapper {
    position: relative;
    overflow: hidden;
}

.press-image-wrapper img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: 0.4s ease;
}

.press-card-box:hover img {
    transform: scale(1.03);
}

/* =========================
   YEAR TAG
========================= */

.press-year-tag {
    position: absolute;
    bottom: 0;
    right: 0;

    width: 80px;
    height: 40px;

    background: #1f1f1f;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
}

/* =========================
   READ MORE BUTTON
========================= */

.press-readmore-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 45px;
}

.press-readmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    height: 62px;

    background: #1f1f1f;
    color: #fff;

    text-decoration: none;
    font-size: 26px;
    font-weight: 600;

    transition: 0.3s ease;
}

.press-readmore-btn:hover {
    background: #000;
    color: #fff;
}


/* =========================
   CONTACT SECTION
========================= */

.contact-us-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.contact-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 55px;
}

.contact-heading-line {
    width: 110px;
    height: 4px;
    background: #657d18;
}

.contact-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #657d18;
    margin: 0;
}

/* =========================
   LEFT CARD
========================= */

.contact-info-card {
    background: #eef2d4;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 25px;
}

.contact-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 38px;
    font-weight:700;
}

/* =========================
   CONTACT ITEM
========================= */

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px;
}

.contact-icon {
    min-width: 38px;
}

.contact-icon i {
    font-size: 24px;
    color: #1f1f1f;
}

.contact-info-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #2f2f2f;
    margin: 0;
}

/* =========================
   SOCIAL
========================= */

.contact-social-icons {
    display: flex;
    gap: 16px;
    margin-top: 45px;
}

.contact-social-icons a {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #1f1f1f;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-social-icons a i {
    font-size: 16px;
}

.contact-social-icons a:hover {
    background: #657d18;
}

/* =========================
   FORM
========================= */

.contact-form-wrapper {
    padding-left: 40px;
}

.contact-form-group {
    width: 100%;
}

.contact-form-group label {
    display: flex;
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 18px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #555;
    background: transparent;

    padding-bottom: 12px;

    font-size: 14px;
    color: #222;

    outline: none;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #aaa;
}

/* =========================
   CUSTOM RADIO
========================= */

.custom-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 65px;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    position: relative;
}

.custom-radio input {
    display: none;
}

.radio-circle {
    width: 22px;
    height: 22px;

    border-radius: 50%;
    border: 2px solid #bbb;

    position: relative;
}

.custom-radio input:checked + .radio-circle {
    border-color: #657d18;
    background: #657d18;
}

.custom-radio input:checked + .radio-circle::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 3px;

    color: #fff;
    font-size: 16px;
}

.radio-text {
    font-size: 14px;
    color: #777;
}

/* =========================
   SUBMIT BUTTON
========================= */

.contact-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 55px;
}

.contact-submit-btn {
    min-width: 190px;
    height: 65px;

    border: none;

    background: #657d18;
    color: #fff;

    font-size: 26px;
    font-weight: 600;

    transition: 0.3s ease;
}

.contact-submit-btn:hover {
    background: #4d620f;
}

/* =========================
   FOOTER SECTION
========================= */

.custom-footer-section {
    position: relative;
    background: #657d18;
    padding: 50px 0;
    overflow: hidden;
}

/* =========================
   BACKGROUND ICONS
========================= */

.footer-bg-icon {
    position: absolute;
    color: rgba(255,255,255,0.12);
    z-index: 1;
    pointer-events: none;
}

.footer-bg-icon i {
    line-height: 1;
}

.footer-icon-left {
    bottom: -10px;
    left: 0;
}

.footer-icon-left i {
    font-size: 160px;
}

.footer-icon-center {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.footer-icon-center i {
    font-size: 130px;
}

.footer-icon-right {
    bottom: -10px;
    right: 6%;
}

.footer-icon-right i {
    font-size: 160px;
}

/* =========================
   CONTENT
========================= */

.custom-footer-section .container {
    position: relative;
    z-index: 2;
}

/* =========================
   LOGO
========================= */

.footer-logo {
    max-width: 200px;
    width: 100%;
}

/* =========================
   WIDGET
========================= */

.footer-widget h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
}

/* =========================
   LINKS
========================= */

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 20px;
}

.footer-widget ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-widget ul li a:hover {
    opacity: 0.8;
    padding-left: 5px;
}

/* =========================
   CONTACT
========================= */

.footer-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.footer-contact-item i {
    color: #fff;
    font-size: 22px;
    margin-top: 4px;
}

.footer-contact-item p {
    color: #fff;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   SOCIAL
========================= */

.footer-social-icons {
    display: flex;
    gap: 14px;
}

.footer-social-icons a {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #fff;
    color: #657d18;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-social-icons a i {
    font-size: 16px;
}

.footer-social-icons a:hover {
    background: #1f1f1f;
    color: #fff;
}





/* =========================
   BUTTON
========================= */

.btn {
    border: 2px solid #657D18;
    color: #657D18;
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s;
    text-decoration: none;
}

.btn:hover {
    background: #657D18;
    color: #fff;
    padding: 14px 35px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s;
    transform: translateY(-2px);
}


/* =========================
   ABOUT DETAIL SECTION
========================= */

.about-detail-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.about-detail-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.about-detail-line {
    width: 110px;
    height: 3px;
    background: #111;
}

.about-detail-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* =========================
   CAROUSEL
========================= */

.about-detail-carousel {
    position: relative;
    margin-bottom: 25px;
}

.about-detail-carousel img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

/* NAV BUTTONS */

.about-detail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.65);
    color: #fff;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.about-detail-nav i {
    font-size: 24px;
}

.about-detail-prev {
    left: 18px;
}

.about-detail-next {
    right: 18px;
}

.about-detail-nav:hover {
    background: #000;
}

/* =========================
   CONTENT BOX
========================= */

.about-detail-content-box {
    background: #657d18;
    padding: 35px;
    margin-bottom: 40px;
}

.about-detail-content-box p {
    color: #fff;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-detail-content-box p:last-child {
    margin-bottom: 0;
}

/* =========================
   SECTORS
========================= */

.about-sectors-wrapper {
    background: #f7f7f7;
    border: 1px solid #ddd;
    padding: 45px;
}

.about-sectors-wrapper h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #777;
    margin-bottom: 40px;
}

/* =========================
   SECTOR CARD
========================= */

.sector-card {
    background: #fff;
    border: 1px solid #ddd;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    padding: 12px;
    transition: 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}


/* =========================
   MISSION VISION SECTION
========================= */

.mission-vision-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   CARD
========================= */

.mission-vision-card {
    border: 1px solid #d9d9d9;
    background: #fff;

    padding: 40px 35px 45px;

    text-align: center;

    height: 100%;

    transition: 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* =========================
   TITLE
========================= */

.mission-vision-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: #707070;
    margin-bottom: 35px;
}

/* =========================
   ICON BOX
========================= */

.mission-icon-box {
    width: 360px;
    max-width: 100%;

    margin: auto;
    margin-bottom: 40px;

    background: #fff;
    border: 1px solid #ddd;

    padding: 35px 20px;

    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

.mission-icon,
.vision-icon {
    margin-bottom: 18px;
}

.mission-icon i {
    font-size: 52px;
    color: #778600;
}

.vision-icon i {
    font-size: 52px;
    color: #778600;
}

/* =========================
   ICON BOX TEXT
========================= */

.mission-icon-box h3 {
    font-size: 20px;
    line-height: 1.6;
    color: #6f6f6f;
    font-weight: 600;
    margin: 0;
}

.mission-icon-box h3 span {
    color: #7a8f33;
    font-weight: 700;
}

.mission-icon-box h3 .orange-text {
    color: #e08b00;
}

/* =========================
   CONTENT
========================= */

.mission-content {
    position: relative;
    max-width: 470px;
    margin: auto;
}

.mission-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.quote-start,
.quote-end {
    font-size: 32px;
    font-weight: 700;
    color: #556b14;
    line-height: 1;
}

.quote-start {
    position: absolute;
    top: -8px;
    left: -18px;
}

.quote-end {
    position: absolute;
    bottom: -22px;
    right: -12px;
}

/* =========================
   FOUNDER NOTE SECTION
========================= */

.founder-note-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.founder-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.founder-heading-line {
    width: 110px;
    height: 3px;
    background: #111;
}

.founder-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* =========================
   TOP BOX
========================= */

.founder-top-box {
    margin-bottom: 35px;
}

/* IMAGE */

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* QUOTE BOX */

.founder-quote-box {
    background: #657d18;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px;
}

.founder-quote-content {
    max-width: 540px;
}

.founder-quote-content h3 {
    color: #fff;
    font-size: 24px;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 45px;
}

.founder-quote-content h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: right;
    margin: 0;
}

/* =========================
   CONTENT BOX
========================= */

.founder-content-box {
    background: #fff;
    border: 1px solid #ddd;
    padding: 35px;
}

.founder-content-box p {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
}

.founder-content-box p:last-of-type {
    margin-bottom: 0;
}

/* =========================
   BUTTON
========================= */

.founder-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.founder-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    height: 50px;

    background: #657d18;
    color: #fff;

    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    transition: 0.3s ease;
}

.founder-read-btn:hover {
    background: #4f6510;
    color: #fff;
}


/* =========================
   CERTIFICATION SECTION
========================= */

.certification-section {
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.certification-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.certification-heading-line {
    width: 110px;
    height: 3px;
    background: #111;
}

.certification-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* =========================
   CARD
========================= */

.certificate-card {
    border: 4px solid #98a55b;
    background: #fff;
    padding: 6px;
    transition: 0.3s ease;
    height: 100%;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   IMAGE
========================= */

.certificate-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* =========================
   TRUSTED PARTNERS SECTION
========================= */

.trusted-partners-section {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.partners-heading-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
}

.partners-heading-line {
    width: 140px;
    height: 4px;
    background: #111;
}

.partners-heading-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* =========================
   CAROUSEL
========================= */

.partners-carousel-wrapper {
    position: relative;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
}

/* =========================
   LOGO CARD
========================= */

.partner-logo-card {
    min-width: 150px;
    height: 140px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    transition: 0.3s ease;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    transition: 0.3s ease;
}

.partner-logo-card:hover img {
    transform: scale(1.05);
}

/* =========================
   NAV BUTTONS
========================= */

.partners-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.65);
    color: #fff;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.partners-nav-btn i {
    font-size: 22px;
}

.partners-prev-btn {
    left: -20px;
}

.partners-next-btn {
    right: -20px;
}

.partners-nav-btn:hover {
    background: #000;
}

/* =========================
   VIEW MORE
========================= */

.partners-viewmore-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.partners-viewmore-btn {
    min-width: 210px;
    height: 55px;

    border: none;

    background: #657d18;
    color: #fff;

    font-size: 18px;
    font-weight: 600;

    transition: 0.3s ease;
}

.partners-viewmore-btn:hover {
    background: #4f6510;
}

/* =========================
   MORE PARTNERS
========================= */

.more-partners-grid {
    margin-top: 40px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.activities-detail-content-box {
    background: #fff;
    padding: 35px;
    margin-bottom: 40px;
    border: 1px solid;
}

/* =========================
   ACTIVITY DETAIL SECTION
========================= */

.activity-detail-section {
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.activity-detail-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.activity-detail-line {
    width: 110px;
    height: 3px;
    background: #111;
}

.activity-detail-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* =========================
   BOX
========================= */

.activity-detail-box {
    border: 1px solid #ddd;
    background: #fff;
    padding: 40px;
}

/* =========================
   TITLE
========================= */

.activity-detail-title {
    text-align: center;
    margin-bottom: 35px;
}

.activity-detail-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.activity-detail-title p {
    font-size:14px;
    color: #555;
    margin: 0;
}

/* =========================
   CAROUSEL
========================= */

.activity-detail-carousel {
    position: relative;
    margin-bottom: 28px;
}

.activity-detail-carousel img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

/* =========================
   NAV BUTTONS
========================= */

.activity-detail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.65);
    color: #fff;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s ease;
}

.activity-detail-nav i {
    font-size: 24px;
}

.activity-detail-prev {
    left: 16px;
}

.activity-detail-next {
    right: 16px;
}

.activity-detail-nav:hover {
    background: #000;
}

/* =========================
   DESCRIPTION
========================= */

.activity-detail-description p {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
    margin: 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content h3 {
        font-size: 26px;
    }

}

@media (max-width: 991px) {

    .navbar-nav {
        margin-top: 20px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero-slide {
        height: 75vh;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content h3 {
        font-size: 24px;
    }

}

@media (max-width: 767px) {

    .logo-img {
        width: 140px;
    }

    .logo-title {
        font-size: 20px;
    }

    .hero-slide {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content h3 {
        font-size: 20px;
    }

    .hero-btn {
        padding: 12px 28px;
    }

    .carousel-icon-wrapper {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow {
        font-size: 16px;
    }

}

/* Responsive */

@media (max-width: 767px) {

    .reach-icon {
        font-size: 38px;
    }

}


@media (max-width: 575px) {

    .hero-slide {
        height: 65vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

}

@media (max-width: 1199px) {

    .reach-heading h2 {
        font-size: 36px;
    }

    .states-label span {
        font-size: 34px;
    }

}

@media (max-width: 991px) {

    .reach-heading {
        justify-content: center;
    }

    .reach-map-wrapper {
        margin-bottom: 40px;
    }

    .reach-card {
        min-height: 140px;
    }

}

@media (max-width: 767px) {

    .reach-heading {
        gap: 14px;
    }

    .heading-line {
        width: 60px;
    }

    .reach-heading h2 {
        font-size: 28px;
    }

    .states-label span {
        font-size: 28px;
    }

    .reach-card {
        padding: 22px;
        min-height: auto;
    }

    .reach-card h3 {
        font-size: 24px;
    }

    .reach-card p {
        font-size: 14px;
    }

    .reach-card img {
        width: 42px;
    }

}

@media (max-width: 575px) {

    .reach-map {
        width: 220px;
    }

    .states-label span {
        font-size: 24px;
    }

}

@media (max-width: 1400px) {

    .about-section-heading h2 {
        font-size: 54px;
    }

    .about-content-wrapper h3 {
        font-size: 52px;
    }

    .about-content-wrapper p {
        font-size: 21px;
    }

}

@media (max-width: 1199px) {

    .about-section-heading h2 {
        font-size: 46px;
    }

    .about-content-wrapper h3 {
        font-size: 42px;
    }

    .about-content-wrapper p {
        font-size: 19px;
    }

    .about-read-btn {
        min-width: 150px;
        height: 58px;
        font-size: 24px;
    }

}

@media (max-width: 991px) {

    .about-us-section {
        padding: 50px 0;
    }

    .about-section-heading {
        justify-content: center;
    }

    .about-content-wrapper {
        padding-left: 0;
        text-align: center;
    }

    .about-content-wrapper h3 {
        font-size: 38px;
    }

}

@media (max-width: 767px) {

    .about-us-section {
        padding: 60px 0;
    }

    .about-section-heading {
        gap: 15px;
        margin-bottom: 40px;
    }

    .about-heading-line {
        width: 80px;
        height: 3px;
    }

    .about-section-heading h2 {
        font-size: 34px;
    }

    .about-content-wrapper h3 {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .about-content-wrapper p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .about-read-btn {
        min-width: 135px;
        height: 52px;
        font-size: 18px;
    }

}

@media (max-width: 575px) {

    .about-section-heading h2 {
        font-size: 28px;
    }

    .about-content-wrapper h3 {
        font-size: 28px;
    }

}


@media (max-width: 1400px) {

    .activities-heading-wrapper h2 {
        font-size: 50px;
    }

    .activities-description p {
        font-size: 22px;
    }

    .activity-card-content h3 {
        font-size: 28px;
    }

    .activity-card-content p {
        font-size: 18px;
    }

}

@media (max-width: 1199px) {

    .activities-heading-wrapper h2 {
        font-size: 42px;
    }

    .activities-description p {
        font-size: 19px;
    }

    .activity-card-image img {
        height: 260px;
    }

    .activity-card-content h3 {
        font-size: 24px;
    }

}

@media (max-width: 991px) {

    .activities-section {
        padding: 50px 0;
    }

    .activities-nav-btn {
        display: none;
    }

    .activities-heading-wrapper {
        justify-content: center;
    }

    .activities-description {
        text-align: center;
    }

}

@media (max-width: 767px) {

    .activities-section {
        padding: 50px 0;
    }

    .activities-heading-wrapper {
        gap: 14px;
        margin-bottom: 22px;
    }

    .activities-heading-line {
        width: 70px;
        height: 3px;
    }

    .activities-heading-wrapper h2 {
        font-size: 30px;
    }

    .activities-description {
        margin-bottom: 35px;
    }

    .activities-description p {
        font-size: 16px;
        line-height: 1.8;
    }

    .activity-card-image img {
        height: 230px;
    }

    .activity-card-content {
        padding: 20px;
    }

    .activity-card-content h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .activity-card-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .activity-read-btn {
        min-width: 125px;
        height: 42px;
        font-size: 15px;
    }

}

/* Mobile Carousel */

@media (max-width: 991px) {

    #activitiesCarousel .carousel-item .row {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .activities-nav-btn {
        display: none !important;
    }

}

@media (max-width: 1400px) {

    .press-heading-wrapper h2 {
        font-size: 50px;
    }

    .press-description p {
        font-size: 21px;
    }

}

@media (max-width: 1199px) {

    .press-heading-wrapper h2 {
        font-size: 42px;
    }

    .press-description p {
        font-size: 18px;
    }

    .press-image-wrapper img {
        height: 360px;
    }

}

@media (max-width: 991px) {

    .press-release-section {
        padding: 50px 0;
    }

    .press-nav-btn {
        display: none;
    }

    .press-heading-wrapper {
        justify-content: center;
    }

    .press-description {
        text-align: center;
    }

    .press-readmore-wrapper {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .press-release-section {
        padding: 50px 0;
    }

    .press-heading-wrapper {
        gap: 14px;
        margin-bottom: 22px;
    }

    .press-heading-line {
        width: 70px;
        height: 3px;
    }

    .press-heading-wrapper h2 {
        font-size: 30px;
    }

    .press-description {
        margin-bottom: 35px;
    }

    .press-description p {
        font-size: 16px;
        line-height: 1.8;
    }

    .press-image-wrapper img {
        height: 300px;
    }

    .press-year-tag {
        width: 90px;
        height: 52px;
        font-size: 22px;
    }

    .press-readmore-btn {
        min-width: 145px;
        height: 50px;
        font-size: 18px;
    }

}


/* =========================
  Contact RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .contact-heading-wrapper h2 {
        font-size: 50px;
    }

    .contact-info-card h3 {
        font-size: 46px;
    }

}

@media (max-width: 1199px) {

    .contact-form-wrapper {
        padding-left: 0;
    }

    .contact-form-group label {
        font-size: 22px;
    }

    .contact-form-group input,
    .contact-form-group textarea {
        font-size: 18px;
    }

}

@media (max-width: 991px) {

    .contact-us-section {
        padding: 50px 0;
    }

    .contact-heading-wrapper {
        justify-content: center;
    }

    .contact-form-wrapper {
        margin-top: 20px;
    }

}

@media (max-width: 767px) {

    .contact-us-section {
        padding: 60px 0;
    }

    .contact-heading-wrapper {
        gap: 14px;
        margin-bottom: 40px;
    }

    .contact-heading-line {
        width: 70px;
        height: 3px;
    }

    .contact-heading-wrapper h2 {
        font-size: 30px;
    }

    .contact-info-card {
        padding: 30px;
    }

    .contact-info-card h3 {
        font-size: 34px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-info-item p {
        font-size: 16px;
    }

    .contact-form-group label {
        font-size: 18px;
    }

    .radio-text {
        font-size: 16px;
    }

    .custom-radio-group {
        gap: 28px;
    }

    .contact-submit-btn {
        min-width: 145px;
        height: 52px;
        font-size: 18px;
    }

}


/* =========================
   FOOTER RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .footer-widget h3 {
        font-size: 28px;
    }

    .footer-widget ul li a {
        font-size: 19px;
    }

    .footer-contact-item p {
        font-size: 18px;
    }

}

@media (max-width: 1199px) {

    .footer-logo {
        max-width: 260px;
    }

    .footer-icon-left i,
    .footer-icon-right i {
        font-size: 120px;
    }

    .footer-icon-center i {
        font-size: 100px;
    }

}

@media (max-width: 991px) {

    .custom-footer-section {
        padding: 50px 0;
    }

    .footer-logo-wrapper {
        text-align: center;
    }

}

@media (max-width: 767px) {

    .custom-footer-section {
        padding: 50px 0;
        text-align: center;
    }

    .footer-widget h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .footer-widget ul li {
        margin-bottom: 14px;
    }

    .footer-widget ul li a {
        font-size: 16px;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-contact-item p {
        font-size: 15px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-social-icons a {
        width: 44px;
        height: 44px;
    }

    .footer-social-icons a i {
        font-size: 18px;
    }

    .footer-icon-left i,
    .footer-icon-right i {
        font-size: 80px;
    }

    .footer-icon-center i {
        font-size: 70px;
    }

}

/* =========================
   ABOUT PAGE RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .about-detail-heading h2 {
        font-size: 44px;
    }

    .about-detail-content-box p {
        font-size: 14px;
    }

    .about-sectors-wrapper h3 {
        font-size: 40px;
    }

    .sector-card {
        font-size: 24px;
    }

}

@media (max-width: 1199px) {

    .about-detail-carousel img {
        height: 520px;
    }

    .about-detail-content-box p {
        font-size: 14px;
    }

    .sector-card {
        min-height: 100px;
        font-size: 21px;
    }

}

@media (max-width: 991px) {

    .about-detail-section {
        padding: 50px 0;
    }

    .about-detail-heading {
        justify-content: center;
    }

    .about-detail-carousel img {
        height: 450px;
    }

    .about-sectors-wrapper {
        padding: 35px;
    }

}

@media (max-width: 767px) {

    .about-detail-section {
        padding: 50px 0;
    }

    .about-detail-heading {
        gap: 14px;
        margin-bottom: 25px;
    }

    .about-detail-line {
        width: 70px;
        height: 3px;
    }

    .about-detail-heading h2 {
        font-size: 28px;
    }

    .about-detail-carousel img {
        height: 280px;
    }

    .about-detail-nav {
        width: 38px;
        height: 38px;
    }

    .about-detail-nav i {
        font-size: 18px;
    }

    .about-detail-content-box {
        padding: 25px;
    }

    .about-detail-content-box p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-sectors-wrapper {
        padding: 25px;
    }

    .about-sectors-wrapper h3 {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .sector-card {
        min-height: 85px;
        font-size: 16px;
        padding: 16px;
    }

}

@media (max-width: 1400px) {

    .mission-vision-card h2 {
        font-size: 32px;
    }

    .mission-icon-box h3 {
        font-size: 26px;
    }

    .mission-content p {
        font-size: 20px;
    }

}

@media (max-width: 1199px) {

    .mission-vision-card {
        padding: 35px 28px 40px;
    }

    .mission-icon-box {
        width: 320px;
    }

    .mission-content p {
        font-size: 18px;
    }

}

@media (max-width: 991px) {

    .mission-vision-section {
        padding: 50px 0;
    }

}

@media (max-width: 767px) {

    .mission-vision-section {
        padding: 50px 0;
    }

    .mission-vision-card {
        padding: 28px 20px 35px;
    }

    .mission-vision-card h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .mission-icon-box {
        width: 100%;
        padding: 28px 16px;
        margin-bottom: 28px;
    }

    .mission-icon i,
    .vision-icon i {
        font-size: 40px;
    }

    .mission-icon-box h3 {
        font-size: 21px;
    }

    .mission-content {
        max-width: 100%;
    }

    .mission-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .quote-start,
    .quote-end {
        font-size: 30px;
    }

    .quote-start {
        left: -6px;
    }

    .quote-end {
        right: -2px;
        bottom: -16px;
    }

}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .founder-heading-wrapper h2 {
        font-size: 32px;
    }

    .founder-quote-content h3 {
        font-size: 30px;
    }

}

@media (max-width: 1199px) {

    .founder-quote-box {
        padding: 40px;
    }

    .founder-quote-content h3 {
        font-size: 26px;
    }

    .founder-content-box p {
        font-size: 16px;
    }

}

@media (max-width: 991px) {

    .founder-note-section {
        padding: 60px 0;
    }

    .founder-heading-wrapper {
        justify-content: center;
    }

    .founder-quote-box {
        min-height: 300px;
    }

}

@media (max-width: 767px) {

    .founder-note-section {
        padding: 50px 0;
    }

    .founder-heading-wrapper {
        gap: 14px;
        margin-bottom: 22px;
    }

    .founder-heading-line {
        width: 70px;
        height: 3px;
    }

    .founder-heading-wrapper h2 {
        font-size: 24px;
    }

    .founder-quote-box {
        padding: 30px 24px;
        min-height: auto;
    }

    .founder-quote-content h3 {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .founder-quote-content h4 {
        font-size: 18px;
    }

    .founder-content-box {
        padding: 25px;
    }

    .founder-content-box p {
        font-size: 14px;
        line-height: 1.8;
    }

    .founder-btn-wrapper {
        justify-content: center;
    }

    .founder-read-btn {
        min-width: 130px;
        height: 46px;
        font-size: 16px;
    }

}

@media (max-width: 1400px) {

    .certification-heading-wrapper h2 {
        font-size: 38px;
    }

}

@media (max-width: 1199px) {

    .certificate-card img {
        height: 460px;
    }

}

@media (max-width: 991px) {

    .certification-section {
        padding: 60px 0;
    }

    .certification-heading-wrapper {
        justify-content: center;
    }

}

@media (max-width: 767px) {

    .certification-section {
        padding: 50px 0;
    }

    .certification-heading-wrapper {
        gap: 14px;
        margin-bottom: 24px;
    }

    .certification-heading-line {
        width: 70px;
        height: 3px;
    }

    .certification-heading-wrapper h2 {
        font-size: 24px;
    }

    .certificate-card img {
        height: auto;
    }

}

@media (max-width: 1199px) {

    .partners-heading-wrapper h2 {
        font-size: 38px;
    }

    .partner-logo-card {
        min-width: 130px;
        height: 120px;
    }

}

@media (max-width: 991px) {

    .trusted-partners-section {
        padding: 60px 0;
    }

    .partners-heading-wrapper {
        justify-content: center;
    }

    .partners-row {
        overflow-x: auto;
        gap: 25px;
        padding-bottom: 10px;
    }

    .partners-nav-btn {
        display: none;
    }

    .more-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .trusted-partners-section {
        padding: 50px 0;
    }

    .partners-heading-wrapper {
        gap: 14px;
        margin-bottom: 30px;
    }

    .partners-heading-line {
        width: 70px;
        height: 3px;
    }

    .partners-heading-wrapper h2 {
        font-size: 24px;
    }

    .partner-logo-card {
        min-width: 110px;
        height: 100px;
    }

    .partner-logo-card img {
        max-height: 70px;
    }

    .partners-viewmore-btn {
        min-width: 180px;
        height: 48px;
        font-size: 16px;
    }

    .more-partners-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 1400px) {

    .activity-detail-heading h2 {
        font-size: 42px;
    }

    .activity-detail-title h3 {
        font-size: 36px;
    }

    .activity-detail-description p {
        font-size: 19px;
    }

}

@media (max-width: 1199px) {

    .activity-detail-carousel img {
        height: 520px;
    }

    .activity-detail-title h3 {
        font-size: 30px;
    }

    .activity-detail-description p {
        font-size: 17px;
    }

}

@media (max-width: 991px) {

    .activity-detail-section {
        padding: 60px 0;
    }

    .activity-detail-heading {
        justify-content: center;
    }

    .activity-detail-box {
        padding: 30px;
    }

    .activity-detail-carousel img {
        height: 430px;
    }

}

@media (max-width: 767px) {

    .activity-detail-section {
        padding: 50px 0;
    }

    .activity-detail-heading {
        gap: 14px;
        margin-bottom: 24px;
    }

    .activity-detail-line {
        width: 70px;
        height: 3px;
    }

    .activity-detail-heading h2 {
        font-size: 26px;
    }

    .activity-detail-box {
        padding: 20px;
    }

    .activity-detail-title {
        margin-bottom: 24px;
    }

    .activity-detail-title h3 {
        font-size: 24px;
        line-height: 1.5;
    }

    .activity-detail-title p {
        font-size: 15px;
        line-height: 1.7;
    }

    .activity-detail-carousel img {
        height: 240px;
    }

    .activity-detail-nav {
        width: 38px;
        height: 38px;
    }

    .activity-detail-nav i {
        font-size: 18px;
    }

    .activity-detail-description p {
        font-size: 15px;
        line-height: 1.8;
    }

}