
/* ==========================================
   MAATRAA HEADER
========================================== */

.maatraa-header {
    width: 100%;
    background-color: #ffffff;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
}

/* Header Container */

.maatraa-header .container {
    max-width: 1140px;
}

.maatraa-header .row {
    min-height: 95px;
}

/* ==========================================
   LOGO
========================================== */

.maatraa-logo {
    display: inline-block;
    text-decoration: none;
}

.maatraa-logo img {
    display: block;
    width: 160px;
    max-width: 100%;
    height: auto;
}

/* ==========================================
   HEADER ACTIONS
========================================== */

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-top: 15px;
}

/* Company Tagline */

.header-register-info {
    position: absolute;
    top: -2px;
    right: 0;

    font-size: 10px;
    line-height: 1.2;
    color: #333333;

    white-space: nowrap;
}

/* Header Buttons */

.header-actions .btn {
    width: 150px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 0;
    font-size: 14px;
    font-weight: 400;

    transition: all 0.3s ease;
}

/* Login Button */

.btn-login {
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #d5d5d5;
}

.btn-login:hover {
    background-color: #f5f5f5;
    border-color: #bbbbbb;
    color: #222222;
}

/* Register Button */

.btn-register {
    color: #ffffff;
    background-color: #111111;
    border: 1px solid #111111;
}

.btn-register:hover {
    color: #ffffff;
    background-color: #d33232;
    border-color: #d33232;
}


/* ==========================================
   LOGIN / REGISTER MODAL
========================================== */

/* Modal Width */

.maatraa-login-modal .modal-dialog {
    max-width: 640px;
    margin: 1.75rem auto;
}

/* Modal Box */

.maatraa-login-modal .modal-content {
    background-color: #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 200px;
}

/* Modal Header */

.maatraa-login-modal .modal-header {
    position: relative;
    justify-content: center;

    border: 0;
    padding: 30px 45px 15px;
}

.maatraa-login-modal .modal-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;

    color: #111111;
    text-align: center;
    margin: 0;
}

/* Close Button */

.maatraa-login-modal .modal-close {
    position: absolute;
    top: 5px;
    right: 8px;

    width: 30px;
    height: 30px;
    padding: 0;

    border: 0;
    background: transparent;

    color: #111111;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}

/* Modal Body */

.maatraa-login-modal .modal-body {
    padding: 0 16px 60px;
}

/* Modal Buttons Layout */

.modal-action-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

/* Anchor Buttons */

.modal-action-btn {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 12px 15px;

    border: 1px solid #d33232;
    border-radius: 10px;

    color: #111111;
    background-color: #ffffff;

    text-decoration: none;
    font-size: 16px;
    font-weight: 400;

    transition: all 0.3s ease;
}

.modal-action-btn:hover {
    background-color: #d33232;
    color: #ffffff;
}

/* Red Triangle Icon */

.modal-btn-icon {
    width: 0;
    height: 0;

    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #d33232;

    flex-shrink: 0;

    transition: border-left-color 0.3s ease;
}

.modal-action-btn:hover .modal-btn-icon {
    border-left-color: #ffffff;
}

/* Modal Background Overlay */

.modal-backdrop.show {
    opacity: 0.60;
}


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

@media (max-width: 767px) {

    .maatraa-header .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .maatraa-header .row {
        min-height: 80px;
    }

    .maatraa-logo img {
        width: 140px;
    }

    .header-actions .btn {
        width: 105px;
        height: 36px;
    }

    .maatraa-login-modal .modal-dialog {
        max-width: 90%;
    }

}


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

@media (max-width: 575px) {

    .maatraa-header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .maatraa-header .row {
        min-height: 70px;
    }

    .maatraa-logo img {
        width: 110px;
    }

    .header-actions {
        gap: 5px;
        padding-top: 12px;
    }

    .header-register-info {
        font-size: 7px;
    }

    .header-actions .btn {
        width: auto;
        min-width: 55px;
        height: 30px;
        padding: 0 8px;
        font-size: 11px;
    }

    /* Mobile Modal */

    .maatraa-login-modal .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 1rem auto;
    }

    .maatraa-login-modal .modal-header {
        padding: 30px 35px 15px;
    }

    .maatraa-login-modal .modal-title {
        font-size: 24px;
    }

    .maatraa-login-modal .modal-body {
        padding: 0 12px 35px;
    }

    .modal-action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .modal-action-btn {
        min-height: 50px;
        font-size: 15px;
    }

}





