@font-face {
    font-family: 'Figtree';
    src: url('../fonts/fingtree/Figtree-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: 300;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebusneue/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --navy: #003366;
    --navy-dark: #002244;
    --gold: #f3e389;
    --white: #ffffff;
    --text: #333;
}

body {
    font-family: 'Lato', sans-serif;
}

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .12);
    position: sticky;
    top: 0;
    height: 110px;
    z-index: 9999;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    justify-content: space-between;
}

.logo img {
    display: block;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.primary-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-list>li>a {
    display: block;
    padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color .2s;
    white-space: nowrap;
}

.nav-list>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--navy);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.nav-list>li>a:hover,
.nav-list>li.active>a {
    color: var(--navy);
}

.nav-list>li>a:hover::after,
.nav-list>li.active>a::after {
    transform: scaleX(1);
}

/* ─── MEGA MENU SHARED ────────────────────────────────────── */
.has-mega {
    position: relative;
}

.mega-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    padding: 36px 40px 32px;
    z-index: 9998;
}

/* Caret pointer */
.mega-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid var(--white);
    filter: drop-shadow(0 -3px 4px rgba(0, 0, 0, .08));
}

.has-mega:hover .mega-panel {
    display: block;
}

/* grid layouts */
.mega-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    gap: 20px;
}

.mega-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 200px);
    gap: 20px;
}

/* Each card */
.mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    cursor: pointer;
    text-decoration: none;
}

.mega-card .icon-wrap {
    width: 100%;
    padding: 24px 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fc;
    border-radius: 4px 4px 0 0;
    min-height: 100px;
    transition: background .2s;
}

.mega-card:hover .icon-wrap {
    background: #edf1f7;
}

.mega-card .icon-wrap img {
    height: 120px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(12%) sepia(60%) saturate(1800%) hue-rotate(200deg) brightness(60%);
}

.mega-card .label {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 10px 8px;
    line-height: 1.35;
    transition: background .2s;
}

.mega-card:hover .label {
    background: var(--navy-dark);
}

/* ─── MOBILE TOGGLE ───────────────────────────────────────── */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    width: 36px;
    padding: 4px;
    background: none;
    border: none;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all .3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    overflow-y: auto;
    z-index: 9997;
    padding: 0 0 40px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list>li {
    border-bottom: 1px solid #eee;
}

.mobile-nav-list>li>a,
.mobile-accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}

.mobile-accordion-trigger .chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: rotate(45deg);
    transition: transform .3s;
    margin-top: -4px;
}

.mobile-accordion-trigger.open .chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.mobile-submenu {
    display: none;
    background: #f7f9fc;
    padding: 16px 20px;
}

.mobile-submenu.open {
    display: grid;
}

.mobile-submenu-grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mobile-submenu-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mobile-mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.mobile-mega-card .m-icon {
    width: 100%;
    padding: 16px 10px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
}

.mobile-mega-card .m-icon img {
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(12%) sepia(60%) saturate(1800%) hue-rotate(200deg) brightness(60%);
}

.mobile-mega-card .m-label {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    padding: 8px 6px;
    line-height: 1.3;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .primary-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }
}

