/*
Theme Name: EG Solutions Custom Theme
Theme URI: https://egsolutions.com.au
Author: EG Solutions
Author URI: https://egsolutions.com.au
Description: A custom WordPress theme designed specifically for Love Limousines, featuring a modern, responsive design with Bootstrap integration.
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.4
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: eg-solutions-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, healthcare, care-services, responsive, bootstrap
*/

/* Import Bootstrap CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Custom CSS Variables */
:root {
    --primary-color: #192026;
    --secondary-color: #f7d516;
    --accent-color: #eeee22;
    --success-color: #519f26;
    --light-color: #F8F9FA;
    --dark-color: #212529;
    --text-color: #333333;
    --border-color: #DEE2E6;
    /*--shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);*/
    --border-radius: 0.375rem;
    --heading-font: 'Orbitron', sans-serif;
    --body-font: 'Inter', sans-serif;
}



/* Mobile Status Bar Styling */
@supports (padding: max(0px)) {
    body {
        padding-top: max(0px, env(safe-area-inset-top));
    }
}

/* iOS Status Bar Styling */
@supports (-webkit-touch-callout: none) {
    body {
        padding-top: env(safe-area-inset-top);
    }
    
    /* Ensure the top area is black */
    .site {
        /*background-color: #000000; */
    }
    
    /* Add black background to the very top */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: env(safe-area-inset-top);
        background-color: #000000;
        z-index: 9999;
    }
}

/* Android Status Bar Styling */
@media screen and (max-width: 768px) {
    body {
        padding-top: env(safe-area-inset-top);
    }
    
    /* Ensure the top area is black on Android */
    .site {
        /* background-color: #000000;*/
    }
}

/* Debug: Test primary color application */
.test-primary-color {
    color: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Global Styles */
* {
    font-family: var(--body-font);
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Paragraph Typography - Font Size and Color for All Paragraphs */
p, ul li, ol li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--heading-font) !important;
    font-weight: 600;
    margin:0px 0px 18px !important;
    line-height: 1.2;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
    font-family: var(--heading-font) !important;
}

.heading_white h1, .heading_white h2, .heading_white h3, .heading_white h4, .heading_white h5, .heading_white h6{
    color: #ffffff !important;
}

.white_txt, .white_txt h1, .white_txt h2, .white_txt h3, .white_txt h4, .white_txt h5, .white_txt h6 ,.white_txt p{
    color: #ffffff !important;
}

.black_txt, .black_txt h1, .black_txt h2, .black_txt h3, .black_txt h4, .black_txt h5, .black_txt h6{
    color: #000000 !important;
}

.heading_up h3 {
	text-transform: uppercase !important;
}

a.readMore {
    color: #192026 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    padding: 0px;
    
}
/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #026222;
    padding: 15px 0;
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-section .breadcrumb-item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}

.breadcrumb-section .breadcrumb-item a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-section .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
    content: " / ";
    font-weight: 400;
}
.breadcrumb-nav ol li {
    list-style: none;
    margin: 0 !important;
}

span.breadcrumb_last{
    color: var(--secondary-color) !important;
}

/* Page Hero Section */
.page-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    transition: background-image 0.3s ease;
}

.page-hero-section .hero-content {
    color: #ffffff;
}

.page-hero-section .page-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero-section .page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-hero-section .page-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Page Content Section */
.page-content-section {
    padding: 30px 0;
    background-color: #ffffff;
}

/* Service Area Pages - Adjust padding for pages without title area */
body.page .page-content-section {
    padding-top: 0px !important;
}

.yellow_btn_mobile {
	display: none !important;
}

.footer1 img {
	max-width:100% !important;
	height: auto !important;
	}
.footer1 section#block-10 img {
	max-width:80% !important;
}

/* Ensure proper spacing for service area pages on mobile */
@media (max-width: 768px) {
    body.page .page-content-section {
        padding-top: 0px !important;
		overflow:hidden!important;
    }

    body.page .page-content-section div.container-fluid {
        padding: 0px !important;
    }
    
    /* Fix footer positioning - ensure proper document flow */
    body.page {
        min-height: 100vh;
        display: block !important;
    }
    
    body.page .site-content {
        min-height: calc(100vh - 200px); /* Ensure minimum content height */
        display: block !important;
		margin-top: -15px;
    }
    
    /* Ensure footer appears at the bottom */
    body.page .site-footer {
        position: relative !important;
        bottom: auto !important;
        margin-top: auto !important;
    }
	.feature_row div.elementor-inner-column {
		width: 50% !important;
		float:left;
	}
	.comfort_txt h3 {
		font-size: 65px !important;
	}
	.yellow_btn_mobile_centre {
		text-align: center !important;
	}
	.footer1 img {
		max-width:60% !important;
	}
	.footer1 section#media_image-2 {
		max-width: 60% !important;
	}
}

.page-content-section .page-content {
    background-color: #ffffff;
}

.page-content-section .entry-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

.page-content-section .entry-content h2,
.page-content-section .entry-content h3,
.page-content-section .entry-content h4,
.page-content-section .entry-content h5,
.page-content-section .entry-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content-section .entry-content h2 {
    font-size: 32px;
}

.page-content-section .entry-content h3 {
    font-size: 28px;
}

.page-content-section .entry-content h4 {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 60px 0;
        min-height: 300px;
    }
    
    .page-hero-section .page-title {
        font-size: 36px;
    }
    
    .page-hero-section .page-description {
        font-size: 16px;
    }
    
    .page-content-section {
        padding: 40px 0;
    }
}

/* Transparent Header Adjustments */
.site-content {
    position: relative;
    z-index: 1;
}

/* Ensure content doesn't overlap with transparent header */
.page-hero-section {
    padding-top: 120px; /* Add extra padding to account for transparent header */
}

/* Mobile adjustments for transparent header - Updated for optimized mobile header */
@media (max-width: 991.98px) {
    /* These styles are now handled by the optimized mobile header styles below */
}

@media (max-width: 576px) {
    .page-hero-section .page-title {
        font-size: 28px;
    }
    
    .page-hero-section .page-subtitle {
        font-size: 12px;
    }
    
    .breadcrumb-section .breadcrumb-item {
        font-size: 12px;
    }
}

