@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:wght@400;500;600;700&family=Noto+Sans+Gujarati:wght@100..900&display=swap");
:root {
    --primary-color: #00455d;
    --secondary-color: #f05d25;
    --tertiary-color: #00b3ef;
    --tertiary10-color: #00b3ef1a;
    --tertiary20-color: #00b3ef33;
    --black-color: #000000;
    --black15-color: #00000026;
    --black50-color: #00000080;
    --black333-color: #333333;
    --white-color: #ffffff;
    --white15-color: #ffffff26;
    --white20-color: #ffffff33;
    --white50-color: #ffffff80;
    --transition: all 300ms ease-in-out;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    background-color: var(--white-color);
}

a,
button {
    text-decoration: none;
    outline: none;
    transition: var(--transition);
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    transition: var(--transition);
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
}

img {
    max-width: 100%;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 400;
}

p {
    font-size: 14px;
    line-height: 21px;
    color: var(--black-color);
}

p:last-child {
    margin-bottom: 0;
}

.gujarati-text {
    font-family: "Noto Sans Gujarati", sans-serif;
    font-size: 18px;
    line-height: 140%;
}

.comn-padding {
    padding-block: 80px;
}

.comn-hr {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--black15-color);
}

.line-ellipsis-1,
.line-ellipsis-2,
.line-ellipsis-3,
.line-ellipsis-4,
.line-ellipsis-5,
.line-ellipsis-6 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-ellipsis-1 {
    -webkit-line-clamp: 1;
}

.line-ellipsis-2 {
    -webkit-line-clamp: 2;
}

.line-ellipsis-3 {
    -webkit-line-clamp: 3;
}

.line-ellipsis-4 {
    -webkit-line-clamp: 4;
}

.line-ellipsis-5 {
    -webkit-line-clamp: 5;
}

.line-ellipsis-6 {
    -webkit-line-clamp: 6;
}

.comn-btn {
    font-family: "Lora", serif;
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    text-transform: capitalize;
    gap: 10px;
    white-space: nowrap;
    padding: 3.5px 0;
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 1;
}

.comn-btn:hover {
    padding-right: 34px;
}

