/**
Theme Name: prowpark-child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prowpark-child
Template: astra
*/

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillicMedium.woff2') format('woff2'),
         url('assets/fonts/FuturaCyrillicMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillic-Bold.woff2') format('woff2'),
         url('assets/fonts/FuturaCyrillic-Bold.woff') format('woff');
    font-weight: 700; /* better than bold */
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillicLight.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillicLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic Book';
    src: url('assets/fonts/FuturaCyrillicBook.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillicBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillicHeavy.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillicHeavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic Demi';
    src: url('assets/fonts/FuturaCyrillic-Demi.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillic-Demi.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic Extra';
    src: url('assets/fonts/FuturaCyrillic-ExtraBold.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillic-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



:root {
            --primary-green: #1a5c36;
            --secondary-gold: #d4af37;
            --light-beige: #f8f5f0;
            --dark-text: #181818;
            --medium-gray: #666666;
            --light-gray: #f0f0f0;
            --white: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
            
            --font-heading: 'Futura Cyrillic', serif;
            --font-body: 'Futura Cyrillic', sans-serif;
            
            --spacing-xs: 0.75rem;
            --spacing-sm: 1.5rem;
            --spacing-md: 2rem;
            --spacing-lg: 5rem;
            --spacing-xl: 8rem;
            
            --border-radius-sm: 4px;
            --border-radius-md: 8px;
            --border-radius-lg: 12px;
            
            --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-body) !important;
            color: var(--dark-text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
            font-weight: 400;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size:22px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }
        
        .section-padding {
            padding: var(--spacing-xl) 0;
        }
        
        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.1rem 2.2rem;
            background-color: var(--primary-green);
            color: var(--white);
            text-decoration: none;
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition-fast);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, #000000 0%, #000000 100%);
            transition: width var(--transition-fast);
            z-index: -1;
        }
        
        
        
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .btn i {
            transition: transform var(--transition-fast);
        }
        
        .btn:hover i {
            transform: translateX(5px);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
        }
        
        .btn-outline::before {
            background: var(--primary-green);
        }
        
        .btn-outline:hover {
            color: var(--white);
        }
        
        
        
        
        
/* ===== TRANSPARENT HEADER STYLES ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1.5rem 0;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.site-logo img {
    height: 40px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.scrolled .site-logo img {
    height: 35px;
}

.logo-text {
    font-family: 'Futura Cyrillic', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.site-header.scrolled .logo-text {
    color: #1a1a1a;
}

/* Desktop Navigation */
.desktop-nav .primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.desktop-nav .primary-menu > li {
    position: relative;
}

.desktop-nav .primary-menu > li > a {
    color: #fff;
    text-decoration: none;
    font-family: 'Futura Cyrillic', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.site-header.scrolled .desktop-nav .primary-menu > li > a {
    color: #333;
}

.desktop-nav .primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.site-header.scrolled .desktop-nav .primary-menu > li > a::after {
    background-color: #1a5c36;
}

.desktop-nav .primary-menu > li > a:hover {
    opacity: 0.8;
}

.desktop-nav .primary-menu > li > a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.desktop-nav .primary-menu li.menu-item-has-children > a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 5px;
    margin-bottom: 2px;
    vertical-align: middle;
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
}

.primary-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    padding: 0;
}

.primary-menu .sub-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.primary-menu .sub-menu a:hover {
    background-color: rgba(26, 92, 54, 0.05);
    color: #1a5c36;
    padding-left: 1.8rem;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px auto;
    transition: all 0.3s ease;
}

.site-header.scrolled .hamburger-line {
    background-color: #333;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

/*.mobile-nav-container {*/
/*    padding: 2rem;*/
/*    max-width: 500px;*/
/*    margin: 0 auto;*/
/*}*/

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: #333;
    text-decoration: none;
    font-family: 'Futura Cyrillic', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    color: #1a5c36;
    padding-left: 10px;
}