@media (max-width: 480px) {

    .mega-grid-4,
    .mega-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.main-footer {
    background: #003366;
    color: #fff;
    padding: 60px 0 20px;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
}

.footer-logo img {
    width: 220px;
}

.footer-links h3,
.footer-contact h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 21px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 32px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: left;
    font-size: 13px;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero-section {
    height: 100vh;
    background: url('../images/henkels-hero.png') no-repeat center center/cover;
    display: flex;
    justify-content: start;
    align-items: center;
}

.hero-section-heading {
    font-size: 65px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.hero-section-heading-container {
    background-color: #008453CC;
    padding: 40px 60px;
}

.hero-section-heading-container {
    background-color: #008453CC;
    padding: 40px 60px;
    text-align: center;
    /* Ensures text inside is centered */
}

@media (max-width: 1023px) {

    .hero-section-heading {
        font-size: 48px;
    }

}

/* Mobile (sm) */
@media (max-width: 767px) {

    .hero-section-heading {
        font-size: 28px;
    }

    .hero-section-heading-container {

        padding: 40px 40px;
    }

}

* {
    box-sizing: border-box;
}

.graph-outer-container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 10px;
}

.graph-outer-container .flex-thirty {
    flex-basis: 30%;
}

.graph-outer-container .flex-seventy {
    flex-basis: 70%;
}

.graph-cell {
    min-height: 75px;
    flex-grow: 1;
    flex-basis: 100%;
}

.fixed-3-7 .col-sm-3 {
    width: 25%;
}

.fixed-3-7 .col-sm-9 {
    width: 75%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .graph-cell {
        min-height: 100px;
    }

    .graph-outer-container {
        flex-wrap: wrap;
    }
}

.construction_section {
    padding: 50px 60px;
}

.join_us_text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.join_us h3 {
    color: #081A31;
    font-size: 32px;
    line-height: 42px;
    font-weight: 300;
    margin-bottom: 30px;
}

.join_us h3 strong {
    font-weight: 600;
}



.custom_slider_classes .text-justify {
    text-align: justify;
}

.custom_slider_classes .carousel-control-prev,
.custom_slider_classes .carousel-control-next {
    width: 10rem !important;
}

.custom_slider_classes .btn-primary {
    padding: 0.5em 1em !important;
    background-color: $secondary-color !important;
    color: #000000 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease 0s !important;

    &:hover {
        background-color: #f8edeb !important;
        color: $accent-color !important;
    }
}

.custom_slider_classes h3 {
    color: #000000;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    padding-top: 100px;
}

.custom_slider_classes p_arrow_slide_icon svg {
    fill: #000000;
}

.custom_slider_classes .slider-preview {
    background: #f4f4f4;
    border: 1px solid #bdbdbd;
    border-radius: 7px;
    height: 550px;
    width: 100%;
}

.project-list-view-section .project-item {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-list-view-section .project-section-flex-container {
    height: 100%;
}

.project-list-view-section .col-lg-6 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-list-view-section .col-lg-6 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.project-list-view-section .project-section-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    padding: 2rem;

}


.project-list-view-section .project-section-learn-more {
    color: #000;
    background-color: rgba(255, 223, 73, 1);
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 150px;

}

.project-list-view-section .project-section-learn-more:hover {
    background-color: rgb(247, 209, 42);

    color: #000;

    text-decoration: none;

}

.project-list-view-section .project-main-heading {
    text-transform: uppercase;
}


/* On small screens, allow items to stack naturally */
@media (max-width: 767.98px) {
    .project-list-view-section .project-item {
        height: auto;
    }

    .project-list-view-section .col-lg-6 {
        height: auto;
    }

    .project-list-view-section .col-lg-6 img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .project-list-view-section .project-section-card {
        padding: 1.5rem;
    }
}


/* hero section ends */


.news-list-section .news-card {
    background-color: rgba(0, 132, 83, 0.08);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-list-section .news-title {
    font-weight: 700;
    text-transform: uppercase;
}

.news-list-section .news-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.news-list-section .news-body {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.news-list-section .read-more-btn {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 0;
    background-color: #fff !important;
}

.news-list-section .read-more-btn:hover {
    color: #272525;
}

.news-list-section .pagination-container {
    margin-top: 2rem;
    text-align: left;
}

.news-list-section .page-item #page-link {
    background-color: rgba(255, 255, 255, 1);
    border: 1px solid #000000;
    color: #000000;
    transition: 0.2s ease;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
}

.news-list-section .page-item #page-link:hover {
    background-color: #e2e6ea;
    border-radius: 5px;
}

.news-list-section .page-item.active #page-link {
    background-color: rgba(0, 132, 83, 1);
    color: white;
    border-radius: 5px;
    border: none;
}


section.contact_section_form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: #ebf5f1;
    flex-wrap: wrap;
    min-height: 50vh;
}

.contact_section_form .contact_img {
    width: 50%;
}

.contact_section_form .contact_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    display: block;
}