.comn-btn .img-to-svg {
    width: 24px;
    fill: currentColor;
    position: absolute;
    left: calc(100% - 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.comn-btn:hover .img-to-svg {
    opacity: 1;
    visibility: visible;
}

.comn-title {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    font-family: "Lora", serif;
    color: var(--primary-color);
    margin-bottom: 65px;
    text-align: center;
}

.comn-title.comn-title-left {
    align-items: flex-start;
    text-align: left;
}

.comn-title .comn-title-small-text {
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    line-height: 120%;
}

.comn-title .comn-title-text {
    font-size: clamp(36px, 3vw, 50px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.comn-title .img-to-svg {
    max-width: 460px;
    width: 100%;
    fill: var(--primary-color);
    height: auto;
}

.comn-data .comn-data-title {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: "Lora", serif;
    text-transform: capitalize;
}

.comn-data>p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--black333-color);
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.comn-table {
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.comn-table .table {
    margin: 0;
}

.comn-table .table tr td,
.comn-table .table tr th {
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
    background-color: var(--white-color);
}

.comn-table .table tr:last-child td {
    border-bottom: none;
}

.comn-table .table tr th {
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--white-color);
    white-space: nowrap;
}

.img-to-svg {
    fill: var(--black333-color);
}

.img-to-svg.black-fill {
    fill: var(--black-color);
}

.img-to-svg.primary-fill {
    fill: var(--primary-color);
}

.img-to-svg.secondary-fill {
    fill: var(--secondary-color);
}

.img-to-svg.tertiary-fill {
    fill: var(--tertiary-color);
}

.splide__arrow--prev svg {
    transform: none;
}

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

.container-1400 {
    max-width: 1424px;
}

header {
    position: relative;
    z-index: 999;
}

header .navbar {
    padding-block: 30px;
    gap: 10px;
}

header .navbar .navbar-brand {
    display: none;
}

header .navbar .navbar-nav {
    align-items: center;
    gap: 5px;
    width: 100%;
}

header .navbar .logo-item {
    margin-inline: auto;
    height: 80px;
}

header .navbar .logo-item .nav-link {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .navbar .logo-item .nav-link:hover {
    background-color: transparent;
}

header .navbar .donate-btn,
header .navbar .nav-link {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--white-color);
    text-transform: capitalize;
    padding: 10px 15px;
    border-radius: 5px;
    text-transform: capitalize;
}

header .navbar .donate-btn.show,
header .navbar .nav-link.show {
    color: var(--white-color);
}

header .navbar .donate-btn:hover,
header .navbar .nav-link:hover {
    background-color: var(--white15-color);
}

header .navbar .donate-btn.active,
header .navbar .nav-link.active {
    background-color: var(--white-color);
    color: var(--primary-color);
}

header .navbar .donate-btn {
    border: none;
    background-color: var(--secondary-color);
}

header .navbar .donate-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

header .dropdown.show .nav-link {
    background-color: var(--white15-color);
}

header .dropdown-menu {
    padding: 0;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0 5px 1px rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 8px;
}

header .dropdown-menu li:first-child .dropdown-item {
    border-radius: 8px 8px 0 0;
}

header .dropdown-menu li:last-child .dropdown-item {
    border-radius: 0 0 8px 8px;
}

header .dropdown-menu .dropdown-item {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
    border-bottom: 1px solid #dddddd;
}

header .dropdown-menu .dropdown-item:hover {
    background-color: var(--tertiary10-color);
    color: var(--tertiary-color);
}

header .dropdown-menu .dropdown-item.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

header .dropdown-menu .dropdown-item i {
    font-size: 12px;
}

header .inner-dropdown .dropdown-menu {
    left: 100%;
    top: 0;
    overflow: hidden;
}

header .inner-dropdown .inner-dropdown-arrow {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    height: 45px;
    width: 40px;
    background-color: transparent;
    border: none;
    color: var(--black-color);
    font-size: 12px;
}

header .inner-dropdown .inner-dropdown-arrow[aria-expanded="true"] {
    transform: rotate(90deg);
}

.banner-section {
    position: relative;
    z-index: 1;
    padding-bottom: 30px;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: -140px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100% + 140px);
    background-image: linear-gradient(180deg, var(--tertiary-color) 0%, var(--tertiary10-color) 100%);
}

.banner-splide {
    box-shadow: 0px 25px 50px 0px #00000040, 0px 0px 1px 0px #FFFFFF;
}

.banner-splide .splide__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 420px;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: 100%;
}

.banner-splide .splide__arrows .splide__arrow {
    position: initial;
    transform: none;
    background-color: transparent;
    padding: 0;
    width: 50px;
    height: 40px;
    border-radius: 0;
    opacity: 1;
}

.banner-splide .splide__arrows .splide__arrow .img-to-svg {
    width: 50px;
    height: auto;
    fill: var(--white-color);
    transition: var(--transition);
}

.banner-splide .splide__arrows .splide__arrow:hover .img-to-svg {
    fill: var(--secondary-color);
}

.banner-splide .splide__pagination {
    display: flex;
    align-items: center;
    gap: 5px;
    bottom: 48px;
}

.banner-splide .splide__pagination li {
    line-height: 0;
}

.banner-splide .splide__pagination .splide__pagination__page {
    margin: 0;
    width: 30px;
    height: 4px;
    border-radius: 10px;
    transition: var(--transition);
}

.banner-splide .splide__pagination .splide__pagination__page.is-active {
    transform: none;
    width: 60px;
}

.inner-banner .banner-card {
    min-height: 300px;
}

.banner-card {
    min-height: 800px;
    position: relative;
    z-index: 1;
}

.banner-card .banner-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--white-color);
}

.banner-card .banner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.4%, rgba(0, 0, 0, 0.6) 100%);
}

