/*
Theme Name: Widen Migration
Theme URI: https://widen.com.au
Author: Widen Migration Services
Author URI: https://widen.com.au
Description: A custom WordPress theme designed specifically for Widen Migration Services by EG Solutions - Web Design Sydney, featuring a modern, responsive design with Bootstrap integration for migration and settlement services.
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: widen-migration-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, migration-services, settlement-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=Inter:wght@300;400;500;600;700;800;900&family=Overpass:wght@300;400;500;600;700;800;900&display=swap');

/* Custom CSS Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #002e5b;
    --accent-color: #ff3131;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --light-color: #F7FAFC;
    --dark-color: #2D3748;
    --text-color: #2D3748;
    --border-color: #E2E8F0;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --border-radius: 0.375rem;
    --heading-font: 'Overpass', sans-serif;
    --body-font: 'Inter', sans-serif;
    --header-font: 'Overpass', 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, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
    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;   
}

.heading_light h1, .heading_light h2, .heading_light h3, .heading_light h4, .heading_light h5 {
	color: #002e5b !important;
}

/* 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;
}

/* Ensure proper spacing for service area pages on mobile */
@media (max-width: 768px) {
    body.page .page-content-section {
        padding-top: 0px !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;
	}
}

.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 relative header */
.page-hero-section {
    padding-top: 20px; /* Reduced padding since header is now relative */
}

/* Additional home page specific styles */
body.home .site-content,
body.front-page .site-content {
    margin-top: 0;
    padding-top: 0;
}

/* Force hide any page title areas on home page - catch all */
body.home section[class*="page-title"],
body.front-page section[class*="page-title"],
.home section[class*="page-title"],
.front-page section[class*="page-title"],
body.home .elementor-location-single .page-title-area,
body.front-page .elementor-location-single .page-title-area {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Override inline styles on home page page title areas */
body.home .page-title-area[style*="background"],
body.front-page .page-title-area[style*="background"],
.home .page-title-area[style*="background"],
.front-page .page-title-area[style*="background"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    background: none !important;
    background-image: none !important;
    background-color: transparent !important;
}

/* Mobile adjustments for relative 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: #ffffff;    
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
    padding: 5px 30px;
    font-family: var(--header-font);
}

/* 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: #f4faff;
    color: #002e5b;
    padding: 8px 30px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--header-font);
    border-bottom: 1px solid #f4faff;
}

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

.header-top-bar .phone-number-top {
    color: #002e5b;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-top-bar .phone-number-top:hover {
    color: #ff3131;
}

.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;
}

/* Header Social Media Links */
.header-social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-social-links .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #002e5b;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-links .social-link:hover {
    color: #ff3131;
    background: #f4b400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-social-links .social-link i {
    font-size: 16px;
    line-height: 1;
}

/* Mobile Social Media Links */
@media (max-width: 768px) {
    .header-social-links .social-links {
        gap: 8px;
    }
    
    .header-social-links .social-link {
        width: 28px;
        height: 28px;
    }
    
    .header-social-links .social-link i {
        font-size: 14px;
    }
}

.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: #419ded !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: #3b256b !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;
}