.mobile-extra-links {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.mobile-extra-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.mobile-extra-links li {
    margin: 0;
}

.mobile-extra-links a {
    display: block;
    padding: 0.8rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}


/* Overlay for mobile menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

        
        
        
        /* ===== HERO VIDEO SECTION ===== */
        .hero-video-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.4) 100%);
            z-index: 2;
        }
        
        .video-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            max-width: 1000px;
            padding: 0 var(--spacing-sm);
        }
        
        .video-tagline {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: var(--spacing-sm);
            line-height: 1.1;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .video-tagline::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
        }
        
        .video-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: var(--spacing-lg);
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
  
        
    
        
        /* ===== WORK & LIFE SECTION ===== */
        .work-life-section {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
.work-life-section.quote {
            background-color: var(--dark-text);
    background-image: url(images/dot-background-svg.svg);
    background-size: 5vw;
    background-size: 90px;
    color: #fff;
    text-align: center;
    position: relative;
}
        .work-life-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(26, 92, 54, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }
        
        .section-tagline {
            font-size: 3.2rem;
            margin-bottom: var(--spacing-sm);
            color: var(--white);
            position: relative;
            display: inline-block;
        }
        section.work-life-section.quote.section-padding h4 {
                        color: var(--white);

        }
        .section-tagline::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold));
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }
        
        .work-life-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
        }
        
        .content-block {
            margin-bottom: 0;
        }
        
        .content-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-green), #134428);
            color: var(--white);
            padding: 0.5rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: var(--spacing-sm);
            border-radius: 30px;
            box-shadow: var(--shadow-sm);
        }
        
        .content-title {
            font-size: 2.5rem;
            margin-bottom: var(--spacing-md);
            color: var(--dark-text);
            line-height: 1.2;
        }
        
        .content-text {
            font-size: 1.15rem;
            margin-bottom: var(--spacing-md);
            color: var(--medium-gray);
            font-weight: 400;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
        }
        
        .stat-item {
            text-align: center;
            padding: var(--spacing-md);
            background-color: var(--white);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-md);
            transition: var(--transition-fast);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--secondary-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-fast);
        }
        
        .stat-item:hover::before {
            transform: scaleX(1);
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: var(--spacing-xs);
            font-family: var(--font-heading);
        }
        
        .stat-number::after {
            content: '+';
            position: absolute;
            font-size: 1.5rem;
            color: var(--secondary-gold);
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--medium-gray);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
        }
        
        /* ===== PERFECTLY PLACED SECTION ===== */
        .location-section {
            background-color: var(--light-beige);
            position: relative;
            overflow: hidden;
        }
        
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: start;
        }
        
        .features-list {
            list-style: none;
            margin-top: var(--spacing-lg);
        }
        
        .features-list li {
            padding: var(--spacing-sm) 0 var(--spacing-sm) 3rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            position: relative;
            opacity: 1;
            transform: none;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: var(--spacing-sm);
            width: 24px;
            height: 24px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 0.8rem;
            box-shadow: var(--shadow-sm);
        }
        
        .features-list li::after {
            content: '✓';
            position: absolute;
            left: 6px;
            top: var(--spacing-sm);
            color: var(--white);
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
        }
        
        .feature-desc {
            font-size: 0.95rem;
            color: var(--medium-gray);
            font-weight: 400;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
        }
        
        .gallery-item {
            border-radius: var(--border-radius-md);
            overflow: hidden;
            height: 220px;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
            z-index: 1;
            opacity: 0;
            transition: var(--transition-fast);
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
            transform: scale(1.05);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item.large {
            grid-column: span 2;
            height: 280px;
        }
        
        /* ===== ACRES OF SPACE SECTION ===== */
        .acres-section {
            background-color: var(--white);
            position: relative;
        }
        
        .acres-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .acres-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
            align-items: center;
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
            margin-top: var(--spacing-lg);
        }
        
        .amenity-item {
            display: flex;
            align-items: flex-start;
            gap: var(--spacing-sm);
            padding: var(--spacing-sm);
            border-radius: var(--border-radius-md);
            transition: var(--transition-fast);
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .amenity-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(26, 92, 54, 0.1);
        }
        
        .amenity-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-green), #134428);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            flex-shrink: 0;
            font-size: 1.2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-fast);
        }
        
        .amenity-item:hover .amenity-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--secondary-gold), #c19b2c);
        }
        
        .amenity-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--dark-text);
        }
        
        .amenity-text p {
            font-size: 0.9rem;
            color: var(--medium-gray);
            line-height: 1.5;
        }
        
        /* ===== NEWS & EVENTS SECTION ===== */
        .news-events-section {
            background: linear-gradient(135deg, var(--light-beige) 0%, #f0ece4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .news-events-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-xl);
        }
        
        .news-card, .events-card {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-fast);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .news-card:hover, .events-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .card-header {
            padding: var(--spacing-md);
            background: linear-gradient(135deg, var(--primary-green), #134428);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .card-header h3 {
            margin: 0;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }
        
        .card-content {
            padding: var(--spacing-md);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .card-excerpt {
            margin-bottom: var(--spacing-md);
            font-size: 1.2rem;
            color: var(--medium-gray);
            line-height: 1.6;
            font-weight: 400;
        }
        
        /* ===== DIVIDER ===== */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(0, 0, 0, 0.1) 50%, 
                transparent 100%);
            margin: var(--spacing-xl) auto;
            max-width: 1280px;
        }
        
        /* ===== AOS CUSTOM STYLES ===== */
        /* Custom animation delays for staggered effects */
        [data-aos-delay="100"] {
            transition-delay: 100ms !important;
        }
        
        [data-aos-delay="200"] {
            transition-delay: 200ms !important;
        }
        
        [data-aos-delay="300"] {
            transition-delay: 300ms !important;
        }
        
        [data-aos-delay="400"] {
            transition-delay: 400ms !important;
        }
        
        [data-aos-delay="500"] {
            transition-delay: 500ms !important;
        }
        
        [data-aos-delay="600"] {
            transition-delay: 600ms !important;
        }
        
        /* Custom animation for stats */
        .stat-item[data-aos] {
            transform: scale(0.8);
            opacity: 0;
        }
        
        .stat-item[data-aos].aos-animate {
            transform: scale(1);
            opacity: 1;
        }
        
        /* Custom animation for gallery items */
        .gallery-item[data-aos] {
            transform: scale(0.9) rotate(3deg);
            opacity: 0;
        }
        
        .gallery-item[data-aos].aos-animate {
            transform: scale(1) rotate(0);
            opacity: 1;
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media screen and (max-width: 1200px) {
            :root {
                --spacing-xl: 6rem;
                --spacing-lg: 4rem;
            }
            
            .video-tagline {
                font-size: 3.8rem;
            }
        }
        
        @media screen and (max-width: 992px) {
            .video-tagline {
                font-size: 3.2rem;
            }
            
            .changing-text {
                font-size: 1.8rem;
            }
            
            .work-life-content,
            .location-content,
            .acres-content,
            .news-events-grid {
                grid-template-columns: 1fr;
                gap: var(--spacing-lg);
            }
            
            .stats-grid,
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media screen and (max-width: 768px) {
            :root {
                --spacing-xl: 4rem;
                --spacing-lg: 3rem;
                --spacing-md: 2rem;
            }
            
            .section-padding {
                padding: var(--spacing-lg) 0;
            }
            
            .video-tagline {
                font-size: 2.5rem;
            }
            
            .video-subtitle {
                font-size: 1.2rem;
            }
            
            .section-tagline {
                font-size: 2.5rem;
            }
            
            .content-title {
                font-size: 2rem;
            }
            
            .stats-grid,
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            
            .changing-text-container {
                height: 60px;
            }
            
            .changing-text span {
                height: 60px;
                margin-bottom: 60px;
            }
            
            .gallery-item {
                height: 180px;
            }
            
            .gallery-item.large {
                height: 220px;
            }
            
            /* Disable AOS on mobile for better performance */
            [data-aos] {
                opacity: 1 !important;
                transform: none !important;
            }
        }
        
        @media screen and (max-width: 576px) {
            .video-tagline {
                font-size: 2rem;
            }
            
            .changing-text {
                font-size: 1.4rem;
                letter-spacing: 2px;
            }
            
            .changing-text-container {
                height: 50px;
            }
            
            .changing-text span {
                height: 50px;
                margin-bottom: 50px;
            }
            
            .section-tagline {
                font-size: 2rem;
            }
            
            .content-title {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 1rem 1.8rem;
                font-size: 0.9rem;
            }
        }




/* ===== FOOTER STYLES ===== */
.site-footer {
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 3.5rem 0 1.5rem;
    font-family: 'Futura Cyrillic', sans-serif;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-section {
    margin-bottom: 0;
}

.footer-section-title {
    font-family: 'Futura Cyrillic', sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: #2f6f7d;
    margin: 0 0 1.25rem 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

/* Sign Up Button */
.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #1a5c36;
    color: #fff;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: fit-content;
}

.footer-btn:hover {
    background-color: #134428;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 92, 54, 0.2);
}

.footer-btn svg {
    transition: transform 0.3s ease;
}

.footer-btn:hover svg {
    transform: translateX(3px);
}

/* Contact Information */
.contact-section {
    margin-top: 0.5rem;
}

.contact-info {
    font-style: normal;
    line-height: 1.7;
    margin: 0;
}

.contact-info p {
    margin: 0 0 0.8rem 0;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info .address {
    font-weight: 400;
    color: #444;
}

.contact-info a {
    color: #1a5c36;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #134428;
    text-decoration: underline;
}

.contact-info .phone,
.contact-info .email {
    position: relative;
    padding-left: 1.8rem;
}

.contact-info .phone::before {
    content: '📞';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

.contact-info .email::before {
    content: '✉️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

/* Right Column: Links */
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-content, .footer-content a, .footer-content p {
    font-size: 20px !important;
    color: #31707e !important;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
}

.footer-links-list li {
    margin: 0;
}

.footer-links-list a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.4rem 0;
    display: block;
    transition: all 0.2s ease;
    position: relative;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a5c36;
    transition: width 0.3s ease;
}

.footer-links-list a:hover {
    color: #1a5c36;
    padding-left: 5px;
}

.footer-links-list a:hover::after {
    width: 100%;
}

/* Footer Bottom / Copyright */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        gap: 3rem;
    }
    
    .footer-links-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-left {
        gap: 2rem;
    }
    
    .footer-btn {
        padding: 0.8rem 1.6rem;
    }
    
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-btn {
        width: 100%;
        justify-content: center;
        max-width: none;
    }
    
    .contact-info .phone,
    .contact-info .email {
        padding-left: 1.5rem;
    }
}

/* Optional: Add if you want sticky footer */
.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main-content {
    flex: 1 0 auto;
}

.site-footer {
    flex-shrink: 0;
}


/* Responsive Styles */
@media (max-width: 6000px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1.2rem 0;
    }
    
    .site-header.scrolled {
        padding: 0.8rem 0;
    }
    
    .mobile-extra-links ul {
        grid-template-columns: 1fr;
    }
    
    .mobile-nav-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .site-logo img {
        height: 35px;
    }
    
    .site-header.scrolled .site-logo img {
        height: 30px;
    }
}

/* No JavaScript fallback */
.no-js .mobile-menu-toggle {
    display: none;
}

.no-js .desktop-nav {
    display: block;
}

.no-js .mobile-nav {
    display: none;
}





/* =====================================================
   FINAL GLOBAL MENU OVERRIDES
   Desktop = Hamburger menu only
   Mobile menu drawer used everywhere
===================================================== */

/* Force-hide any Astra desktop navigation */
.desktop-nav,
.main-navigation,
.ast-desktop-header,
.ast-primary-header-bar {
    display: none !important;
}

/* Hamburger ALWAYS visible */
.mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
}



/* Mobile stays full-width */
@media (max-width: 768px) {
    .mobile-nav {
        width: 100%;
        right: -100%;
    }
}

/* Ensure overlay works on desktop */
.mobile-nav-overlay {
    cursor: pointer;
}



   
        
        body {
            font-family: 'Futura Cyrillic', system-ui, sans-serif;
            color: hsl(var(--foreground));
            background-color: hsl(var(--background));
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Futura Cyrillic', system-ui, sans-serif;
            font-weight: 600;
            letter-spacing: -0.025em;
        }
        
        .section-padding {
            padding: 4rem 0;
        }
        
        
        a.btn.btn-primary {
    border-radius: 50px;
    padding: 12px 30px;
}
        
        @media (min-width: 768px) {
            .section-padding {
                padding: 5rem 0;
            }
        }
        
        @media (min-width: 1024px) {
            .section-padding {
                padding: 6rem 0;
            }
        }
        
        .container-width {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        @media (min-width: 640px) {
            .container-width {
                padding: 0 2rem;
            }
        }
        
        @media (min-width: 1024px) {
            .container-width {
                padding: 0 3rem;
            }
        }
        
        /* Typography */
        .headline-xl {
            font-family: 'Futura Cyrillic', system-ui, sans-serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 0.9;
            letter-spacing: -0.025em;
        }
        
        @media (min-width: 640px) {
            .headline-xl {
                font-size: 3.75rem;
                line-height: 1;
            }
        }
        
        @media (min-width: 768px) {
            .headline-xl {
                font-size: 4.5rem;
                line-height: 1;
            }
        }
        
        @media (min-width: 1024px) {
            .headline-xl {
                font-size: 6rem;
                line-height: 1;
            }
        }
        
        .headline-lg {
            font-family: 'Futura Cyrillic', system-ui, sans-serif;
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 0.95;
            letter-spacing: -0.025em;
        }
        
        @media (min-width: 640px) {
            .headline-lg {
                font-size: 3rem;
                line-height: 1;
            }
        }
        
        @media (min-width: 768px) {
            .headline-lg {
                font-size: 3.75rem;
                line-height: 1;
            }
        }
        
        /* Colors */
        .text-foreground {
            color: hsl(var(--foreground));
        }
        
        .text-muted-foreground {
            color: hsl(var(--muted-foreground));
        }
        
        .text-primary {
            color: hsl(var(--primary));
        }
        
        .text-accent {
            color: hsl(var(--accent));
        }
        
        .text-white {
            color: white;
        }
        
        .bg-background {
            background-color: hsl(var(--background));
        }
        
        .bg-secondary {
            background-color: hsl(var(--secondary));
        }
        
        .bg-charcoal {
            background-color: hsl(var(--charcoal));
        }
        
        /* Components */
        .stat-callout {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.95);
            padding: 1rem 1.5rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(4px);
            z-index: 20;
        }
        
        .text-5xl {
            font-size: 3rem;
            line-height: 1;
        }
        
        .text-lg {
            font-size: 1.125rem;
            line-height: 1.75rem;
        }
        
        .text-sm {
            font-size: 0.875rem;
            line-height: 1.25rem;
        }
        
        .leading-relaxed {
            line-height: 1.625;
        }
        
        .font-display {
            font-family: 'Futura Cyrillic', system-ui, sans-serif;
        }
        
        .font-medium {
            font-weight: 500;
        }
        
        .aspect-4-3 {
            aspect-ratio: 4/3;
        }
        
        .aspect-3-4 {
            aspect-ratio: 3/4;
        }
        
        .aspect-4-5 {
            aspect-ratio: 4/5;
        }
        
        .hover-scale {
            transition: transform 0.7s ease;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        .object-cover {
            object-fit: cover;
        }
        
        .overflow-hidden {
            overflow: hidden;
        }
        
        /* Buttons */
        .btn-accent {
            background-color: hsl(var(--accent));
            color: white;
            padding: 0.875rem 2.5rem;
            font-weight: 500;
            font-size: 1rem;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-accent:hover {
            background-color: hsl(var(--accent) / 0.9);
            color: white;
            transform: translateY(-1px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: hsl(var(--foreground));
            border: 1px solid hsl(var(--border));
            padding: 0.875rem 2.5rem;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background-color: hsl(var(--accent));
            color: white;
            border-color: hsl(var(--accent));
        }
        
.mobile-menu-toggle {
    display: inline !important;
}
        
        
        .site-logo img {
    max-height: 140px;
    width: auto;
        height: 100px;
    transition: height 0.3s ease;
}

.site-header.scrolled .site-logo img {
    max-height: 135px;
}
        
        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: flex-end;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
            z-index: -1;
        }
        
        
        .hero-video-section {
    position: relative;
    overflow: hidden;
}

/*.video-content {*/
/*    position: absolute;*/
/*    left: 50px;*/
/*    bottom: 100px;*/
/*    z-index: 3;*/
/*    color: #fff;*/
/*}*/
.video-content {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 3;
    color: #fff;
    right: 0;
}

    .changing-text-container {
    }
    
.changing-text-container {
    overflow: visible;
 text-align: left;

}    
    
.changingtext {
    position: relative;
}

.slide {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
}

.slide .line {
    display: block;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.85);
}

.slide strong {
    display: block;
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}


.cb2-hero {
    position: relative;
    padding: 120px 0;
    color: #fff;
}

.cb2-hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cb2-hero .container,
.cb2-hero .container-fluid {
    position: relative;
    z-index: 2;
}



.cb2-hero {
    position: relative;
    overflow: hidden;
}

/* =========================
   VIDEO BACKGROUND
========================= */
.cb2-hero.has-video-bg {
    background: none !important;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.cb2-hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.cb2-hero .container-width {
    position: relative;
    z-index: 2;
}

section.cb2-hero h6 {
    font-weight: 500 !important;
}

.min-vh-60 { min-height: 60vh; }
.min-vh-80 { min-height: 80vh; }
.min-vh-100 { min-height: 100vh; }

.hero-main-heading {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
}

/*.hero-description {*/
/*    max-width: 700px;*/
/*}*/
.has-video-bg .hero-description {
    max-width: 100%;
}
.has-video-bg .hero-description p {
    max-width: 700px;
    margin: auto;
        font-size: 17px;

}
.has-video-bg h6 {
    font-size: 85px;
    margin: auto;
    line-height: 79px;
}

.cb2-hero.has-video-bg {
    background: none !important;
    height: 70vh;
}

a.btn.btn-white {
    background: #fff;
    border-radius: 50px;
    padding: 12px 30px;
}
.btn-primary {
    background: #2b6c88;
    border-color: #2b6c88;
}

.cb10-wysiwyg-content {
    font-size: 1.05rem;
    line-height: 1.75;
}

.cb10-wysiwyg-content h1,
.cb10-wysiwyg-content h2,
.cb10-wysiwyg-content h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.cb10-wysiwyg-content p {
    margin-bottom: 1rem;
}

.cb10-wysiwyg-content ul,
.cb10-wysiwyg-content ol {
    padding-left: 1.25rem;
}

.cb11-inner-hero {
    color: #fff;
}

section.cb11-inner-hero.min-vh-75 {
    height: 75vh;
}

section.cb11-inner-hero.min-vh-100 {
    height: 100vh;
}

section.cb11-inner-hero h1 {
    font-size: 90px;
}


/* ===== CB9 Featured Grid ===== */
.cb9-card {
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.cb9-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Image */
.cb9-image-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb9-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Content */
.cb9-title {
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    color: #111;
}

.cb9-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Button */
.cb9-card .btn {
    border-radius: 50px;
    font-size: 0.85rem;
    padding: 10px 28px;
    transition: background .3s ease, color .3s ease;
}

.cb9-card .btn:hover {
    background: var(--accent, #c9a24d);
    border-color: var(--accent, #c9a24d);
    color: #fff;
}



/* Overlay */
.cb11-inner-hero .hero-overlay {
    position: absolute;
    inset: 0;
    opacity: .55;
    z-index: 0;
}

/* Push content down so it doesn't hide under header */
.cb11-inner-hero .container {
    padding-top: 120px; /* match your header height */
}


/* ===== CB12 Editorial ===== */
.cb12-editorial {
    background: #fff;
}
.row.cb12-top-section {
    margin-bottom: 25px;
    font-size: 26px;
    line-height: 36px;
    color: #1f5f78;
}

.cb12-heading {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #1f5f78;
    font-size: 86px;
    line-height: 78px;
}

h1.cb14-title.mb-4 {
    font-size: 97px;
    line-height: 87px;
}
.btn-primary {
    background: #2b6c88 !important;
    border-color: #2b6c88 !important;
}
h2.cb12-heading span {
    font-weight: 900;
}
.footer-social i {
    font-size: 27px;
}

h6.hero-top-heading {
    font-weight: 300;
    font-size: 62px;
}
.heading-logo {
    max-width: 403px;
    margin: 20px 0;
}
.cb12-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1f5f78;
}

.cb12-content .btn {
    border-radius: 50px;
    padding: 12px 30px;
}


.cb10-wysiwyg-content ul.longlist li {
    width: 33.33%;
    float: left;
    list-style: none;
    margin-left: 0;
    font-size: 22px;
}
.cb10-wysiwyg-content ul.longlist  {
    margin-left: 0;
    padding-left: 0;
}


/* ===== CB13 Slider ===== */
.cb13-slider-section {
    position: relative;
    overflow: hidden;
}

.cb13-swiper {
    width: 100%;
    height: 70vh;
}

/* Slide background */
.cb13-slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Arrows */
.cb13-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
}

.cb13-prev { left: 30px; }
.cb13-next { right: 30px; }

/* Arrow icon */
.cb13-arrow::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

.cb13-prev::after {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.cb13-next::after {
    transform: translate(-60%, -50%) rotate(45deg);
}

/* Show arrows on hover */
.cb13-swiper:hover .cb13-arrow {
    opacity: 1;
}

.cb13-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.cb13-overlay-logo {
    position: absolute;
    top: 50%;
    left: 40px; /* adjust as needed */
    transform: translateY(-50%);
    z-index: 5;
}



.cb13-overlay-logo img {
    max-width: 400px; /* adjust size */
    height: auto;
}


section#fullheight .cb13-overlay-logo {
    position: absolute;
    top: 40%;
    transform: inherit;
    z-index: 5;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}


section#fullheight .cb13-overlay-logo img {
    max-width: 600px; /* adjust size */
    height: auto;
}

.cb14-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 55px;
    color: #2b6c88;
}

.cb14-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2b6c88;
    line-height: 1;
}

.cb14-stat-text {
    font-size: 0.95rem;
    color: #2b6c88;
    line-height: 1.2;
}


/* ============================
   CB15 – Everyday Convenience
============================ */

.cb15 {
    background: #efefef;
    padding: 100px 0;
}

section#cb15 {
    padding-bottom: 100px !important;
}

/* Heading */
.cb15-title {
    font-size: 70px;
    line-height: 1.05;
    color: #2f6f7d;
}

.cb15-intro {
    font-size: 18px;
    color: #2f6f7d;
    max-width: 440px;
}

/* MAIN ROW */
.cb15-main-row {
    margin-top: 40px;
    align-items: flex-end;
}

/* LEFT SIDE */
.cb15-image-wrap {
    position: relative;
}

.cb15-main-image {
    border-radius: 8px;
}

/* FLOATING STAT */
.cb15-stat-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    background: #ffffff;
    padding: 30px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cb15-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2f6f7d;
}

