/* ==========================================================================
   SAMYAK PROPERTIES — RESPONSIVE CSS
   Full-coverage media queries for all screens
   Breakpoints: 1400px | 1200px | 991px | 768px | 576px | 375px
========================================================================== */

/* ----------------------------------------------------------
   HEADER / NAVIGATION — Mobile hamburger extras
   (The header bar itself stays visible at all times.
    On mobile we hide all nav <li> items except the logo,
    and show a hamburger that triggers the existing popup_menu.)
   ---------------------------------------------------------- */

/* Hamburger button — hidden on desktop, show906n on mobile */
.mob_hamburger {
    display: none;
    position: fixed;
    top: 13px;
    right: 12px;
    z-index: 999;
    width: 35px;
    height: 35px;
    background: rgb(1, 50, 99);
    border: none;
    cursor: pointer;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 8px;
}

.mob_hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* ----------------------------------------------------------
   MOBILE NAV OVERLAY
   ---------------------------------------------------------- */
.mob_nav_overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    cursor: pointer;
}

.mob_nav_overlay.active {
    display: block;
}

/* ----------------------------------------------------------
   MOBILE NAV DRAWER
   ---------------------------------------------------------- */
.mob_nav_drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    max-width: 86vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.mob_nav_drawer.open {
    left: 0;
}

/* Drawer header */
.mob_drawer_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #013263;
    flex-shrink: 0;
}

.mob_drawer_header img {
    height: 34px;
    width: auto;
    object-fit: contain;
    filter: brightness(100);
}

.mob_drawer_close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.mob_drawer_close:hover {
    opacity: 1;
}

/* Nav list */
.mob_nav_drawer .mob_nav_list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mob_nav_drawer .mob_nav_list>li {
    border-bottom: 1px solid #ede8de;
}

/* Top-level links */
.mob_nav_drawer .mob_nav_list>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #013263;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #fff;
    transition: background 0.2s;
}

.mob_nav_drawer .mob_nav_list>li>a:hover,
.mob_nav_drawer .mob_nav_list>li.mob-open>a {
    background: #f5f0e8;
    color: #c8a96e;
}

/* Arrow icon */
.mob_nav_drawer .mob_arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-style: normal;
    font-size: 11px;
    color: #c8a96e;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.mob_nav_drawer li.mob-open>a>.mob_arrow {
    transform: rotate(90deg);
}

/* Sub-menu (first level) */
.mob_nav_drawer .mob_sub_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background: #f7f4ee;
}

.mob_nav_drawer .mob_nav_list>li.mob-open>.mob_sub_menu {
    display: block;
}

.mob_nav_drawer .mob_sub_menu>li {
    border-top: 1px solid #ede6d8;
}

.mob_nav_drawer .mob_sub_menu>li>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 12.5px;
    font-weight: 600;
    color: #3d3124;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.mob_nav_drawer .mob_sub_menu>li>a:hover,
.mob_nav_drawer .mob_sub_menu>li.mob-open>a {
    background: #ede8dc;
    color: #013263;
}

/* Sub-sub-menu (second level) */
.mob_nav_drawer .mob_sub_sub_menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background: #ede8dc;
}

.mob_nav_drawer .mob_sub_menu>li.mob-open>.mob_sub_sub_menu {
    display: block;
}

.mob_nav_drawer .mob_sub_sub_menu>li {
    border-top: 1px solid #dfd8cc;
}

.mob_nav_drawer .mob_sub_sub_menu>li>a {
    display: block;
    padding: 10px 32px;
    font-size: 12px;
    color: #5a4a38;
    text-decoration: none;
    transition: background 0.2s;
}

.mob_nav_drawer .mob_sub_sub_menu>li>a:hover {
    background: #d8d0c2;
}

/* CTA buttons at drawer bottom */
.mob_drawer_cta {
    padding: 18px 16px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #ede8de;
    flex-shrink: 0;
}

