
 
        :root {
            --primary-color: #d12422;
            --primary-dark: #a81c1a;
            --secondary-color: #FF9800;
            --light-color: #F5F5F5;
            --dark-color: #333333;
            --text-color: #555555;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-color);
        }
        
        .bg-primary-custom {
            background-color: var(--primary-color);
        }
        
        .text-primary-custom {
            color: var(--primary-color);
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
        }
        
        .btn-secondary-custom:hover {
            background-color: #F57C00;
            border-color: #F57C00;
        }
        
        .hero-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1453&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .meal-card {
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            
        }
        
        .meal-card:hover {
            transform: translateY(-10px);
        }
        
        .meal-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .meal-card .card-body {
            background-color: white;
        }
        
        .meal-card .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--secondary-color);
        }
        
        .testimonial-card {
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
        }
        
        .nutrition-facts {
            background-color: var(--light-color);
            border-radius: 10px;
            padding: 20px;
        }
        
        .nutrition-item {
            margin-bottom: 15px;
        }
        
        .nutrition-item .progress {
            height: 8px;
        }
        
        .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
		h2.display-5.fw-bold.mb-4 {
    color: #fff;
}
section#contact {
    background-color: #fdf8f8;
}
section.py-5.bg-light {
    background-color: #ffecec !important;
}
.about-health-eating {
    background-color: #cd4645;
}
.class-w{
color:#ffffff;
}
   
        
        /* New Hero Slider Styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 100vh;
            min-height: 600px;
        }
        
        .carousel-item {
            height: 100vh;
            min-height: 600px;
            background-size: cover;
            background-position: center;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
        }
        
        .carousel-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(209, 36, 34, 0.8);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            margin: 0 20px;
        }
        
        .carousel-control-prev-icon, 
        .carousel-control-next-icon {
            width: 1.5rem;
            height: 1.5rem;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(209, 36, 34, 0.5);
            margin: 0 5px;
        }
        
        .carousel-indicators .active {
            background-color: var(--primary-color);
        }
         .transformations-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .transformation-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 0 15px;
            transition: transform 0.3s ease;
        }
        
        .transformation-card:hover {
            transform: translateY(-5px);
        }
        
        .comparison-container {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .before-image, .after-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-row {
            display: flex;
            width: 200%;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
         .image-col {
        width: 50%;
        height: 100%;   /* Add this */
        position: relative;
   }
        
        .compare-label {
            position: absolute;
            bottom: 10px;
            padding: 5px 15px;
            background: rgba(0,0,0,0.7);
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            z-index: 10;
        }
        
        .before-label {
            left: 10px;
        }
        
        .after-label {
            right: 10px;
        }
        
        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            z-index: 10;
            cursor: pointer;
        }
        
        .slider-prev {
            left: -20px;
        }
        
        .slider-next {
            right: -20px;
        }
        
        .client-info {
            padding: 20px;
            text-align: center;
        }
        
        .client-name {
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .client-stats {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .weight-loss {
            color: #28a745;
            font-weight: bold;
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
        }
		
		 :root {
            --primary-color: #d12422;
            --primary-dark: #a81c1a;
            --light-gray: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .bg-primary-custom {
            background-color: var(--primary-color);
        }
        
        .text-primary-custom {
            color: var(--primary-color);
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .testimonial-card {
            border-left: 4px solid var(--primary-color);
        }
        
        .navbar {
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .about-me-img {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }