/* Base Styles */
:root {
    --primary-color: #EA3C00;
    --bs-primary-rgb: 193, 154, 107;
    --secondary-color: #059669;
    --accent-color: #f97316;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --white-color: #ffffff;
    --text-dark: #374151;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --laboix-font: "Lexend", sans-serif;
    --laboix-heading-font: "Lexend", sans-serif;

    --laboix-special-font: "Urbanist", sans-serif;
    --laboix-text: #6A6A6A;
}
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  padding-top: 280px; /* adjust based on your navbar height */
}

.whatsapp-tab {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #25D366;           /* WhatsApp green */
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 50px;                   /* collapsed: only icon visible */
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.35s ease, background 0.3s ease, padding 0.3s ease;
  z-index: 9999;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.25);
  margin-left: 0px;              /* small gap from screen edge */
}

.whatsapp-tab i {
  font-size: 20px;
  flex-shrink: 0;
}

.whatsapp-tab span {
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Hover: expand into tab */
.whatsapp-tab:hover {
  width: 180px;
  padding: 0 20px;
  background: #1ebe5a;          /* darker WhatsApp green */
}

.whatsapp-tab:hover span {
  opacity: 1;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 115px
    /* font-family: var(--laboix-font, "Lexend", sans-serif); */
}

.btn {
    /* background: linear-gradient(135deg, #C19A6B, #8B5E3C); */
    background: linear-gradient(135deg, #ec6029, #EA3C00);
    border: none;
    color: #fff !important;
    transition: all 0.3s ease;
}

/* Hover Effect */
.btn:hover {
    background: linear-gradient(135deg, #ec6029, #EA3C00);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    background: linear-gradient(135deg, #C19A6B, #8B5E3C);
    color: #fff !important;
    border: none;
}
.btn-outline-primary:hover {
    background: linear-gradient(135deg, #8B5E3C, #C19A6B);
    color: #fff !important;
}

/* Top Bar Styles */
.top-bar {
    background-color: #4d2626; /* dark background */
    color: #ffffff; /* light text */
    font-size: 14px;
    z-index: 1030; /* ensure it's above normal content but below navbar */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px; /* adjust height as needed */
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adjust navbar position so it doesn't overlap top bar */
#mainNav {
    top: 35px; /* same as top-bar height */
}

/* Optional: Add some padding to body so content isn't hidden behind navbar + top bar */
body {
    padding-top: 5px; /* top-bar height + navbar height (~80px) */
}

/* Social icon hover */
.top-bar .top-social a:hover {
    color: #f7b731; /* accent color */
}

/* Navigation Styles */
/* .navbar {
    background: rgba(255, 255, 255, 0.95); */
    /* background: #C19A6B; */
    /* backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
    /* transition: all 0.3s ease; */
/* }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}*/


/*Nav bar  Mobile view */
@media (max-width: 991.98px) {
    #mainNav {
        top: 0;           /* remove gap above navbar */
        height: 120px;      /* increase height for better visibility */
        padding: 0 15px;   /* optional: add horizontal padding */
    }

    #mainNav .navbar-brand {
        font-size: 1.5rem; /* increase logo/text size */
    }

    #mainNav .navbar-toggler {
        font-size: 1.5rem; /* increase hamburger icon size */
    }
    
}

/* Devices between 993px and 1309px width */
@media (min-width: 993px) and (max-width: 1309px) {
    #mainNav {
        /* top: 0;               ensure navbar sticks to top */
        height: 100px;         /* adjust height if needed */
        padding: 0 20px;       /* optional horizontal padding */
    }

    #mainNav .navbar-brand {
        font-size: 1.7rem;     /* slightly larger logo/text for mid-size screens */
    }

    #mainNav .navbar-toggler {
        font-size: 1.5rem;     /* hamburger icon size */
    }

    .hero-section {
        margin-top: 0;          /* remove any gap above hero */
        padding-top: 0;         /* remove extra padding */
        height: 70vh;           /* adjust height if needed */
        background-position: center center; /* center the image */
        background-size: cover; /* ensure image covers area */
    }
    .hero-title {
        font-size: 1rem;
    }
}


