/*!
Theme Name: Litpeaks SME
Theme URI: https://litpeaks.com/
Author: Litpeaks Team
*/

:root {
	--navy: #253746;
	--navy-800: #1d2b38;
	--navy-900: #15202a;
	--burgundy: #ad223e;
	--burgundy-600: #972035;
	--burgundy-700: #801c2d;
}

body {
	font-family: "Inter", sans-serif;
	color: #333;
}

/* Utility Classes */
.bg-navy {
	background-color: var(--navy);
}

.bg-burgundy {
	background-color: var(--burgundy);
}

.text-navy {
	color: var(--navy);
}

.text-burgundy {
	color: var(--burgundy);
}

.btn-primary {
	--bs-btn-active-bg: var(--burgundy) !important;
	--bs-btn-active-border-color: var(--burgundy) !important;
	--bs-btn-color: #fff;
    --bs-btn-bg: var(--burgundy);
    --bs-btn-border-color: var(--burgundy);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--burgundy);
    --bs-btn-hover-border-color: var(--burgundy);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--burgundy);
    --bs-btn-active-border-color: var(--burgundy);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--burgundy);
    --bs-btn-disabled-border-color: var(--burgundy);
}

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

.btn-outline-primary {
	color: var(--burgundy);
	border-color: var(--burgundy);
}

.btn-outline-primary:hover {
	background-color: var(--burgundy);
	border-color: var(--burgundy);
	color: white;
}

/* Header Styles */
.navbar {
	transition: all 0.3s ease;
}

.navbar-scrolled {
	background-color: white !important;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo-box {
	display: flex;
	align-items: center;
	/* flex-wrap: wrap; */
	gap: 0.5rem;
	/* spacing between the SVGs */
	max-width: 100%;
	/* ensures it doesn't exceed parent width */
}

.logo-box svg {
	max-width: 100%;
	height: auto;
	display: block;
}

.logo-text {
	color: white;
	font-weight: bold;
	font-size: 12px;
	position: absolute;
	bottom: 2px;
	left: 2px;
}

.brand-text {
	margin-left: 8px;
	font-size: 20px;
	font-weight: bold;
	color: var(--navy);
}

/* Hero Section */
.hero {
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgba(37, 55, 70, 0.7); */
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-top: 80px;
}

/* Service Cards */
.service-card {
	transition: all 0.3s ease;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-img-container {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.service-img-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.service-img-overlay {
	position: absolute;
	bottom: 10px;
	left: 10px;
	/* right: 0; */
	/* background: linear-gradient(to top, rgba(37, 55, 70, 0.7), transparent); */
	padding: 20px;
}

.service-img-overlay h3 {
	font-size: 16px;
}

.service-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: rgba(173, 34, 62, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--burgundy);
	margin-bottom: 16px;
}

/* Testimonial Cards */
.testimonial-card {
	height: 100%;
	padding: 24px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
	color: #ffc107;
	margin-bottom: 16px;
}

.testimonial-content {
	font-style: italic;
	margin-bottom: 24px;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.testimonial-author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 16px;
}

/* About Section */
.about-image {
	position: relative;
	border-radius: 8px;
	/* overflow: hidden; */
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.about-image::before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: -24px;
	width: 50%;
	height: 50%;
	background-color: var(--burgundy);
	z-index: -1;
	border-radius: 8px;
}

.about-image::after {
	content: "";
	position: absolute;
	top: -24px;
	right: -24px;
	width: 33%;
	height: 33%;
	border: 4px solid var(--navy);
	z-index: -1;
	border-radius: 8px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 14px;
}

.feature-icon {
	color: var(--burgundy);
	margin-right: 12px;
	flex-shrink: 0;
}

/* Contact Section */
.contact-card {
	padding: 10px 16px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	height: 100%;
	color: #253746;
	height: 150px;
}

.contact-card h4 {
	font-size: 16px;
}

.contact-card p {
	font-size: 13px;
}

.contact-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgba(173, 34, 62, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--burgundy);
	margin-bottom: 16px;
}

/* Footer */
footer {
	background-color: var(--navy);
	color: white;
}

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

footer a:hover {
	color: var(--burgundy);
	text-decoration: none;
}

.footer-heading {
	color: white;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
}

.footer-social a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	margin-right: 8px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background-color: var(--burgundy);
	color: white;
}

.footer-expertise {
	color: #cbcfd5;
}

/* Section Heading */
.section-heading {
	position: relative;
	/* margin-bottom: 48px; */
}

.section-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 80px;
	height: 4px;
	background-color: var(--burgundy);
	border-radius: 2px;
}

.section-heading.text-center::after {
	left: 50%;
	transform: translateX(-50%);
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
	opacity: 1;
	transform: translateY(0);
}

.delay-1 {
	transition-delay: 0.2s;
}

.delay-2 {
	transition-delay: 0.4s;
}

.delay-3 {
	transition-delay: 0.6s;
}

.nav-link {
	color: #253746;
	font-weight: 600;
}

.ContactForm p{
	margin-bottom: 0;
}

.img-wrapper{
	position: relative;
	height: 235px;
	overflow: hidden;
}

.wpcf7 form .wpcf7-response-output{
    margin: 0 !important;
}

@media (max-width: 575px){
    .section-heading::after{
        bottom: -80px !important;
    }
}

.gallery_page{
    padding-top: 120px;
}