.cb15-stat-text {
    font-size: 14px;
    color: #2f6f7d;
}

/* BUTTONS */
.cb15-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
}

.cb15-btn {
    background: #2f6f7d !important;
    color: #fff !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cb15-btn:hover {
    background: #255c68;
    color: #fff;
}

/* RIGHT COLUMN OFFSET */
.col-lg-5.cb15-right {
    position: relative;
    padding-left: 0;
}

.col-lg-5.cb15-right {
    position: relative;
    padding-left: 0;
    left: -46px;
    top: 84px;
}
.cb15-image-wrap img {
    width: 100% !important;
    max-height: 539px;
}
/* CARD */
.cb15-card-image {
    border-radius: 8px;
}

.cb15-card-content {
    margin-top: 25px;
}

.cb15-card-content h4 {
    font-size: 34px;
    color: #2f6f7d;
    margin-bottom: 8px;
}

.cb15-card-content p {
    color: #2f6f7d;
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .cb15-title {
        font-size: 44px;
    }

    .cb15-right {
        padding-left: 0;
        margin-top: 50px;
    }

    .cb15-stat-overlay {
        top: 20px;
        left: 20px;
    }

}


.blog-grid .blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.blog-grid .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

/* Equal image height */
.blog-image {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    display: block;
}

