/* Typography System */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Primary Brand Color */
.text-primary-brand {
    color: #375065;
}

/* Additional Custom Colors */
.text-secondary {
    color: #6c757d !important;
}

.bg-highline-blue {
    background-color: #3a5579;
}

.text-highline-blue {
    color: #3a5579;
}

/* Custom Button Styles - Modify Bootstrap btn-light */
.btn {
    border-radius: initial;
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
}

.btn.btn-light {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 40px;
    gap: 10px;
    background: #DCD6D1;
    border: 2px solid #DCD6D1;
    color: #506D85;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-light:hover,
.btn.btn-light:focus,
.btn.btn-light:active,
.btn.btn-light.active {
    background: transparent;
    border: 2px solid #DCD6D1;
    /*border: none;*/
    color: #DCD6D1;
    box-shadow: none;
}

/* Custom Outline Button - Modify Bootstrap btn-outline-light */
.btn.btn-outline-light {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 40px;
    gap: 10px;
    background: transparent;
    border: 2px solid #DCD6D1;
    color: #DCD6D1;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-outline-light:hover,
.btn.btn-outline-light:focus,
.btn.btn-outline-light:active,
.btn.btn-outline-light.active {
    background: #DCD6D1;
    border-color: #DCD6D1;
    color: #506D85;
    box-shadow: none;
}

/*Custom Primary Button*/

.btn-primary {
    padding: 18px 40px;
    background: #375065;
    border: 2px solid #375065;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary.active {
    background: transparent;
    border: 2px solid #375065;
    /*border: none;*/
    color: #375065;
    box-shadow: none;
}

/* Remove Bootstrap's default control styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/*mian headings width*/
.main-text-headings {
    max-width: 50%;
    justify-self: center;
}


/* Header Styles */

.highline-header-wrapper {
    background: #375065;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    position: relative;
    z-index: 1000;
}

.highline-header-wrapper.front-page-header {
    background: transparent;
}

.highline-header-container {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 200px;
    height: 92px;
    position: relative;
}

/* Logo */
.highline-logo {
    width: 157px;
    height: 35px;
    display: flex;
    align-items: center;
}

.highline-logo a {
    color: #DCD6D1;

}

.highline-logo a {
    color: #DCD6D1;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.highline-logo img {
    max-height: 35px;
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* Navigation */
.highline-nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.highline-nav-menu a,
.highline-nav-menu .menu-item a {
    text-decoration: none;
    color: #DCD6D1;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* Active menu item indicator */
.highline-nav-menu a.active::after,
.highline-nav-menu .current-menu-item a::after,
.highline-nav-menu .current_page_item a::after {
    content: '';
    position: absolute;
    bottom: -37px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 3px;
}

/* WordPress Menu Support */
.highline-nav-menu ul {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sub-menu .current-menu-item a::after {
    position: relative !important;
}
.sub-menu a::after{
    position:relative !important;
}
.highline-nav-menu li {
    list-style: none;
}


/* --- Dropdown Menu Styling --- */

.highline-nav-menu .menu-item-has-children {
    position: relative;
}

.highline-nav-menu .sub-menu {
    background-color: #ffffff;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin-top: 20px;
    padding: 0.5rem 0;
    min-width: 220px; 

    position: absolute;
    top: 100%; 
    left: 0;
    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* 3. Show the dropdown on hover */
.highline-nav-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.highline-nav-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.highline-nav-menu .sub-menu li a {
    display: block; 
    color: #333;
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap; 
    text-decoration: none;
}

.highline-nav-menu .sub-menu li a span {
    display: inline;
    padding: 0;
    border: none;
    background: none;
}

.highline-nav-menu .sub-menu li a:hover {
    background-color: #f1f3f5; 
    color: #000;
}

.highline-nav-menu .menu-item-has-children > a > span::after {
    content: '▼';
    font-size: 0.6rem;
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    transform: translateY(-1px);
}

/* Right side - Contact and CTA */
.highline-header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.highline-contact-info {
    display: flex;
    align-items: center;
    gap: 13px;
}

span.highline-phone-number a {
    color: inherit;
}

.highline-phone-icon {
    width: 18px;
    height: 18px;
    background: #DCD6D1;
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.95 21q-3.225 0-6.287-1.438-3.063-1.437-5.425-3.8-2.363-2.362-3.8-5.425Q3 7.275 3 4.05v-.525Q3 3.25 3.05 3H8.9l.925 5.025-2.85 2.875q1.05 1.8 2.638 3.375Q11.2 15.85 13.1 17l2.9-2.9 5 1v5.85q-.25.025-.525.038Q20.2 21 19.95 21Z"/></svg>');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.95 21q-3.225 0-6.287-1.438-3.063-1.437-5.425-3.8-2.363-2.362-3.8-5.425Q3 7.275 3 4.05v-.525Q3 3.25 3.05 3H8.9l.925 5.025-2.85 2.875q1.05 1.8 2.638 3.375Q11.2 15.85 13.1 17l2.9-2.9 5 1v5.85q-.25.025-.525.038Q20.2 21 19.95 21Z"/></svg>');
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.highline-phone-number {
    color: #DCD6D1;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.highline-cta-button {
    background: #D9D9D9;
    padding: 34px 60px;
    border: none;
    /*border-radius: none;*/
    /*cursor: pointer;*/
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #375065;
    transition: all 0.3s ease;
}

.highline-cta-button:hover {
    background: #DCD6D1;
    /*transform: translateY(-2px);*/
}

/* Mobile Menu Toggle */
.highline-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.highline-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #DCD6D1;
    transition: all 0.3s ease;
}

/* Animate hamburger to X when active */
.highline-mobile-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.highline-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.highline-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer Styles */
.highline-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.highline-mobile-drawer.active {
    pointer-events: auto;
    visibility: visible;
}

/* Overlay */
.mobile-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highline-mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

/* Drawer Content */
.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background-color: #375065;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.highline-mobile-drawer.active .mobile-drawer-content {
    transform: translateX(-320px);
}

/* Mobile Drawer Header */
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(220, 214, 209, 0.2);
}

.mobile-drawer-logo {
    width: 157px;
}

.mobile-drawer-logo a {
    color: #DCD6D1;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mobile-drawer-logo img {
    max-height: 35px;
    width: auto;
}

.mobile-drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #DCD6D1;
    transition: opacity 0.3s ease;
}

.mobile-drawer-close:hover {
    opacity: 0.7;
}

/* Mobile Navigation */
.mobile-drawer-nav {
    flex: 1;
    padding: 30px 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list .menu-item {
    border-bottom: 1px solid rgba(220, 214, 209, 0.1);
}

.mobile-menu-list .menu-item:last-child {
    border-bottom: none;
}

.mobile-menu-list .menu-item a {
    display: block;
    padding: 18px 25px;
    color: #DCD6D1;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu-list .menu-item a:hover,
.mobile-menu-list .menu-item.current-menu-item > a {
    background-color: rgba(220, 214, 209, 0.1);
    padding-left: 35px;
}

.mobile-menu-list .menu-item.current-menu-item a {
    position: relative;
}

.mobile-menu-list .menu-item.current-menu-item > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: #DCD6D1;
}

/* Mobile Contact Info */
.mobile-drawer-contact {
    padding: 25px;
    border-top: 1px solid rgba(220, 214, 209, 0.2);
    background-color: rgba(220, 214, 209, 0.05);
}

.mobile-contact-info {
    margin-bottom: 20px;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #DCD6D1;
    text-decoration: underline;
    font-size: 16;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: opacity 0.3s ease;
}

.mobile-phone-link:hover {
    opacity: 0.8;
}

.mobile-phone-link svg {
    fill: #DCD6D1;
}

.mobile-cta-button {
    width: 100%;
    padding: 18px 30px;
    background: #D9D9D9;
    color: #375065;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-cta-button:hover {
    background: #DCD6D1;
}

/* Submenu Support (if needed) */
.mobile-menu-list .menu-item-has-children>a::after {
    content: '▼';
    float: right;
    font-size: 12px;
    color: #DCD6D1;
    transition: transform 0.3s ease;
}

.mobile-menu-list .menu-item-has-children.open>a::after {
    transform: rotate(180deg);
}

.mobile-menu-list .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.mobile-menu-list .menu-item-has-children.open .sub-menu {
    display: block;
}

.mobile-menu-list .sub-menu .menu-item a {
    padding-left: 50px;
    font-size: 14px;
}

.mobile-menu-list .sub-menu .menu-item {
    border-bottom: 1px solid rgba(220, 214, 209, 0.05);
}

/* Footer Styles */
.highline-footer {
    background-color: #375065;
    color: #DCD6D1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Updated Footer Grid with Adjusted Column Widths */
.highline-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 1.2fr;
    /* Adjusted: reduced service areas, increased contact info */
    gap: 20px;
    max-width: 1565px;
    margin: 0 auto;
    padding: 100px 20px 30px;
}

/* Ensure proper spacing for nested sections in column 2 */
.highline-footer-grid>div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Ensure proper spacing for nested sections in column 4 (Contact & Social) */
.highline-footer-grid>div:nth-child(4) {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Footer Logo */
.highline-footer-logo {
    margin-bottom: 20px;
}

.highline-footer-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Makes dark logos white */
}

.highline-footer-section {
    margin-bottom: 50px;
}

.highline-footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #FFFFFF;
}

.highline-footer-section p {
    font-size: 16px;
    line-height: 1.5;
    color: #DCD6D1;
    margin-bottom: 10px;
}

.highline-footer-section p:last-child {
    margin-bottom: 0;
}

.highline-footer-section a {
    color: #DCD6D1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.highline-footer-section a:hover {
    text-decoration: underline;
}

/* Service Areas - Compact Layout */
.highline-footer-grid>div:nth-child(3) p {
    margin-bottom: 8px;
    /* Tighter spacing for service areas */
}

/* Contact Info - More Spacious */
.highline-footer-grid>div:nth-child(4) .highline-footer-section:first-child p {
    margin-bottom: 16px;
    /* More space for contact items */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer Icons - Image Icons */
.highline-footer-icon-img {
    width: 25px;
    height: 25px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
    object-fit: scale-down;
}

.highline-footer-section a:hover .highline-footer-icon-img {
    opacity: 1;
}

/* Social Media Icons - Image Icons */
.highline-social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.highline-social-icon-img {
    width: 20px;
    height: 21px;
    display: flex;
    object-fit: contain;
    align-items: center;
}

/* .highline-social-links a:hover .highline-social-icon-img {
    opacity: 1;
    transform: translateY(-2px);
} */

/* Footer Bottom */
.highline-footer-bottom {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 20px auto 0;
    font-size: 16px;
    font-weight: 400;
    color: #A9B7C0;
    padding: 40px 20px;
    border-top: 1px solid #2E4355;
}

.highline-footer-bottom a {
    color: #A9B7C0;
    margin-left: 15px;
    text-decoration: none;
}

.highline-footer-bottom a:hover {
    text-decoration: underline;
}

.highline-footer-copyright {
    max-width: 1565px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0px 20px;
}

.highline-footer-tagline {
    max-width: 70%;
}


/* Hero Section Styles */
.hero-section {
    background-size: cover;
    background-position: top center;
    /*background-attachment: fixed;*/
    min-height: 100vh;
    height: 998px;
    display: flex;
    align-items: center;
    margin-top: -105px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-section h1 {
    font-family: Playfair Display;
    font-weight: 700;
    /*font-style: Bold;*/
    font-size: 72px;
    /*leading-trim: NONE;*/
    line-height: 80px;
    /*letter-spacing: 0%;*/
    text-align: center;
    vertical-align: middle;

    /*text-shadow: 2px 2px 4px rgba(0,0,0,0.5);*/
}

.hero-section .lead {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    color: #DCD6D1;
    width: 70%;
    justify-self: center;
}

/* Statistics Section */
.stats-section {
    position: relative;
    padding: 0;
    margin-top: -120px;
    /* Negative margin to overlap hero */
    z-index: 10;
}

.stats-container {
    /*background: #FFFFFF;*/
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    /*border-radius: 8px;*/
    /*overflow: hidden;*/
}

/* Column backgrounds */
.stats-heading-col {
    background-color: #DCD6D1;
}

.stat-col-0 {
    background-color: #E2E0DF;
}

.stat-col-1 {
    background-color: #E9E9E9;
}

.stat-col-2 {
    background-color: #F3F3F3;
}

/* Stats heading styles */
.stats-section h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #375065;
    width: 85%;
}

/* Individual stat item */
.stat-item {
    padding: 3rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.stat-item h3 {
    font-weight: 700;
    font-style: bold;
    font-size: 80px;
    color: #375065;
    margin-bottom: 0.5rem;
    line-height: 100%;
    margin-bottom: 40px;
}

.stat-item p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #375065;
    margin-bottom: 0;
}


/* Services Section */
.services-section {
    /*background-color: #FFFFFF;*/
    padding: 100px 15px;
    background-color: #EEEBE8;
}

.services-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.2;
    color: #2B2B2B;
    margin-bottom: 3rem;
}

.service-card {
    background-color: #375065;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(55, 80, 101, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    height: 100px;
    width: 104px;
}

.service-title {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    display: flex;
    align-items: center;
    text-align: center;

    color: #F7F7F5;
}

.service-description {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0;
    color: #F7F7F5;
}


/* Service Areas Section */
.service-areas-section {
    background-color: #EEEBE8;
    padding: 100px 0;
}

.service-areas-section .section-heading {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 64px;
    text-align: center;
    color: #2E2E2E;

}

.service-areas-section .section-subheading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* or 150% */
    text-align: center;

    color: #848484;

}

/* Service Area Card */
.service-area-card {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 705px;
}

.service-area-card .card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-area-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-area-card:hover .card-img {
    transform: scale(1.05);
}

.service-area-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.service-area-card .card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    color: #FFFFFF;
    font-family: Playfair Display;
    font-weight: 400;
    font-size: 1.75rem;
    margin: 0;
    text-align: center;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Remove gaps between cards */
.service-areas-section .row {
    margin-left: -5px;
    margin-right: -5px;
}

.service-areas-section .row>div {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}



/* Archive Page Styles */
.service-areas-archive {
    background-color: #F8F8F8;
    min-height: 70vh;
}

.service-areas-archive .page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3rem;
    color: #2B2B2B;
    margin-bottom: 1rem;
}

.service-areas-archive .page-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #666666;
}

