body {
    font-family: 'Hind Siliguri', sans-serif;
}

:root {
    --bs-primary: hsl(163 100% 21% / 1);
    --bs-dark-primary: #153d25;
    --bs-secondary: #ffc107;
    --bs-light: #f1f2f4;
    --bs-dark: #272d47;
    --bs-heading-color: #272d47;
    --bs-darker: #1a1c33;
    --bs-success: #0abb75;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.text-primary {
    color: rgba(var(--bs-primary), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: var(--bs-secondary) !important;
}

/* NAVBAR */
.nav-custom {
    background-color: var(--bs-dark-primary);
    padding: 10px 0;
    position: relative;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    transition: transform 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out, -o-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    position: relative;
    z-index: 1021;
    width: 100%;
}

.nav-custom.sticky {
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    backdrop-filter: blur(24px);
    box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / .25);
    background-color: rgb(21 61 37 / 30%);
}

.logo {
    border-radius: 50%;
}

.brand-title {
    color: var(--bs-secondary);
    font-weight: 700;
}

.brand-text {
    font-size: 15px;
    line-height: 1;
}

.nav-link {
    color: white !important;
    margin: 0 10px;
    font-size: 15px;
    font-weight: 600;
}

.contact-btn {
    background: var(--bs-secondary);
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background: var(--bs-secondary);
    transform: scale(1.02);
}

/* HERO */

.hero-section {
    background: linear-gradient(90deg, #0d5a2a, #0c4c25);
    color: white;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, hsl(45 100% 50% / 1), transparent);
}


/* GRID PATTERN */

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .4;
    pointer-events: none;
}



/* HERO TEXT */

.hero-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 20px;
    color: var(--bs-white);
}

.hero-title span {
    color: var(--bs-secondary);
}

.hero-desc {
    color: #cbd5c0;
    margin-top: 20px;
    max-width: 520px;
}

.seat {
    font-size: 15px;
    opacity: .8;
}



/* BUTTONS */

.hero-buttons {
    margin-top: 25px;
}

.hero-buttons .btn {
    border-radius: 30px;
    margin-right: 10px;
    padding: 12px 30px;
}



/* STATS */

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    text-align: center;
}

.hero-stats>div {
    position: relative;
}

.hero-stats>div:not(:last-child)::after {
    content: '';
    padding-right: 50px;
    border-right: 1px solid hsl(0deg 0% 100% / 20%);
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
}

.hero-stats h3 {
    color: var(--bs-secondary);
    font-weight: 700;
    margin-bottom: 0;
}

.hero-stats p {
    margin-bottom: 0;
}

/* IMAGE */
.hero-right {
    position: relative;
}

.circle {
    width: 420px;
    height: 420px;
    border: 2px solid hsl(45deg 100% 50% / 30%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle2 {
    width: 450px;
    height: 450px;
    background-image: linear-gradient(to bottom right, hsl(45deg 100% 50% / 30%), hsl(145deg 80% 20% / 30%));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(64px);
}

.circle3 {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid hsl(45deg 100% 50% / 10%);
}

.candidate {
    max-height: 520px;
    position: relative;
    z-index: 2;
}


/* SCROLL INDICATOR */
.scroll {
    text-align: center;
    margin-top: 40px;
    opacity: .8;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 10px auto 0;
    position: relative;
}

@keyframes bounce-indicator {

    0%,
    to {
        transform: translateY(-25%) translateX(-50%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1)
    }

    50% {
        transform: translateY(0%) translateX(-50%);
        animation-timing-function: cubic-bezier(0, 0, .2, 1)
    }
}

.mouse::after {
    content: "";
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: bounce-indicator 1s infinite;
}

@keyframes pulse-glow {

    0%,
    to {
        box-shadow: 0 0 20px #ffbf0066
    }

    50% {
        box-shadow: 0 0 40px #ffbf0099
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    to {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1)
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, .2, 1)
    }
}

.animate-bounce {
    animation: bounce 1s infinite
}

/* About Css */
.about-section {
    background: hsl(160 10% 96% / 1);
    z-index: 2;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: -1;
}

.about-images {
    position: relative;
    z-index: 2;
}

.about-images img:nth-child(1) {
    position: absolute;
    left: -40px;
    bottom: -90px;
    z-index: -1;
    max-width: 100%;
}

@media (min-width: 992px) {
    .about-images img:nth-child(1) {
        max-width: 500px;
    }
}

@media (min-width: 1200px) {
    .about-images img:nth-child(1) {
        max-width: 600px;
    }
}

@media (min-width: 1400px) {
    .about-images img:nth-child(1) {
        max-width: 700px;
    }
}

.section-badge {
    color: rgb(244 42 65);
    background-color: rgb(244 42 65 / 10%);
    padding: 7px 16px 5px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.section-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: rgb(244 42 65);
    border-radius: 50%;
}

.section-title {
    font-weight: 700;
    color: var(--bs-dark-primary);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-secondary);
}