/* ==========================================
   MAATRAA BANNER SECTION
========================================== */

.maatraa-banner-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
}

.maatraa-banner-slider {
    width: 100%;
    height: clamp(280px, 33vw, 480px);
    position: relative;
    overflow: hidden;
}

/* Swiper Slides */

.maatraa-banner-slider .swiper-wrapper {
    height: 100%;
}

.maatraa-banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Banner Images */

.maatraa-banner-img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    /* filter: grayscale(100%); */

    transition: filter 0.5s ease;
}

/* ==========================================
   PAGINATION BULLETS
========================================== */

.maatraa-banner-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px !important;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Default Bullet */

.maatraa-banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    background-color: #222222;
    opacity: 1;

    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

/* Active Bullet */

.maatraa-banner-pagination .swiper-pagination-bullet-active {
    background-color: #d33232;
    transform: scale(1.15);
}

/* Bullet Hover */

.maatraa-banner-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.2);
}

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

@media (max-width: 991px) {

    .maatraa-banner-slider {
        height: 350px;
    }

    .maatraa-banner-pagination {
        bottom: 20px !important;
    }

}

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

@media (max-width: 575px) {

    .maatraa-banner-slider {
        height: 260px;
    }

    .maatraa-banner-pagination {
        bottom: 15px !important;
        gap: 7px;
    }

    .maatraa-banner-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

}


/* ==========================================
   MAATRAA BANNER SECTION
   FULL IMAGE WITHOUT CROPPING
========================================== */

.maatraa-banner-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

/* Swiper Container */

.maatraa-banner-slider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

/* Swiper Wrapper */

.maatraa-banner-slider .swiper-wrapper {
    align-items: flex-start;
}

/* Swiper Slide */

.maatraa-banner-slider .swiper-slide {
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Full Banner Image */

.maatraa-banner-img {
    display: block;
    width: 100%;
    height: auto;

    max-width: 100%;

    object-fit: contain;
    object-position: center;

    /* filter: grayscale(100%); */
}

/* ==========================================
   PAGINATION BULLETS
========================================== */

.maatraa-banner-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px !important;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Default Bullet */

.maatraa-banner-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    background-color: #222222;
    opacity: 1;

    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

/* Active Bullet */

.maatraa-banner-pagination .swiper-pagination-bullet-active {
    background-color: #d33232;
    transform: scale(1.15);
}

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

@media (max-width: 991px) {

    .maatraa-banner-pagination {
        bottom: 20px !important;
    }

}

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

@media (max-width: 575px) {

    .maatraa-banner-pagination {
        bottom: 12px !important;
        gap: 7px;
    }

    .maatraa-banner-pagination .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }

}




/* ==========================================
   MAATRAA ADVANTAGE SECTION
========================================== */

.maatraa-advantage-section {
    width: 100%;
    padding: 55px 0 60px;
    background-color: #ffffff;
}

.maatraa-advantage-section .container {
    max-width: 1140px;
}


/* ==========================================
   SECTION HEADING
========================================== */

.maatraa-section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.maatraa-section-heading h2 {
    margin: 0 0 3px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    color: #333333;
}

.maatraa-section-heading p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #444444;
}


/* ==========================================
   HEADING DECORATION
========================================== */

.maatraa-heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 14px auto 0;
}

.maatraa-heading-decoration .decoration-line {
    width: 90px;
    height: 1px;
    background-color: #dddddd;
}

.maatraa-heading-decoration .decoration-triangle {
    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 9px solid #d33232;

    position: relative;
}

.maatraa-heading-decoration .decoration-triangle::after {
    content: "";
    position: absolute;

    left: -5px;
    top: 17px;

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #d33232;
}


/* ==========================================
   ADVANTAGE LIST
========================================== */

.maatraa-advantage-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}


/* ==========================================
   ADVANTAGE ITEM
========================================== */