/* Pagination Styles */
.pagination {
    justify-content: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background-color: #FFFFFF;
    color: #375065;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: #375065;
    color: #FFFFFF;
}

/*partners-section*/
.partners-section {
    padding: 52px 0px 100px;
}

.partners-section .section-heading {
    font-size: 3rem;
}

.partners-section .section-subheading {
    color: #848484;
}

/* Partner Cards */
.partner-card {
    background: #FFFFFF;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card .card-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.partner-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partner-card:hover .card-image img {
    transform: scale(1.05);
}

.partner-card .card-content {
    padding: 2rem 0 0;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2rem;
    color: #2E2E2E;
    margin-bottom: 1rem;
}

.partner-card .card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #737373;
}

.partner-card .card-link {
    position: absolute;
    right: 0.1rem;
    width: 80px;
    height: 80px;
    background-color: #375065;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-card .card-link:hover {
    background-color: #2a3d4e;
    transform: translateX(3px);
}

.partner-card .arrow-icon {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 300;
}

/* Reviews Section */
.reviews-section {
    background: #375065;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 48px;
    color: #DCD6D1;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.reviews-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #DCD6D1;
    line-height: 24px;
    text-align: center;
    margin-bottom: 3rem;
}

/* Review Cards */
.review-card {
    background: #DCD6D1;
    padding: 54px 58px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-stars {
    font-size: 24px;
    color: #F5B800;
}

.review-content {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1D4340;
    flex-grow: 1;
}

/* Reviewer Info */
.reviewer-info {
    gap: 15px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #C4C4C4;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    font-size: 22px;
    color: #375065;
    margin: 0 0 4px 0;
}

.reviewer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6E7676;
    margin: 0;
}

