
:root {
    --primary-brown: #8B6F47;
    --light-brown: #A0845C;
    --dark-brown: #6B5537;
    --cream: #F5F1E8;
    --gold: #D4AF37;
    --text-dark: #2C2C2C;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navbar Styling */
.navbar {
    background: #FFFFFF;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-brown) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}



.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 15px;
    padding: 8px 0 !important;
    position: relative;
    font-size: 12px !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-brown) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-brown);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.dropdown-item {
    border: none;
    font-size: 12px !important;
}

.dropdown-item:hover {
    background-color: var(--cream);
    color: var(--primary-brown);
}
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
  }
  
.phone-number {
    color: var(--primary-brown);
    font-weight: 300;
    text-decoration: none;
    margin-left: 20px;
}

.phone-number:hover {
    color: var(--dark-brown);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: #FFEF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%238B6F47" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23A0845C" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-brown);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-appointment {
    background-color: var(--dark-brown);
    color: white;
    padding: 15px 30px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-appointment:hover::before {
    left: 100%;
}

.btn-appointment:hover {
    background-color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.call-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.call-link:hover {
    color: var(--dark-brown);
    text-decoration: underline;
}

/* Hero Images */
.hero-images {
    position: relative;
    height: 600px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}


/* Decorative Elements */
.decorative-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.decorative-element.star1 {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    color: var(--gold);
    animation: twinkle 3s ease-in-out infinite;
}

.decorative-element.star2 {
    top: 60%;
    left: 5%;
    font-size: 1.5rem;
    color: var(--primary-brown);
    animation: twinkle 3s ease-in-out infinite 1s;
}

.decorative-element.star3 {
    top: 30%;
    right: 15%;
    font-size: 1.8rem;
    color: var(--gold);
    animation: twinkle 3s ease-in-out infinite 2s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .phone-number {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-images {
        height: 400px;
        margin-top: 30px;
    }

    .round-image {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .btn-appointment {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

.fade-in.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');




.scrolling-banner-section {
    background: #f5f1e8;
    overflow: hidden;
}

.scrolling-text-container {
    background: #2c2c2c;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-text-marquee {
    display: inline-flex;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-content {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
    padding-right: 50px;
    display: inline-block;
}

/* Continuous marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.scrolling-text-container:hover .scrolling-text-marquee {
    animation-play-state: paused;
}

.award-img {
    width: 100%;
    max-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.award-img:hover {
    transform: scale(1.05);
}

/* Fullscreen image container */
.fullscreen-image {
    display: none;
    /* default hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.fullscreen-image img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: black;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}



/* Section 3: Services Styles */
.services-section {
    background: #f5f1e8;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8b6f47;
    font-weight: 400;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card {
    text-align: center;
    position: relative;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8b6f47;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .badge-circle {
        width: 150px;
        height: 150px;
    }

    .stars {
        font-size: 14px;
    }

    .top-rated {
        font-size: 12px;
    }

    .astrologer {
        font-size: 10px;
    }

    .city {
        font-size: 12px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-appointment-hero {
        padding: 12px 30px;
        font-size: 12px;
    }

    .services-title {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .service-image img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .marquee-content {
        font-size: 10px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .badge-circle {
        width: 120px;
        height: 120px;
    }

    .service-image img {
        height: 200px;
    }
}

/* Animation for awards on scroll */
.award-badge {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.award-badge:nth-child(1) {
    animation-delay: 0.2s;
}

.award-badge:nth-child(2) {
    animation-delay: 0.4s;
}

.award-badge:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service cards animation */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Smooth performance optimizations */
.scrolling-text-marquee {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Section Base */
.carousel-section {
    padding: 80px 0;
    background: #FFEFD5;
    position: relative;
    overflow: hidden;
}

.carousel-header .header-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    padding: 10px 10px 0 10px;
    color: #b8860b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-header .header-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    padding: 0 15px 15px 15px;
    margin-bottom: 50px;
    line-height: 1.3;
}

/* Carousel Image */
.carousel-image {
    text-align: center;
}

.carousel-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.carousel-item.active .carousel-image img {
    transform: scale(1);
}

/* Carousel Content */
.carousel-content {
    padding: 20px;
    animation: fadeUp 1s ease both;
}

.carousel-content .content-title {
    font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif !important;
    font-size: 26px;
    color: #936d45;
    margin-bottom: 15px;
    line-height: 1.4;
}

.carousel-content .content-description {
    font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif !important;
    font-size: 16px;
    color: #936d45;
    line-height: 1.8;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 45px;
    height: 45px;
    background-size: 60% 60%;
    background-color: rgba(184, 134, 11, 0.85);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #b8860b;
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #b8860b;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
    .carousel-content {
        text-align: center;
        padding-top: 30px;
    }

    .carousel-header .header-title {
        font-size: 32px;
    }
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    transform: none !important;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}


/* Section Base */
.services-section {
    padding: 80px 0;
    background: #fdfaf5;
    text-align: center;
}

/* Section Title */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #222;
    position: relative;
}

/* Service Card */
.service-card {
    padding: 30px 20px;
    background: #fffaf3;
    border: 1px solid #e8dfd3;
    border-radius: 10px;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.service-icon img {
    max-width: 120px;
    margin-bottom: 20px;
}

/* Title */
.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #8b6f47;
    margin-bottom: 10px;
}

/* Divider */
.divider img {
    margin: 10px auto 20px;
    max-width: 80px;
}

/* Text */
.service-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Learn More Link */
.learn-more {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #b8860b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #8b6f47;
}

/* Responsive */
@media (max-width: 991px) {
    .service-card {
        margin-bottom: 30px;
    }
}

/* Section Base */
.why-section {
    padding: 70px 0;
    background: #fff;
    text-align: center;
}

/* Title */
.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    /* chhota size */
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 5px;
}

/* Subtitle */
.why-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    /* thoda chhota */
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
}

/* Divider */
.divider img {
    margin: 15px auto 25px;
    max-width: 200px;
}

/* Highlight line */
.why-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    /* chhota font */
    font-weight: 500;
    color: #8b6f47;
    text-transform: capitalize;
    margin-bottom: 25px;
}

/* Paragraphs */
.why-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    /* chhota font */
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Button */
.btn-appointment {
    display: inline-block;
    padding: 12px 28px;
    background: #3b3627;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background: #8b6f47;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .why-title {
        font-size: 26px;
    }

    .why-subtitle {
        font-size: 14px;
    }

    .why-highlight {
        font-size: 14px;
    }

    .why-text {
        font-size: 13px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f9f7f3;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 15px;
}

.about-highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
    color: #222;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.about-image img {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-group {
    margin-top: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #8b6f47;
    border-color: #8b6f47;
    color: #fff;
}

.btn-dark {
    display: inline-block;
    padding: 10px 22px;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #8b6f47;
}

/* Testimonials */
.testimonial-section {
    padding: 80px 0;
    background: #fff;
}

.eye-icon {
    width: 80px;
    margin-bottom: 10px;
}

.testimonial-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    margin-bottom: 30px;
}

.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #8b6f47;
    margin-bottom: 15px;
}

.testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-rating {
    font-size: 14px;
    color: #d4af37;
}

.testimonial-profiles {
    margin-top: 25px;
}

.testimonial-profiles img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 0 5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-profiles img.active {
    border-color: #8b6f47;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .about-section .row {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        margin-bottom: 30px;
    }
}

/* About Section (small font) */
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #8b6f47;
    margin-bottom: 15px;
}

.about-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #8b6f47;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
}

/* Section 2: Birth Chart */
.birth-chart-hero {
    background: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    padding: 100px 0;
}

.hero-titles {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitles {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-style: italic;
}



.btn-appointment-hero {
    background: white;
    color: #2c2c2c;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-appointment-hero:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.awards-section {
    background: #fdfaf7;
    padding: 60px 20px;
}

.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #8b6f47;
    text-align: center;
    margin-bottom: 25px;
}

.awards-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media(max-width: 768px) {
    .awards-title {
        font-size: 22px;
    }

    .awards-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Footer */
.site-footer {
    background: #fdf9f5;
    padding-top: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #444;
    margin-top: 50px;
}

.footer-divider {
    width: 200px;
    margin-bottom: 15px;
}

.footer-desc {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}

.footer-navigate {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #8b6f47;
    margin-bottom: 30px;
}

.footer-col h5 {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #8b6f47;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #444;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #8b6f47;
}

.footer-bottom {
    border-top: 1px solid #e0d8cf;
    margin-top: 30px;
    padding: 20px 0;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-social a {
    display: inline-block;
    margin: 0 6px;
    font-size: 15px;
    color: #fff;
    background: #c0392b;
    width: 36px;
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #8b6f47;
}


@media(max-width: 768px) {
    .footer-col {
        margin-bottom: 20px;
        text-align: center;
    }
}



/* services page css */
/* Services Page */
.services-page {
    font-family: 'Georgia', serif;
    color: #333;
  }
  
  .services-title {
    font-size: 32px;
    font-weight: bold;
    color: #a94c2b;
  }
  
  .services-subtitle {
    color: #444;
    font-size: 18px;
  }
  
  .services-banner img {
    width: 100%;
    border-radius: 6px;
  }
  
  .services-breadcrumb {
    font-size: 14px;
    color: #999;
  }
  
  .services-quote {
    border-left: 4px solid #a94c2b;
    padding: 10px 15px;
    font-style: italic;
    background: #faf4f2;
    border-radius: 4px;
  }
  
  .services-heading {
    margin-top: 20px;
    color: #a94c2b;
    font-size: 22px;
    font-weight: bold;
  }
  
  /* Sidebar */
  .services-sidebar .services-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  .services-sidebar-title {
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    color: #a94c2b;
  }
  
  .services-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
  }
  
  .services-list li::before {
    content: "◉";
    position: absolute;
    left: 0;
    color: #a94c2b;
    font-size: 12px;
  }
  
  /* Recent Posts */
  .services-recent-post {
    align-items: center;
  }
  
  .services-recent-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
  }
  
  .services-recent-text a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
  }
  
  .services-recent-text a:hover {
    color: #a94c2b;
  }
  
  .services-readall {
    text-align: right;
    margin-top: 10px;
  }
  
  .services-readall a {
    font-size: 14px;
    color: #a94c2b;
    text-decoration: none;
  }
  
  .services-readall a:hover {
    text-decoration: underline;
  }
  /* Heading */
.services-heading {
  font-size: 26px;
  font-weight: bold;
  color: #a94c2b;
}

/* Sidebar */
.services-tags li {
  margin-bottom: 10px;
}

.services-tags li :hover{
    cursor: pointer;
}

.services-tags a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #a94c2b;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  color: #a94c2b;
  transition: all 0.3s ease;
}

.services-tags a:hover {
  background: #a94c2b;
  color: #fff;
}

/* Highlighted Section */
.services-highlight {
  border-top: 2px solid #a94c2b;
  margin-top: 30px;
  padding-top: 20px;
}

.services-highlight-title {
  font-size: 22px;
  font-weight: bold;
  color: #a94c2b;
  margin-bottom: 15px;
}

.services-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #000;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services-btn:hover {
  background: #000;
  color: #fff;
}