.banner-card .banner-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-card .banner-data {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 16%;
    left: 11%;
    z-index: 1;
    max-width: 750px;
    width: 100%;
    text-align: center;
    font-family: "Lora", serif;
    padding: 30px;
}

.banner-card .banner-data>svg {
    max-width: 100%;
}

.banner-card .banner-data>svg:not(:last-child) {
    margin-bottom: 15px;
}

.banner-card .banner-data>P,
.banner-card .banner-data>aside {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    line-height: 160%;
    color: var(--black333-color);
    text-transform: capitalize;
    opacity: 0.75;
    margin-bottom: 0;
}

.banner-card .banner-data>h1 {
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    color: var(--black333-color);
    width: 100%;
    margin: 0;
}

.banner-card .banner-data>aside {
    opacity: 1;
    margin-block: 20px 15px;
}

.banner-card .banner-data-2 {
    position: absolute;
    bottom: 115px;
    z-index: 1;
    text-align: center;
    width: 100%;
    font-family: Lora;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    line-height: 136%;
    color: var(--white-color);
}

.about-section {
    background-image: linear-gradient(180deg, var(--tertiary10-color) -2.62%, var(--white20-color) 57.49%);
}

.about-data .comn-data-title {
    font-size: clamp(18px, 3vw, 20px);
}

.recent-container {
    margin-top: 50px;
}

.recent-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.recent-row>* {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recent-row>*>* {
    flex: 1 0 auto;
    min-height: 220px;
}

.recent-card {
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.recent-card:hover {
    border-color: var(--white-color);
    box-shadow: 0px 25px 25px 0px #00000040;
}

.recent-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
    background-color: transparent;
    transition: var(--transition);
}

.recent-card:hover::before {
    background-color: var(--black50-color);
    background-image: none;
    backdrop-filter: blur(5px);
}

.recent-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-card .recent-data {
    position: absolute;
    left: 0;
    top: calc(100% - 15px);
    transform: translateY(-50%);
    width: 100%;
    padding: 0 30px;
    text-align: center;
    transition: var(--transition);
}

.recent-card .recent-data>aside {
    font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    color: var(--white-color);
    text-transform: capitalize;
}

.recent-card .recent-data>p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--white-color);
    padding-top: 5px;
    opacity: 0;
    transition: var(--transition);
}

.recent-card:hover .recent-data {
    top: 50%;
}

.recent-card:hover .recent-data>p {
    opacity: 1;
}

.community-row .recent-card>img {
    height: 640px;
}

.community-row .recent-card .recent-data {
    top: auto;
    bottom: -105px;
    transform: none;
    text-align: left;
}

.community-row .recent-card .recent-data>aside {
    font-size: 22px;
    line-height: 30px;
}

.community-row .recent-card .recent-data>p {
    font-size: 14px;
    padding-top: 10px;
}

.community-row .recent-card .recent-data .comn-btn {
    display: flex;
    margin-left: auto;
    padding-right: 0;
    color: var(--white-color);
}

.community-row .recent-card .recent-data .comn-btn .img-to-svg {
    position: initial;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
}

.community-row .recent-card:hover .recent-data {
    top: auto;
    bottom: 30px;
}

.community-row .recent-card:hover .recent-data>p {
    opacity: 1;
}

.activities-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
    padding-block: 15px;
}

.activities-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CD997E;
    width: 2px;
    height: 100%;
    z-index: -1;
}

.activities-row .activities-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 90px;
}

.activities-row .activities-card:nth-child(even) {
    flex-direction: row-reverse;
}

.activities-row .activities-card>* {
    width: calc(50% - 45px);
}

.activities-row .activities-card .activities-image {
    position: relative;
    height: 300px;
}

.activities-row .activities-card .activities-image::before,
.activities-row .activities-card .activities-image::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #CD997E;
}

.activities-row .activities-card .activities-image::before {
    width: 45px;
    height: 2px;
}

.activities-row .activities-card .activities-image::after {
    left: calc(100% + 39px);
    width: 12px;
    height: 12px;
    border-radius: 50px;
}