.maatraa-advantage-item {
    width: 100%;
    min-height: 120px;

    display: flex;
    align-items: center;
    gap: 22px;

    padding: 12px 18px;

    border: 1px solid #d33232;
    background-color: #ffffff;

    position: relative;
}


/* Alternating Layout */

.maatraa-advantage-item:nth-child(even) {
    flex-direction: row;
}


/* ==========================================
   ADVANTAGE ICON
========================================== */

.maatraa-advantage-icon {
    width: 125px;
    min-width: 125px;
    height: 105px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.maatraa-advantage-icon img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* ==========================================
   ADVANTAGE CONTENT
========================================== */

.maatraa-advantage-content {
    flex: 1;
    min-width: 0;
}

.maatraa-advantage-content h3 {
    margin: 0 0 3px;

    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;

    color: #333333;
}

.maatraa-advantage-content p {
    margin: 0;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;

    color: #777777;
}


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

@media (max-width: 991px) {

    .maatraa-advantage-section {
        padding: 45px 0 50px;
    }

    .maatraa-advantage-section .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .maatraa-section-heading h2 {
        font-size: 27px;
    }

    .maatraa-advantage-item {
        min-height: 115px;
        gap: 18px;
        padding: 12px;
    }

    .maatraa-advantage-icon {
        width: 110px;
        min-width: 110px;
        height: 95px;
    }

    .maatraa-advantage-content h3 {
        font-size: 19px;
    }

    .maatraa-advantage-content p {
        font-size: 13px;
    }

}


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

@media (max-width: 575px) {

    .maatraa-advantage-section {
        padding: 35px 0 40px;
    }

    .maatraa-advantage-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .maatraa-section-heading {
        margin-bottom: 28px;
    }

    .maatraa-section-heading h2 {
        font-size: 23px;
    }

    .maatraa-section-heading p {
        font-size: 13px;
    }

    .maatraa-heading-decoration {
        gap: 12px;
        margin-top: 12px;
    }

    .maatraa-heading-decoration .decoration-line {
        width: 60px;
    }

    .maatraa-advantage-item,
    .maatraa-advantage-item:nth-child(even) {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
        padding: 18px 15px;
    }

    .maatraa-advantage-icon {
        width: 90px;
        min-width: 90px;
        height: 80px;
    }

    .maatraa-advantage-content h3 {
        font-size: 18px;
    }

    .maatraa-advantage-content p {
        font-size: 13px;
        line-height: 1.5;
    }

}



/* ==========================================
   MAATRAA PACKAGES SECTION
========================================== */

.maatraa-packages-section {
    width: 100%;
    padding: 60px 0 55px;
    background-color: #ffffff;
}

.maatraa-packages-section .container {
    max-width: 1140px;
}


/* ==========================================
   SECTION HEADING
========================================== */

.maatraa-packages-heading {
    text-align: center;
    margin-bottom: 30px;
}

.maatraa-packages-heading h2 {
    margin: 0 0 4px;

    color: #333333;

    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.maatraa-packages-heading > p {
    margin: 0;

    color: #555555;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================
   HEADING DECORATION
========================================== */

.maatraa-packages-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin: 15px auto 0;
}

.packages-decoration-line {
    display: block;

    width: 90px;
    height: 1px;

    background-color: #dddddd;
}

.packages-decoration-triangle {
    position: relative;

    display: block;

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 9px solid #d33232;
}

.packages-decoration-triangle::after {
    content: "";

    position: absolute;
    top: 17px;
    left: -5px;

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #d33232;
}


/* ==========================================
   PACKAGE GRID
========================================== */

.maatraa-packages-row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 28px;

    align-items: stretch;
}


/* ==========================================
   PACKAGE CARD
========================================== */

.maatraa-package-card {
    width: 100%;
    height: 100%;

    min-height: 360px;

    display: flex;
    flex-direction: column;

    background-color: #ffffff;

    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.16);
}


/* ==========================================
   PACKAGE HEADER
========================================== */

.maatraa-package-header {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 15px;

    background-color: #898989;
    text-align: center;
}

.maatraa-package-header h3 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;
    font-weight: 400;
    line-height: 1.3;
}


/* ==========================================
   PACKAGE BODY
========================================== */