.mob_drawer_cta a {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.mob_drawer_cta a:first-child {
    background: #013263;
    color: #fff;
}

.mob_drawer_cta a:last-child {
    background: transparent;
    color: #013263;
    border: 1.5px solid #013263;
}

.mob_drawer_cta a:hover {
    opacity: 0.85;
}

/* ---- ≤ 1300px — shrink nav text ---- */
@media (max-width: 1300px) {

    .header_style2 .header_navigation2 {
        gap: 0 25px;
    }

    .header_style2 .header_navigation2 li.navbar-logo {
        flex-basis: 20.14286%;
    }

    /* 
    .header_style2 .header_navigation2>li>a {
        font-size: 12px;
        padding: 21px 7px;
    } */
}

/* ---- ≤ 1150px — further shrink ---- */
@media (max-width: 1150px) {
    .header_style2 .header_navigation2 li a.navbar-brand {
        left: 48%;
    }

    .header_style2 .header_navigation2 {
        gap: 0 6px;
    }
}

/* ---- ≤ 991px — mobile header ---- */
@media (max-width: 991px) {

    /* Keep the header bar pinned at top as a solid white bar */
    .header_style2 {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 60px !important;
        z-index: 999 !important;
        background: #fff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
        transition: none !important;
    }

    .header_style2 .container-fluid {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    /* Hide all nav items */
    .header_style2 .header_navigation2 {
        display: flex !important;
        width: 100% !important;
        height: 60px !important;
        background: transparent !important;
        backdrop-filter: none !important;
        justify-content: center !important;
        gap: 0 !important;
        padding: 0 55px !important;
        /* leave room for hamburger */
    }

    /* Hide all nav list items on mobile */
    .header_style2 .header_navigation2>li {
        display: none !important;
    }

    /* But show the logo item */
    .header_style2 .header_navigation2 li.navbar-logo {
        display: flex !important;
        flex-basis: auto !important;
        opacity: 1 !important;
        justify-content: center;
        align-items: center;
    }

    /* Logo positioning — centre it */
    .header_style2 .header_navigation2 li a.navbar-brand {
        position: relative !important;
        left: auto !important;
        transform: none !important;
        width: auto !important;
        padding: 10px !important;
    }

    .header_style2 .header_navigation2 li a.navbar-brand img {
        height: 36px !important;
        width: auto !important;
    }

    /* Sticky state on mobile — don't collapse the nav to a dot */
    .header_style2.sticky .header_navigation2 {
        width: 100% !important;
        border-radius: 0 !important;
    }

    .header_style2.sticky .header_navigation2 li {
        animation: none !important;
    }

    .header_style2.sticky .header_navigation2 li a.navbar-brand:before {
        opacity: 0 !important;
        box-shadow: none !important;
    }

    /* Show the mobile hamburger button */
    .mob_hamburger {
        display: flex;
    }

    /* Existing popup_menu sizing fixes for mobile */
    .popup_menu.open .menu_container {
        width: 90vw;
        max-width: 340px;
        height: auto;
        min-height: auto;
        padding-bottom: 30px;
    }

    /* Enquire Now button — reposition for mobile */
    /* .enquire_wrap {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 70px;
        transform: translateX(-50%);
    }

    .enquire_wrap a {
        transform: none;
        border-radius: 50px;
        padding: 10px 22px;
        font-size: 12px;
    } */
}

/* ---- ≤ 768px ---- */
@media (max-width: 768px) {
    .popup_menu.open .menu_container {
        width: 95vw;
        max-width: 320px;
    }

    .popup_menu .menu_container ul li a {
        font-size: 24px;
    }

    .popup_menu .menu_container .button_wrap a {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* ---- ≤ 576px ---- */
@media (max-width: 576px) {
    .popup_menu.open .menu_container {
        width: 98vw;
        max-width: 300px;
    }

    .popup_menu .menu_container ul li a {
        font-size: 20px;
    }

}

/* ----------------------------------------------------------
   MAIN CONTENT — push down below fixed header on mobile
   ---------------------------------------------------------- */
@media (max-width: 991px) {
    .main-content {
        padding-top: 60px;
    }

    /* Hero banner already fills 100vh, so subtract header height */
    .hero_banner_wrap {
        margin-top: -60px;
    }
}

/* ----------------------------------------------------------
   HERO BANNER
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .home_banner_content {
        padding: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero_banner_wrap {
        min-height: 70vh;
        height: 70vh;
    }

    .home_banner_content {
        padding: 0;
        gap: 20px;
        padding-left: 15px;
    }

    .fullwidth_section {
        padding-bottom: 20px !important;
    }

    .banner_cta_wrap {
        padding: 10px 15px 10px 10px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero_banner_wrap {
        min-height: 60vh;
        height: 60vh;
    }



    .banner_cta_wrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }

    .call_us_wrap a .text_content span {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .hero_banner_wrap {
        min-height: 55vh;
        height: 55vh;
    }


    .call_us_wrap a .text_content {
        font-size: 13px;
    }
}

/* ----------------------------------------------------------
   WN SECTION (What's New)
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .wn {
        padding: 60px 25px;
    }

    .wn-left {
        padding-right: 35px;
    }

    .wn-right {
        padding-left: 30px;
    }
}

@media (max-width: 991px) {
    .wn .wn-inner>.row {
        flex-direction: column;
    }

    .wn-left {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .wn-right {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        border-left: none;
        border-top: 0.5px solid #dfd8cc;
        padding-top: 10px;
    }

    .wn {
        padding: 60px 20px;
    }

    .wn-card {
        padding: 25px 0 25px 20px;
    }

    .wn-card-img img {
        height: 95px;
    }
}

@media (max-width: 768px) {
    .wn {
        padding: 50px 15px;
    }

    .wn-card-h4 {
        font-size: 18px;
    }

    .wn-card-p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .wn-card {
        flex-direction: column;
        padding: 20px 0;
    }

    .wn-card-img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .wn-card-img img {
        height: 150px;
        width: 100%;
        object-fit: cover;
    }
}

/* ----------------------------------------------------------
   PROJECT OVERVIEW
   ---------------------------------------------------------- */
@media (max-width: 991px) {
    .project_overview {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .project_overview {
        padding: 60px 0;
    }

    .overview_content p {
        font-size: 0.9rem;
    }
}

/* ----------------------------------------------------------
   KEY HIGHLIGHTS
   ---------------------------------------------------------- */
@media (max-width: 1400px) {
    .key_highlights_wrap {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .highlights_content {
        width: 320px;
        right: 25px;
        bottom: 25px;
        padding: 22px;
    }

    .highlights_content h4 {
        font-size: 22px;
    }

    .highlights_content h5 {
        font-size: 15px;
    }

    .key_highlights_listing ul {
        width: 240px;
    }

    .key_highlights_listing li a {
        font-size: 16px;
    }

    .key_highlights_listing {
        padding-top: 14rem;
    }
}

@media (max-width: 991px) {
    .key_highlights_wrap {
        width: 100%;
        padding: 60px 0;
        min-height: 480px;
    }

    .key_highlights_listing {
        padding-top: 7rem;
        padding-left: 20px;
    }

    .key_highlights_listing ul {
        width: 210px;
    }

    .key_highlights_listing li a {
        font-size: 14px;
    }

    .highlights_content {
        width: 270px;
        right: 15px;
        bottom: 15px;
        padding: 18px;
    }

    .highlights_content h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .highlights_content h5 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .highlights_content p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .key_highlights_wrap {
        padding: 40px 0;
        min-height: 420px;
    }

    .key_highlights_listing {
        padding-top: 5rem;
        padding-left: 12px;
    }

    .key_highlights_listing ul {
        width: 185px;
        padding: 10px;
    }

    .key_highlights_listing li a {
        font-size: 12px;
        line-height: 16px;
    }

    .key_highlights_listing li {
        gap: 10px;
    }

    .key_highlights_listing li .circle-progress {
        width: 26px;
        height: 26px;
    }

    .highlights_content {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 24px);
        margin: 12px;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
    }

    .highlights_content.active {
        display: block;
    }
}

@media (max-width: 576px) {
    .key_highlights_wrap {
        min-height: 600px;
    }

    .key_highlights_bg_wrap {
        display: flex;
        align-items: flex-end;
    }

    .key_highlights_listing li a {
        color: #FFF;
    }

    .key_highlights_listing li.active a {
        color: rgb(211 165 26);
    }

    .key_highlights_listing {
        padding-top: 0;
        padding-left: 10px;
    }

    .key_highlights_listing ul {
        width: 160px;
    }

    .key_highlights_listing li a {
        font-size: 11px;
    }
}

/* ----------------------------------------------------------
   ABOUT SAMYAK
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .about-samyak {
        padding: 60px 0;
    }

    .about-editorial h3 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .about-samyak .row {
        flex-direction: column;
    }

    .about-samyak .col-lg-6 {
        width: 100%;
    }

    .about-editorial {
        padding-left: 0;
        padding-top: 30px;
    }

    .about-editorial h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .about-image img {
        height: 300px;
    }

    .about-samyak {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .about-image img {
        height: 240px;
    }

    .about-editorial h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .about-image img {
        height: 200px;
    }

    .about-editorial p {
        font-size: 14px;
    }
}

/* ----------------------------------------------------------
   ONE SAMYAK
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .one_samyak_grid {
        gap: 20px;
    }

    .one_card {
        padding: 35px;
    }

    .one_card h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .one_samyak_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .section_heading {
        margin-bottom: 50px;
    }

    .one_card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .one_samyak_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .one_card {
        padding: 25px;
    }

    .one_card .icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    .one_card h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .section_heading {
        margin-bottom: 40px;
    }

    .section_heading h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .one_samyak {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .network_text p {
        font-size: 12px;
        padding: 3px 14px;
    }
}

/* ----------------------------------------------------------
   SAMYAK STORY
   ---------------------------------------------------------- */
@media (max-width: 1200px) {
    .story-box {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .samyak-story .row {
        flex-direction: column;
    }

    .samyak-story .col-lg-6 {
        width: 100%;
    }

    .story-box {
        height: auto;
        padding: 40px;
        border-radius: 20px;
    }

    .story-box h2 {
        font-size: 1.75rem;
    }

    .info-box {
        margin-top: 25px;
        padding: 20px;
    }

    .samyak-story {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .story-box {
        padding: 30px;
        border-radius: 16px;
    }

    .story-box h2 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
}

@media (max-width: 576px) {
    .story-box {
        padding: 22px 18px;
    }

    .story-box h2 {
        font-size: 1.3rem;
    }

    .info-box {
        padding: 15px;
        font-size: 14px;
    }
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
@media (max-width: 1400px) {
    .footer_top_content {
        column-gap: 50px;
    }

    .footer_form {
        max-width: 380px;
    }
}

@media (max-width: 1200px) {
    .footer_top_content {
        column-gap: 30px;
    }

    .footer_form {
        max-width: 340px;
        padding: 25px;
    }

    .footer_content {
        padding: 60px 0 30px;
    }

    .footer_menu_link ul li {
        width: calc(50% - 10px);
    }
}

@media (max-width: 991px) {
    .site-footer {
        margin-top: 50px;
    }

    .footer_top_content {
        flex-direction: column;
        column-gap: 0;
    }

    /* Form stays on top, full width */
    .footer_form {
        max-width: 100%;
        width: 100%;
        margin-top: -55px;
        padding: 30px;
    }

    .footer_content {
        padding: 50px 0 20px;
        max-width: 100%;
    }

    .footer_logo_wrap {
        flex-direction: column;
        row-gap: 14px;
        margin-bottom: 30px;
    }

    .footer_logo {
        width: 150px;
    }

    .footer_links_wrap:not(:last-child) {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .footer_menu_link ul {
        gap: 5px 12px;
    }

    .footer_menu_link ul li {
        width: calc(33.33% - 12px);
    }

    .footer_contact_wrap {
        margin-bottom: -20px;
    }

    .footer_contact_item {
        margin-bottom: 20px;
    }

    .copyright-wrap {
        margin-top: 35px;
        text-align: center;
    }

    .text-right {
        text-align: center !important;
    }

    .copyright-links {
        text-align: center;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .footer_form {
        padding: 25px 20px;
        margin-top: -45px;
    }

    .footer_heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer_menu_link ul li {
        width: calc(50% - 10px);
    }

    .footer_social {
        margin-top: 28px;
    }

    .footer_logo_wrap {
        margin-bottom: 22px;
    }

    .footer_contact_item .icon_wrap {
        font-size: 1.1rem;
    }

    .copyright-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer_form {
        padding: 20px 15px;
        margin-top: -40px;
    }

    .footer_menu_link ul li {
        width: 100%;
    }

    .footer_menu_link ul {
        gap: 3px 0;
    }

    .footer_social a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .footer_form .section_title:not(:last-child) {
        margin-bottom: 18px;
    }

    .copyright-wrap {
        font-size: 11px;
        padding: 10px 0;
    }

    .whats_div {
        left: 12px;
        bottom: 12px;
    }

    .whats_div a {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}

/* ----------------------------------------------------------
   CAPTCHA & FORMS
   ---------------------------------------------------------- */
@media (max-width: 576px) {
    /* .captcha_wrap {
        flex-direction: column;
        gap: 10px;
    }

    .captcha-refresh {
        width: 100%;
    } */

    .enquiry_popup_main .modal-dialog {
        margin: 8px auto;
        max-width: calc(100% - 16px);
    }

    .enquiry_popup_main .footer_form {
        padding: 20px 15px;
        margin-top: 0;
    }

    #create_captcha {
        width: 124px;
        height: 44px;
    }
}

/* ----------------------------------------------------------
   GENERAL TYPOGRAPHY SCALING
   ---------------------------------------------------------- */
@media (max-width: 1200px) {

    h1,
    .h1 {
        font-size: 3.2rem;
    }

    h2,
    .h2 {
        font-size: 2.5rem;
    }

    h3,
    .h3 {
        font-size: 2rem;
    }

    h4,
    .h4 {
        font-size: 1.7rem;
    }
}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 2.6rem;
    }

    h2,
    .h2 {
        font-size: 2rem;
    }

    h3,
    .h3 {
        font-size: 1.75rem;
    }

    h4,
    .h4 {
        font-size: 1.5rem;
    }

    h5,
    .h5 {
        font-size: 1.25rem;
    }

    .section_spacing {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.75rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem;
    }

    h4,
    .h4 {
        font-size: 1.3rem;
    }

    h5,
    .h5 {
        font-size: 1.1rem;
    }

    .section_spacing {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .small_label {
        font-size: 0.95rem;
        gap: 10px 8px;
    }

    .section_title:not(:last-child) {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {

    h1,
    .h1 {
        font-size: 1.75rem;
    }

    h2,
    .h2 {
        font-size: 1.5rem;
    }

    h3,
    .h3 {
        font-size: 1.3rem;
    }

    h4,
    .h4 {
        font-size: 1.15rem;
    }

    h5,
    .h5 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .section_spacing {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .small_label {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .section_title:not(:last-child) {
        margin-bottom: 24px;
    }
}

@media (max-width: 375px) {

    h1,
    .h1 {
        font-size: 1.55rem;
    }

    h2,
    .h2 {
        font-size: 1.35rem;
    }

    h3,
    .h3 {
        font-size: 1.15rem;
    }

    p {
        font-size: 0.875rem;
    }

    .section_spacing {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* ----------------------------------------------------------
   FULLWIDTH SECTION PADDING
   ---------------------------------------------------------- */
@media (max-width: 991px) {
    .fullwidth_section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .fullwidth_section {
        padding: 45px 0;
    }

    .enquire_wrap {
        right: -47px;
    }

    .enquire_wrap a {
        font-size: 11px;
        padding: 8px 14px;
    }

    .enquiry_popup_main .modal-body {
        padding: 6px;
    }

    .enquiry_popup_main .form-control {
        padding: 10px 16px;
    }
}

/* ----------------------------------------------------------
   ENQUIRE WRAP — desktop default is already inline
   ---------------------------------------------------------- */
/* @media (max-width: 991px) {
    .enquire_wrap {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 72px;
        transform: translateX(-50%);
    }
    .enquire_wrap a {
        transform: none;
        border-radius: 50px;
        padding: 10px 22px;
        font-size: 12px;
    }
} */

@media (max-width: 576px) {
    /* .enquire_wrap { bottom: 82px; } */

}