
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-pink: #fb7282;
	--primary-purple: #99516c;
	--accent-gold: #d4af37;
	--light-pink: #fff5f6;
	--light-purple: #f9f2f5;
	--dark-text: #2a2a2a;
	--light-text: #666;
	--white: #fff;
	--transition: all .4s cubic-bezier(.175, .885, .32, 1.1);
}

body {
	font-family: "Montserrat", sans-serif;
	line-height: 1.6;
	color: var(--dark-text);
	overflow-x: hidden;
	background-color: var(--light-pink);
}

.container {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header & Navigation */
header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background-color: var(--white);
	box-shadow: 0 5px 20px rgba(153, 81, 108, .08);
	transition: var(--transition);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 12px;
	color: white;
	font-size: 1.8rem;
}

.logo-text {
	font-family: "Playfair Display", serif;
	font-weight: 800;
	font-size: 1.8rem;
	color: var(--primary-purple);
}

.logo-text span {
	color: var(--primary-pink);
}

.logo1 {
	width: 70%;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	margin-left: 35px;
}

.nav-menu a {
	text-decoration: none;
	color: var(--dark-text);
	font-weight: 600;
	font-size: 16px;
	position: relative;
	padding: 5px 0;
	transition: var(--transition);
}

.nav-menu a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
	border-radius: 3px;
	transition: width .4s ease;
}

.nav-menu a:hover {
	color: var(--primary-pink);
}

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

.cta-button {
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	color: white;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: .95rem;
	display: inline-flex;
	align-items: center;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(251, 114, 130, .3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(251, 114, 130, .4);
}

.cta-button i {
	margin-right: 8px;
}

.hamburger {
	display: none;
	cursor: pointer;
	font-size: 1.8rem;
	color: var(--primary-purple);
}

/* Hero Section with Background Image */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 100px;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://cdn-ilehdmk.nitrocdn.com/yJDQtKEmuraWtjKyKAwGXlXGNetkzvHn/assets/static/optimized/rev-cb93d00/images.unsplash.com/99950948fbb705dd3c40c89062238808.photo-1563729784474-d77dbb933a9e");
	background-size: cover;
	background-position: center;
	z-index: -2;
}

.hero-bg.nitro-lazy {
	background-image: none !important;
}

.hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .85) 50%, rgba(255, 255, 255, .7) 100%);
	z-index: -1;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.hero-text {
	flex: 1;
	max-width: 650px;
	background: rgba(255, 255, 255, .9);
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
	backdrop-filter: blur(10px);
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
	color: white;
	padding: 8px 20px;
	border-radius: 50px;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 25px;
	letter-spacing: 1px;
}

.hero-title {
	font-family: "Playfair Display", serif;
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 25px;
	color: var(--primary-purple);
}

.hero-title span {
	color: var(--primary-pink);
	position: relative;
}

.hero-title span:after {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 8px;
	background-color: rgba(251, 114, 130, .2);
	z-index: -1;
}

.hero-subtitle {
	font-size: 1.3rem;
	color: var(--light-text);
	margin-bottom: 35px;
	max-width: 550px;
}

.keyword-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}

.keyword {
	background-color: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 600;
	color: var(--primary-purple);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
	border-left: 4px solid var(--primary-pink);
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-secondary {
	background-color: transparent;
	color: var(--primary-purple);
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: .95rem;
	border: 2px solid var(--primary-purple);
	transition: var(--transition);
}

.btn-secondary:hover {
	background-color: var(--primary-purple);
	color: white;
	transform: translateY(-3px);
}

.hero-image {
	flex: 1;
	position: relative;
	max-width: 600px;
}

.hero-img-main {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
	transform: perspective(1000px) rotateY(-5deg);
	transition: var(--transition);
	border: 10px solid white;
}

.hero-image:hover .hero-img-main {
	transform: perspective(1000px) rotateY(0deg);
}

.floating-badge {
	position: absolute;
	background: white;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
	display: flex;
	align-items: center;
	animation: float 3s ease-in-out infinite;
	z-index: 2;
}

.floating-badge.eggless {
	top: 10%;
	left: -30px;
	border-top: 5px solid var(--accent-gold);
}

.floating-badge.delivery {
	bottom: 15%;
	right: -30px;
	border-top: 5px solid var(--primary-pink);
}

.badge-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	margin-right: 15px;
}

.badge-text h4 {
	color: var(--primary-purple);
	margin-bottom: 5px;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-15px);
	}
}

/* About Section */
.section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 70px;
}

.section-title h2 {
	font-family: "Playfair Display", serif;
	font-size: 3.2rem;
	color: var(--primary-purple);
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.section-title h2:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
	border-radius: 2px;
}