.list-item {
    background-color: var(--bs-white);
    color: var(--bs-dark-primary);
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--bs-dark-primary);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* About Css */

/* Information Css */
.info-item {
    background-color: var(--bs-white);
    border: 1px solid hsl(160 15% 88% / 1);
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.info-item:hover {
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(163deg 100% 21% / 10%);
    border-radius: 0.75rem;
}

.info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.info-title {
    margin-bottom: 0;
    color: var(--bs-dark-primary);
    font-size: 18px;
    font-weight: 600;
}

.info-text {
    margin-bottom: 0;
    color: hsl(160 15% 40% / 1);
}

.title-badge {
    color: rgb(244 42 65);
    background-color: rgb(244 42 65 / 10%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    gap: 5px;
    border-radius: 50px;
    font-weight: 600;
}

.information-card {
    background-color: hsl(163deg 100% 21% / 10%);
    border: 1px solid hsl(163deg 100% 21% / 20%);
    border-radius: 15px;
    padding: 1.5rem;
    /* box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1); */
}

.information-card-title {
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 22px;
    display: inline-flex;
    gap: 5px;
    margin-bottom: 0;
}

.information-item {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    background-color: hsl(0 0% 100% / 1);
    padding: 0.7rem;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-radius: 10px;
}

.information-item:hover {
    background-color: hsl(160 10% 96% / 1);
}

.information-item-icon {
    background-color: #ec48991a;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(219 39 119);
    border-radius: 10px;
}

.information-text {
    margin-bottom: 0;
    color: var(--bs-primary);
    line-height: 1;
    padding-bottom: 3px;
    font-size: 14px;
}

.information-count {
    margin-bottom: 0;
    color: var(--bs-dark-primary);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, hsl(353deg 90% 56% / 10%), hsl(353deg 90% 56% / 0%));
}

/* Information Css */

/* Commitment Css */
.commitment-card {
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border: 1px solid hsl(163deg 100% 21% / 20%);
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    background-image: linear-gradient(to bottom right, hsl(163deg 100% 21% / 10%), hsl(353deg 90% 56% / 0%));
}

.commitment-card::before {
    content: attr(data-text);
    font-size: 70px;
    font-weight: 700;
    color: hsl(163deg 100% 21% / 10%);
    position: absolute;
    right: 25px;
    top: 3px;
    font-family: sans-serif;
    letter-spacing: -4px;
}

.commitment-card:hover {
    transform: translateY(-10px);
}

.commitment-card-icon {
    background-color: var(--bs-primary);
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    margin-bottom: 20px;
}

.commitment-card-icon svg {
    height: 24px;
    width: 24px;
}

.commitment-card-title {
    font-weight: 600;
    color: var(--bs-dark-primary);
}

.commitment-card-text {
    color: hsl(160 15% 40% / 1);
}

/* Commitment Css */

/* Frame Css */
.frame-section {
    position: relative;
    background-color: hsl(160 10% 96% / 1);
    background-image: linear-gradient(to bottom right, hsl(163deg 100% 21% / 10%), hsl(353deg 90% 56% / 0%));
    overflow: hidden;
    z-index: 2;
}

/* Frame Css */
.wppfg-wrap {
    --wppfg-primary: #0f766e;
    --wppfg-primary-hover: #115e59;
    --wppfg-bg: #f3f7f5;
    --wppfg-card: #ffffff;
    --wppfg-border: rgba(0, 0, 0, .06);
    --wppfg-text: #0b2a22;
    --wppfg-muted: #6b7280;
    --wppfg-radius: 18px;
    --wppfg-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    --wppfg-shadow-hover: 0 14px 38px rgba(0, 0, 0, .10);
    --wppfg-focus: 0 0 0 3px rgba(15, 118, 110, .18);
    --wppfg-btn-hover-bg: var(--wppfg-primary);
    --wppfg-btn-hover-text: #ffffff;
    --wppfg-col-left: 1.2fr;
    --wppfg-col-right: 0.8fr;

    background: var(--wppfg-bg);
    border-radius: var(--wppfg-radius);
    padding: 18px;
    color: var(--wppfg-text);
    font-family: inherit;
}

.wppfg-row {
    display: flex;
    gap: 12px;
    align-items: center
}

.wppfg-col {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.wppfg-gap-6 {
    gap: 6px
}

.wppfg-gap-8 {
    gap: 8px
}

.wppfg-gap-12 {
    gap: 12px
}

.wppfg-muted {
    color: var(--wppfg-muted)
}

.wppfg-title {
    font-size: 18px;
    font-weight: 800
}

.wppfg-sub {
    font-size: 13px;
    color: var(--wppfg-muted);
    line-height: 1.35
}

.wppfg-card {
    background: var(--wppfg-card);
    border: 1px solid var(--wppfg-border);
    border-radius: var(--wppfg-radius);
    box-shadow: var(--wppfg-shadow);
    padding: 18px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.wppfg-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--wppfg-shadow-hover)
}

.wppfg-btn {
    background: var(--wppfg-primary);
    color: #fff;
    border: 0;
    border-radius: calc(var(--wppfg-radius) - 6px);
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wppfg-btn:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
    background: var(--wppfg-btn-hover-bg);
    color: var(--wppfg-btn-hover-text)
}

.wppfg-btn:active {
    transform: translateY(0)
}

.wppfg-btn:focus {
    outline: none;
    box-shadow: var(--wppfg-focus)
}

.wppfg-btn.secondary {
    background: transparent;
    color: var(--wppfg-primary);
    border: 1px solid rgba(15, 118, 110, .22);
}

.wppfg-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px 0;
    flex-wrap: wrap
}