/* Carousel Customization */
.reviews-section .carousel {
    padding-bottom: 50px;
}

.reviews-section .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
}

.reviews-section .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(220, 214, 209, 0.3);
    border: none;
    margin: 0 6px;
}

.reviews-section .carousel-indicators .active {
    background-color: #DCD6D1;
}

/* Slick Slider Layout */
.reviews-slider {
    padding-bottom: 50px;
    position: relative;
}

.reviews-slider .slick-list {
    margin: 0 -15px;
}

.reviews-slider .slick-slide {
    padding: 0 15px;
}

.reviews-slider .slick-slide>div {
    height: 100%;
}

.review-slide {
    height: 100%;
}

/* Slick Dots - Styled to match your carousel indicators */
.reviews-slider .slick-dots {
    position: absolute;
    bottom: -25px;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.reviews-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.reviews-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(220, 214, 209, 0.3);
    text-indent: -9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reviews-slider .slick-dots li button:before {
    display: none;
    /* Remove default Slick dot styling */
}

.reviews-slider .slick-dots li.slick-active button {
    background-color: #DCD6D1;
}

/* Slick Arrows - Hidden by default, customize if needed */
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    display: none !important;
    /* Hide arrows to match your original design */
}

/* If you want to add arrows later, uncomment and style these: */
/*
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #DCD6D1;
    border: none;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    font-size: 0;
}

.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    color: #375065;
    opacity: 1;
}

.reviews-slider .slick-prev {
    left: -50px;
}

.reviews-slider .slick-next {
    right: -50px;
}
*/