/* Remove unwanted top space */
header,
.navbar,
.navbar-brand {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ----------------- Top Bar ----------------- */
.top-bar {
  background: #3b0d0d; /* deep maroon */
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 0;
}
.top-contact i {
  color: #f8b400; /* highlight icons */
  margin-right: 5px;
}

/* Fix blue color and underline */
.top-contact a {
  color: inherit;          /* same color as surrounding text */
  text-decoration: none;   /* remove underline */
  font-weight: 500;        /* optional: make it slightly bold */
}

/* Optional hover effect */
.top-contact a:hover {
  color: #f8b400;          /* highlight on hover (matches icon color) */
  text-decoration: none;
}

.top-hours i {
  color: #f8b400; /* highlight icons */
  margin-right: 5px;
}
.top-social a {
  color: #fff;
  margin-left: 10px;
  transition: color 0.3s;
}
.top-social a:hover {
  color: #f8b400;
}

/* ----------------- Navbar ----------------- */
.navbar {
  background: #fff;
  padding: 0.4rem 1rem; /* slimmer look */
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* subtle shadow */
}
.brand-logo {
  height: 80px; /* reduced for neat look */
  width: auto;
}
.nabh-logo {
  height: 80px;
  width: auto;
}

/* Navbar Links */
.nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 8px 15px;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: #f15a29 !important; /* orange highlight */
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: #f15a29;
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* ----------------- Navbar Scroll Effect ----------------- */
/* .navbar.scrolled {
  padding: 0.25rem 1rem !important;
}
.navbar.scrolled .brand-logo,
.navbar.scrolled .nabh-logo {
  height: 45px;
} */
 

/* -----------------Top bar Mobile ----------------- */
@media (max-width: 991px) {
  .nabh-logo {
    display: none;
  }
  .navbar-nav {
    padding: 20px 0;
    text-align: center;
  }
  .brand-logo {
    height: 50px; /* slightly smaller on mobile */
  }
}


/* Hero Section */
.hero-section {
    margin-top: 115px; /* Adjust based on navbar height */
    height: 550px;
    position: relative;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;

    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    animation: zoomEffect 10s ease-in-out infinite alternate;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
} */

/* .btn-primary:hover {
    background: transparent;
    border: 2px solid white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
} */

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); dark overlay */
    /* background: linear-gradient(135deg, rgba(226, 121, 34, 0.8) 0%, rgba(245, 245, 245, 0.6) 100%);  */
    background: linear-gradient(
    135deg,
    rgba(226, 112, 19, 0.8) 30%,   
    rgba(0, 0, 0, 0.5) 100% 
    );

    /* background:  rgba(70, 62, 3, 0.5);  */
    z-index: 1;
}

.hero-content,
.hero-image {
    padding-bottom: 170px;
    position: relative;
    z-index: 2;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1) translateZ(0);
    }

    50% {
        transform: scale(1.06) translateY(-1%);
    }

    /* optional subtle pan */
    /* 100% {
        transform: scale(1.12) translateZ(0);
    } */
}

/* @media (max-width: 1024px) {
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  .hero-title {
    font-size: 2rem;
  }
} */

/* Respect user's reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-img {
        animation: none;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease 0.4s forwards;
}

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

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Page Header */
.page-header {
    margin-top: 5rem;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background: linear-gradient(135deg, #C19A6B, #EA3C00);
    padding: 120px 0 80px 0;
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    
}

.breadcrumb {
    background: none;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Stats Section */
.stats-section {
    background: var(--white-color);
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ec6029, #EA3C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    /* color: var(--primary-color); */
    color: #2C2C2C;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About us */
.about-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.main-img {
    border-radius: 20px;
}

.floating-img {
    position: absolute;
    top: 20%;
    left: -40px;
    width: 160px;
    animation: float 4s ease-in-out infinite;
}

.exp-box {
    position: absolute;
    /* background: linear-gradient(135deg, #C19A6B, #8B5E3C); */
    background: linear-gradient(135deg, #ec6029, #EA3C00);
    bottom: -20px;
    right: -20px;
    min-width: 130px;
    animation: pulse 2s infinite;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform .3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
}

.stat-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
.btn-primary:hover {
    background-color: #fff !important;  /* white background */
    color: #0d6efd !important;          /* keep text visible in blue */
    border: 1px solid #0d6efd !important; /* optional: blue border */
    transition: all 0.5s ease-in-out;    /* smooth transition */
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background: linear-gradient(135deg, #ec6029, #EA3C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    position: relative;
}

.service-content .service-icon {
    position: absolute;
    top: -40px;
    left: 2rem;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.service-price {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Feature Items */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background: #f74d22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-content h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-designation {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

/* Gallery */
.gallery-filters {
    margin-bottom: 3rem;
}

.gallery-filters .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.gallery-filters .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: scale(1.05);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.9), rgba(5, 150, 105, 0.9));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 1rem;
}

.gallery-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Blog Styles */
.blog-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.post-title:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.search-box {
    position: relative;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-color);
}

.count {
    background: var(--light-color);
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.recent-post-content h6 a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-details {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.working-hours {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

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

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

.footer-contact a {
  color: inherit;           /* inherit text color from footer theme */
  text-decoration: none;    /* remove underline */
}

.footer-contact a:hover {
  color: #f8b400;           /* highlight color (matches your icon) */
  text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: 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 ease;
}

/* .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
} */

/* Facebook */
.social-link.facebook:hover {
    background: #1877f2; /* Facebook blue */
    color: #fff;
    transform: scale(1.1);
}

/* Instagram */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    color: #fff;
    transform: scale(1.1);
}

/* Twitter */
.social-link.twitter:hover {
    background: #ffffff; /* Twitter blue */
    color: #000000;
    transform: scale(1.1);
}

/* LinkedIn */
.social-link.linkedin:hover {
    background: #0a66c2; /* LinkedIn blue */
    color: #fff;
    transform: scale(1.1);
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Health Packages Section */
.health-packages {
    background: var(--light-color);
}


.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
}

.package-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.package-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--success-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.package-price {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-price .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.package-price .price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.package-note {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.package-note h5 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-note p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .contact-form-container,
    .contact-details {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.bg-danger {
    background-color: var(--danger-color) !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success Message */
.success-message {
    background: var(--success-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

/* Error Message */
.error-message {
    background: var(--danger-color);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}



