/*
Theme Name: fitness4business
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mytheme
*/

/* ============================
   GLOBAL STYLES
============================ */
:root{
	--primary-color				: #FFFFFF;
	--secondary-color			: #202737;
	--text-color				: #F2F2F2;
	--accent-color				: #D7FB00;
	--accent-secondary-color	: #171E2E;
	--divider-color				: #FFFFFF24;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Rubik", sans-serif;
	--accent-font				: "Rajdhani", sans-serif;
    --lime-color: #a7f300;
            --dark-card-color: #1a1a1a;
            --info-color: #0dcaf0; /* Bootstrap info */
            --pink-color: #ff69b4; /* Custom pink for afternoon */
            --warning-color: #ffc107; /* Bootstrap warning for evening */
}

*{
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6,p,ul,li,span{
	font-family: "Rajdhani", sans-serif;
}
p{
	font-weight: 500;
}
 .bg-lime { background-color: var(--lime-color) !important; }
        .text-lime { color: var(--lime-color) !important; }
        .btn-lime {
            background-color: var(--lime-color);
            color: #000;
            border: none;
        }
        .btn-lime:hover {
            background-color: #92d900;
            color: #000;
        }
        .text-pink { color: var(--pink-color) !important; }
        
        /* Modal Styles */
        .form-step {
            display: none;
        }
        .form-step.active {
            display: block;
        }
        .service-category {
            background-color: #333;
        }
        .border-light-grey {
            border-color: #eee !important;
        }

        /* --- Custom CSS for the Booking Calendar (Step 2) --- */
        .calendar-booking-widget {
            border: 1px solid #ddd;
            padding: 15px;
            background-color: #f9f9f9;
        }
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr); /* 7 columns for 7 days */
            gap: 1px;
            border: 1px solid #ddd;
            background-color: #ddd; /* Grid lines background color */
        }

        .day-header {
            background-color: #f8f8f8;
            text-align: center;
            padding: 8px 0;
            font-size: 0.8rem;
            font-weight: 600;
            color: #666;
        }

        .day-cell {
            background-color: #fff;
            height: 60px; /* Adjust height as needed */
            padding: 5px;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            color: #333;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            position: relative;
            user-select: none; /* Prevent text selection */
            transition: background-color 0.2s;
        }

        .empty-cell {
            background-color: #f2f2f2;
            cursor: default;
        }

        /* Past dates (non-selectable) */
        .past-date {
            color: #ccc;
            cursor: default;
            background-color: #fafafa;
        }
        .past-date.has-availability:hover {
            background-color: #fafafa; /* Keep hover off past dates */
            box-shadow: none;
        }
        
        /* Days with slots available */
        .has-availability:hover {
            background-color: #e6ffe6; /* Light green hover for available days */
            box-shadow: inset 0 0 0 2px var(--lime-color); /* Lime border */
        }
        .no-availability {
            cursor: default;
        }
        
        /* Selected date */
        .day-cell.selected-date {
            background-color: var(--lime-color); /* Lime background */
            color: #000;
            font-weight: bold;
        }

        /* Availability dots styling for spacing */
        .availability-dot {
            font-size: 0.5rem;
            margin: 0 1px;
        }
        /* Style for the legend dots in the header */
        .text-info { color: var(--info-color) !important; }
        .text-pink { color: var(--pink-color) !important; }
        .text-warning { color: var(--warning-color) !important; }
.section-title h1 span, .section-title h2 span {
    color: var(--accent-color);
}
.section-title,.hero-counter-item{
    color: white;
     font-family: "Rajdhani", sans-serif;
}
.text-lime{
	color: var(--accent-color);
}
.section-title h1{
    font-style: uppercase;
    text-transform: uppercase;
    font-size: 65px;
    font-weight: 800;
}
.hero-counter-box{
    color: white;
}
.serviceimg{
	width: 100%;
	height: 400px !important;
	object-fit: cover;
}

.header-btn a,.btn-default{
        text-decoration: none;
    background: #d7fb00;
    color: black;
    font-weight: 700;
    padding: 10px 20px 10px 20px;
    font-family: "Rajdhani", sans-serif;
}
.btn-highlighted{
   text-decoration: none;
    border: 1px solid #d7fb00;
    color: #d7fb00;
    background-color: transparent !important;
    font-weight: 700;
    padding: 10px 20px 10px 20px; 
}
/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--secondary-color);
	border-bottom: 1px solid var(--divider-color);
}

