/* Base Styles */
:root {
    --primary-brown: #5b3b22ff;
    --dark-brown: #654321;
    --light-brown: #867466ff;
    --gold: #ecdec6ff;
    --off-white: #FAF9F6;
    --warm-white: #FFFEF9;
    --badge-gold: #d9b152ff;
    --cream: #eee7ddff;
    --my-green: #3a7853ff;
    --glow-gold:#e4b237ff;
    --dark-brown-2: #32241bff;
}


.py-5{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}



.cursor-pointer{
    cursor: pointer;
}

.cursor-pointer:hover{
    cursor: pointer;
}

.calltoaction-btn{
        height: 42px;
        padding: 0px !important;
        width: 220px;
        font-size: 16px !important;
}
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 69, 19, 0.03) 2px, rgba(139, 69, 19, 0.03) 4px);
    color: var(--dark-brown);
    margin: 0;
    padding: 0;
}

/* Header Styles */
.hero-header {
    background-color: var(--warm-white);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    padding: 1rem 0;
}

.logo-square {
    width: 50px;
    height: 50px;
    background-color: var(--primary-brown);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    font-family: sans;
}

.company-name {
    color: var(--dark-brown);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.company-tagline {
    color: var(--light-brown);
    font-size: 0.85rem;
}

.nav-link-custom {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: var(--primary-brown);
}

/* Product Filter Tabs */
.product-filter-tabs {
    margin-top: 2rem;
}

.product-filter-tabs .nav-pills {
    gap: 0.5rem;
}

.product-filter-tabs .nav-link {
    color: var(--dark-brown);
    background-color: var(--warm-white);
    border: 2px solid var(--light-brown);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-filter-tabs .nav-link:hover {
    background-color: var(--cream);
    border-color: var(--primary-brown);
    color: var(--primary-brown);
    transform: translateY(-2px);
}

.product-filter-tabs .nav-link.active {
    background-color: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
    box-shadow: 0 4px 8px rgba(91, 59, 34, 0.2);
}

.product-filter-tabs .nav-link.active:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: white;
    transform: translateY(-2px);
}

.phone-number {
    color: var(--dark-brown);
    font-weight: 500;
}

.btn-quote {
    background-color: var(--primary-brown);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: var(--dark-brown);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 0rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.badges-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-custom {
    background-color: var(--gold);
    color: var(--primary-brown);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    font-size: 1.0rem;
    color: var(--light-brown);
    line-height: 1.6;
    max-width: 90%;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--primary-brown);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--dark-brown);
    color: white;
}

.btn-outline-custom {
    background-color: white;
    color: var(--dark-brown);
    border: 2px solid var(--primary-brown);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-brown);
    color: white;
}

/* Statistics */
.statistics-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 400;
    color: black;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--light-brown);
    margin-top: 0.5rem;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-badge strong {
    display: block;
    font-size: 1rem;
}

.badge-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.scroll-oval {
    display: none   ;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(139, 69, 19, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-oval::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: rgba(139, 69, 19, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
}

/* Excellence Section */
.excellence-section {
    background-color: var(--primary-brown);
    color: var(--warm-white);
    padding: 5rem 0;
}

.excellence-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--warm-white);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.excellence-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.award-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.award-icon {
    font-size: 1.5rem;
    background-color: var(--light-brown);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin:auto;
    color: var(--badge-gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.award-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.award-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--badge-gold);
    font-family: 'Montserrat', sans-serif;
}

/* Affiliations Section */
.affiliations-content {
    margin-top: 4rem;
}

.affiliations-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
}

.affiliation-badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;

    text-align: center;
    color: var(--warm-white);
    font-weight: 500;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliation-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Who We Serve Section */
.who-we-serve-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subheading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--badge-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.section-description {
    font-size: 1.0rem;
    color: var(--light-brown);
    line-height: 1.6;
}

.serve-card {
    background-color: var(--warm-white);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--primary-brown);
    height: 100%;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(139, 69, 19, 0.05);
    position: relative;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.serve-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.serve-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--dark-brown);
}