/* Logo Gallery Section */
.logo-gallery-section {
    background-color: #FFFFFF;
    padding: 0px 0 48px;
    border-bottom: 1px solid #E5E5E5;
    overflow: hidden;
    position: relative;
}

/* Marquee Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Marquee Content */
.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

/* Logo Items */
.logo-item {
    flex: 0 0 auto;
    margin: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 113px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}


/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

/* Overlay with gradient */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(55, 80, 101, 0.81) 0%, rgba(0, 0, 0, 0.41) 100%);
    z-index: 1;
}

/* Content Container */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-btn {
    color: #375065 !important;
}


/* Blogs Section */
.blogs-section {
    padding: 52px 0 100px;
    overflow: hidden;
}

.blogs-section .section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    color: #2E2E2E;
    margin-bottom: 1rem;
}

.blogs-section .section-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #848484;
    margin-bottom: 4rem;
}

/* Carousel Wrapper */
.blogs-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    /* Space for arrows */
}

/* Blog Card */
.blog-card {
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 2rem;
}

/* Blog Card Image */
.blog-card-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Blog Card Content */
.blog-card-content {
    padding: 0;
}

/* Blog Date */
.blog-date {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #069C89;
    line-height: 24px;
    text-decoration: underline;
    margin-bottom: 0.75rem;
}

/* Blog Title */
.blog-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-title a {
    color: #375065;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Blog Excerpt */
.blog-excerpt {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #848484;
    margin-bottom: 1.5rem;
}

/* Read More Link */
.blog-read-more {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: underline;
    color: #375065;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #2a3d4e;
    text-decoration: underline;
}

/* Custom Carousel Controls */
.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-300%);
    width: 48px;
    height: 48px;
    background-color: #375065;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.custom-carousel-control:hover {
    background-color: #2a3d4e;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.control-icon {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
}

/* Slick Slider Layout for Blogs */
.blogs-slider .slick-list {
    margin: 0 -15px;
}

.blogs-slider .slick-slide {
    padding: 0 15px;
}

.blogs-slider .slick-slide>div {
    height: 100%;
}

.blog-slide {
    height: 100%;
}

/* Hide default Slick arrows - we'll use custom ones */
.blogs-slider .slick-prev,
.blogs-slider .slick-next {
    display: none;
}

/* Custom Slick Navigation Arrows - matching your existing style exactly */
.blogs-slider .slick-prev-custom,
.blogs-slider .slick-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-300%);
    /* Matching your exact positioning */
    width: 48px;
    height: 48px;
    background-color: #375065;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
    padding: 0;
}

.blogs-slider .slick-prev-custom:hover,
.blogs-slider .slick-next-custom:hover {
    background-color: #2a3d4e;
}

.blogs-slider .slick-prev-custom {
    left: -25px;
}

.blogs-slider .slick-next-custom {
    right: -25px;
}

.blogs-slider .slick-prev-custom .control-icon,
.blogs-slider .slick-next-custom .control-icon {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

/* Hide dots for blogs carousel */
.blogs-slider .slick-dots {
    display: none;
}

/* Ensure proper spacing between slides */
.blogs-slider {
    margin: 0;
}



/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.faq-section .section-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 3rem;
    color: #2E2E2E;
    margin-bottom: 1rem;
}

.faq-section .section-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #848484;
    margin-bottom: 4rem;
}

/* Custom FAQ Accordion */
.custom-faq-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

.custom-faq-accordion .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 0;
}

/* Accordion Button */
.custom-faq-accordion .accordion-button {
    background-color: #DCD6D1;
    color: #375065;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    padding: 28px 40px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    position: relative;
}

/* Active/Expanded State */
.custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: #375065;
    color: #DCD6D1;
}

/* Focus State */
.custom-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Hover State */
.custom-faq-accordion .accordion-button:hover {
    background-color: #2a3d4e;
    color: #DCD6D1;
}

.custom-faq-accordion .accordion-button.collapsed:hover {
    background-color: #c8c2bd;
    color: #375065;
}

/* Question Number */
.question-number {
    margin-right: 15px;
}