/* Remove box shadow and styling from social media widgets in header top bar */
.header-top-bar .widget.widget_block {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.header-top-bar .widget.widget_block .wp-block-social-links {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Main Navigation */
.navbar {
    padding: 0px;
    background: #ffffff;
    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: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

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

/* Navigation Menu */

#primary-menu li.menu-item {
    margin: 0px !important;
    
}
.navbar-nav .nav-link {
    color: #1b1b1b;
    font-weight: 700;
    padding: 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-family: var(--body-font);
    font-size: 16px;
    text-transform: capitalize;
}
.navbar-nav .nav-link:hover {
    color: var(--accent-color);
    background-color: #f8f9fa;
}

.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    background-color: #f8f9fa;
}

/* 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: var(--secondary-color);
    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(--header-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: #fff !important;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    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;
    text-transform: capitalize;
}

.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: #ffffff;
    background: var(--accent-color);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(255, 49, 49, 0.3);
}

.navbar-nav .dropdown-item:hover:before {
    width: 100%;
    background: var(--accent-color);
}

.navbar-nav .dropdown-item:active {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateX(2px);
}

/* Active state for dropdown items */
.navbar-nav .dropdown-item.active {
    color: #ffffff !important;
    background: var(--accent-color) !important;
    box-shadow: 0 2px 8px rgba(255, 49, 49, 0.3);
}

.navbar-nav .dropdown-item.current-menu-item {
    color: #ffffff !important;
    background: var(--accent-color) !important;
    box-shadow: 0 2px 8px rgba(255, 49, 49, 0.3);
}

/* Dropdown menu header styling */
.navbar-nav .dropdown-header {
    color: #ffffff !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(255, 255, 255, 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: #ffffff !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(255, 255, 255, 0.2) !important;
}

/* Main navigation font size for medium screens */
@media (min-width: 992px) and (max-width: 1240px) {
    .navbar-nav .nav-link {
        font-size: 13px !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;
    }
}

/* 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: var(--primary-color);
    border: 2px solid var(--primary-color);
    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: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(247, 213, 22, 0.3);
}

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

/* 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: var(--primary-color);
    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 */
}

/* 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: block;
    align-items: center;
    gap: 20px;
}

.contact-info-widget .contact-item {
    display: block;
    align-items: center;
    gap: 8px;
	padding: 5px 0px; 
	
}

.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);
}
.site-footer img {
	max-width: 90% !important;
	height: auto !important;
}

/* 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: #ff3130 !important;
    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: #ff3130;
}
.footer-contact-info .contact-item:hover .contact-icon i{
    color: #ff3130;
}

.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;
}



/* 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, #F4B400, #F4B400);
    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: 200px;
    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, #2083a4, #2083a4);
    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;
    }
	

}

/* 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 */
}

/* Hide page title area on home page */
body.home .page-title-area,
body.front-page .page-title-area,
.home .page-title-area,
.front-page .page-title-area,
body.page-id-1 .page-title-area,
body.page-id-2 .page-title-area {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide breadcrumb section on home page */
body.home .breadcrumb-section,
body.front-page .breadcrumb-section,
.home .breadcrumb-section,
.front-page .breadcrumb-section,
body.page-id-1 .breadcrumb-section,
body.page-id-2 .breadcrumb-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 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, .wpcf7 select {
    border-radius: 0.5rem;
    border: 1px solid #999;
    padding: 12px;
    width: 100%;
	font-size:13px !important;
    margin-bottom: 15px;
}

.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: #F4B400 !important;
    border: 2px solid #F4B400 !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: #F4B400 !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;
}

/* Contact Form 7 Homepage Button Styling */
.button.contact_form_submit {
    background: linear-gradient(135deg, #ff3131, #ff3131) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-family: var(--heading-font) !important;
    text-transform: capitalize !important;
    letter-spacing: 0px !important;
    border-radius: 8px !important;
    padding: 12px 25px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-width: 180px !important;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3) !important;
}

.button.contact_form_submit:hover {
    background: linear-gradient(135deg, var(--primary-color), #333333) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(27, 27, 27, 0.4) !important;
}

.button.contact_form_submit:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.3) !important;
}

.button.contact_form_submit:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(27, 27, 27, 0.3) !important;
}

/* Size variations */
.button.contact_form_submit.size-lg {
    padding: 12px 35px !important;
    font-size: 16px !important;
    min-width: 200px !important;
}

.button.contact_form_submit.size-sm {
    padding: 12px 25px !important;
    font-size: 14px !important;
    min-width: 160px !important;
}

/* Icon positioning */
.button.contact_form_submit.icon_right i {
    margin-left: 8px !important;
    transition: transform 0.3s ease !important;
}

.button.contact_form_submit.icon_right:hover i {
    transform: translateX(3px) !important;
}