.maatraa-package-body {
    flex: 1;

    padding: 0;
}


/* ==========================================
   PACKAGE LIST
========================================== */

.maatraa-package-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.maatraa-package-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 10px 20px;

    border-bottom: 1px solid #eeeeee;
}


/* ==========================================
   RED TRIANGLE BULLET
========================================== */

.package-bullet {
    display: block;

    flex: 0 0 0;

    width: 0;
    height: 0;

    margin-top: 7px;

    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #d33232;
}


/* ==========================================
   PACKAGE TEXT
========================================== */

.package-text {
    display: block;
    flex: 1;

    color: #222222;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================
   PACKAGE DESCRIPTION
========================================== */

.maatraa-packages-description {
    margin-top: 32px;

    text-align: center;
}

.maatraa-packages-description p {
    margin: 0 0 8px;

    color: #666666;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================
   BOTTOM DECORATION
========================================== */

.maatraa-packages-bottom-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    margin: 25px auto 0;
}

.maatraa-packages-bottom-decoration .packages-decoration-line {
    flex: 1;
    max-width: 560px;
    background-color: #aaaaaa;
}


/* ==========================================
   CONTACT EMAIL
========================================== */

.maatraa-packages-contact {
    margin-top: 30px;
    text-align: center;
}

.maatraa-packages-contact p {
    margin: 0;

    color: #555555;

    font-size: 17px;
    line-height: 1.5;
}

.maatraa-packages-contact a {
    color: #555555;
    text-decoration: none;

    transition: color 0.3s ease;
}

.maatraa-packages-contact a:hover {
    color: #d33232;
}


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

@media (max-width: 991px) {

    .maatraa-packages-section {
        padding: 50px 0;
    }

    .maatraa-packages-section .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .maatraa-packages-row {
        --bs-gutter-x: 20px;
        --bs-gutter-y: 25px;
    }

    .maatraa-package-header h3 {
        font-size: 21px;
    }

    .maatraa-package-list li {
        gap: 15px;
        padding: 12px 15px;
    }

    .package-text {
        font-size: 15px;
    }

    .maatraa-package-card {
        min-height: 340px;
    }

}


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

@media (max-width: 767px) {

    .maatraa-packages-section {
        padding: 40px 0;
    }

    .maatraa-packages-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .maatraa-packages-heading {
        margin-bottom: 25px;
    }

    .maatraa-packages-heading h2 {
        font-size: 25px;
    }

    .maatraa-packages-heading > p {
        font-size: 13px;
    }

    .maatraa-packages-decoration {
        gap: 12px;
    }

    .packages-decoration-line {
        width: 65px;
    }

    .maatraa-packages-row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 25px;
    }

    .maatraa-package-card {
        min-height: auto;
    }

    .maatraa-package-header {
        min-height: 58px;
        padding: 12px;
    }

    .maatraa-package-header h3 {
        font-size: 21px;
    }

    .maatraa-package-list li {
        gap: 15px;
        padding: 13px 15px;
    }

    .package-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .maatraa-packages-description {
        margin-top: 28px;
    }

    .maatraa-packages-description p {
        font-size: 14px;
        line-height: 1.6;
    }

    .maatraa-packages-bottom-decoration {
        gap: 15px;
        margin-top: 22px;
    }

    .maatraa-packages-contact {
        margin-top: 25px;
    }

    .maatraa-packages-contact p {
        font-size: 15px;
    }

}


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

@media (max-width: 400px) {

    .maatraa-packages-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .maatraa-package-header h3 {
        font-size: 19px;
    }

    .maatraa-package-list li {
        gap: 12px;
        padding: 12px;
    }

    .package-text {
        font-size: 14px;
    }

}


/* ==========================================
   MAATRAA FOOTER
========================================== */

.maatraa-footer {
    width: 100%;
    background-color: #211f20;
    padding: 12px 0 18px;
    color: #ffffff;
    font-family: inherit;
}

.maatraa-footer .container {
    max-width: 1140px;
}


/* ==========================================
   FOOTER GRID
========================================== */

.maatraa-footer-row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 25px;
}


/* ==========================================
   FOOTER COLUMN
========================================== */