.blog-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: #111;
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary, #0d6efd);
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: auto;
}

.blog-link {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary, #0d6efd);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link i {
    transition: transform .2s ease;
}

.blog-link:hover i {
    transform: translateX(4px);
}

.footer-social {
    margin-top: 16px;
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #2c6a85;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
    font-size: 15px;
}

.footer-social a:hover {
    background: var(--accent, #2c6a85);
    transform: translateY(-3px);
}


ul.feature-list {
    margin-left: 0;
}

        
        
        /* List Items */
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon {
            width: 2.5rem;
            height: 2.5rem;
            background-color: hsl(var(--primary) / 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            color: hsl(var(--primary));
            font-size: 1.25rem;
        }
        
        /* Gradient Section */
        .gradient-section {
            position: relative;
            overflow: hidden;
        }
        
        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, hsl(var(--primary) / 0.95) 0%, hsl(var(--primary) / 0.85) 50%, hsl(var(--primary) / 0.7) 100%);
            z-index: -1;
        }
        
        /* Utility Classes */
        .border-l-accent {
            border-left: 2px solid hsl(var(--accent));
        }
        
        .text-accent-foreground {
            color: white;
        }
        
        .text-primary-foreground {
            color: white;
        }
        
        .opacity-80 {
            opacity: 0.8;
        }
        
        .opacity-70 {
            opacity: 0.7;
        }
        
        .border-t-border {
            border-top: 1px solid hsl(var(--border));
        }
        
        .border-border {
            border-color: hsl(var(--border));
        }
        
        /* Footer */
        footer a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer a:hover {
            color: white;
        }
        
                .max-width-5xl { max-width: 64rem; }
        .max-width-4xl { max-width: 56rem; }
        .max-width-2xl { max-width: 42rem; }
        .tracking-wider { letter-spacing: 0.05em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .text-uppercase { text-transform: uppercase; }
        .z-1 { z-index: 1; }
        .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
        .text-2xl { font-size: 1.5rem; line-height: 2rem; }
        .font-semibold { font-weight: 600; }
        .opacity-50 { opacity: 0.5; }
        .opacity-60 { opacity: 0.6; }
        .opacity-40 { opacity: 0.4; }
        .pt-8 { padding-top: 8rem; }
        .pb-6 { padding-bottom: 6rem; }
        .pb-8 { padding-bottom: 8rem; }
        .gap-2 { gap: 0.5rem; }
        .gap-3 { gap: 1rem; }
        .gap-4 { gap: 1.5rem; }
        
        
        button:focus, .menu-toggle:hover, button:hover, .ast-button:hover, .ast-custom-button:hover .button:hover, .ast-custom-button:hover, input[type=reset]:hover, input[type=reset]:focus, input#submit:hover, input#submit:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover, form[CLASS*="wp-block-search__"].wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:focus, body .wp-block-file .wp-block-file__button:hover, body .wp-block-file .wp-block-file__button:focus {
    color: #ffffff !important;
    background-color: #2b6c88 !important;
    border-color: #2b6c88 !important;
}
#ast-scroll-top {
    background-color: #000000;
    font-size: 15px;
    border-radius: 50px;
}