.button.contact_form_submit.icon_left i {
    margin-right: 8px !important;
    transition: transform 0.3s ease !important;
}

.button.contact_form_submit.icon_left:hover i {
    transform: translateX(-3px) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .button.contact_form_submit {
        padding: 14px 25px !important;
        font-size: 15px !important;
        min-width: 160px !important;
    }
    
    .button.contact_form_submit.size-lg {
        padding: 16px 30px !important;
        font-size: 16px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 576px) {
    .button.contact_form_submit {
        padding: 12px 20px !important;
        font-size: 14px !important;
        min-width: 140px !important;
        border-radius: 40px !important;
    }
    
    .button.contact_form_submit.size-lg {
        padding: 14px 25px !important;
        font-size: 15px !important;
        min-width: 160px !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, #f4b400 0%, #f4b400 100%);
    border: none !important;
    color: #fff !important;
    padding: 16px 40px !important;
    border-radius: 4px !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;
	font-family: var(--heading-font) !important;		
}

.yellow_btn .elementor-button:hover {
    background-color: #2083a4 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
	background: linear-gradient(90deg, #2083a4 0%, #2083a4 100%);
}

.elementor-button span {
	font-family: var(--heading-font) !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;
}



/* Yellow Button Styles for Elementor */
.blue_btn .elementor-button {
    background: linear-gradient(90deg, #002e5b 0%, #002e5b 100%);
    border: none !important;
    color: #fff !important;
    padding: 16px 40px !important;
    border-radius: 4px !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;
	font-family: var(--heading-font) !important;		
}

.blue_btn .elementor-button:hover {
    background-color: #ff3131 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
	background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
}


/* Yellow Button Styles for Elementor */
.red_btn .elementor-button {
    background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
    border: none !important;
    color: #fff !important;
    padding: 16px 40px !important;
    border-radius: 4px !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;
	font-family: var(--heading-font) !important;		
}

.red_btn .elementor-button:hover {
    background-color: #002e5b !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
	background: linear-gradient(90deg, #002e5b 0%, #002e5b 100%);
}








/*** 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 */
}



.banner_form_main {
	background: #002e5b;
    max-width: 480px;
    padding: 57px 30px 40px 30px;
    border-radius: 10px;
    box-shadow: inset 0px 4px 0px #ff3131;
}

.banner_form_main div.input-group {
	display: block !important;
}


/* Home Icon Boxes - Equal Height and Hover Effects */
.home_icon_box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Ensure 3-column layout and equal heights for all boxes */
.elementor-element[data-id="c8a20d7"] .e-con-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

/* Make each container take full width and height */
.elementor-element[data-id="c8a20d7"] .e-con-inner > .e-con {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* Ensure the image box widget takes full container space */
.elementor-element[data-id="c8a20d7"] .e-con .elementor-widget {
    width: 100%;
    height: 100%;
}

/* Make the image box wrapper fill the container */
.elementor-element[data-id="c8a20d7"] .elementor-image-box-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Effects */
.home_icon_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 49, 49, 0.2);
    border-color: #ff3131;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

/* Icon styling */
.home_icon_box .elementor-image-box-img {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.home_icon_box:hover .elementor-image-box-img {
    transform: scale(1.1) rotate(5deg);
}

.home_icon_box .elementor-image-box-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.home_icon_box:hover .elementor-image-box-img img {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Title styling */
.home_icon_box .elementor-image-box-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
    transition: all 0.3s ease;
}

.home_icon_box:hover .elementor-image-box-title {
    color: #ff3131;
    transform: translateY(-2px);
}

/* Description styling */
.home_icon_box .elementor-image-box-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.home_icon_box:hover .elementor-image-box-description {
    color: #333333;
}

/* Add subtle border accent on hover */
.home_icon_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3131, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.home_icon_box:hover::before {
    transform: scaleX(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Change to 2 columns on tablet */
    .elementor-element[data-id="c8a20d7"] .e-con-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .home_icon_box {
        padding: 25px 20px;
        margin-bottom: 15px;
    }
    
    .home_icon_box .elementor-image-box-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .home_icon_box .elementor-image-box-description {
        font-size: 13px;
    }
    
    .home_icon_box .elementor-image-box-img img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    /* Change to single column on mobile */
    .elementor-element[data-id="c8a20d7"] .e-con-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .home_icon_box {
        padding: 20px 15px;
    }
    
    .home_icon_box .elementor-image-box-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .home_icon_box .elementor-image-box-description {
        font-size: 12px;
        line-height: 1.5;
    }
}




/* 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;
    }
}

/* Optimized Mobile Header Styles */
@media (max-width: 991.98px) {
    .site-header {
        background: #ffffff;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        z-index: 1000;
        width: 100%;
        padding: 10px 10px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar {
        background: #ffffff;
        padding: 0;
        border-radius: 8px;
        border: 1px solid #e9ecef;
    }
    
    /* 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: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }
    
    .mobile-phone-icon i {
        font-size: 30px;
        color: var(--primary-color);
    }
    
    .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: none;
    }
    
    /* 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: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px !important;
        height: 2px;
        background-color: var(--primary-color);
        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: #ffffff;
        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.1);
        border: 1px solid #e9ecef;
        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: #333333 !important;
        padding: 15px 0;
        margin: 0;
        border-bottom: 1px solid #e9ecef;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        display: block;
        text-decoration: none;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--accent-color) !important;
        background: #f8f9fa;
        padding-left: 15px;
        text-decoration: none;
    }
    
    .navbar-nav .nav-link.active {
        color: var(--primary-color) !important;
        background: #f8f9fa;
        padding-left: 15px;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Dropdown Menu Styling */
    .navbar-nav .dropdown-menu {
        background: #ffffff;
        border: 1px solid #e9ecef;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        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: #333333 !important;
        padding: 12px 20px;
        border-bottom: 1px solid #e9ecef;
        transition: all 0.3s ease;
        font-size: 14px;
        font-weight: 400;
        display: block;
        text-decoration: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        color: var(--accent-color) !important;
        background: #f8f9fa;
        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 #333333;
        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 #e9ecef;
    }
    
    /* 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 #e9ecef;
    }
    
    /* 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: #f8f9fa;
        color: var(--primary-color) !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, #002e5b 0%, #002e5b 100%);
    border: none;
    border-radius: 24px;
	-moz-border-radius: 24px;
	-webkit-border-radius: 24px;
    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(--heading-font) !important;
}

.btn-growth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 213, 22, 0.4);
    text-decoration: none;
    background: linear-gradient(90deg, #ff3131 0%, #ff3131 100%);
}

.growth-text {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: capitalize;
    white-space: nowrap;
    position: relative;
	font-family: var(--heading-font) !important;
}

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

.btn-growth .bi-send {
    display: none !important;
}



/* Removed chat button hover effect since button is hidden */

/* 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;
    }
    
    
}

@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;
    }
    
    
}

/* Service Box Main Styles */
.service_box_main {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.06);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service_box_main:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 54, 93, 0.15);
    border-color: rgba(49, 130, 206, 0.2);
}

.service_box_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service_box_main:hover::before {
    transform: scaleX(1);
}

/* Elementor Image Box Wrapper */
.service_box_main .elementor-image-box-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Service Image Styling */
.service_box_main .elementor-image-box-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service_box_main .elementor-image-box-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 12px 12px 0 0;
}

.service_box_main:hover .elementor-image-box-img img {
    transform: scale(1.05);
}

.service_box_main .elementor-image-box-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(49, 130, 206, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.service_box_main:hover .elementor-image-box-img::after {
    opacity: 1;
}

/* Service Content Styling */
.service_box_main .elementor-image-box-content {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
}

.service_box_main .elementor-image-box-title {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    font-family: var(--heading-font);
    transition: color 0.3s ease;
}

.service_box_main:hover .elementor-image-box-title {
    color: var(--accent-color);
}

.service_box_main .elementor-image-box-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service_box_main .elementor-image-box-title a:hover {
    color: var(--accent-color);
}

.service_box_main .elementor-image-box-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    font-family: var(--body-font);
    font-weight: 400;
    flex: 1;
    opacity: 0.9;
}

/* Service Box Container */
.service_box_main.e-con {
    padding: 0;
    margin: 0;
    background: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service_box_main {
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    .service_box_main .elementor-image-box-img img {
        height: 200px;
    }
    
    .service_box_main .elementor-image-box-content {
        padding: 20px 18px 24px;
    }
    
    .service_box_main .elementor-image-box-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service_box_main .elementor-image-box-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .service_box_main {
        border-radius: 10px;
    }
    
    .service_box_main .elementor-image-box-img img {
        height: 180px;
    }
    
    .service_box_main .elementor-image-box-content {
        padding: 18px 16px 22px;
    }
    
    .service_box_main .elementor-image-box-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .service_box_main .elementor-image-box-description {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Animation for page load */
@keyframes serviceBoxFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_box_main {
    animation: serviceBoxFadeIn 0.6s ease-out;
}

/* Staggered animation for multiple boxes */
.service_box_main:nth-child(1) { animation-delay: 0.1s; }
.service_box_main:nth-child(2) { animation-delay: 0.2s; }
.service_box_main:nth-child(3) { animation-delay: 0.3s; }
.service_box_main:nth-child(4) { animation-delay: 0.4s; }
.service_box_main:nth-child(5) { animation-delay: 0.5s; }
.service_box_main:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced focus states for accessibility */
.service_box_main:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.service_box_main .elementor-image-box-title a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contact Form 7 Submit Button Styles */
.wpcf7-form .button.size-lg.icon_right,
.wpcf7-form button[type="submit"],
.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--heading-font);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.2);
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wpcf7-form .button.size-lg.icon_right:hover,
.wpcf7-form button[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.3);
    color: #ffffff;
}

.wpcf7-form .button.size-lg.icon_right:active,
.wpcf7-form button[type="submit"]:active,
.wpcf7-form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.2);
}

.wpcf7-form .button.size-lg.icon_right:focus,
.wpcf7-form button[type="submit"]:focus,
.wpcf7-form input[type="submit"]:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.2), 0 0 0 2px var(--accent-color);
}

/* Icon styling */
.wpcf7-form .button.size-lg.icon_right i,
.wpcf7-form .button.size-lg.icon_right .fa {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.wpcf7-form .button.size-lg.icon_right:hover i,
.wpcf7-form .button.size-lg.icon_right:hover .fa {
    transform: translateX(4px);
}

/* Loading state */
.wpcf7-form .button.size-lg.icon_right.wpcf7-submit,
.wpcf7-form button[type="submit"].wpcf7-submit,
.wpcf7-form input[type="submit"].wpcf7-submit {
    position: relative;
}

.wpcf7-form .button.size-lg.icon_right.wpcf7-submit:disabled,
.wpcf7-form button[type="submit"].wpcf7-submit:disabled,
.wpcf7-form input[type="submit"].wpcf7-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Ripple effect */
.wpcf7-form .button.size-lg.icon_right::before,
.wpcf7-form button[type="submit"]::before,
.wpcf7-form input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wpcf7-form .button.size-lg.icon_right:active::before,
.wpcf7-form button[type="submit"]:active::before,
.wpcf7-form input[type="submit"]:active::before {
    width: 300px;
    height: 300px;
}

/* Form container styling */
.wpcf7-form .input-group {
    margin: 0;
    padding: 0;
}

.wpcf7-form .input-group p {
    margin: 0;
    text-align: center;
}


.wpcf7-form .input-group {
	display: block !important;
}


/* Responsive design */
@media (max-width: 768px) {
    .wpcf7-form .button.size-lg.icon_right,
    .wpcf7-form button[type="submit"],
    .wpcf7-form input[type="submit"] {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 140px;
        border-radius: 45px;
    }
}

@media (max-width: 576px) {
    .wpcf7-form .button.size-lg.icon_right,
    .wpcf7-form button[type="submit"],
    .wpcf7-form input[type="submit"] {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 120px;
        border-radius: 40px;
        gap: 6px;
    }
    
    .wpcf7-form .button.size-lg.icon_right i,
    .wpcf7-form .button.size-lg.icon_right .fa {
        font-size: 12px;
    }
}

/* Alternative button styles for different contexts */
.wpcf7-form .button.size-lg.icon_right.secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.wpcf7-form .button.size-lg.icon_right.secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #6c757d 100%);
}

.wpcf7-form .button.size-lg.icon_right.success {
    background: linear-gradient(135deg, var(--success-color) 0%, #2d7d32 100%);
}

.wpcf7-form .button.size-lg.icon_right.success:hover {
    background: linear-gradient(135deg, #2d7d32 0%, var(--success-color) 100%);
}

/* Form validation styling */
.wpcf7-form .wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
}

.wpcf7-form .wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.wpcf7-form .wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2) !important;
}