.maatraa-footer-column {
    width: 100%;
}


/* ==========================================
   FOOTER HEADINGS
========================================== */

.maatraa-footer-column h4 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}


/* ==========================================
   FOOTER LINKS
========================================== */

.maatraa-footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}

.maatraa-footer-links li {
    margin: 0 0 5px;
    padding: 0;
}

.maatraa-footer-links a,
.maatraa-footer-gst {
    display: inline-block;

    color: #999999;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.3s ease;
}

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


/* ==========================================
   SOCIAL MEDIA
========================================== */

.maatraa-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 10px 24px;

    max-width: 230px;
}

.maatraa-footer-social a {
    width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #777777;
    border-radius: 50%;

    color: #999999;

    font-size: 12px;
    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.maatraa-footer-social a:hover {
    color: #ffffff;
    border-color: #ffffff;
    background-color: #d33232;
}


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

@media (max-width: 991px) {

    .maatraa-footer {
        padding: 25px 0;
    }

    .maatraa-footer .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .maatraa-footer-row {
        --bs-gutter-x: 25px;
        --bs-gutter-y: 30px;
    }

}


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

@media (max-width: 575px) {

    .maatraa-footer {
        padding: 25px 0;
    }

    .maatraa-footer .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .maatraa-footer-row {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 25px;
    }

    .maatraa-footer-column h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .maatraa-footer-links li {
        margin-bottom: 6px;
    }

    .maatraa-footer-links a,
    .maatraa-footer-gst {
        font-size: 12px;
        overflow-wrap: anywhere;
    }

    .maatraa-footer-social {
        gap: 10px;
        max-width: 150px;
    }

    .maatraa-footer-social a {
        width: 23px;
        height: 23px;
        font-size: 11px;
    }

}





/* ==========================================
   MAATRAA ABOUT PAGE
========================================== */

.maatraa-about-section {
    width: 100%;
    min-height: 500px;

    padding: 25px 0 50px;

    background-color: #f5f5f5;
}


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

.maatraa-about-section .container {
    max-width: 1140px;
}


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

.maatraa-about-breadcrumb {
    margin-bottom: 18px;
}

.maatraa-about-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;

    font-size: 13px;
    line-height: 1.5;
}

.maatraa-about-breadcrumb .breadcrumb-item a {
    color: #888888;
    text-decoration: none;
}

.maatraa-about-breadcrumb .breadcrumb-item a:hover {
    color: #d33232;
}

.maatraa-about-breadcrumb .breadcrumb-item.active {
    color: #d33232;
}

.maatraa-about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #999999;
}


/* ==========================================
   ABOUT CONTENT CARD
========================================== */