.serve-card-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.serve-card-description {
    font-size: 0.8rem;
    color: var(--light-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.serve-card-link {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: inline-block;
}

.serve-card-link:hover {
    color: var(--primary-brown);
}

/* Product Categories Section */
.product-categories-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.product-card {
    background-color: var(--warm-white);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(139, 69, 19, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.product-card-premium {
    background-color: var(--dark-brown);
    color: var(--warm-white);
}

.product-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-icon-wrapper i {
    font-size: 1.3rem;
    color: var(--dark-brown);
}

.product-icon-premium {
    background-color: rgba(255, 255, 255, 0.15);
}

.product-icon-premium i {
    color: var(--warm-white);
}

.premium-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-title {
    font-size: 1.0rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.product-card-title-premium {
    color: var(--warm-white);
}

.product-card-subtitle {
    font-size: 0.8rem;
    color: var(--light-brown);
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-card-subtitle-premium {
    color: rgba(255, 255, 255, 0.9);
}

.product-card-description {
    font-size: 0.7rem;
    color: var(--light-brown);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-card-description-premium {
    color: rgba(255, 255, 255, 0.8);
}

.product-price-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.price-green {
    background-color: var(--my-green);
    color: white;
}

.price-premium {
    background-color: var(--gold);
    color: var(--dark-brown);
}

.product-card-link {
    color: var(--dark-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: inline-block;
}

.product-card-link:hover {
    color: var(--primary-brown);
}

.product-card-link-premium {
    color: var(--warm-white);
}

.product-card-link-premium:hover {
    color: var(--gold);
}

.btn-catalogue {
    background-color: var(--dark-brown);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-catalogue:hover {
    background-color: var(--primary-brown);
    color: white;
}

.section-footer-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3rem;
    font-family: 'Montserrat', sans-serif;
}

/* Portfolio Gallery Section */
.portfolio-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
    min-height: 300px;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.portfolio-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(210, 180, 140, 0.95);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(10px);
}

.btn-portfolio {
    background-color: transparent;
    color: var(--light-brown);
    border: 2px solid var(--light-brown);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-portfolio:hover {
    background-color: var(--light-brown);
    color: white;
    border-color: var(--light-brown);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.testimonial-card {
    background-color: var(--warm-white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.12);
}

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 6rem;
    color: rgba(139, 69, 19, 0.1);
    font-family: 'Georgia', serif;
    line-height: 1;
    font-weight: bold;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
}

.testimonial-stars i {
    color: var(--badge-gold);
    font-size: 1.2rem;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: var(--dark-brown);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.client-initial {
    width: 50px;
    height: 50px;
    background-color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.client-title {
    font-size: 0.9rem;
    color: var(--light-brown);
    font-family: 'Montserrat', sans-serif;
}

/* Call-to-Action Section */
.cta-section {
    background-color: var(--dark-brown);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 69, 19, 0.1) 10px, rgba(139, 69, 19, 0.1) 20px);
    padding: 5rem 0;
    color: white;
}

.cta-headline {
    font-size: 2.0rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.cta-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-consultation {
    background-color: var(--glow-gold);
    color: var(--dark-brown);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-consultation:hover {
    background-color: #c9a01a;
    color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
}

.btn-call {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-call:hover {
    background-color: white;
    color: var(--dark-brown);
    transform: translateY(-2px);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-brown-2);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand-name {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.0rem;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

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

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-policy-link:hover {
    color: var(--gold);
}

/* Floating Get Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.btn-floating-quote {
    background-color: var(--gold);
    color: var(--dark-brown);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.btn-floating-quote:hover {
    background-color: #c9a01a;
    color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Floating Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background-color: #20BA5A;
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp Bubble */
@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .py-5{
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

/* Products/Blocks Section */
.products-section {
    background-color: var(--off-white);
    padding: 5rem 0;
}

.block-card {
    background-color: var(--warm-white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(139, 69, 19, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(139, 69, 19, 0.15);
}

.block-card-top {
    padding: 0;
    flex: 1;
    overflow: hidden;
}

.block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

.block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.block-features {
    margin-bottom: 1.5rem;
}

.block-feature {
    margin-bottom: 1rem;
}

.block-feature strong {
    font-size: 0.95rem;
    color: var(--dark-brown);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.block-feature p {
    font-size: 0.85rem;
    color: var(--light-brown);
    margin: 0;
    line-height: 1.4;
}

.block-specs {
    background-color: rgba(139, 69, 19, 0.03);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.spec-item {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: var(--light-brown);
    font-weight: 500;
}

.spec-value {
    color: var(--dark-brown);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.block-card-bottom {
    background-color: rgba(139, 69, 19, 0.02);
    padding: 1.5rem 2rem;
    border-top: 2px solid rgba(139, 69, 19, 0.1);
}

.block-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.block-summary {
    font-size: 0.9rem;
    color: var(--light-brown);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.block-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.block-area {
    font-size: 0.9rem;
    color: var(--light-brown);
    font-weight: 500;
}

.block-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-brown);
    font-family: 'Montserrat', sans-serif;
}

.btn-view-details {
    background-color: var(--light-brown);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-view-details:hover {
    background-color: var(--primary-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .statistics-row {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .statistics-row{
        margin-bottom: 2rem ;
    }
    .hero-header .row > div {
        margin-bottom: 1rem;
    }
    
    .nav-link-custom {
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .badges-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .statistics-row {
        flex-direction: row;
        gap: 1.5rem;
    }

    .award-icon {
        font-size: 1.5rem !important;
    }

    .badges-container{
        display: none;
    }

    .calltoaction-btn{
        width: 100% !important;
        max-width: 200px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }
    
    .excellence-title {
        font-size: 2rem;
    }
    
    .excellence-subtitle {
        font-size: 1rem;
    }
    
    .award-card {
        padding: 2rem 1.5rem;
    }
    
    .award-icon {
        font-size: 2.5rem;
    }
    
    .award-title {
        font-size: 1.1rem;
    }
    
    .affiliations-title {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .serve-card {
        padding: 1.5rem;
    }
    
    .serve-card-title {
        font-size: 1.2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card-title {
        font-size: 1.2rem;
    }
    
    .product-price-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .portfolio-image {
        min-height: 250px;
    }
    
    .portfolio-card {
        min-height: 250px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-quote-icon {
        font-size: 4rem;
        top: 1rem;
        right: 1rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .cta-headline {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons > .btn {
        width: 100px;
    }

    
    
    .btn-consultation,
    .btn-call {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .floating-quote-btn {
        bottom: 1rem;
        right: 1rem;
    }
    
    .btn-floating-quote {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .block-card-top {
        padding: 0;
    }
    
    .block-image {
        min-height: 250px;
    }
    
    .block-card-bottom {
        padding: 1.25rem 1.5rem;
    }
    
    .block-title {
        font-size: 1.3rem;
    }
    
    .block-price {
        font-size: 1.1rem;
    }
}

/* Product Detail Section */
.product-detail-section {
    background-color: var(--off-white);
    padding: 3rem 0;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--light-brown);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--dark-brown);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--light-brown);
}

.product-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    width: 100%;
}

.overlay-text {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.3rem;
}

.overlay-label {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.product-thumbnails {
    margin-top: 1rem;
}

.thumbnail-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.7;
}

.thumbnail-img:hover {
    opacity: 1;
    border-color: var(--primary-brown);
    transform: scale(1.05);
}

.thumbnail-img.active {
    opacity: 1;
    border-color: var(--primary-brown);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.product-title {
    font-size: 2.0rem;
    font-weight: 700;
    color: black !important;
    font-family: 'Montserrat', sans-serif;
}

.product-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.product-highlights {
    background-color: var(--off-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
}

.product-highlights h5 {
    color: var(--dark-brown);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    color: var(--dark-brown);
    font-size: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-list li::before {
    content: " ";
    width: 8px;
    height: 8px;
    background-color: var(--badge-gold);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-brown);
    font-weight: bold;
}

.product-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.btn-order-now {
    background-color: var(--glow-gold);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.8rem !important;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.btn-order-now:hover {
    background-color: var(--dark-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.btn-customize {
    background-color: transparent;
    color: var(--glow-gold);
    border: 2px solid var(--glow-gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 0.8rem !important;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.btn-customize:hover {
    background-color: var(--primary-brown);
    color: white;
    transform: translateY(-2px);
}

.product-footer-text {
    font-size: 0.9rem;
    color: var(--light-brown);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .thumbnail-img {
        height: 80px;
    }
    
    .overlay-text {
        font-size: 1.5rem;
    }
}

/* Specifications & Add-ons Section */
.specs-addons-section {
    background-color: var(--off-white);
    padding: 0rem 0;
}

.specs-container,
.addons-container {
    background-color: var(--warm-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.08);
    height: 100%;
}

.specs-title,
.addons-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
}

.specs-location {
    font-size: 0.95rem;
    color: var(--light-brown);
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.spec-icon {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--light-brown);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.addons-list {
    margin-bottom: 2rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-icon {
    color: var(--primary-brown);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.addon-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.addon-name {
    font-size: 0.95rem;
    color: var(--dark-brown);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.addon-status {
    font-size: 0.85rem;
    color: var(--light-brown);
    font-style: italic;
}

.btn-request-quote {
    background-color: transparent;
    color: var(--glow-gold);
    border: 2px solid var(--glow-gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: .8rem !important;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.btn-request-quote:hover {
    background-color: var(--glow-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 178, 55, 0.3);
}

/* Responsive Design for Specs & Add-ons */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .specs-container,
    .addons-container {
        padding: 1.5rem;
    }
    
    .specs-title,
    .addons-title {
        font-size: 1.3rem;
    }
}