/* WooCommerce Page Styling */
.woocommerce-page .page-content-section {
    padding: 40px 0;
}

.woocommerce-page .page-title-area {
    margin-bottom: 0;
}

/* WooCommerce Page Title Adjustments */
.woocommerce-page .page-title-content .page-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.woocommerce-page .page-title-content .page-description {
    font-size: 16px;
    margin-bottom: 10px;
}

.woocommerce-page .page-title-area {
    padding: 80px 0 50px;
    min-height: 200px;
}

/* Responsive adjustments for WooCommerce page titles */
@media (max-width: 768px) {
    .woocommerce-page .page-title-content .page-title {
        font-size: 28px;
    }
    
    .woocommerce-page .page-title-content .page-description {
        font-size: 14px;
    }
    
    .woocommerce-page .page-title-area {
        padding: 60px 0 40px;
        min-height: 180px;
    }
}

@media (max-width: 576px) {
    .woocommerce-page .page-title-content .page-title {
        font-size: 24px;
    }
    
    .woocommerce-page .page-title-content .page-description {
        font-size: 13px;
    }
    
    .woocommerce-page .page-title-area {
        padding: 50px 0 30px;
        min-height: 160px;
    }
}

/* Specific styling for Cart and Checkout pages */
.woocommerce-cart .page-title-content .page-title,
.woocommerce-checkout .page-title-content .page-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.woocommerce-cart .page-title-content .page-description,
.woocommerce-checkout .page-title-content .page-description {
    font-size: 15px;
    margin-bottom: 8px;
}