.contact_section_form .contact_field {
    width: 50%;
    padding: 0 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact_section_form .contact_field button {
    background-color: #028554;
    width: 100%;
    padding: 15px;
    color: white;
    font-size: 16px;
    border: none;
}

.contact_section_form .contact_field label {
    width: 100%;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact_field input,
.contact_field select,
.contact_field textarea {
    width: 100%;
    display: block;
    outline: none;
    border: none;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    box-sizing: border-box;
}

.contact_section_form .contact_field textarea {
    height: 150px;
    color: grey;
    font-family: "Inter", sans-serif;
}

.contact_section_form .input_radio,
.contact_section_form .input_checkbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 10px;
}

.contact_section_form .input_radio input,
.contact_section_form .input_checkbox input {
    width: auto;
    margin: 0;
}

.contact_section_form .input_radio label,
.contact_section_form .input_checkbox label {
    width: auto;
    margin-left: 5px;
}

@media (max-width: 991px) {
    section.contact_section_form {
        min-height: auto;
    }

    .contact_section_form .contact_img,
    .contact_section_form .contact_field {
        width: 100%;

    }

    .contact_section_form .contact_img {
        height: 400px;
        object-fit: cover;
    }

    .contact_section_form .contact_img img {
        height: 100%;
    }

    .contact_section_form .contact_field {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact_section_form .contact_field {
        padding: 20px;
    }


    .contact_section_form .contact_field button {
        padding: 12px;
        font-size: 14px;
    }

    .contact_field input,
    .contact_field select,
    .contact_field textarea {
        padding: 12px;
        font-size: 13px;
    }

    .contact_section_form .contact_img {
        height: 250px;
    }
}

.table_section {
    padding: 20px;
    line-height: 1.6;
}

.table_section .search_section label {
    display: block;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.table_section .search_section input[type="search"] {
    width: 100%;
    min-width: 250px;
    height: 52px;
    background-color: transparent;
    border: 1px solid #cccccc;
    border-radius: 7px;
    padding: 0 15px;
    font-size: 16px;
}

/* Table styles */
.table_section .table-container {
    overflow-x: auto;
    margin: 25px 0;

    border-radius: 5px;
    background: rgba(235, 245, 241, 1);
}

.table_section .styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    min-width: 600px;
}

.table_section .styled-table caption {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.table_section .styled-table thead tr {
    background-color: #ebf5f1;
    color: #000;
    text-align: left;
    font-weight: bold;
}

.table_section .styled-table th,
.styled-table td {
    padding: 16px 20px;
    text-align: left;
}

.table_section .styled-table tbody tr:nth-of-type(odd) {
    background-color: #fafdfc;
}

.table_section .styled-table tbody tr:nth-of-type(even) {
    background-color: #f5faf8;
}

.table_section .styled-table tbody tr:hover {
    background-color: #d8efe5;
}

/* Mobile card view */
.mobile-cards {
    display: none;
}

.mobile-card {
    background: white;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-card-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.mobile-card-row:last-child {
    border-bottom: none;
}

.mobile-card-label {
    font-weight: bold;
    color: #555;
    min-width: 120px;
}

/* Pagination styles */
.table_section .button_pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.table_section .button_secion button {
    padding: 8px 15px;
    border: none;
    color: white;
    font-weight: 400;
    background-color: rgba(0, 132, 83, 1);
    border-radius: 0px;
}

.table_section select.rows-per-page {
    border: none;
    background: transparent;
    margin-right: 20px;
    font-size: 18px;
}

.table_section span.page-info {
    font-size: 18px;
    margin-right: 20px;
    font-weight: 500;
}

.table_section button.nav-btn {
    border: 1.5px solid black;
    padding: 10px;
    border-radius: 5px;
    background: transparent;
}

.table_section button.nav-btn.active {
    background: black;
}

.table_section button.nav-btn.active svg path {
    stroke: white;
}

.table_section .top-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3;
}

@media (max-width: 767px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }

    .table_section .top-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 10px;
        margin-bottom: 3;
    }

    .table_section .search_section {

        width: 100%;
    }

    .table_section .search_section input[type="search"] {
        max-width: 100%;
    }

    .table_section .styled-table {
        display: none;
    }

    .mobile-cards {
        display: block;
    }

    .table_section .button_pagination {
        justify-content: space-between;
    }
}

.table_section button.nav-btn {

    cursor: pointer;
    /* Added this line */
}

.table_section button.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
}

.table_section button.nav-btn:disabled svg path {
    stroke: #ccc;
}

/* Add these styles to your existing CSS */
.table_section button.nav-btn.active {
    background: black;
}

.table_section button.nav-btn.active svg path {
    fill: white;
    /* Changed from stroke to fill */
}