.navbar{
	padding: 30px 0;
	align-items: center;
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: center;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	padding: 17px 15px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: var(--accent-color);
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--accent-secondary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}


.slicknav_btn{
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--accent-secondary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--accent-secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--accent-secondary-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: var(--accent-secondary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--accent-secondary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('./img/hero-bg-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 160px 0 50px;
	z-index: 1;
}

.hero::before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: url('./img/section-bg-circle-shape.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero .container{
	position: relative;
	z-index: 2;
}

.hero.hero-bg-image{
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 200px 0 120px;
}

.hero.hero-bg-image::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-secondary-color);
    opacity: 65%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide{
	position: relative;
    padding: 200px 0 120px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-secondary-color);
    opacity: 65%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-content{
	position: relative;
	z-index: 2;
}

.hero-content .section-title{
	margin-bottom: 60px;
	padding-top: 0;
}

.hero-content .section-title p{
	position: relative;
	padding: 5px 0 5px 20px;
}

.hero-content .section-title p::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 10px;
    height: 100%;
    width: 4px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.hero-counter-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}

.hero-counter-item{
	width: calc(33.33% - 20px);
}

.hero-counter-item h3{
	font-size: 30px;
	margin-bottom: 5px;
}

.hero-counter-item p{
	text-transform: capitalize;
	margin: 0;
}

.hero-btn{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.hero-image{
	position: relative;
	margin-bottom: -50px;
}

.hero-img img{
	width: 100%;
	aspect-ratio: 1 / 1.1323;
	object-fit: cover;
}

.expertise-circle{
	position: absolute;
	right: 0;
	top: 50px;
}

.expertise-circle img{
	width: 100%;
	max-width: 142px;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker{
	position: relative;
	background: var(--accent-color);
	padding: 25px 0;
	z-index: 1;
}

.scrolling-ticker-box{
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 40s linear infinite;
}

.scrolling-content span{
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2em;
	text-transform: uppercase;
	color: var(--accent-secondary-color);
	vertical-align: middle;
}

.scrolling-content span img{
	width: 100%;
	max-width: 30px;
	margin-right: 20px;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}
.bg-black {
    background-color: #000 !important;
}

.bg-lime {
    background-color: var(--accent-color) !important;
}

.text-lime {
    color: var(--accent-color) !important;
}

/* Base styles for the section */
.about-section {
    font-family: var(--font-family-primary);
}

/* Image Column Styles */
.hero-image-col {
    min-height: 500px; /* Adjust as needed for smaller screens */
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 20+ Training Programs Box Styling */
.program-box {
    top: 50px; /* Adjust position */
    left: 50px; /* Adjust position */
    z-index: 10;
    line-height: 1; /* For tight number spacing */
}

.program-box h2 {
    font-size: 3.5rem; /* Large number size */
}

.call-box {
    bottom: 5%;
    left: 0;
    z-index: 10;
    min-width: 280px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%) !important;
    padding-left: 20px !important;
    padding-right: 40px !important;
    background: #d7fb00 !important;
    color: black;
    /* margin-top: -75px; */
}
.call-box .fa-phone {
    /* Using a check circle icon from Font Awesome 6 */
    color: #000;
}

/* Content Column Styles - "ABOUT US" divider line */
.divider-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 3px;
}

/* List Item Icons */
.list-unstyled li i {
    font-size: 1rem;
}

/* Section Header Styles */
.team-section {
    font-family: var(--font-family-primary);
}

.team-section .divider-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 3px;
}

/* Team Member Card Styling */
.member-image-wrapper {
    /* Ensure the image container has a definite size for the overlay */
    height: 400px; /* Adjust height as needed, or remove for auto-sizing */
}

.member-image-wrapper img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
}

/* Social Overlay Styling (Crucial for the effect) */
.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.4s ease-in-out;
}

/* Social Icon Styling */
.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1rem;
    /* Create the angled/offset effect by moving icons from the left */
    transform: translateX(-100%); 
    transition: transform 0.4s ease-in-out;
}

/* Hover Effect: Show overlay and slide icons in */
.team-member-card:hover .social-overlay {
    opacity: 1; /* Make overlay visible */
}

.team-member-card:hover .social-overlay .social-icon {
    transform: translateX(0); /* Slide icons back into view */
}

.team-member-card:hover .social-overlay .social-icon:nth-child(2) {
    transition-delay: 0.1s; /* Stagger the icon animation */
}

.team-member-card:hover .social-overlay .social-icon:nth-child(3) {
    transition-delay: 0.2s;
}