.woocommerce-cart .page-title-area,
.woocommerce-checkout .page-title-area {
    padding: 60px 0 40px;
    min-height: 180px;
}

/* Responsive adjustments for Cart and Checkout pages */
@media (max-width: 768px) {
    .woocommerce-cart .page-title-content .page-title,
    .woocommerce-checkout .page-title-content .page-title {
        font-size: 24px;
    }
    
    .woocommerce-cart .page-title-content .page-description,
    .woocommerce-checkout .page-title-content .page-description {
        font-size: 13px;
    }
    
    .woocommerce-cart .page-title-area,
    .woocommerce-checkout .page-title-area {
        padding: 50px 0 30px;
        min-height: 160px;
    }
}

@media (max-width: 576px) {
    .woocommerce-cart .page-title-content .page-title,
    .woocommerce-checkout .page-title-content .page-title {
        font-size: 20px;
    }
    
    .woocommerce-cart .page-title-content .page-description,
    .woocommerce-checkout .page-title-content .page-description {
        font-size: 12px;
    }
    
    .woocommerce-cart .page-title-area,
    .woocommerce-checkout .page-title-area {
        padding: 40px 0 25px;
        min-height: 140px;
    }
}

/* WooCommerce Shop Page */
.woocommerce-shop .woocommerce-result-count {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.woocommerce-shop .woocommerce-ordering {
    margin-bottom: 20px;
}

.woocommerce-shop .woocommerce-ordering select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: #ffffff;
    font-size: 14px;
    color: var(--text-color);
}