.image-gallery-section {
    width: 100%;
    padding: 0 60px;
}

.image-gallery-section .main-image-wrapper {
    position: relative;
    margin-bottom: 120px;
    max-width: 100%;
}

.image-gallery-section .main-image {
    width: 100%;
    height: 500px;
    min-width: 250px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.image-gallery-section .thumbnails-scroll-container {
    position: absolute;
    bottom: -50px;
    left: -50px;
    right: 0;
    overflow-x: auto;
    padding: 0 10px;
    margin: 0 auto;
}

.image-gallery-section .thumbnails-container {
    display: flex;
    /* gap: 10px;s */
    width: max-content;
    padding: 10px 0;
}

.image-gallery-section .thumbnail,
.image-gallery-section .add-thumbnail {
    width: 90px;
    height: 90px;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s;
}

.image-gallery-section .active-thumbnail {
    border: 2px solid #007bff;
}

.image-gallery-section .add-thumbnail {
    background-color: #f8f9fa;
    font-size: 1.8rem;
    color: #6c757d;
    border: 1px dashed #ccc;
}

/* Scrollbar styling */
.image-gallery-section .thumbnails-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.image-gallery-section .thumbnails-scroll-container::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 5px;
}

.image-gallery-section .thumbnails-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-gallery-section .main-image-wrapper {
        margin-bottom: 100px;
    }

    .image-gallery-section .thumbnail,
    .image-gallery-section .add-thumbnail {
        width: 70px;
        height: 70px;
    }

    .image-gallery-section .image-gallery-section {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }

    .image-gallery-section .main-image {
        height: 400px;
    }

    .image-gallery-section .thumbnails-scroll-container {
        bottom: -45px;
        left: -50px;
    }
}

@media (max-width: 576px) {
    .image-gallery-section .main-image-wrapper {
        margin-bottom: 90px;
    }

    .image-gallery-section .thumbnail,
    .image-gallery-section .add-thumbnail {
        width: 60px;
        height: 60px;
    }

    .image-gallery-section .image-gallery-section {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }

    .image-gallery-section .main-image {
        height: 300px;
    }

    .image-gallery-section .thumbnails-scroll-container {
        bottom: -40px;
        left: -40px;
    }
}


.custom-swipper-slider-new .slider-container {
    position: relative;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.custom-swipper-slider-new .slider-container::-webkit-scrollbar {
    display: none;
}

.custom-swipper-slider-new .slide {
    scroll-snap-align: start;
    background: #007bff;
    color: white;
    border-radius: 10px;
    height: 300px;
    padding: 2rem;
    text-align: center;
    flex: 0 0 calc(100% / var(--slides-per-view) - 1.5rem);
}

.custom-swipper-slider-new .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.custom-swipper-slider-new .slider-nav button {
    pointer-events: all;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-swipper-slider-new .slider-nav button:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.custom-swipper-slider-new .slider-nav button i {
    font-size: 1.2rem;
    color: #007bff;
}

.custom-swipper-slider-new .slider-wrapper {
    position: relative;
}

/* --- Base Footer Styles --- */
.main-footer {
    background: #003366;
    /* Deep blue from image */
    color: #fff;
    padding: 60px 0 40px;
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap on smaller screens */
    justify-content: space-between;
    gap: 30px;
}

/* Individual Column Widths for Desktop */
.footer-logo {
    flex: 1.5;
    min-width: 250px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-contact {
    flex: 1.5;
    min-width: 250px;
}

.footer-social {
    flex: 1;
    min-width: 150px;
    text-align: right;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact p {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    /* Align to right on desktop */
}

.social-icons img {
    width: 35px;
    transition: opacity 0.3s;
}

/* --- Responsive Media Queries --- */

/* Tablet View (up to 992px) */
@media (max-width: 992px) {
    .footer-grid {
        justify-content: space-around;
    }

    .footer-logo,
    .footer-contact {
        flex: 1 1 45%;
    }

    .footer-links,
    .footer-social {
        flex: 1 1 45%;
    }

    .footer-social {
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

/* Mobile View (up to 600px) */
@media (max-width: 600px) {
    .footer-grid {
        flex-direction: column;
        /* Stack everything vertically */
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        flex: 1 1 100%;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
        padding: 20px 10px;
    }
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}