.activities-row .activities-card .activities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-row .activities-card:nth-child(even) .activities-image::before,
.activities-row .activities-card:nth-child(even) .activities-image::after {
    left: auto;
    right: 100%;
    top: 50%;
}

.activities-row .activities-card:nth-child(even) .activities-image::after {
    right: calc(100% + 39px);
}

.activities-row .activities-card:nth-child(even) .comn-data {
    text-align: right;
}

.activities-row .activities-card:nth-child(even) .comn-data .comn-btn:hover {
    padding-left: 34px;
    padding-right: 0;
}

.activities-row .activities-card:nth-child(even) .comn-data .comn-btn .img-to-svg {
    left: auto;
    right: calc(100% - 24px);
    transform: translateY(-50%) rotate(180deg);
}

.moral-section {
    background-color: var(--tertiary10-color);
    background-image: url(../images/moral-bg-image.png);
    background-size: cover;
    background-attachment: fixed;
}

.moral-row {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.moral-row .row:nth-child(even) {
    flex-direction: row-reverse;
}

.moral-row .moral-data {
    padding-left: 15px;
    padding-right: 21px;
}

.moral-image {
    position: relative;
    padding: 0 40px 40px;
    height: 460px;
    overflow: hidden;
    z-index: 1;
}

.moral-image::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 60%;
    background-color: var(--tertiary-color);
    transform: translateX(-50%) skewY(-10deg);
}

.moral-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 10px solid #ecf0fe;
}

.moral-data {
    padding: 15px;
    padding-left: 21px;
}

.moral-data .comn-data-title {
    color: var(--black-color);
}

.moral-data>p {
    font-size: 14px;
}

.comn-badge-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.comn-badge-row .comn-badge {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: var(--white-color);
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--tertiary-color);
    border-radius: 5px;
}

.says-section .comn-data {
    margin-bottom: 60px;
}

.says-section .comn-data>p {
    font-size: 14px;
}

.says-video {
    height: 100%;
    border: 1px solid var(--black15-color);
    transition: var(--transition);
    min-height: 250px;
}

.says-video:hover {
    border-color: var(--white-color);
    box-shadow: 0px 25px 50px 0px #00000040;
}

.says-video iframe {
    height: 100%;
}

footer {
    background-image: url(../images/footer-bg-image.png);
    background-size: cover;
    background-blend-mode: multiply;
    background-color: var(--secondary-color);
    padding-block: 60px 30px;
}

footer .footer-top {
    text-align: center;
    padding-bottom: 40px;
}

footer .footer-middle {
    border-width: 1px 0;
    border-style: dashed;
    border-color: var(--white50-color);
    padding-block: 60px;
}

footer .footer-middle>.row {
    margin-inline: -30px;
}

footer .footer-middle>.row>* {
    padding-inline: 30px;
}

footer .footer-middle .footer-title {
    display: table;
    font-family: "Lora", serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%;
    color: var(--white-color);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white15-color);
    margin-bottom: 15px;
}

footer .footer-middle .footer-para {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--white-color);
    font-size: 14px;
    margin-bottom: 30px;
}

footer .footer-middle .subscribe-form .footer-title {
    padding-bottom: 0;
    border: none;
}

footer .footer-middle .subscribe-form .subscribe-box {
    display: flex;
    background-color: var(--white-color);
}

footer .footer-middle .subscribe-form .subscribe-box>input {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--black333-color);
    font-size: 14px;
    border: none;
    padding: 13px 20px;
}

footer .footer-middle .subscribe-form .subscribe-box>button {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: var(--white-color);
    white-space: nowrap;
    background-color: var(--tertiary-color);
    border: none;
    padding: 13px 25px;
    text-transform: capitalize;
}

footer .footer-middle .subscribe-form .subscribe-box>button:hover {
    background-color: var(--primary-color);
}

footer .footer-middle .footer-list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer .footer-middle .footer-list li a {
    font-size: 14px;
    line-height: 150%;
    color: var(--white-color);
    text-transform: capitalize;
}