/* WooCommerce Product Grid */
.woocommerce ul.products {
    display:inline-block;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.06);
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.15);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 16px 0 8px;
    padding: 0 16px;
    font-family: var(--heading-font);
}

.woocommerce ul.products li.product .price {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 16px 16px;
    font-family: var(--heading-font);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    text-decoration: none;
    color: inherit;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__link img {
    transform: scale(1.05);
}

/* WooCommerce Single Product */
.woocommerce div.product {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
    margin-bottom: 30px;
}

.woocommerce div.product .product_title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.woocommerce div.product .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 24px;
}

/* WooCommerce Cart */
.woocommerce-cart .woocommerce-cart-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
    margin-bottom: 30px;
}

.woocommerce-cart .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-cart .shop_table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.woocommerce-cart .cart-collaterals {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
}

.woocommerce-cart .cart-collaterals h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

/* WooCommerce Checkout */
.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
    margin-top: 30px;
}

.woocommerce-checkout .woocommerce-checkout-review-order h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.woocommerce-checkout .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.woocommerce-checkout .shop_table th,
.woocommerce-checkout .shop_table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-checkout .shop_table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

/* WooCommerce My Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
    margin-bottom: 30px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--primary-color);
    color: #ffffff;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.08);
}

/* WooCommerce Forms */
.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(49, 130, 206, 0.2);
}