/* Professional Header Styling */
.site-header {
    background: transparent;    
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    padding: 15px 30px;
}

/* Desktop Header Layout */
@media (min-width: 992px) {
    .mobile-phone-icon {
        display: none !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .navbar-brand {
        display: flex;
        align-items: center;
        margin: 0;
    }
}

/* Header Top Bar */
.header-top-bar {
    background: #f0f5fe;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
}

.header-top-bar .header-contact-info {
    display: flex;
    align-items: center;
}

.header-top-bar .phone-number-top {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-top-bar .phone-number-top:hover {
    color: var(--secondary-color);
}

.header-top-bar .phone-number-top i {
    margin-right: 8px;
    font-size: 16px;
}

/* Header Top Right Widget Alignment */
.header-top-bar .col-md-6.text-md-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-top-bar .col-md-6.text-md-end .widget {
    text-align: right;
}

.header-top-bar .col-md-6.text-md-end .widget ul {
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-top-bar .col-md-6.text-md-end .widget ul li {
    text-align: right;
    margin-bottom: 5px;
}

.header-top-bar .col-md-6.text-md-end .widget ul li:last-child {
    margin-bottom: 0;
}

/* Social Media Icons Alignment */
.header-top-bar .wp-block-social-links {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.header-top-bar .wp-block-social-links .wp-social-link {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    vertical-align: middle !important;
}

.header-top-bar .wp-block-social-links .wp-social-link a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: #026222 !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-top-bar .wp-block-social-links .wp-social-link a:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
}

.header-top-bar .wp-block-social-links .wp-social-link svg {
    width: 18px !important;
    height: 18px !important;
    fill: #ffffff !important;
    transition: fill 0.3s ease;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-top-bar .wp-block-social-links .wp-social-link:hover svg {
    fill: var(--secondary-color) !important;
}

/* Override any WordPress default social block styles */
.header-top-bar .wp-block-social-links.is-layout-flex {
    align-items: center !important;
}

.header-top-bar .wp-block-social-links .wp-block-social-link {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Main Navigation */
.navbar {
    padding: 15px 0;
    background: #000000BF;
    border-radius: 8px;
}

/* Desktop Navigation Layout */
@media (min-width: 992px) {
    .navbar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        margin-left: 2rem;
    }
    
    .navbar-nav-center {
        display: flex;
        justify-content: center;
        flex: 1;
    }
    
    .navbar-nav-right {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    /* Center the primary menu */
    .navbar-nav-center .navbar-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
    }
    
    
	
}

/* Mobile Navigation Layout */
@media (max-width: 991.98px) {
	.navbar {
		background-color: #000 !important;
		padding: 10px 0px !important;
	}
	.navbar-nav-center {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .navbar-nav-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav-center .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav-center .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
    }
	.img_right_main  {
		padding: 30px 0px;
    	text-align: left !important;
	}
	
	.navbar-nav-right {
		justify-content: left !important;
	}
	.navbar-nav .nav-link {
		padding: 12px 0px;
	}
	.site-header {
		overflow: hidden;
	}
	 .navbar-toggler-icon::before, .navbar-toggler-icon::after, .navbar-toggler-icon {
		right:0px !important;
	}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after, .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
		transform: rotate(0deg) !important;
		bottom: 0px !important;
	}
	.navbar-nav-center .navbar-nav .nav-item {
        margin: 0 5px;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.navbar-brand a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.navbar-brand a:hover {
    color: var(--secondary-color);
}

/* Navigation Menu */

#primary-menu li.menu-item {
    margin: 0px !important;
    color: #ffffff;
}
.navbar-nav .nav-link {
    color: #a1a1a1;
    font-weight: 500;
    padding: 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--body-font);
    font-size: 13px;
	text-transform: uppercase;
    
}

.navbar-nav .nav-link:hover {
    color: #f7d516;
}

.navbar-nav .nav-link.active {
    color: #f7d516 !important;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-top: 0px !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    font-family: var(--body-font);
    overflow: hidden;
}

/* Add subtle starry background effect */
.navbar-nav .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    opacity: 0.3;
    z-index: 0;
}

.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown.hover .dropdown-menu,
.navbar-nav .dropdown.show .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Ensure dropdown menu is visible when parent is hovered or active */
.navbar-nav .dropdown:hover > .dropdown-menu,
.navbar-nav .dropdown.show > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

/* Fix for Bootstrap dropdown positioning */
.navbar-nav .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Additional fixes for dropdown visibility */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1050 !important;
}

/* Ensure dropdown is visible on hover and show states */
.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown.show .dropdown-menu,
.navbar-nav .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.navbar-nav .dropdown-item {
    color: #a1a1a1;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 100%;
    text-align: left;
    font-family: var(--body-font);
    margin-bottom: 6px;
    z-index: 1;
}

.navbar-nav .dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #f7d516, #f7d516);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 8px;
}

.navbar-nav .dropdown-item:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item:hover:before {
    width: 100%;
    background: #f7d516;
}

.navbar-nav .dropdown-item:active {
    background: rgba(247, 213, 22, 0.2);
    color: #f7d516;
    transform: translateX(2px);
}

/* Active state for dropdown items */
.navbar-nav .dropdown-item.active {
    color: #000000 !important;
    background: #f7d516 !important;
    box-shadow: 0 2px 8px rgba(247, 213, 22, 0.3);
}

.navbar-nav .dropdown-item.current-menu-item {
    color: #000000 !important;
    background: #f7d516 !important;
    box-shadow: 0 2px 8px rgba(247, 213, 22, 0.3);
}

/* Dropdown menu header styling */
.navbar-nav .dropdown-header {
    color: #f7d516 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 8px 16px !important;
    margin-bottom: 12px !important;
    border-bottom: 1px solid rgba(247, 213, 22, 0.2) !important;
}

/* Dropdown divider styling */
.navbar-nav .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 8px 0 !important;
}

/* Mega menu styling for larger dropdowns */
.navbar-nav .dropdown-menu.mega-menu {
    min-width: 600px !important;
    padding: 32px !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 24px !important;
}

/* Service category styling */
.navbar-nav .dropdown-menu .service-category {
    margin-bottom: 20px !important;
}

.navbar-nav .dropdown-menu .service-category h6 {
    color: #f7d516 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 12px !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid rgba(247, 213, 22, 0.2) !important;
}