section#contactsection a {
    color: #fff;
    text-decoration: none;
    font-size: 41px;
}
section#contactsection {
    padding: 60px;
}
section#featured-grid {
    padding-bottom: 0;
}
section#featured-grid .cb9-card {
    padding: 0px 24px !important;
    box-shadow: none;
}
@media (min-width: 768px) {
   #custom_section .col-md-4 {
        flex: 0 0 auto;
        width: 49.333333%;
    }
}


/* Responsive */
@media (max-width: 768px) {
    
.cb2-hero {
    padding: 60px 0;
}
    
section.cb11-inner-hero.min-vh-100 {
    height: 60vh;
    min-height: 100vh !important;
}
    
section.cb11-inner-hero h1 {
    font-size: 62px;
    margin-top: 50px;
}
    
    
    .video-content {
        left: 0px;
        bottom: 50px;
    }

    .slide strong {
        font-size: 46px;
    }

    .slide .line {
        font-size: 14px;
    }
    
.col-lg-5.cb15-right {
    padding-left: 0;
    left: 5px;
    top: 51px;
}
    h1.cb14-title.mb-4 {
    font-size: 69px;
    line-height: 60px;
}

.cb12-heading {
    font-size: 64px;    text-align: left !important;
}
h6.hero-top-heading {
    font-weight: 300;
    font-size: 47px;
    line-height: 53px;
    margin-bottom: 5px;
}
.content-showcase .row {
    row-gap: 10px !important;
}
section#fullheight .cb13-overlay-logo img {
    max-width: 80%;
    height: auto;
}
section#contactsection {
    padding: 60px 0;
}
   .page-id-593 .cb12-heading {
        font-size: 64px;
        text-align: left !important;
        line-height: 57px;
    }
    
.row>* {
    margin-top: auto !important;
}

.page-id-1048 .row.cb12-top-section {
    margin-bottom: 67px;
}
        .mobile-nav-container {
        display: grid;
        height: 68vh !important;
        BACKGROUND: #e9ecef;
    }
}


