   :root {
            --golden-glow: #F9C536;
            --golden-glow-dark: #e0b42d;
            --white: #FFFFFF;
            --black: #000000;
            --green: #526233;
            --green-light: #6a7d45;
            --maroon: #741332;
            --maroon-light: #8c1a3e;
            --red: #C33E2E;
            --red-light: #d95545;
            --section-padding: 100px 0;
            --section-padding-md: 80px 0;
            --section-padding-sm: 60px 0;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--black);
            line-height: 1.7;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            padding: var(--section-padding);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, rgba(249, 197, 54, 0.1), transparent);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--golden-glow);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease-out;
        }
        
        .hero .lead {
            font-size: 1.5rem;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out 0.3s both;
        }
        
        .hero p {
            animation: fadeIn 1s ease-out 0.5s both;
            max-width: 600px;
        }
        
        .hero-image {
            animation: fadeInRight 1s ease-out 0.7s both;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }
        
        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        
        /* Brand Colors */
        .bg-golden { background-color: var(--golden-glow); }
        .bg-green { background-color: var(--green); }
        .bg-maroon { background-color: var(--maroon); }
        .bg-red { background-color: var(--red); }
        
        .text-golden { color: var(--golden-glow); }
        .text-green { color: var(--green); }
        .text-maroon { color: var(--maroon); }
        .text-red { color: var(--red); }
        
        /* Buttons */
        .btn {
            font-weight: 600;
            border-radius: 50px;
            padding: 12px 30px;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background-color: var(--maroon);
            border-color: var(--maroon);
            box-shadow: 0 5px 15px rgba(116, 19, 50, 0.3);
        }
        
        .btn-primary:hover {
            background-color: var(--maroon-light);
            border-color: var(--maroon-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(116, 19, 50, 0.4);
        }
        
        .btn-primary:active {
            transform: translateY(1px);
        }
        
        .btn-secondary {
            background-color: var(--golden-glow);
            border-color: var(--golden-glow);
            color: var(--black);
            box-shadow: 0 5px 15px rgba(249, 197, 54, 0.3);
        }
        
        .btn-secondary:hover {
            background-color: var(--golden-glow-dark);
            border-color: var(--golden-glow-dark);
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(249, 197, 54, 0.4);
        }
        
        /* Navigation */
        .navbar {
            padding: 20px 0;
            transition: all 0.4s ease;
            color: #000 !important;
            background: linear-gradient(to bottom, rgba(255, 255, 255), transparent);
        }
        
        .navbar.scrolled {
            background-color: rgb(255, 255, 255) !important;
            color: #000 !important;
            padding: 10px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        
        
        .navbar-brand img {
            height: 70px;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 70px;
        }
        
        .nav-link {
            color: var(--black) ;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--golden-glow);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Services Section */
        .service-card {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: none;
            background-color: var(--white);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(249, 197, 54, 0.1), transparent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card .card-body {
            padding: 30px;
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--maroon);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1);
            color: var(--red);
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            border-top: 5px solid var(--golden-glow);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(249, 197, 54, 0.1);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--maroon);
        }
        
        /* How It Works */
        .step-card {
            text-align: center;
            padding: 40px 30px;
            margin-bottom: 30px;
            border-radius: 15px;
            background-color: rgba(249, 197, 54, 0.05);
            transition: all 0.4s ease;
            border: 1px solid rgba(249, 197, 54, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(249, 197, 54, 0.1);
            background-color: rgba(249, 197, 54, 0.08);
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background-color: var(--golden-glow);
            color: var(--black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(249, 197, 54, 0.3);
        }
        
        .step-card:hover .step-number {
            transform: scale(1.1);
            background-color: var(--maroon);
            color: var(--white);
        }
        
        /* Contact Form */
        .contact-form {
            background-color: rgba(116, 19, 50, 0.03);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(116, 19, 50, 0.1);
            transition: all 0.4s ease;
        }
        
        .contact-form:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--maroon);
            box-shadow: 0 0 0 0.25rem rgba(116, 19, 50, 0.1);
        }
        
        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: none;
            animation: pulse 2s infinite;
        }
        
        .floating-cta a {
            box-shadow: 0 10px 30px rgba(116, 19, 50, 0.3);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--black), #1a1a1a);
            color: var(--white);
            padding: 80px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: linear-gradient(to right, var(--maroon), var(--golden-glow));
        }
        
        .footer-logo img {
            height: 60px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .footer-logo img:hover {
            transform: scale(1.05);
        }
        
        .social-icons a {
            color: var(--white);
            font-size: 1.3rem;
            margin-right: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--golden-glow);
            transform: translateY(-3px);
        }
        
        .footer-links a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 8px;
        }
        
        .footer-links a:hover {
            color: var(--golden-glow);
            transform: translateX(5px);
        }
        
        /* Section Styling */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--maroon), var(--golden-glow));
        }
        
        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .animate-delay-1 { animation-delay: 0.2s; }
        .animate-delay-2 { animation-delay: 0.4s; }
        .animate-delay-3 { animation-delay: 0.6s; }
        .animate-delay-4 { animation-delay: 0.8s; }
        
        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            :root {
                --section-padding: 80px 0;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 991.98px) {
            :root {
                --section-padding: 70px 0;
                --section-padding-md: 60px 0;
            }
            
            .hero {
                padding: var(--section-padding-md);
                text-align: center;
                background-attachment: scroll;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.3rem;
                margin: 0 auto 25px;
            }
            
            .hero p {
                margin: 0 auto 30px;
            }
            
            .hero-image {
                margin-top: 40px;
                transform: perspective(1000px) rotateY(0deg);
            }
            
            .floating-cta {
                display: block;
            }
        }
        
        @media (max-width: 767.98px) {
            :root {
                --section-padding: 60px 0;
                --section-padding-sm: 50px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero .lead {
                font-size: 1.2rem;
            }
            
            .navbar-brand img {
                height: 40px;
            }
            
            .section-title {
                margin-bottom: 20px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 575.98px) {
            :root {
                --section-padding: 50px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .floating-cta {
                bottom: 20px;
                right: 20px;
            }
        }
     /* Slider container */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

/* Track holds all cards in a row */
.slider-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}

/* Testimonial card default */
.testimonial-card {
  box-sizing: border-box;
  border-top: 4px solid #526233 !important;
  padding: 10px;
  background: #fff;
  border: 1px solid #a52a2a26;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 220px;
 margin: 3px;
  min-height: 160px;
  text-align: center;
  flex: 0 0 100%; /* Default mobile: 1 card visible */
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  color: #a52a2a;
  border: 1px solid #a52a2a26;
  border-radius: 50%;
  padding: 5px 12px;
  cursor: pointer;
  z-index: 10;
}

.prev-btn {
  left: 5px;
}

.next-btn {
  right: 5px;
}

/* Tablet: 2 cards visible */
@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 50%;
    text-align: center;
  }
}

/* Desktop: 3 cards visible */
@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 32.2222%;
    text-align: center;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .testimonial-card {
    margin: 0;
    text-align: center;
  }
}