/* Main navigation font size for medium screens */
@media (min-width: 992px) and (max-width: 1240px) {
    .navbar-nav .nav-link {
        font-size: 12px !important;
        margin:0px !important;
    }
    
    .navbar-nav .dropdown-item {
        font-size: 13px !important;
    }

    .navbar-nav .phone-number{
        font-size: 13px !important;
        padding: 6px 12px !important;
    }
    .navbar-nav .btn-secondary{
        padding: 6px 12px;
    }
	.btn-quote {
		display: none !important;
	}
	
}

/* Dropdown arrow indicator */
.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 6px;
}

/* Ensure dropdown toggle text is always visible */
.navbar-nav .dropdown-toggle {
    color: inherit !important;
    text-decoration: none !important;
}

.navbar-nav .dropdown-toggle:hover {
    color: inherit !important;
    text-decoration: none !important;
}

/* Disable click behavior on desktop for dropdowns */
@media (min-width: 992px) {
    .navbar-nav .dropdown-toggle[data-bs-toggle="dropdown"] {
        pointer-events: none;
    }
    
    .navbar-nav .dropdown-toggle[data-bs-toggle="dropdown"]::after {
        pointer-events: none;
    }
    
    /* Ensure dropdown is hidden by default on desktop */
    .navbar-nav .dropdown-menu {
        display: none !important;
    }
    
    /* Show dropdown only on hover */
    .navbar-nav .dropdown:hover .dropdown-menu,
    .navbar-nav .dropdown.hover .dropdown-menu {
        display: block !important;
    }
}

.navbar-nav .dropdown:hover .dropdown-toggle::after,
.navbar-nav .dropdown.hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown divider */
.navbar-nav .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(0, 0, 0, 0.08);
    opacity: 0.6;
}

/* Dropdown header */
.navbar-nav .dropdown-header {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 24px;
    margin-bottom: 4px;
    font-family: var(--body-font);
}

/* Contact Button in Navigation */
.navbar-nav .btn-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-family: var(--body-font);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-nav .btn-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.navbar-nav .phone-number {
    font-size: 14px;
    font-weight: 600;
}



/* Growth Button Container - Multiple Buttons */
.growth-button-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.growth-button-container .btn-growth {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Mobile Growth Button Container */
@media (max-width: 768px) {
    .growth-button-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .growth-button-container .btn-growth {
        width: 100%;
        justify-content: center;
    }
	.yellow_btn_mobile {
		display: block !important;
	}
	.gform-theme--framework.ui-datepicker {
		width:100% !important;
		max-width:320px !important;
	}
}



/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 14px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 14px;
}

/* Mobile Menu Styling - Updated for optimized mobile header */
@media (max-width: 991.98px) {
    /* These styles are now handled by the optimized mobile header styles below */
	.btn-quote {
		display: none !important;
	}
}

/* Header Widgets Styling */
.header-top-left .widget,
.header-top-right .widget {
    margin: 0;
}

.header-top-left .widget-title,
.header-top-right .widget-title {
    display: none;
}

/* Professional Footer Contact Widget */
.contact-info-widget {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-widget .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-widget .contact-link {
    color: #026222;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-widget .contact-link:hover {
    color: var(--secondary-color);
}

.contact-info-widget .contact-link i {
    font-size: 16px;
}


.site-footer{
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #ffffff;
    padding: 60px 0 0 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.site-footer, .site-footer p, .site-footer a, .site-footer li{
    color: #ffffff !important;
}

.site-footer a:hover{
    color: var(--secondary-color);
    text-decoration: none;
}

/* Footer Widgets */
.site-footer .widget {
    margin-bottom: 0px;
}

.site-footer .widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
    position: relative;
}

.site-footer .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-info .contact-icon {
    width: 32px;
    height: 32px;
    background: #f7d516;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item:hover .contact-icon {
    background: #fff;
    transform: scale(1.1);
    color: #f7d516;
}
.footer-contact-info .contact-item:hover .contact-icon i{
    color: #f7d516;
}

.footer-contact-info .contact-icon i {
    color: #ffffff;
    font-size: 16px;
}

.footer-contact-info .contact-details {
    flex: 1;
}

.footer-contact-info .contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-link:hover {
    color: var(--secondary-color);
}

.footer-contact-info .contact-text {
    color: #bdc3c7;
    line-height: 1.6;
}

.site-footer div.contact-info-widget {
	display: block !important;
	width:100% !important;
}

.site-footer div.contact-item {
	padding: 10px 0px !important;
}

/* Footer Menus */
.site-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .menu li {
    margin-bottom: 8px;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.site-footer .menu li:hover {
    transform: translateX(5px);
}

.site-footer .menu li a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 14px;
}

.site-footer .menu li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.site-footer .menu li:hover a {
    color: #ffffff;
    padding-left: 15px;
}

.site-footer .menu li:hover a::before {
    opacity: 1;
}

/* Footer Contact Form */
.site-footer .wpcf7-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.site-footer .wpcf7-form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.site-footer .wpcf7-form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
    outline: none;
}

.site-footer .wpcf7-form-control::placeholder {
    color: #bdc3c7;
}

.site-footer .wpcf7-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.site-footer .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 134, 171, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom, .footer-bottom p, .footer-bottom a, .footer-bottom li {
    color: #bdc3c7;
    font-size: 14px !important;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    float: right;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0 0;
    }
    
    .footer-menu {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .footer-bottom .col-md-6:first-child {
        text-align: center;
        margin-bottom: 15px;
    }
}
/* Footer Menu Styling */
.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0px 0px;
    list-style: none;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
   
    transition: all 0.3s ease;
    display: block;
}

.footer-menu a:hover {
    color: var(--secondary-color);
    
}

/* Responsive Footer Menu */
@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-menu a {
        padding: 10px 16px;
        text-align: center;
        min-width: 120px;
    }
}

/* Footer Contact Widget */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0px;
}

.footer-contact-info .contact-icon {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 2px;
}

.footer-contact-info .contact-details {
    flex: 1;
    padding-top: 10px;
}

.footer-contact-info .contact-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info .contact-link:hover {
    color: var(--secondary-color);
}

.footer-contact-info .contact-text {
    color: #fff;
    line-height: 1.5;
}