footer .footer-middle .social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer .footer-middle .social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 45px;
    height: 45px;
    background-color: var(--white15-color);
    font-size: 20px;
    color: var(--white-color);
    border: 1px solid transparent;
}

footer .footer-middle .social-list li a:hover {
    background-color: var(--tertiary-color);
    border-color: var(--white-color);
}

footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
}

footer .footer-bottom>p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

footer .footer-bottom ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: initial;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-bottom ul li:not(:last-child) {
    padding-right: 10px;
    border-right: 1px solid var(--white-color);
}

footer .footer-bottom ul li a {
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    color: var(--white-color);
}

.contact-list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-list li .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 40px;
    height: 40px;
    background-color: var(--white15-color);
}

.contact-list li .contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-list li>aside {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 55px);
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    color: var(--white-color);
}

.contact-list li>aside>* {
    font-weight: 400;
    color: var(--white-color);
}

.contactpage-list li {
    width: 100%;
}

.contactpage-list li .contact-icon {
    background-color: var(--primary-color);
}

.contactpage-list li .contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contactpage-list li>aside {
    color: var(--primary-color);
}

.contactpage-list li>aside>* {
    font-weight: 400;
    color: var(--secondary-color);
}

.says-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.says-row .says-image img {
    width: 100%;
}

.video-section {
    background-color: var(--tertiary10-color);
}

.medical-row {
    gap: 30px 0;
}

.medical-row .recent-card>img {
    height: 320px;
}

.medical-row .recent-card .recent-data {
    bottom: -25px;
}

.medical-row .recent-card .recent-data aside {
    margin-bottom: 10px;
}

.medical-row .recent-card .recent-data .comn-btn {
    margin-left: 0;
}

.haridam-gallery-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    grid-gap: 20px;
    margin-top: 30px;
}

.haridam-gallery-row .haridam-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #eeeeee;
    max-height: 300px;
    min-height: 150px;
}

.haridam-gallery-row .haridam-gallery-card:hover a::before {
    top: 0;
}

.haridam-gallery-row .haridam-gallery-card a::before {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    font-weight: 900;
    background-color: var(--black50-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 22px;
    transition: all 200ms ease-in-out;
}

.haridam-gallery-row .haridam-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comn-nav-tabs .nav {
    border: none;
    margin-bottom: 20px;
    gap: 10px;
    position: sticky;
    top: 0;
    padding: 10px 0px;
    z-index: 1;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.comn-nav-tabs .nav .nav-link {
    padding: 10px 20px;
    background-color: var(--tertiary10-color);
    color: var(--black-color);
    border-radius: 10px;
    font-weight: 500;
    border: none;
    text-transform: capitalize;
    white-space: nowrap;
}

.comn-nav-tabs .nav .nav-link:hover {
    background-color: var(--tertiary20-color);
}

.comn-nav-tabs .nav .nav-link.active {
    background-color: var(--tertiary-color);
    color: var(--white-color);
}

.comn-nav-tabs .is-stuck {
    border-bottom: 1px solid #dddddd;
    background-color: var(--white-color);
}

.video-card {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-container {
    padding: 30px;
    background-color: var(--white-color);
}

.contact-form {
    margin-top: 40px;
}

.contact-form .form-floating {
    margin-bottom: 24px;
}

.contact-form .form-check {
    margin-bottom: 24px;
    padding-left: 26px;
}

.contact-form .form-check .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-form input[type="radio"],
.contact-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-left: -26px;
    margin-top: 2px;
}

.contact-form .btn-primary {
    background-color: var(--tertiary-color);
    border-color: var(--tertiary-color);
    padding: 10px 20px;
}

.contact-form .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-form .btn-primary .img-to-svg {
    fill: var(--white-color);
    width: 20px;
    margin-top: -3px;
    margin-left: 5px;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

.contact-map {
    height: 100%;
    min-height: 400px;
    border: 1px solid #eeeeee;
}