/* Custom Chevron Icon */
.custom-faq-accordion .accordion-button::after {
    content: "";
    background-image: url('https://highline.blinkshift.net/wp-content/uploads/2025/08/chevron-right-dark-svgrepo-com.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(270deg);
    background-image: url('https://highline.blinkshift.net/wp-content/uploads/2025/08/chevron-right-svgrepo-com-4.svg');
}

/* Accordion Body */
.custom-faq-accordion .accordion-body {
    background-color: #FFFFFF;
    border: 1px solid #DCD6D1;
    border-top: none;
    padding: 30px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #848484;
}


.services-main-banner {
    background-size: cover;
    background-repeat: no-repeat;
    height: 550px;
    background-position: top center;
    /* Add these lines to create the wave effect */
    -webkit-clip-path: url(#wave-clip);
    clip-path: url(#wave-clip);
}

.services-main-banner .container,
.services-main-banner .container > div {
    height: 100%;
}

.page.services-section .services-heading {
    margin-bottom: 10px;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}


.section-subheading {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #848484;
}

.pricing-title {
    color: #375065;
}

.pricing-subtitle {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #848484;
}

.pricing-card a.btn {
    color: #375065; 
    border-radius: 0;
}

.property-types-section {
    background-color: #EEEBE8;
}

.property-type-card-link {
    text-decoration: none;
}

.property-types-section {
    background-color: #EEEBE8; 
    padding: 100px 0 !important;

}

.property-type-card {
    background-color: #ffffff;
    border: none; 
    border-radius: 0.75rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.property-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.property-type-card .card-image-top img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.property-type-card .card-body {
    padding: 2.5rem 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.property-type-card .card-icon {
    margin-bottom: 1rem;
}

.property-type-card .card-icon svg {
    width: 32px;
    height: 32px;
    color: #212529; 
}

.property-type-card .card-title {
    font-size: 1.15rem; 
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.property-type-card .card-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-areas-list {
    display: flex;
    justify-content: center; 
    flex-wrap: wrap;         
    gap: 0.75rem;            
    margin-top: 1.5rem;      
}

.service-area-tag {
    display: inline-flex;    
    align-items: center;     
    background-color: #f1f3f5;
    color: #495057;          
    padding: 0.1rem 0.6rem; 
    border-radius: 50px;     
    font-size: 0.9rem;
    font-weight: 500;       
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.service-area-tag:hover {
    background-color: #375065;
    color: #ffffff;         
}

.service-area-tag svg {
    width: 14px;            
    height: 14px;           
    margin-right: 0.2rem;   
}

.why-choose-us-section {
    background-color: #ffffff;
}

.wcu-item {
    padding: 1rem;
}

.wcu-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.wcu-item:hover .wcu-icon-wrapper {
    background-color: #e9ecef;
}

.wcu-icon {
    width: 40px;
    height: auto;
}

.wcu-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
}

.wcu-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-it-works-list {
    position: relative;
}

.how-it-works-step {
    display: flex;
    align-items: flex-start; 
    position: relative;
    padding-left: 60px;
    padding-bottom: 3rem;
}

/* This creates the vertical timeline */
.how-it-works-step::before {
    content: '';
    position: absolute;
    left: 19px; 
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #e9ecef;
}

/* Hide the line on the last step */
.how-it-works-step:last-child {
    padding-bottom: 0;
}
.how-it-works-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #212529;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    font-size: 0.7rem;
    z-index: 1;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.step-description {
    color: #6c757d;
    line-height: 1.6;
}


/*sidebars styleing*/
/* Main Content Section */
.hub-main-content {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 2rem 0;
}

/* Sidebar Container */
.hub-main-content .sidebar-sticky {
    position: sticky;
    top: 20px; /* Adjust based on header height */
}

/* Sidebar Card Styling */
.hub-main-content .sidebar-sticky .card {
    border: none;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-main-content .sidebar-sticky .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Sidebar Card Body */
.hub-main-content .sidebar-sticky .card-body {
    padding: 1.5rem;
}

/* Sidebar Card Title */
.hub-main-content .sidebar-sticky .card-title {
    color: #1a2b49; /* Dark blue for contrast */
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Sidebar List Styling (Categories, Recent Posts, Related Hubs) */
.hub-main-content .sidebar-sticky .list-unstyled {
    font-size: 0.95rem;
}

.hub-main-content .sidebar-sticky .list-unstyled li {
    margin-bottom: 0.75rem;
    transition: padding-left 0.2s ease;
}

.hub-main-content .sidebar-sticky .list-unstyled li a {
    color: #375065;
    text-decoration: none;
    font-weight: 400;
    display: block;
}

.hub-main-content .sidebar-sticky .list-unstyled li a:hover {
    color: #007bff; /* Primary color for hover */
    padding-left: 5px;
}

/* Sidebar Category Count */
.hub-main-content .sidebar-sticky .list-unstyled .cat-count {
    color: #6c757d; /* Muted color for counts */
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

/* Sidebar Recent Posts and Related Hubs Links */
.hub-main-content .sidebar-sticky .list-unstyled li a i.bi {
    color: #6c757d;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.hub-main-content .sidebar-sticky .list-unstyled li a:hover i.bi {
    color: #007bff;
}

/* Sidebar Need Help Card */
.hub-main-content .sidebar-sticky .card.text-white {
    background: linear-gradient(135deg, #375065 0%, #2a4060 100%) !important; /* Gradient background */
    border-radius: 8px;
    overflow: hidden;
}

.hub-main-content .sidebar-sticky .card.text-white .card-title {
    color: #fff;
    font-weight: 600;
}

.hub-main-content .sidebar-sticky .card.text-white p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Banner Section */
.brand-banner {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.banner-bg {
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: url(#wave-clip);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

/* Partner Badges */
.partner-badges {
    display: inline-flex;
}

.partner-badge {
    background: rgba(255, 255, 255, 1);
    color: #333;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
}

.badge-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    margin: 0 12px;
}

/* Banner Content */
.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.2;
    font-weight: 400;
    width:65%;
}

.banner-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    width:70%;
}

/* Banner CTA Buttons */
.banner-cta-wrapper {
    margin-top: 2rem;
}

.banner-cta {
    padding: 18px 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    background: #DCD6D1;
    border: 2px solid #DCD6D1;
    color: #375065;
}

.banner-cta:hover {
    background: transparent;
    border-color: #DCD6D1;
    color: #DCD6D1;
}

.banner-cta-outline {
    padding: 18px 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    background: transparent;
    border: 2px solid #DCD6D1;
    color: #DCD6D1;
}

.banner-cta-outline:hover {
    background: #DCD6D1;
    border-color: #DCD6D1;
    color: #375065;
}


/* Feature Cards */
.feature-cards-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-check {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #8b7355;
    border: 2px solid #8b7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #ffffff;
}

.feature-check svg {
    width: 16px;
    height: 16px;
}

.feature-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 600;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}


/* About Section */
.brand-about {
    background-color: #F8F6F4;
    padding: 80px 0;
}

/* Feature Badges */
.about-features {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(55, 80, 101, 0.1);
}

.about-feature-badge {
    color: #6B6B6B;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.about-feature-badge .feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #375065; 
}

.about-feature-badge .feature-icon img,
.about-feature-badge .feature-icon svg {
    width: 100%;
    height: 100%;
}

.about-feature-badge .feature-label {
    color: #6B6B6B;
}

/* Main Content */
.about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #2B2B2B;
    font-weight: 400;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6B6B6B;
}

.about-description p {
    margin-bottom: 1rem;
}

/* Image Styling */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Advantages Section */
.brand-advantages {
    background-color: #f8f6f4;
    padding: 20px 0 80px;
}

.advantages-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #2B2B2B;
    font-weight: 400;
}

/* Advantage Cards */
.advantage-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    background: #F5F5F5;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Icon Styling */
.advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #375065; /* Brown/gold color for icons */
}

.advantage-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
}

.advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Title */
.advantage-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Description */
.advantage-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0;
}


/* Services Comparison Section */
.brand-services {
    background-color: #fff;
    padding: 100px 0;
}

.services-heading {
   font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #2B2B2B;
    max-width: 55%;
    font-weight: 400;
    margin-bottom: 3rem;
    justify-self: center;
}

/* Service Columns */
.service-column {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
height: 100%;
}

/* Column Header */
.column-header {
    margin-bottom: 20px;
}

.company-badge {
    display: inline-block;
    background: #375065; /* Brown for Effortless Stay */
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Second column (Highline) styling */
.row > div:nth-child(2) .company-badge {
    background: #375065; /* Dark blue for Highline */
}

/* Column Title */
.column-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2B2B2B;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Column Subtitle */
.column-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E5E5;
    line-height: 1.5;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4A4A4A;
}

/* First column (Effortless) icon color */
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 12px;
    color: #375065; /* Brown for Effortless */
    font-weight: bold;
}

/* Second column (Highline) different colors */
.row > div:nth-child(2) .service-icon {
    color: #375065; /* Dark blue for Highline icons */
}

.row > div:nth-child(2) .service-text {
    color: #375065; /* Darker text for Highline */
}

.service-text {
    line-height: 1.4;
    flex: 1;
}

/* CTA Button */
.services-cta {
    padding: 16px 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    background: #375065;
    border: 2px solid #375065;
    color: #FFFFFF;
    border-radius: 0;
    transition: all 0.3s ease;
}

.services-cta:hover {
    background: transparent;
    color: #8B7355;
    border-color: #8B7355;
}

/* Process Timeline Section */
.brand-process {
    background-color: #f8f6f4;
    padding: 100px 0;
}

.process-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #2B2B2B;
    font-weight: 400;
    margin-bottom: 1rem;
}

.process-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6B6B6B;
    margin-bottom: 4rem;
}

/* Timeline Container */
.process-timeline {
    position: relative;
    padding: 60px 0;
}

/* Horizontal Line */
.timeline-line {
    position: absolute;
    top: 110px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #E5E5E5;
    z-index: 0;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Step Circle */
.step-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: #FFFFFF;
    border: 3px solid #375065;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 115, 85, 0.2);
}

/* Step Number Badge */
.step-number-brand {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #375065;
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

/* Step Icon */
.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B7355;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: #375065;
    stroke-width: 1.5;
    fill: none;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Step Content */
.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2B2B2B;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6B6B6B;
    max-width: 90%;
    margin: 0 auto;
}


/* Statistics Section */
.brand-stats {
    background: linear-gradient(135deg, #375065 0%, #375065 100%);
    padding: 100px 0;
    position: relative;
}

.stats-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.stats-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Icon */
.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF; /* Gold color for icons */
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Value */
.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1;
}

/* Label */
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: capitalize;
}