/* Skip Link - Hidden but Accessible */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only Text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* Services Sidebar */
.services-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.services-sidebar .widget {
    margin-bottom: 30px;
}

.services-sidebar .widget:last-child {
    margin-bottom: 0;
}

.services-sidebar .widget-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    font-family: var(--heading-font);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    margin-bottom: 12px;
    padding: 0;
}

.services-list li:last-child {
    margin-bottom: 0;
}

.services-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.services-list a:hover {
    color: var(--primary-color);
    background: rgba(2, 98, 34, 0.05);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.services-sidebar .contact-info {
    margin-bottom: 20px;
}

.services-sidebar .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-sidebar .contact-info i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.services-sidebar .contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-sidebar .contact-info a:hover {
    color: var(--primary-color);
}

.services-sidebar .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
}

.services-sidebar .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 98, 34, 0.3);
}

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-grid-heading {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.services-grid-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-intro h2 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.services-intro .lead {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: auto;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-image .no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.service-card-image .no-image-placeholder span {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3, .service-card-content h3 a {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--heading-font);
    text-decoration: none;
}
.service-card-content h3 a:hover {
    color: #f7d516;
}

.service-card-content p {
    color: #666;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
    font-size: 15px !important;
}

.service-card .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 98, 34, 0.3);
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

.contact-card .service-card-content h3 {
    color: #ffffff;
}

.contact-card .service-card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-card .contact-icon {
    font-size: 48px;
    color: #ffffff;
}

.contact-card .contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-card .contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-card .contact-info a:hover {
    opacity: 0.8;
}

.contact-card .btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
}

.contact-card .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Service Single Page Styles */
.service-single .service-features-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-single .service-features-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item span {
    color: #666;
    font-weight: 500;
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px;
    border-radius: 16px;
    color: #ffffff;
    text-align: center;
}

.service-cta h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.cta-buttons .btn-outline-primary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Services List with Icons */
.services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list a i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}



/** Home page **/

.google_reviews_home_main {
	margin:0px !important;
	padding: 0px !important;
	margin-top: -100px !important;
}
.google_reviews_home {
	padding: 10px 15px !important;
}
.google_reviews_home img {
	max-width: 400px !important;
	height: auto !important;
	width:100% !important;
}

.home_banner_txt h1 {
	 /* needed for background-clip to work properly */
    color: #FFD700; 
    background: linear-gradient(90deg, #FFD700 0%, #FCF05C 100%);
   -webkit-background-clip: text;
    background-clip: text; 
     /*-webkit-text-fill-color: transparent;*/
	text-align:center !important;
}


/* Responsive adjustments */
@media (max-width: 768px) {
	.weddings_partys_txt h4 {
		font-size: 18px !important;
	}
	.top_rated_txt h4 {
		font-size: 24px !important;
	}
	
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .service-single .service-features-section {
        padding: 20px;
    }
	
	.logo-marquee .marquee__track {
		gap: 0 35px;
		padding-right: 30px;
	}
	.logo-marquee .logo img { 
		width: 75px !important;
		height: auto !important;
		/* Mobile Safari: ensure proper rendering */
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}
	
	/* Mobile Safari: reduce animation complexity on small screens */
	.logo-marquee .marquee__inner {
		animation-duration: 20s !important; /* Slower animation for mobile */
	}
	
	
}

/* Page Title Area Styles */
.page-title-area {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    margin-top: 0; /* Ensure no top margin */
}

/* Note: Page title areas are now shown on services pages */
/* Previously hidden, but now enabled for specific services pages */

.page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-title-area .container {
    position: relative;
    z-index: 2;
}

/* Ensure page title area appears after header on all pages */
.site-content {
    position: relative;
    z-index: 1;
}

/* Mobile-specific fixes for page title positioning */
@media (max-width: 991.98px) {
    .site-header {
        background: linear-gradient(135deg, #192026 0%, #2c3e50 100%);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        padding: 10px 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        order: 1; /* Ensure header comes first */
    }
    
    /* Ensure page title area comes after header */
    .page-title-area {
        order: 2;
        margin-top: 0;
        position: relative;
        z-index: 1;
        clear: both; /* Ensure it's not floating */
    }
    
    /* Ensure proper stacking order */
    #page {
        display: flex;
        flex-direction: column;
    }
    
    #content {
        order: 3;
    }
    
    .site-footer {
        order: 4;
    }
    
    /* Prevent any floating issues */
    .site-content {
        clear: both;
        position: relative;
        z-index: 1;
    }
    
    /* Ensure header doesn't overlap page title */
    .site-header + .page-title-area {
        margin-top: 0;
        padding-top: 120px; /* Add top padding to account for header */
    }
    
    /* Hide any page title area that appears before the header */
    .site-header ~ .page-title-area:not(.site-header + .page-title-area) {
        display: none !important;
    }
    
    /* Hide any page title area that appears before the content div */
    #content ~ .page-title-area {
        display: none !important;
    }
    
    /* Ensure only one page title area is visible */
    .page-title-area:not(:first-of-type) {
        display: none !important;
    }
}

/* Additional mobile fixes for smaller screens */
@media (max-width: 768px) {
    .page-title-area {
        padding: 80px 0 60px;
        min-height: 300px;
    }
    
    /* Ensure header is always visible and doesn't interfere */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000;
    }
    
    /* Ensure page title area is properly positioned */
    .page-title-area {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        z-index: 1;
        margin-top: 0;
    }
    
    /* Additional fixes for Elementor theme builder conflicts */
    .elementor-location-header ~ .page-title-area {
        /*display: none !important;*/
    }
    
    /* Hide any page title areas that might be added by Elementor */
    .elementor-page .page-title-area:not(.site-header + .page-title-area) {
        /* display: none !important;*/
    }
}

/* Breadcrumb Navigation */
.breadcrumb-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.breadcrumb-navigation {
    text-align: center;
}

.breadcrumb-navigation .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb-navigation .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.breadcrumb-navigation .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-navigation .breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-navigation .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-navigation .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
    font-weight: 400;
}

/* Page Title Content */
.page-title-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title-content .page-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.page-title-content .page-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: var(--heading-font);
}