.section-title p {
	color: var(--light-text);
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.1rem;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 60px;
}

.about-image {
	position: relative;
}

.about-img-main {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.about-stats {
	display: flex;
	justify-content: space-around;
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
	margin-top: -50px;
	position: relative;
	z-index: 2;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-family: "Playfair Display", serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-purple);
	display: block;
	line-height: 1;
}

.stat-label {
	color: var(--light-text);
	font-size: .95rem;
	margin-top: 8px;
}

.about-text h3 {
	font-size: 2.5rem;
	color: var(--primary-purple);
	margin-bottom: 25px;
	font-family: "Playfair Display", serif;
}

.about-features {
	margin-top: 30px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.3rem;
	margin-right: 20px;
	flex-shrink: 0;
}

.feature-text h4 {
	color: var(--primary-purple);
	margin-bottom: 8px;
}

/* Products Section */
.products {
	background-color: var(--light-purple);
}

.products-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 50px;
}

.filter-btn {
	padding: 12px 28px;
	background-color: white;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	color: var(--primary-purple);
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.filter-btn.active, .filter-btn:hover {
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
	color: white;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.product-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
	transition: var(--transition);
	position: relative;
}

.product-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.product-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--accent-gold);
	color: white;
	padding: 5px 15px;
	border-radius: 50px;
	font-size: .8rem;
	font-weight: 600;
	z-index: 2;
}

.product-img {
	height: 230px;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.product-card:hover .product-img img {
	transform: scale(1.1);
}

.product-info {
	padding: 25px;
}

.product-category {
	color: var(--primary-pink);
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

.product-title {
	font-size: 1.4rem;
	color: var(--primary-purple);
	margin-bottom: 10px;
	font-weight: 700;
}

.product-desc {
	color: var(--light-text);
	margin-bottom: 20px;
	font-size: .95rem;
}

.product-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-price {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-purple);
}

.add-to-cart {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	border-radius: 50%;
	border: none;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.add-to-cart:hover {
	transform: rotate(90deg);
}

/* Improved Testimonial Slider */
.testimonials {
	background-color: var(--light-pink);
	position: relative;
	overflow: hidden;
}

.testimonials:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width=\'100\' height=\'100\' viewBox=\'0 0 100 100\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z\' fill=\'%23fb7282\' fill-opacity=\'0.05\' fill-rule=\'evenodd\'/%3E%3C/svg%3E");
}

.testimonial-slider-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 0 60px;
}

.testimonial-slider-wrapper {
	overflow: hidden;
	border-radius: 25px;
}

.testimonial-slider {
	display: flex;
	transition: var(--transition);
}

.testimonial-slide {
	min-width: 100%;
	padding: 20px;
	box-sizing: border-box;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, .1);
	position: relative;
	overflow: hidden;
}

.testimonial-card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
}

.testimonial-quote {
	position: absolute;
	font-size: 8rem;
	color: rgba(251, 114, 130, .1);
	font-family: "Playfair Display", serif;
	line-height: 1;
}

.quote-left {
	top: 20px;
	left: 30px;
}

.quote-right {
	bottom: 20px;
	right: 30px;
}

.testimonial-rating {
	color: var(--accent-gold);
	font-size: 1.5rem;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.testimonial-text {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--light-text);
	margin-bottom: 40px;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.author-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 20px;
	border: 5px solid var(--light-pink);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
}

.author-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	color: var(--primary-purple);
	margin-bottom: 5px;
	font-size: 1.3rem;
}

.author-info p {
	color: var(--primary-pink);
	font-weight: 600;
	font-size: .95rem;
}

.author-location {
	color: var(--light-text);
	font-size: .9rem;
	display: flex;
	align-items: center;
	margin-top: 5px;
}

.author-location i {
	margin-right: 5px;
	font-size: .8rem;
}

.slider-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 50px;
	gap: 20px;
}

.slider-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: white;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--primary-purple);
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.slider-btn:hover {
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	color: white;
	transform: translateY(-3px);
}

.slider-dots {
	display: flex;
	gap: 10px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
	cursor: pointer;
	transition: var(--transition);
}

.slider-dot.active {
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
	transform: scale(1.3);
}

/* Contact & Delivery */
.contact {
	background: linear-gradient(135deg, var(--primary-purple), #7a3f5a);
	color: white;
	position: relative;
	overflow: hidden;
}

.contact:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 100 100\"><path fill=\"%23ffffff\" opacity=\"0.03\" d=\"M0,0 L100,0 L100,100 Z M0,0 L0,100 L100,100 Z\"/></svg>");
}