/* WooCommerce Buttons */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--heading-font);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(135deg, #3182ce 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
    color: #ffffff;
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: linear-gradient(135deg, #3182ce 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .woocommerce div.product,
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals,
    .woocommerce-checkout .woocommerce-checkout-review-order,
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px;
    }
    
    .woocommerce div.product .product_title {
        font-size: 24px;
    }
    
    .woocommerce div.product .price {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .woocommerce div.product,
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals,
    .woocommerce-checkout .woocommerce-checkout-review-order,
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 16px;
    }
    
    .woocommerce div.product .product_title {
        font-size: 20px;
    }
    
    .woocommerce div.product .price {
        font-size: 18px;
    }
}

/* Header Cart Icon Styling */
.header-cart-icon {
    display: inline-block;
    margin-left: 15px;
    vertical-align: middle;
}

.header-cart-icon .cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.header-cart-icon .cart-link:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.header-cart-icon .cart-link i {
    font-size: 18px;
    margin-right: 6px;
}

.header-cart-icon .cart-count {
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.header-cart-icon .cart-link:hover .cart-count {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Cart icon when cart is empty */
.header-cart-icon .cart-count:empty {
    display: none;
}

/* Responsive design for cart icon */
@media (max-width: 768px) {
    .header-cart-icon {
        margin-left: 10px;
    }
    
    .header-cart-icon .cart-link {
        font-size: 14px;
    }
    
    .header-cart-icon .cart-link i {
        font-size: 16px;
        margin-right: 4px;
    }
    
    .header-cart-icon .cart-count {
        font-size: 11px;
        padding: 1px 5px;
        min-width: 16px;
        height: 16px;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 576px) {
    .header-cart-icon {
        margin-left: 8px;
    }
    
    .header-cart-icon .cart-link {
        font-size: 13px;
    }
    
    .header-cart-icon .cart-link i {
        font-size: 15px;
        margin-right: 3px;
    }
    
    .header-cart-icon .cart-count {
        font-size: 10px;
        padding: 1px 4px;
        min-width: 14px;
        height: 14px;
        top: -5px;
        right: -5px;
    }
}

/* Cart icon animation when items are added */
@keyframes cartBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.header-cart-icon .cart-link.cart-updated {
    animation: cartBounce 0.6s ease-in-out;
}

/* Cart icon pulse effect for new items */
@keyframes cartPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.header-cart-icon .cart-count.cart-pulse {
    animation: cartPulse 1s ease-out;
}

  