:root {
    --chocolate-brown: #3E2723;
    --deep-brown: #2C1810;
    --copper: #B87333;
    --bronze: #CD7F32;
    --dark-green: #1B3A2F;
    --soft-gold: #D4AF37;
    --cream: #F5F5DC;
    --light-bg: #FAF8F5;
    --text-dark: #2C1810;
    --text-light: #6D5D52;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.marquee-bar {
    background: linear-gradient(135deg, var(--chocolate-brown) 0%, var(--deep-brown) 100%);
    color: var(--soft-gold);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    padding-right: 50px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.navbar {
    background: white;
   
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: white !important;
    background-color: #3e2723 !important;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--soft-gold);
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--copper);
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-link {
    color:#561E05 !important;
    font-weight: 500;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--soft-gold) !important;
}

.cta-btn {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--copper) 100%);
    border: none;
    color: var(--deep-brown);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--copper) 0%, var(--soft-gold) 100%);
    color: white;
}

.mobile-cta {
    display: none;
}

.desktop-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .desktop-cta {
        display: none;
    }
    .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}
.about-section {
    padding: 100px 0;
     text-align: center;
}
.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-gold) 0%, var(--copper) 100%);
    margin: auto !important;
}
.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    text-align: center !important;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
}

.hero-slider {
    position: relative;
    height: 700px;
}

.hero-slide {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(27, 58, 47, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-btn {
    padding: 16px 48px;
    font-size: 16px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--soft-gold);
}

.counters-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(183, 115, 51, 0.05) 100%);
    padding: 80px 0;
}

.counter-card {
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.counter-icon {
    font-size: 48px;
    color: var(--soft-gold);
    margin-bottom: 16px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--chocolate-brown);
    margin: 16px 0 8px;
}

.counter-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.about-section {
    padding: 100px 0;
}

.about-image img {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.section-title {
    font-size: 42px;
    color: var(--chocolate-brown);
    margin-bottom: 24px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-gold) 0%, var(--copper) 100%);
    margin: 24px 0;
}

.about-text {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-section,
.cta-section-2 {
    background: linear-gradient(135deg, var(--chocolate-brown) 0%, var(--dark-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section-2::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: 42px;
    margin-bottom: 32px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.services-section {
    padding: 100px 0;
    background: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 16px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--soft-gold) 0%, var(--copper) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(183, 115, 51, 0.1) 100%);
}

.service-icon {
    font-size: 48px;
    color: var(--soft-gold);
    margin-bottom: 24px;
}

.service-title {
    font-size: 22px;
    color: var(--chocolate-brown);
    margin-bottom: 16px;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.7;
}

.btn-outline-primary {
    border: 2px solid var(--soft-gold);
    color: var(--chocolate-brown);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.btn-outline-primary:hover {
    background: var(--soft-gold);
    color: white;
    border-color: var(--soft-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(183, 115, 51, 0.03) 100%);
}

.feature-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 56px;
    color: var(--soft-gold);
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    color: var(--chocolate-brown);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Remove unwanted space from body */
body {
    margin: 0;
    padding: 0;
}

/* Remove extra spacing below header */
header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove container side padding causing white edge */
.blogs-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove row margins */
.blogs-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Make section tight */
.blogs-section {
    padding: 40px 0;
}

.btn-link {
    color: var(--soft-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--copper);
    gap: 12px;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(183, 115, 51, 0.03) 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.accordion-button {
    background: white;
    color: var(--chocolate-brown);
    font-weight: 600;
    font-size: 18px;
    padding: 24px 32px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--copper) 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 24px 32px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    background: white;
}

.footer {
    background: linear-gradient(135deg, var(--chocolate-brown) 0%, var(--dark-green) 100%);
    color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-title {
    font-size: 20px;
    color: var(--soft-gold);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--soft-gold);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--soft-gold);
    margin-top: 4px;
    font-size: 16px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--soft-gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 24px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.call-btn {
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--copper) 100%);
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-slider,
    .hero-slide {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-slider,
    .hero-slide {
        height: 500px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

html {
    scroll-behavior: smooth;
}

.page-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.85) 0%, rgba(27, 58, 47, 0.75) 100%);
}

.page-banner h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 56px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.content-section {
    padding: 80px 0;
}

.mission-vision-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-bottom: 32px;
}

.mission-vision-card h3 {
    color: var(--chocolate-brown);
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-control {
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--soft-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--chocolate-brown);
    margin-bottom: 8px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(183, 115, 51, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-banner {
        height: 300px;
    }

    .page-banner h1 {
        font-size: 36px;
    }
}