.wppfg-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--wppfg-border);
    transition: background .18s ease, transform .18s ease;
}

.wppfg-step.active {
    background: rgba(15, 118, 110, .10);
    border-color: rgba(15, 118, 110, .22)
}

.wppfg-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, .12);
    color: var(--wppfg-primary);
    font-weight: 900;
}

.wppfg-grid {
    display: grid;
    gap: 18px
}

.wppfg-grid {
    grid-template-columns: 1fr
}

@media(min-width:992px) {
    .wppfg-grid {
        grid-template-columns: var(--wppfg-col-left) var(--wppfg-col-right);
        align-items: stretch
    }
}

.wppfg-layout-side .wppfg-grid {
    grid-template-columns: var(--wppfg-col-left) var(--wppfg-col-right);
    align-items: stretch
}

@media(max-width:991px) {
    .wppfg-layout-side .wppfg-grid {
        grid-template-columns: var(--wppfg-col-left) var(--wppfg-col-right);
        align-items: stretch
    }
}

.wppfg-layout-stack .wppfg-grid {
    grid-template-columns: 1fr
}

.wppfg-ico {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(15, 118, 110, .10);
    border: 1px solid rgba(15, 118, 110, .16);
}

.wppfg-grid {
    display: grid;
    gap: 18px
}

.wppfg-grid {
    grid-template-columns: 1fr
}