.contact-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-info h3 {
	font-family: "Playfair Display", serif;
	font-size: 2.8rem;
	margin-bottom: 25px;
}

.contact-details {
	margin-top: 30px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-right: 20px;
	flex-shrink: 0;
}

.delivery-map {
	flex: 1;
	min-width: 300px;
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
}

.delivery-map h3 {
	color: var(--primary-purple);
	font-size: 2rem;
	margin-bottom: 25px;
	font-family: "Playfair Display", serif;
}

.map-placeholder {
	height: 300px;
	background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--primary-purple);
	font-weight: 600;
}

.map-placeholder i {
	font-size: 3rem;
	margin-bottom: 20px;
	color: var(--primary-pink);
}

.delivery-areas {
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.delivery-area {
	background: var(--light-pink);
	color: var(--primary-purple);
	padding: 8px 15px;
	border-radius: 50px;
	font-size: .9rem;
	font-weight: 600;
}

/* Footer */
footer {
	background-color: #2a2a2a;
	color: white;
	padding: 80px 0 30px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 50px;
	margin-bottom: 60px;
}

.footer-logo {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	font-weight: 800;
	color: white;
	display: inline-block;
	text-decoration: none;
}

.footer-logo img {
	width: 70%;
}

.footer-logo span {
	color: var(--primary-pink);
}

.footer-about p {
	color: #aaa;
	margin-bottom: 25px;
	line-height: 1.8;
}

.footer-title {
	font-size: 1.3rem;
	color: white;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
	transition: var(--transition);
	display: flex;
	align-items: center;
}

.footer-links a:hover {
	color: var(--primary-pink);
	transform: translateX(5px);
}

.footer-links a i {
	margin-right: 10px;
	font-size: .8rem;
}

.footer-contact p {
	color: #aaa;
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.footer-contact i {
	margin-right: 15px;
	color: var(--primary-pink);
	margin-top: 5px;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.social-icons a {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, .05);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	text-decoration: none;
	transition: var(--transition);
}

.social-icons a:hover {
	background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
	transform: translateY(-5px);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: #888;
	font-size: .9rem;
}

.copyright a {
	color: var(--primary-pink);
	text-decoration: none;
}

/* Hide WP Social Chat button only on post ID 2688 */
.postid-2752 #qlwapp {
	display: none !important;
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
	.hero-title {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 992px) {
	.hero-content {
		flex-direction: column;
		text-align: center;
	}
	
	.hero-text {
		max-width: 100%;
		margin-bottom: 60px;
		padding: 40px 30px;
	}
	
	.floating-badge {
		display: none;
	}
	
	.nav-menu {
		position: fixed;
		top: 80px;
		right: -100%;
		width: 300px;
		height: calc(100vh - 80px);
		background-color: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 50px 40px;
		transition: var(--transition);
		box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
	}
	
	.nav-menu.active {
		right: 0;
	}
	
	.nav-menu li {
		margin: 0 0 30px 0;
		width: 100%;
	}
	
	.hamburger {
		display: block;
	}
	
	.cta-button {
		display: none;
	}
	
	.slider-nav {
		margin-top: 0px;
	}
	
	.testimonial-card {
		padding: 40px 30px;
	}
}

@media screen and (max-width: 768px) {
	.hero-title {
		font-size: 2.8rem;
	}
	
	.section-title h2 {
		font-size: 2.5rem;
	}
	
	.about-stats {
		flex-direction: column;
		gap: 25px;
	}
	
	.contact-container {
		flex-direction: column;
	}
	
	.hero-image {
		display: none;
	}
	
	.about-text h3 {
		font-size: 26px;
		margin-top: 20px;
	}
	
	.about-content {
		display: block;
	}
	
	.section-title {
		margin-bottom: 5px;
	}
	
	.footer-links ul {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		column-gap: 20px;
		padding-left: 0px;
	}
	
	.copyright {
		font-size: 12px;
	}
	
	.footer-title:after {
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
	}
	
	.footer-title {
		text-align: center;
	}
	
	.footer-about {
		text-align: center;
		/* Center everything */
		padding: 20px;
	}
	
	.social-icons {
		display: flex;
		justify-content: center;
		/* Center the icons horizontally */
		gap: 15px;
	}
}

@media screen and (max-width: 576px) {
	.hero-title {
		font-size: 2.3rem;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.section {
		padding: 70px 0;
	}
	
	.testimonial-card {
		padding: 30px 20px;
	}
	
	.testimonial-quote {
		font-size: 5rem;
	}
	
	.quote-left {
		top: 10px;
		left: 15px;
	}
	
	.quote-right {
		bottom: 10px;
		right: 15px;
	}
}