/* Testimonials Section */
.brand-testimonials {
    background-color: #fff;
    padding: 100px 0;
}

.testimonials-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #2B2B2B;
    font-weight: 400;
    margin-bottom: 3rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: #F8F6F4;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 20px;
    color: #375065b5;
}

/* Testimonial Text */
.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
}

/* Author Avatar */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #375065;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-initials {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

/* Different background colors for initials */
/*.testimonial-card:nth-child(1) .author-initials {*/
/*    background: #8B7355;*/
/*}*/

/*.testimonial-card:nth-child(2) .author-initials {*/
/*    background: #375065;*/
/*}*/

/*.testimonial-card:nth-child(3) .author-initials {*/
/*    background: #90A47D;*/
/*}*/

/* Author Info */
.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2B2B2B;
    margin: 0 0 4px 0;
}

.author-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
    margin: 0;
}

/* CTA Section */
.brand-cta {
    background: linear-gradient(135deg, #375065 0%, #375065 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Optional: Add subtle pattern overlay */
.brand-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.brand-cta .container {
    position: relative;
    z-index: 1;
}

/* Heading */
.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Subtitle */
.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

/* CTA Button */
.cta-button {
    background: #FFFFFF;
    color: #375065;
    padding: 18px 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #FFFFFF;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

/* Contact Form Section */
.brand-contact {
    background-color: #F8F6F4;
    padding: 100px 0;
}

/* Contact Info Column */
.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #2B2B2B;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16;
    color: #6B6B6B;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 20px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.contact-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2B2B2B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #8B7355;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B6B6B;
    margin-top: 2rem;
    line-height: 1.6;
}

/* Form Styles */
.brand-form {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-form label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2B2B2B;
    margin-bottom: 8px;
}

.brand-form .form-control {
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.brand-form .form-control:focus {
    border-color: #375065;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
    outline: none;
}

.brand-form .form-control::placeholder {
    color: #B0B0B0;
}

/* Submit Button */
.btn-submit {
    background: #375065;
    color: #FFFFFF;
    padding: 16px 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #375065;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #FFF;
    border-color: #375065;
    color:#375065;
    transform: translateY(-2px);
}

.post-banner{
    -webkit-clip-path: url(#wave-clip);
  clip-path: ellipse(100% 55% at 50% 45%);

}
@media (max-width:1500px){
    .highline-header-container {
        padding: 0 0 0 30px;
    }
    .highline-nav-menu {
        gap: 30px;
    }
    .highline-nav-menu {
    display: flex
;
    align-items: center;
    gap: 50px;
    position: relative;
    left: 0%;
    transform: translateX(0%);
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1480px;
    }

    .service-areas-section .container {
        max-width: 1920px;
    }
}

@media (max-width:1320px){
    .highline-contact-info {
        display: none;
    }
}

@media (max-width: 1200px) {

    .highline-nav-menu ul {
        gap: 30px;
    }

    .blogs-carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-control-prev {
        left: -40px;
    }

    .carousel-control-next {
        right: -40px;
    }
    
    .highline-nav-menu {
        display: none;
    }

    .highline-mobile-toggle {
        display: flex;
    }
    
    button.highline-cta-button {
        display: none;
    }
}

@media (max-width:1024px) {
    .hero-section h1 {
        font-size: 3rem;
        line-height: 4rem;
    }

    .stats-section h2 {
        font-size: 1.75rem;
        width: 100%;
    }

    .stat-item h3 {
        font-size: 4.25rem;
    }

    .stat-item p {
        font-size: 16px
    }

    .mobile-spacing {
        padding: 0rem 1rem !important;
    }

    .partner-card .card-link {
        bottom: 1rem;
        right: 0rem;
        width: 60px;
        height: 60px;
    }
}

@media (max-width:1024px) and (min-width:768px) {
    .main-text-headings {
        max-width: 70% !important;
        justify-self: center;
    }
}

@media (max-width: 991.98px) {
    .hub-main-content .sidebar-sticky {
        position: static;
        top: 0;
    }

    .hub-main-content .sidebar-sticky .card {
        margin-bottom: 1.5rem;
    }
    
    .about-features {
        gap: 2rem !important;
    }
    
    .about-heading {
        font-size: 36px;
    }
    
    .about-image-wrapper {
        margin-top: 3rem;
    }
    
    .advantages-heading {
        font-size: 36px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .services-heading {
        font-size: 32px;
        width:100%;
    }
    
    .service-column {
        margin-bottom: 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .process-heading {
        font-size: 32px;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    .stats-heading {
        font-size: 36px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .testimonials-heading {
        font-size: 32px;
    }
    
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .brand-cta {
        padding: 80px 0;
    }
    
    .cta-heading {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
     .contact-heading {
        font-size: 32px;
    }
    
    .brand-form {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .highline-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .service-area-card {
        height: 300px;
    }

    .partners-section .section-heading {
        font-size: 2.5rem;
    }

    .partner-card .card-image {
        height: 280px;
    }

    .partner-card .card-content {
        padding: 2rem;
    }

    .partner-card .card-title {
        font-size: 1.5rem;
    }

    .partner-card .card-link {
        bottom: 2rem;
        right: 2rem;
    }

    .reviews-heading {
        font-size: 36px;
    }

    .review-card {
        padding: 40px;
    }

    .carousel-item .row {
        justify-content: center;
    }

    .carousel-item .col-lg-4 {
        max-width: 500px;
    }

    .blogs-section {
        padding: 60px 0;
    }

    .blogs-carousel-wrapper {
        padding: 0;
    }

    .custom-carousel-control {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .blog-card-image {
        height: 240px;
    }

    .partner-card .card-content {
        padding: 2rem 2rem 0 0;
    }

    .partner-card .arrow-icon {
        font-size: 1.5rem;
    }

    .partner-card .card-link {
        right: 0rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .highline-header-container {
        padding: 0 20px;
        /*height: 80px;*/
    }

    .highline-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .highline-footer-grid>div:nth-child(2),
    .highline-footer-grid>div:nth-child(4) {
        gap: 20px;
    }

    .highline-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .highline-footer-bottom div {
        margin-top: 10px;
    }

    .highline-footer-copyright {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .stat-item h3 {
        font-size: 3rem;
    }

    .stats-section h2 {
        text-align: center;
        font-size: 2rem;
    }

    .stats-section {
        padding: 60px 0;
    }

    /* Services section responsive */
    .services-heading {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-title {
        font-size: 1.1rem;
    }


    .service-areas-section {
        padding: 60px 0;
    }

    .service-areas-section .section-heading {
        font-size: 2rem;
    }

    .service-areas-section .section-subheading {
        font-size: 1rem;
    }

    .service-area-card {
        height: 250px;
        padding: 0px 10px;
    }

    .service-area-card .card-title {
        font-size: 1rem;
        padding: 20px 15px;
    }

    .service-areas-archive .page-title {
        font-size: 2.5rem;
    }

    .partners-section {
        padding: 60px 0;
    }

    .partners-section .section-heading {
        font-size: 2rem;
    }

    .partners-section .section-subheading {
        font-size: 1rem;
    }

    .partner-card .card-image {
        height: 250px;
    }

    .partner-card .card-title {
        font-size: 1.25rem;
    }

    .partner-card .card-description {
        font-size: 0.9rem;
    }

    .reviews-heading {
        font-size: 32px;
    }

    .reviews-subheading {
        font-size: 14px;
    }

    .review-card {
        padding: 30px;
    }

    .review-stars {
        font-size: 20px;
    }

    .logo-gallery-section {
        padding: 40px 0;
    }

    .logo-item {
        margin: 0 30px;
    }

    .marquee-content {
        animation-duration: 20s;
    }

    .blogs-section .section-heading {
        font-size: 36px;
    }

    .blogs-section .section-subheading {
        font-size: 16px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-excerpt {
        font-size: 14px;
    }

    .blog-card-image {
        height: 200px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section .section-heading {
        font-size: 36px;
    }

    .faq-section .section-subheading {
        font-size: 16px;
    }

    .custom-faq-accordion .accordion-button {
        font-size: 18px;
        padding: 20px 25px;
    }

    .custom-faq-accordion .accordion-body {
        font-size: 16px;
        line-height: 26px;
        padding: 20px 25px;
    }

    .custom-faq-accordion .accordion-button::after {
        font-size: 24px;
    }

    .main-text-headings {
        max-width: 100% !important;
        justify-self: center;
        line-height: 1.2 !important;
    }

    .highline-footer-section {
        margin-bottom: 20px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .partner-badges {
        flex-wrap: wrap;
    }
    
    .feature-cards-wrapper {
        padding: 24px;
    }
    .banner-title {
    width:100%;
}

.banner-description {
    width:100%;
}
}

@media (max-width: 767px) {
    br {
        display: none;
    }

    .hero-section h1 {
        font-size: 2.2rem !important;
        line-height: 3.2rem !important;
    }

    h1.display-3.fw-normal.mb-4 br {
        display: none;
    }

    .stats-carousel .slick-slide {
        padding: 0 15px;
    }

    .stats-carousel .slick-dots {
        text-align: center;
        margin-top: 10px;
    }

    .stats-carousel .slick-dots li {
        display: inline-block;
        margin: 0 5px;
    }

    .stats-carousel .slick-dots li button {
        font-size: 0;
        line-height: 0;
        display: block;
        width: 10px;
        height: 10px;
        padding: 0;
        cursor: pointer;
        border: 0;
        border-radius: 50%;
        background: #ccc;
    }

    .stats-carousel .slick-dots li.slick-active button {
        background: #000;
    }

    .stats-section {
        padding-bottom: 0;
    }

    .stats-section .stats-carousel .slick-slide {
        padding: 0px !important;
    }

    .reviews-slider .slick-dots li button {
        width: 10px;
        height: 10px;

    }
    .lead {
        font-size: 16px;
    }
    .display-3 {
        font-size: 32px;
    }
      .about-feature-badge {
        font-size: 14px;
    }
    
    .about-heading {
        font-size: 28px;
    }
    
    .brand-advantages {
        padding: 60px 0;
    }
    
    .advantages-heading {
        font-size: 28px;
    }
    
    .advantage-title {
        font-size: 20px;
    }
    
    .brand-services {
        padding: 60px 0;
    }
    
    .service-column {
        padding: 24px;
    }
    
    .column-title {
        font-size: 20px;
    }
    
    .brand-process {
        padding: 60px 0;
    }
    
    .process-timeline {
        padding: 30px 0;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
        .brand-stats {
        padding: 60px 0;
    }
    
    .stats-heading {
        font-size: 28px;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .brand-testimonials {
        padding: 60px 0;
    }
    
    .testimonials-heading {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
        .brand-cta {
        padding: 60px 0;
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 16px 36px;
    }
    
    .brand-contact {
        padding: 60px 0;
    }
    
    .contact-heading {
        font-size: 28px;
    }
    
    .brand-form {
        padding: 24px;
    }
    .partner-badges {
    display: none !important;
}
}