@media(min-width:992px) {
    .wppfg-grid {
        grid-template-columns: var(--wppfg-col-left) var(--wppfg-col-right);
        align-items: stretch
    }
}

.wppfg-layout-side .wppfg-grid {
    grid-template-columns: var(--wppfg-col-left) var(--wppfg-col-right);
    align-items: stretch
}

@media(max-width:991px) {
    .wppfg-layout-side .wppfg-grid {
        grid-template-columns: var(--wppfg-col-left) var(--wppfg-col-right);
        align-items: stretch
    }
}

.wppfg-layout-stack .wppfg-grid {
    grid-template-columns: 1fr
}

.wppfg-drop {
    margin-top: 14px;
    border: 2px dashed rgba(15, 118, 110, .22);
    border-radius: var(--wppfg-radius);
    padding: 26px;
    text-align: center;
    background: rgba(255, 255, 255, .55);
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.wppfg-drop.dragover {
    border-color: var(--wppfg-primary);
    transform: scale(1.01);
    background: rgba(15, 118, 110, .06);
}

.wppfg-drop-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center
}

.wppfg-drop-icon {
    font-size: 28px
}

.wppfg-drop-title {
    font-weight: 900
}

.wppfg-file {
    display: none
}

.wppfg-tips {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--wppfg-radius);
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--wppfg-border);
}

.wppfg-tips ul {
    margin: 10px 0 0 16px;
    padding: 0
}

.wppfg-tips li {
    margin: 6px 0;
    color: var(--wppfg-muted);
    font-size: 13px
}

.wppfg-preview {
    flex: 1;
    position: relative;
    margin-top: 14px;
    border-radius: var(--wppfg-radius);
    overflow: hidden;
    border: 1px solid var(--wppfg-border);
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .01));
    aspect-ratio: 1/1;
}

.wppfg-canvas {
    width: 100%;
    height: 100%;
    display: block;
    touch-action: none
}

.wppfg-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--wppfg-muted);
    font-size: 13px;
    padding: 14px;
    text-align: center;
}

.wppfg-controls {
    margin-top: 14px;
    display: grid;
    gap: 12px
}

.wppfg-control {
    display: grid;
    gap: 6px
}

.wppfg-zoom {
    width: 100%;
}

.wppfg-zoom {
    accent-color: var(--wppfg-primary)
}

.wppfg-badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .10);
    border: 1px solid rgba(15, 118, 110, .18);
    color: var(--wppfg-primary);
    font-weight: 800;
}

.wppfg-note {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45
}


/* Frame thumbnails */
.wppfg-frame-chooser {
    margin-top: 10px
}

.wppfg-frame-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.wppfg-thumb {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid var(--wppfg-border);
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.wppfg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.wppfg-thumb:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.wppfg-thumb.active {
    border-color: rgba(15, 118, 110, .55);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, .18);
}

.wppfg-thumb.disabled {
    opacity: .35;
    cursor: not-allowed;
    box-shadow: none !important;
}

.wppfg-left,
.wppfg-right {
    height: 100%;
    display: flex;
    flex-direction: column
}

/* Equal-height columns */
.wppfg-grid {
    align-items: stretch
}

.wppfg-grid>.wppfg-card {
    height: 100%;
    display: flex;
    flex-direction: column
}

/* Event Css */
.event-card {
    border: 1px solid hsl(163deg 100% 21% / 20%);
    background-color: var(--bs-white);
    border-radius: 15px;
    overflow: hidden;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.event-card-date {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-card-badge {
    background-color: var(--bs-red);
    color: var(--bs-white);
    padding: 2px 10px;
    border-radius: 20px;
}

.event-card-body {
    padding: 20px;
}

.event-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bs-dark-primary);
}

.event-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bs-primary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-card-text {
    margin-top: 1rem;
    color: hsl(160 15% 40% / 1);
}

/* =============== Blog CSS =============== */
.bg-muted {
    background-color: hsl(160 10% 96% / 1);
}

.blog-section {
    background-color: #f3f8f2;
}