.page-title-content .page-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Page Title Area */
@media (max-width: 768px) {
    .page-title-area {
        padding: 100px 0 60px;
        min-height: 300px;
    }
    
    .page-title-content .page-title {
        font-size: 36px;
    }
    
    .page-title-content .page-description {
        font-size: 16px;
    }
    
    .breadcrumb-navigation .breadcrumb-item {
        font-size: 12px;
    }
}


.location-scroll-container {
	overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
}
.location-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    column-gap: 20px;
    row-gap: 10px;
}
.location-wrapper p, .location-wrapper a {
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.location-wrapper  a {
    text-decoration: none;
    color: inherit;
}

.location-wrapper  a::before {
    /*content: "⚫"; */
    display: inline-block;
    margin-right: 10px;
}



@media (max-width: 576px) {
    .page-title-content .page-title {
        font-size: 28px;
    }
    
    .page-title-content .page-subtitle {
        font-size: 12px;
    }
}

/* Contact Forms */

.wpcf7 input, .wpcf7 textarea {
    border-radius: 0.5rem;
    border: 1px solid #999;
    padding: 12px;
    width: 100%;
	font-size:13px !important;
}

.wpcf7 input:focus, .wpcf7 textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.25);
}

.wpcf7 input[type="checkbox"], .wpcf7 input[type="radio"] {
	width: auto !important;
}
.wpcf7-list-item {
	width: 100% !important;
}

.wpcf7-form h4 {
	font-weight: 600 !important;
	color: #1368be !important;
}

/* Contact Form 7 Submit Button Styling */
.wpcf7-submit {
    background: #f7d516 !important;
    border: 2px solid #f7d516 !important;
    color: #000000 !important;
    padding: 12px 30px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-decoration: none !important;
    line-height: 1.5 !important;
    font-family: var(--body-font) !important;
}

.wpcf7-submit:hover {
    background: #000 !important;
    border-color: #000 !important;
    color: #f7d516 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(2, 98, 34, 0.3) !important;
}

.wpcf7-submit:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(2, 98, 34, 0.25) !important;
}

.wpcf7-submit:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(2, 98, 34, 0.3) !important;
}

.service_contact_us {
	box-shadow: 0px 0px 20px 0 rgb(0 20 9 / 10%);
    border-radius: 10px;
    padding: 45px 10px 0px 10px;
    background: #fff;
}
.service_contact_us h4, .service_contact_us h3 {
    color: #026222 !important;
    padding-left:20px !important;
}
.service_contact_us p {
    padding-left:20px !important;
}

.service_contact_list span.elementor-icon-list-icon {
	background: #adce21;
    padding: 8px 8px 8px 10px;
    border-radius: 50%;
    color: #fff !important;
    height: 35px;
	width: 35px;
}

.site_btn a {
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background: var(--primary-color) !important;
}

.site_btn a:hover {
    background: #adce21 !important;
    color: #fff !important;
}