.maatraa-about-card {
    width: 100%;

    padding: 25px;

    background-color: #ffffff;

    border: 1px solid #dddddd;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}


/* ==========================================
   MAIN ABOUT HEADING
========================================== */

.maatraa-about-title {
    display: flex;
    align-items: center;
    gap: 10px;

    padding-bottom: 15px;
    margin-bottom: 15px;

    border-bottom: 1px solid #ded8d0;
}

.maatraa-about-info-icon {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    color: #292929;
}

.maatraa-about-title h1 {
    margin: 0;

    color: #333333;

    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
}


/* ==========================================
   ABOUT SUBHEADING
========================================== */

.maatraa-about-subheading {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 5px 0 9px;
    margin-bottom: 10px;

    border-bottom: 1px solid #ded8d0;
}

.maatraa-about-subheading h2 {
    margin: 0;

    color: #292929;

    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
}


/* ==========================================
   RED TRIANGLE BULLET
========================================== */

.maatraa-about-bullet {
    display: block;
    flex-shrink: 0;

    width: 0;
    height: 0;

    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 19px solid #d33232;
}


/* ==========================================
   ABOUT TEXT
========================================== */

.maatraa-about-text p {
    margin: 0 0 10px;

    color: #888888;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.maatraa-about-text p:last-child {
    margin-bottom: 0;
}


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

@media (max-width: 991px) {

    .maatraa-about-section {
        padding: 25px 0 40px;
    }

    .maatraa-about-section .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .maatraa-about-card {
        padding: 22px;
    }

}


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

@media (max-width: 767px) {

    .maatraa-about-section {
        padding: 20px 0 35px;
    }

    .maatraa-about-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .maatraa-about-breadcrumb {
        margin-bottom: 15px;
    }

    .maatraa-about-card {
        padding: 18px 15px;
    }

    .maatraa-about-title {
        gap: 8px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .maatraa-about-info-icon {
        width: 27px;
        height: 27px;
    }

    .maatraa-about-title h1 {
        font-size: 26px;
    }

    .maatraa-about-subheading {
        gap: 15px;
        padding-bottom: 8px;
    }

    .maatraa-about-subheading h2 {
        font-size: 18px;
    }

    .maatraa-about-bullet {
        border-top-width: 9px;
        border-bottom-width: 9px;
        border-left-width: 16px;
    }

    .maatraa-about-text p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

}


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

@media (max-width: 400px) {

    .maatraa-about-card {
        padding: 15px 12px;
    }

    .maatraa-about-title h1 {
        font-size: 24px;
    }

    .maatraa-about-subheading {
        gap: 12px;
    }

    .maatraa-about-text p {
        font-size: 13px;
    }

}


/* Space between Promise and Lead sections */

.maatraa-about-lead-heading {
    margin-top: 25px;
}


/* ==========================================
   FRIENDS OF MAATRAA
========================================== */

.maatraa-friends-section {
    width: 100%;
    margin-top: 35px;
    padding-top: 10px;
}


/* ==========================================
   INTRODUCTION
========================================== */

.maatraa-friends-intro {
    margin-bottom: 55px;
}

.maatraa-friends-intro p {
    margin-bottom: 0;
}


/* ==========================================
   FRIENDS GRID
========================================== */

.maatraa-friends-grid {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 55px;

    align-items: flex-start;
}


/* ==========================================
   FRIEND ITEM
========================================== */

.maatraa-friend-item {
    width: 100%;
    max-width: 100%;

    text-align: center;

    overflow-wrap: anywhere;
}


/* ==========================================
   FRIEND NAME
========================================== */

.maatraa-friend-item h3 {
    margin: 0;

    color: #333333;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}


/* ==========================================
   FRIEND DESCRIPTION
========================================== */

.maatraa-friend-item p {
    margin: 0;

    color: #888888;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
}


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

@media (max-width: 991px) {

    .maatraa-friends-section {
        margin-top: 30px;
    }

    .maatraa-friends-intro {
        margin-bottom: 40px;
    }

    .maatraa-friends-grid {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 40px;
    }

    .maatraa-friend-item h3 {
        font-size: 14px;
    }

    .maatraa-friend-item p {
        font-size: 13px;
        line-height: 1.3;
    }

}


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

@media (max-width: 767px) {

    .maatraa-friends-section {
        margin-top: 25px;
        padding-top: 5px;
    }

    .maatraa-friends-intro {
        margin-bottom: 30px;
    }

    .maatraa-friends-grid {
        --bs-gutter-x: 15px;
        --bs-gutter-y: 35px;
    }

    .maatraa-friend-item h3 {
        font-size: 13px;
        line-height: 1.4;
    }

    .maatraa-friend-item p {
        font-size: 12px;
        line-height: 1.35;
    }

}


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

@media (max-width: 400px) {

    .maatraa-friends-grid {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 30px;
    }

    .maatraa-friend-item h3 {
        font-size: 12px;
    }

    .maatraa-friend-item p {
        font-size: 11px;
        line-height: 1.4;
    }

}


/* ==========================================
   LANGUAGE & LEARNING LEAD
========================================== */

.maatraa-about-lead-content {
    width: 100%;
}

.maatraa-about-lead-content .row {
    align-items: flex-start;
}


/* Left Side Content */

.maatraa-about-lead-content .maatraa-about-text {
    width: 100%;
}


/* Right Side Image */

.maatraa-about-lead-image {
    width: 100%;
    text-align: center;
}

.maatraa-about-lead-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


/* ==========================================
   TABLET & MOBILE
========================================== */

@media (max-width: 991.98px) {

    .maatraa-about-lead-image {
        margin-top: 20px;
    }

    .maatraa-about-lead-image img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

}