.blog-card {
    border-radius: 15px;
    overflow: hidden;
    padding: 12px;
    background-color: var(--bs-white);
    margin-bottom: 50px;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 7px 5px -5px;
}

.blog-card-image {
    position: relative;
    margin-bottom: 0.;
    border-radius: 12px;
    overflow: hidden;
}

.blog-card-image>.link-icon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

.blog-card-content {
    padding: 0 10px 10px;
}

.blog-card-meta {
    display: inline-block;
    padding: 2px 0;
    margin-bottom: 10px;
    color: var(--bs-primary);
}

.blog-card-title {
    font-weight: 600;
    color: var(--bs-dark-primary);
}

.blog-card-text {
    margin-bottom: 0;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

.category-item {
    display: block;
}

.category-link {
    border: 1px solid var(--bs-gray-400);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    padding: 0.3rem;
    transition: all 0.3s ease-in-out;
}

.category-link:hover {
    background-color: rgb(0 70 86 / 5%);
    transform: translateX(1rem);
    color: var(--bs-primary);
}

.category-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-radius: 0.3rem;
    margin-right: 0.8rem;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    font-size: 12px;
}

.category-text {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 600;
    color: #1c461a;
}

/* =============== Blog CSS =============== */

/* =============== Photo Gallery CSS =============== */
.gallery-box {
    position: relative;
}

.gallery-box img {
    z-index: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.gallery-box>a:hover img {
    transform: scale(1.2);
}

.gallery-box a {
    margin: 5px;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 10px;
}

.gallery-box a:before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: var(--bs-primary);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transition: all 0.45s linear;
    transition: all 0.45s linear;
}

.gallery-box a:hover:before {
    opacity: 0.5;
}

.gallery-box>a:after {
    content: "\f424";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    color: var(--bs-white);
    opacity: 0;
    font-size: 30px;
    z-index: 2;
    -webkit-transition: all 0.45s linear;
    transition: all 0.45s linear;
}

.gallery-box:hover>a:after {
    opacity: 1;
}

/* =============== Photo Gallery CSS =============== */

/* =============== Contact CSS =============== */
.contact-section {
    background: linear-gradient(to bottom right, hsl(145 80% 20% / 1), hsl(145 80% 20% / 1), hsl(145 85% 12% / 1));
}

.contact-section .title-badge {
    background-color: var(--bs-white);
    background-color: var(--bs-secondary);
    color: var(--bs-dark);
}

.contact-card {
    background-color: var(--bs-white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 7px 5px -5px;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--bs-dark-primary);
    margin: 1rem 0 0;
}

.contact-card-info {
    font-size: 22px;
    font-weight: 600;
    color: var(--bs-primary);
    margin-bottom: 4px;
}

.contact-card-text {
    color: hsl(145 30% 35% / 1);
}

.warning-card {
    background-color: #ffffff1a;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #fff3;
    color: var(--bs-white);
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
}

.warning-card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.warning-card-text {
    margin-bottom: 0;
}

/* =============== Contact CSS =============== */

/* =============== Footer CSS =============== */
.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, hsl(145 80% 20% / 1), hsl(145 85% 12% / 1));
}

.footer-title {
    color: var(--bs-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: hsl(0deg 0% 100% / 70%);
    padding: 5px 0;
    display: inline-block;
    font-size: 15px;
}

.footer-link:hover {
    color: var(--bs-white);
}

.footer-bottom {
    border-top: 1px solid hsl(0deg 0% 100% / 10%);
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--bs-white);
    border-radius: 8px;
    margin: 0 3px;
    background-color: #ffffff1a;
    border-color: #ffffff1a;
    color: var(--bs-white);
    transition: all 0.3s ease-in-out;
}

.footer-social-link:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    transform: scale(1.1);
}

/* =============== Footer CSS =============== */

.scrollTop {
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 40px;
    height: 45px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-primary);
    border-radius: 3px;
    color: var(--bs-primary);
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 7px 5px -4px;
}

.scrollTop:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border-color: var(--bs-secondary);
}