/* Footer Social Media Icons */
.site-footer .wp-block-social-links {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.site-footer .wp-block-social-links .wp-social-link {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    vertical-align: middle !important;
}

.site-footer .wp-block-social-links .wp-social-link a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .wp-block-social-links .wp-social-link a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

.site-footer .wp-block-social-links .wp-social-link svg {
    width: 32px !important;
    height: 32px !important;
    fill: #ffffff !important;
    transition: fill 0.3s ease;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .wp-block-social-links .wp-social-link:hover svg {
    fill: var(--secondary-color) !important;
}

/* Override any WordPress default social block styles for footer */
.site-footer .wp-block-social-links.is-layout-flex {
    align-items: center !important;
}

.site-footer .wp-block-social-links .wp-block-social-link {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Ensure social media icons in footer are white */
.site-footer .wp-block-social-links .wp-social-link .wp-block-social-link-anchor svg {
    fill: #ffffff !important;
}

.site-footer .wp-block-social-links .wp-social-link .wp-block-social-link-anchor:hover svg {
    fill: var(--secondary-color) !important;
}

/* Yellow Button Styles for Elementor */
.yellow_btn .elementor-button {
    background: linear-gradient(90deg, #FFD700 0%, #FCF05C 100%);
    border: none !important;
    color: #000000 !important;
    padding: 16px 40px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(247, 213, 22, 0.3) !important;
}

.yellow_btn .elementor-button:hover {
    background-color: #000000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.yellow_btn_alt .elementor-button:hover {
    background-color: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.yellow_btn .elementor-button:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Button content wrapper */
.yellow_btn .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

/* Button icon animation */
.yellow_btn .elementor-button-icon {
    transition: transform 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
}

.yellow_btn .elementor-button:hover .elementor-button-icon {
    transform: translateX(3px) !important;
}

/* Button text */
.yellow_btn .elementor-button-text {
    font-weight: 700 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Ripple effect on click */
.yellow_btn .elementor-button::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
    z-index: 0 !important;
}

.yellow_btn .elementor-button:active::before {
    width: 300px !important;
    height: 300px !important;
}

/* Focus state for accessibility */
.yellow_btn .elementor-button:focus {
    outline: 2px solid #f7d516 !important;
    outline-offset: 2px !important;
}

/*** Gravity Form Styles ***/

.gform_button {
    background: linear-gradient(90deg, #FFD700 0%, #FCF05C 100%) !important;    
    color: #000000 !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-decoration: none !important;
	border:none !important;
}
.gform_button:hover {
    background-color: #000000 !important;
	transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.event_date input {
	display: block !important;
	width:100% !important;
}

.footer_form_main label, .footer_form_main legend {
    color: #ffffff !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    text-transform: capitalize !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}
.footer_logo_main img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

/* Apply border-radius to all Gravity Forms inputs */
body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="url"],
body .gform_wrapper input[type="password"],
body .gform_wrapper input[type="number"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper input[type="file"],
body .gform_wrapper textarea,
body .gform_wrapper select {
    border-radius: 8px !important; /* adjust px as needed */
	
}

body .gform_wrapper input[type="text"] {
	font-size:14px !important;
	background-color:#fff !important;
}





/* Responsive adjustments */
@media (max-width: 768px) {
    .yellow_btn .elementor-button {
        padding: 10px 25px !important;
        font-size: 13px !important;
    }
    
    .yellow_btn .elementor-button:hover {
        transform: translateY(-2px) !important;
    }
	body .gform_wrapper input[type="text"] {
		font-size:16px !important;
	}
}

/* Optimized Mobile Header Styles */
@media (max-width: 991.98px) {
    .site-header {
        background: transparent;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        padding: 10px 10px;
        transition: all 0.3s ease;
    }
    
    .navbar {
        background: #000000BF;
        padding: 0;
        border-radius: 8px;
    }
    
    /* Mobile Header Layout - Phone Icon Left, Logo Center, Menu Right */
    .navbar-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 15px;
    }
    
    /* Phone Icon on Left */
    .mobile-phone-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        /* background: rgba(255, 255, 255, 0.1); */
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-phone-icon a {
        color: #ffffff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .mobile-phone-icon i {
        font-size: 30px;
        color: #ffffff;
    }
    
    .mobile-phone-icon:hover {
        background: rgba(247, 213, 22, 0.2);
        transform: scale(1.1);
    }
    
    .mobile-phone-icon:hover i {
        color: #f7d516;
    }
    
    /* Logo in Center */
    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        margin: 0 15px;
    }
    
    .navbar-brand img {
        max-height: 50px;
        width: 150px;
        height: auto;
        filter: brightness(0) invert(1);
    }
    
    /* Mobile Menu Button on Right */
    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        border-radius: 50%;
        padding: 0;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        outline: none;
    }
    
    .navbar-toggler:hover {
        background: rgba(247, 213, 22, 0.2);
        transform: scale(1.1);
    }
    
    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 24px !important;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px !important;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before {
        top: -6px;
    }
    
    .navbar-toggler-icon::after {
        bottom: -6px;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    .navbar-collapse {
        background: rgba(25, 32, 38, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 8px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 15px 0;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        display: block;
        text-decoration: none;
    }
    
    .navbar-nav .nav-link:hover {
        color: #f7d516 !important;
        background: rgba(255, 255, 255, 0.05);
        padding-left: 15px;
        text-decoration: none;
    }
    
    .navbar-nav .nav-link.active {
        color: #f7d516 !important;
        background: rgba(247, 213, 22, 0.1);
        padding-left: 15px;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Dropdown Menu Styling */
    .navbar-nav .dropdown-menu {
        background: rgba(25, 32, 38, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 0;
        border-radius: 6px;
        padding: 10px 0;
        position: static !important;
        float: none;
        width: 100%;
        transform: none !important;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar-nav .dropdown-item {
        color: #ffffff !important;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
        font-size: 14px;
        font-weight: 400;
        display: block;
        text-decoration: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.05);
        padding-left: 30px;
        text-decoration: none;
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Phone Button Styling */
    .navbar-nav .btn-secondary {
        background: #f7d516;
        color: #192026;
        border: none;
        padding: 15px 24px;
        border-radius: 6px;
        font-weight: 600;
        margin-top: 20px;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(247, 213, 22, 0.3);
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        text-decoration: none;
    }
    
    .navbar-nav .btn-secondary:hover {
        background: #ffffff;
        color: #192026;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(247, 213, 22, 0.4);
        text-decoration: none;
    }
    
    .navbar-nav .phone-number {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 600;
        width: 100%;
    }
    
    .navbar-nav .phone-number i {
        font-size: 16px;
    }
    
    /* Dropdown Toggle Styling */
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
        border-top: 4px solid #ffffff;
        border-right: 4px solid transparent;
        border-bottom: 0;
        border-left: 4px solid transparent;
        transition: transform 0.3s ease;
    }
    
    .navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    
    /* Additional Mobile Menu Improvements */
    .navbar-nav .ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Ensure proper collapse behavior */
    .navbar-collapse.collapse {
        display: none;
    }
    
    .navbar-collapse.collapse.show {
        display: block;
    }
    
    .navbar-collapse.collapsing {
        height: auto;
        overflow: hidden;
        transition: height 0.35s ease;
    }
    
    /* Fix for nested dropdowns */
    .navbar-nav .dropdown-menu .dropdown-menu {
        margin-left: 15px;
        margin-top: 0;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Ensure proper spacing for menu items */
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    /* Improve dropdown toggle visibility */
    .navbar-nav .dropdown-toggle[aria-expanded="true"] {
        background: rgba(247, 213, 22, 0.1);
        color: #f7d516 !important;
    }
}




/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    .site-header {
        padding: 8px 10px;
    }
    
    .navbar-container {
        padding: 8px 12px;
    }
    
    .mobile-phone-icon {
        width: 52px;
        height: 52px;
    }
    
    .mobile-phone-icon i {
        font-size: 30px;
    }
    
    .navbar-brand img {
        max-height: 50px;
        width: 150px;
        height: auto;
    }
    
    .navbar-toggler {
        width: 35px;
        height: 35px;
    }
    
    .navbar-toggler-icon {
        width: 18px;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 18px;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        padding: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
    }
    
    .navbar-nav .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
	
	.home_banner_txt, .home_banner_txt h1 {
		font-size: 32px !important;
	}
	
}

@media (max-width: 576px) {
    .site-header {
        padding: 6px 10px;
    }
    
    .navbar-container {
        padding: 6px 10px;
    }
    
    .mobile-phone-icon {
        width: 52px;
        height: 52px;
    }
    
    .mobile-phone-icon i {
        font-size: 30px;
    }
    
    .navbar-brand img {
        max-height: 50px;
        width: 150px;
        height: auto;
    }
    
    .navbar-toggler {
        width: 32px;
        height: 32px;
    }
    
    .navbar-toggler-icon {
        width: 16px;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 16px;
    }
    
    .navbar-collapse {
        margin-top: 8px;
        padding: 12px;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 0;
        font-size: 15px;
    }
    
    .navbar-nav .btn-secondary {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Gallery Page Styles */
.gallery-page-content {
    margin-top: 40px;
}

.gallery-page-content .entry-content {
    margin-bottom: 40px;
}

/* Ensure Elementor content displays properly within our template */
.gallery-page-content .elementor {
    margin: 0;
    padding: 0;
}

.gallery-page-content .elementor-section {
    margin: 0;
    padding: 0;
}

.gallery-page-content .elementor-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Ensure proper spacing for gallery content */
.gallery-page-content .elementor-widget {
    margin-bottom: 30px;
}

/* Force page title area on gallery page */
body.page-template-elementor_canvas .page-title-area {
    display: block !important;
    position: relative !important;
    z-index: 1;
    margin-top: 0 !important;
    padding-top: 120px; /* Adjust as needed for header height */
}

/* Ensure page title area appears after header on gallery page */
body.page-template-elementor_canvas .site-header + .page-title-area {
    display: block !important;
}

/* Additional mobile fixes for Elementor theme builder conflicts */
@media (max-width: 768px) {
    .elementor-page .page-title-area:not(.site-header + .page-title-area) {
        /* display: none !important;*/
    }
    
    /* Ensure Elementor content doesn't interfere with our layout */
    .gallery-page-content .elementor-section {
        position: relative !important;
        z-index: 1;
    }
    
    /* Force page title area on gallery page for mobile */
    body.page-template-elementor_canvas .page-title-area {
        display: block !important;
        position: relative !important;
        z-index: 1;
    }
}

/* Hide duplicate page title areas on services pages */
body.single-services .page-title-area:not(:first-of-type),
body.page .page-title-area:not(:first-of-type) {
    display: none !important;
}

/* Additional fix for Elementor service pages - hide all but the first page title area */
body.single-services .page-title-area + .page-title-area,
body.single-services .page-title-area + .page-title-area + .page-title-area {
    display: none !important;
}

/* Hide duplicate page title areas on service pages */
body.single-services .page-title-area + .page-title-area {
    display: none !important;
}

/* Hide page title areas with rocket-location-hash (from caching plugins) */
body.single-services .page-title-area[data-rocket-location-hash] {
    display: none !important;
}

/* Ensure main service areas page shows title area */
body.page .page-title-area:first-of-type {
    display: block !important;
}

/* Enhanced Blog Styles */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.blog-post-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.post-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
}

.post-thumbnail-wrapper img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-card:hover .post-thumbnail-wrapper img {
    transform: scale(1.05);
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.post-category-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    background: linear-gradient(45deg, #f7d516, #f7d516);
    border: none;
}

.card-body {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.post-title a {
    color: #192026 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #f7d516 !important;
}

.post-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

.post-meta i {
    margin-right: 0.25rem;
}

.post-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-footer {
    border-top: 1px solid #f8f9fa;
    background: transparent;
    padding: 1rem 1.5rem;
}

.post-stats, .post-share {
    font-size: 0.875rem;
}

.post-share a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.post-share a:hover {
    color: #007bff;
}

/* Single Post Styles */
.single-post-content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.post-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 2rem;
}

.post-header .post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 1rem;
}

.post-excerpt.lead {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.6;
}

.post-featured-image {
    margin: 2rem 0;
}

.featured-image-wrapper img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-style: italic;
    color: #6c757d;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-content h2, .post-content h3, .post-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6c757d;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.post-tags .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-share .share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-navigation .btn {
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.post-navigation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.author-bio {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-bio .card-body {
    padding: 2rem;
}

.related-posts .card {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-posts .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.blog-post-card a.btn-outline-primary {
    background: #192026;
    border-color: #192026;   
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.blog-post-card a.btn-outline-primary:hover {
    background: #f7d516;
    border-color: #f7d516;
    color: #fff;
}


/* Sidebar Styles */
.sidebar-wrapper {
    position: sticky;
    top: 2rem;
    margin-top: 2rem;
}

.sidebar ul li {
    padding: 0;
    margin: 0;
}
.sidebar-wrapper a {
    color: #192026 !important;
    text-decoration: none !important;
    display: block;
    padding: 6px 0px;
}

.sidebar-wrapper a:hover {
    color: #f7d516 !important;
}

.sidebar div.gform_heading {
    display: none;
}

.widget {
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 20px;
    margin: 0px 0px 30px;
}

.widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.widget .card-header {
    background: #192026;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
}

.widget .card-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.widget .card-header i {
    margin-right: 0.5rem;
}

.widget .card-body {
    padding: 1.5rem;
}

.popular-post-item {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 1rem;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post-item img {
    border-radius: 6px;
    width: 100%;
    height: 60px;
    object-fit: cover;
}

.popular-post-item h6 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.popular-post-item h6 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-item h6 a:hover {
    color: #007bff;
}

.categories-widget ul li a {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.categories-widget ul li:last-child a {
    border-bottom: none;
}

.categories-widget ul li a:hover {
    background: #f8f9fa;
    padding-left: 0.5rem;
    border-radius: 6px;
}

.tags-widget .badge {
    transition: all 0.3s ease;
    border-radius: 20px;
    padding: 0.5rem 0.75rem;
}

.tags-widget .badge:hover {
    background: #007bff !important;
    color: white !important;
    transform: translateY(-1px);
}

.newsletter-widget .form-control {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-widget .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.newsletter-widget .btn {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-widget .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact-info-widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.contact-info-widget ul li:last-child {
    border-bottom: none;
}

.contact-info-widget ul li i {
    width: 20px;
    margin-right: 0.5rem;
}

.contact-info-widget ul li a {
    color: #333;
    transition: color 0.3s ease;
}

.contact-info-widget ul li a:hover {
    color: #007bff;
}

/* Pagination Styles */
.pagination {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination .page-link {
    border: none;
    padding: 0.75rem 1rem;
    color: #007bff;
    background: #fff;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
    background: #007bff;
    border-color: #007bff;
}

/* Empty State Styles */
.empty-state {
    padding: 3rem 1rem;
}

.empty-state i {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.search-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.elementor-toggle-item h3 {
	padding: 20px 30px 30px 50px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-header .post-title {
        font-size: 2rem;
    }
    
    .single-post-content {
        padding: 1.5rem;
    }
    
    .sidebar-wrapper {
        position: static;
        margin-top: 2rem;
    }
    
    .post-meta .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation .row {
        gap: 1rem;
    }
    
    .post-navigation .col-6 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .blog-post-card .card-body {
        padding: 1rem;
    }
    
    .post-header .post-title {
        font-size: 1.75rem;
    }
    
    .post-share .share-buttons {
        flex-direction: column;
    }
    
    .post-share .btn {
        margin-bottom: 0.5rem;
    }
}

/* Animation Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Growth Button Styles */
.growth-button-container {
    display: flex;
    align-items: center;
}

.btn-growth {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FFD700 0%, #FCF05C 100%);
    border: none;
    border-radius: 8px;
    padding: 0;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    
    box-shadow: 0 4px 15px rgba(247, 213, 22, 0.3);
    font-family: var(--body-font);
}

.btn-growth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 213, 22, 0.4);
    text-decoration: none;
}

.growth-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #192026;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    position: relative;
}

.growth-text i {
    font-size: 14px;
    color: #192026;
}

.btn-growth .bi-send {
    color: #192026;
    font-size: 14px;
    margin: 0 15px;
}

.chat-button {
    background: #000;
    color: white;
    padding: 5px 12px;
    border-radius: 3px;
    margin: 5px 5px 5px 0;
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-button i {
    font-size: 11px;
    color: white;
}

.btn-growth:hover .chat-button {
    background: #333;
    transform: scale(1.05);
}

/* Responsive adjustments for the growth button */
@media (max-width: 768px) {
    .btn-growth {
        min-height: 50px;
        border-radius: 35px;
    }
    
    .growth-text {
        padding: 12px 15px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-growth .bi-send {
        font-size: 12px;
        margin: 0 10px;
    }
    
    .chat-button {
        padding: 12px 18px;
        font-size: 11px;
        margin: 4px 4px 4px 0;
        border-radius: 30px;
        gap: 5px;
    }
    
    .chat-button i {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .btn-growth {
        min-height: 45px;
        border-radius: 30px;
    }
    
    .growth-text {
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .btn-growth .bi-send {
        font-size: 11px;
        margin: 0 8px;
    }
    
    .chat-button {
        padding: 10px 15px;
        font-size: 10px;
        margin: 3px 3px 3px 0;
        border-radius: 25px;
        gap: 4px;
    }
    
    .chat-button i {
        font-size: 9px;
    }
}




.logo-marquee {
    --gap: clamp(20px, 3vw, 48px);
    --h: clamp(40px, 7vw, 110px);   /* logo height */
    width: 100%;
  }
  
  .logo-marquee .marquee__viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-block: 10px;
    /* Mobile Safari: prevent touch scrolling issues */
    -webkit-overflow-scrolling: touch;
  }
  
  .logo-marquee .marquee__inner {
    display: flex;                 /* holds two identical tracks side-by-side */
    width: max-content;            /* shrink-to-fit content width */
    /* Mobile Safari: use transform3d for hardware acceleration */
    transform: translate3d(0, 0, 0);
    animation: marquee linear infinite;
    animation-play-state: running; /* Force animation to run */
    /* JS sets: animation-duration and --dist (distance) */
  }
  
  /* Disable CSS animation on mobile Safari - let JavaScript handle it */
  @supports (-webkit-touch-callout: none) {
    .logo-marquee .marquee__inner {
      animation: none !important;
    }
  }
  
  .logo-marquee .marquee__track {
    display: flex;
    align-items: center;
    gap: 0px 80px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;                /* don't shrink; keep true width */
    padding-right: 60px;
  }
  
  .logo-marquee .logo img {
    display: block;
    height: var(--h);
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter .2s ease;
    /* Mobile Safari: prevent image rendering issues */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .logo-marquee .logo:hover img { filter: none; }
  
  /* Optional: pause on hover - only on non-touch devices */
  @media (hover: hover) {
    .logo-marquee:hover .marquee__inner { animation-play-state: paused; }
  }
  
  @keyframes marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(calc(-1 * var(--dist)), 0, 0); } /* move left by exactly one track width */
  }
  
  /* Mobile Safari specific fixes */
  @supports (-webkit-touch-callout: none) {
    .logo-marquee .marquee__inner {
      /* Use transform3d for better performance on iOS */
      transform: translate3d(0, 0, 0);
      /* Reduce will-change to prevent memory issues */
      will-change: auto;
    }
    
    .logo-marquee .logo img {
      /* Prevent iOS Safari from applying its own transforms */
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
  }





  /* Date Picker Mobile Keypad Prevention */
/* Prevent mobile keypad from opening on date picker fields and disable typing */
input[type="text"].datepicker,
input[type="text"].gform-datepicker,
input[type="text"][id*="date"],
input[type="text"][name*="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Prevent zoom on iOS */
    font-size: 16px;
    /* Prevent keypad on mobile */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Disable typing but allow date picker to open */
    background-color: #f8f9fa;
    color: #495057;
    cursor: pointer;
    /* Make field read-only via CSS */
    -webkit-user-modify: read-only;
    -moz-user-modify: read-only;
    user-modify: read-only;
}

  /* Specific targeting for your Event Date field */
input[name="input_12"][id="input_1_12"].datepicker,
input[name="input_12"][id="input_1_12"].gform-datepicker {
    /* Ensure date picker opens instead of keypad */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    /* Prevent iOS zoom */
    font-size: 16px;
    /* Ensure proper touch behavior */
    touch-action: manipulation;
    /* Disable typing but allow date picker to open */
    background-color: #f8f9fa;
    color: #495057;
    cursor: pointer;
    /* Make field read-only via CSS */
    -webkit-user-modify: read-only;
    -moz-user-modify: read-only;
    user-modify: read-only;
}

  /* Additional mobile date picker improvements */
@media screen and (max-width: 768px) {
    input[type="text"].datepicker,
    input[type="text"].gform-datepicker,
    input[type="text"][id*="date"],
    input[type="text"][name*="date"] {
        /* Force date picker on mobile */
        -webkit-appearance: none;
        appearance: none;
        /* Prevent keypad */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        /* Ensure proper touch handling */
        touch-action: manipulation;
        /* Prevent zoom */
        font-size: 16px;
        /* Disable typing on mobile but allow date picker to open */
        background-color: #f8f9fa;
        color: #495057;
        cursor: pointer;
        /* Make field read-only via CSS */
        -webkit-user-modify: read-only;
        -moz-user-modify: read-only;
        user-modify: read-only;
    }
    
    /* Hide any default date input styling that might interfere */
    input[type="date"] {
        -webkit-appearance: none;
        appearance: none;
    }
}

  /* Ensure date picker calendar appears above other elements */
  .ui-datepicker {
      z-index: 9999 !important;
      position: absolute !important;
  }

  /* Prevent text selection on date picker fields */
  .gform-datepicker {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
  }
  