.team-member-card:hover .social-overlay .social-icon:nth-child(4) {
    transition-delay: 0.3s;
}

/* Testimonials Section Specific Styles */
.testimonials-section {
    font-family: var(--font-family-primary);
}

.testimonials-section .divider-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 3px;
}

.testimonial-card {
    background-color: #1a1a1a; /* Darker grey for the card */
    border-radius: 0; /* Sharp edges as per design */
    min-height: 400px; /* Adjust as needed for consistent card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes avatar to bottom */
}

.quote-icon {
    font-size: 3rem; /* Large quote icon */
    line-height: 1; /* Keep icon compact */
}

.star-rating .fa-star {
    font-size: 1.2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--accent-color); /* Lime border for avatars */
}
.blck{
	background-color: #000;
}
/* Owl Carousel Custom Navigation & Dots */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px; /* Space between carousel and dots */
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 7px;
    background: #444; /* Darker grey for inactive dots */
    border: none;
    transition: background-color 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--accent-color); /* Lime for active/hover dots */
}

/* Ensure font awesome stars and quotes are visible */
.fa-star, .fa-quote-left {
    display: inline-block; /* Ensure icons display correctly */
}
/* CTA Section Styling */
.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: var(--font-family-primary);
    position: relative;
}

/* Dark Overlay to make text legible */
.cta-overlay {
    background-color: rgba(0, 0, 0, 0.75); /* Darker overlay for high contrast */
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Section Header Styles (Same as previous sections) */
.cta-section .divider-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--lime-color);
    margin-bottom: 3px;
}

/* Ensure the main heading is bold and responsive */
.cta-section h2 {
    font-size: 3rem;
}

/* Button style consistency */
.btn.bg-lime {
    transition: background-color 0.3s;
}

.btn.bg-lime:hover {
    background-color: #c7ff4d !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .cta-overlay {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.pricing-card {
    min-height: 100%; /* Ensures cards are the same height */
    display: flex;
    flex-direction: column;
}

.feature-list li {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 1.05rem;
}

.feature-list i {
    font-size: 1.1rem;
}

.bg-black-input {
    background-color: #0d0d0d !important; /* Slightly lighter than pure black */
    border-color: #333 !important;
}
.bmi-form .form-control, .bmi-form .form-select {
    padding: 1rem 1rem;
    height: auto;
}
.bmi-form .form-select {
    /* To make the text color of the select box white */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-color: #0d0d0d !important;
}
.bmi-form .gender-btn {
    border-color: #333 !important;
    background-color: #0d0d0d !important;
}
.bmi-form .gender-btn.active {
    background-color: var(--lime-color) !important;
    color: #000 !important;
    border-color: var(--lime-color) !important;
}

.bmi-image-col {
    height: 700px; /* Set a height for the image column */
    overflow: hidden;
}

.bmi-image-col img {
    width: 100%;
    z-index: 2;
    position: absolute;
    height: 100%;
    object-position: 75% 50%; /* Adjust image position to show people better */
}

.lime-slanted-bg {
    width: 120%; /* Makes the slash wider */
    left: 20%; /* Pushes the slash partially behind the form */
    z-index: 1;
    /* Create a right-to-left downward slash */
    transform: skewX(-15deg); 
}

.post-image-lg img {
    height: 400px;
    object-fit: cover;
}

.small-post-image {
    width: 150px;
    height: 120px;
    overflow: hidden;
}

.small-post-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.small-post h5 {
    font-size: 1.15rem;
}
.small-post .read-more {
    font-size: 0.9rem;
}

/* Ensure blog image columns look good on different screens */
@media (max-width: 991px) {
    .post-image-lg img {
        height: 300px;
    }
}
@media (max-width: 767px) {
    .small-post-image {
        width: 100px;
        height: 80px;
    }
    .small-post h5 {
        font-size: 1rem;
    }
}
.feed-item {
    overflow: hidden;
}

.feed-item img {
    height: 400px; /* Set a fixed height for consistency */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
}

/* Overlay for the Instagram Icon */
.overlay-icon {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease-in-out;
    text-decoration: none;
}

/* Hover Effect: Darken image and show icon */
.feed-item:hover .overlay-icon {
    opacity: 1;
}

.feed-item:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Style for the specific lime-colored icon */
.instagram-lime-icon {
    background-color: rgba(167, 243, 0, 0.4); /* Light-lime overlay */
}

.footer-section {
    font-family: var(--font-family-primary);
    background-color: #000 !important;
}

.footer-title {
    position: relative;
    padding-bottom: 10px; /* Space for the underline */
    letter-spacing: 1px;
}

/* Lime underline for titles */
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--lime-color);
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    line-height: 2.2;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: var(--lime-color);
}

/* Social Icon Styling */
.bg-lime-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #1a1a1a; /* Dark background */
    border: 1px solid #1a1a1a;
    color: var(--lime-color) !important;
    transition: border-color 0.3s, background-color 0.3s;
}

.bg-lime-circle:hover {
    border-color: var(--lime-color);
    background-color: transparent;
}

/* Copyright Bar Border */
.border-top-lime {
    border-top: 1px solid var(--lime-color);
}

/* Responsive adjustment for footer titles on small screens */
@media (max-width: 991px) {
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .col-md-4 .footer-title,
    .col-lg-2 .footer-title,
    .col-lg-3 .footer-title {
        text-align: center;
    }
    .footer-links {
        text-align: center;
    }
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    .contact-item i {
        margin-top: 0 !important;
    }
    .col-lg-4.col-md-12 {
        text-align: center;
    }
    .footer-social-icons {
        text-align: center;
    }
}

.bg-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.font-1{
    font-size: 64px;
    text-transform: uppercase;
    font-weight: bold;
}

.breadcrumb {
    align-items: center;
    font-family: var(--font-1);
    font-weight: bold;
    text-transform: uppercase;
}

.breadcrumb .breadcrumb-item>a {
    color: var(--accent-color);
    font-family: var(--font-1);
    font-size: 18px;
    text-decoration: none;
}
/* Custom utility for the bright green color */
:root {
    --lime-color: #5cb85c; /* Using a professional green for the form */
    --dark-grey: #667e66;
}

/* Modal and Step Styling */
.multistep-modal-content {
    background-color: #f7f7f7; /* Light grey background for the modal body */
    border-radius: 0.5rem;
}

.form-step {
    display: none; /* Hide all steps by default */
    animation: fadeIn 0.4s;
}

.form-step.active {
    display: block; /* Only show the active step */
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}


.border-light-grey {
    border-color: #ddd !important;
}

.btn-lime {
    background-color: var(--lime-color) !important;
    color: #fff !important;
    border: none;
    transition: background-color 0.3s;
}

.btn-lime:hover {
    background-color: #4cae4c !important;
}

/* Step 2: Calendar Grid Styles (Adjusted for the provided step content) */
.calendar-booking-widget {
    /* No max-width needed here as it's inside the modal-body */
    margin: 0 auto;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #f0f0f0;
}

.day-header {
    background-color: #e9e9e9;
    font-weight: bold;
    padding: 10px 5px;
    font-size: 0.85rem;
    color: #444;
}

.day-cell {
    background-color: #fff;
    padding: 12px 5px;
    cursor: pointer;
    border: 1px solid #eee;
    font-weight: 500;
    position: relative;
    min-height: 40px; 
    transition: background-color 0.2s;
}

.day-cell.empty-cell {
    background-color: #f7f7f7;
    cursor: default;
    border: none;
}

.day-cell:not(.empty-cell):hover {
    background-color: #e6f7e6;
}

.day-number {
    font-weight: bold;
    color: #444;
}

/* Legend Colors (Placeholder colors for the time slots) */
.text-info { color: #007bff !important; }
.text-pink { color: #e83e8c !important; }
.text-warning { color: #ffc107 !important; }

/* Step 3: Client Details Form */
.form-step[data-step="3"] .form-control, 
.form-step[data-step="3"] .form-select {
    border: 1px solid #ddd;
    background-color: #fff;
}

/* Mobile menu container */
.mobile-menu {
    position: fixed;
    left: -260px;
    top: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.3s ease;
    box-shadow: 3px 0 8px rgba(0,0,0,0.15);
    padding-bottom: 40px;
}

/* When opened */
.mobile-menu.open {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    display: none;
}
.menu-overlay.show {
    display: block;
}

/* Header */
.mobile-menu-header {
    padding: 15px;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.close-menu {
    background: none;
    border: 0;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Menu items */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-list a {
    display: block;
    padding: 12px 18px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.mobile-menu-list .submenu > ul {
    display: none;
    background: #f7f7f7;
}

.mobile-menu-list .submenu.open > ul {
    display: block;
}

.mobile-menu-list .submenu > a::after {
    content: "▼";
    float: right;
    font-size: 12px;
    margin-top: 4px;
}
