:root {
    /* Updated color scheme based on logo colors */
    --primary-brown: #8b4513;
    --secondary-brown: #a0522d;
    --light-brown: #d2691e;
    --accent-orange: #cd853f;
    --warm-beige: #f4a460;
    --dark-brown: #654321;
    --text-primary: #202124;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #e8eaed;
    --background-light: #f8f9fa;
    --success: #10b981;
    --danger: #ef4444;
    --white: #ffffff;
    --hover-bg: #f8f9fa;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --shadow-xs: 0 0 1px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--bg-white);
    padding-top: 100px;
}

.padding-top{
    padding-top: 50px;
}

.bg-primary{
    background-color: var(--primary-brown);
}
.bg-secondary{
    background-color: var(--secondary-brown);
}
.bg-light{
    background-color: var(--background-light);
}
.bg-white{
    background-color: var(--bg-white);
}
.bg-gray{
    background-color: var(--bg-gray);
}
.bg-light-gray{
    background-color: var(--bg-light);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
}
.text-primary{
    color: var(--primary-brown) !important;
}
.search-input{
    border:1px solid #e0e0e0 !important;
}
.search-input::before{
    border:1px solid #8b4513 !important;
}

.wrapper {
    margin-right: auto; /* 1 */
    margin-left: auto; /* 1 */

    max-width: 1300px; /* 2 */

    padding-right: 0px; /* 3 */
    padding-left: 0px; /* 3 */
}

/* Mini Header */
.mini-header {
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
}

.mini-header a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-header a:hover {
    color: var(--warm-beige);
}

.mini-header .contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mini-header .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Social Links in Mini Header */
.mini-header .social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.mini-header .social-links a {
    padding: 0.4rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-header .social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Search Bar */
.search-bar-container {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1045;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-bar-container.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-bar-content {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}

.search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: transparent;
    color: var(--text-primary);
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-btn {
    background: var(--primary-brown);
    color: var(--white);
    border: none;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 60px;
}

.search-btn:hover {
    background: var(--dark-brown);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* Main Navigation */
.main-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo Styles */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.mobile-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-brown) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.float-right {
  float: right !important;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.search-toggle,
.mobile-search-toggle {
    background: none;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    padding: 0.6rem;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover,
.mobile-search-toggle:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: scale(1.05);
}

.mobile-menu-toggle {
    border: none;
    padding: 0.6rem;
    background: #f5f5f5;
    font-size: 1.2rem;
    color: var(--text-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.mobile-menu-toggle:focus {
    box-shadow: none;
    outline: none;
}

.mobile-menu-toggle:hover {
    background: #e0e0e0;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
    text-decoration: none;
    display: block;
}

.nav-link:hover {
    color: var(--primary-brown) !important;
    background-color: var(--hover-bg);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Remove dropdown arrow icons */
.dropdown-toggle::after {
    display: none !important;
}

/* Dropdown Containers */
.dropdown-container {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu-custom {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.dropdown-menu-custom.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-item:hover {
    color: var(--primary-brown);
    background: var(--hover-bg);
    transform: translateX(4px);
}

.dropdown-item i {
    color: var(--primary-brown);
    width: 20px;
}

/* Services Megamenu */
.megamenu-container {
    position: static;
}

.megamenu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: calc(-50vw + 50%);
}

.megamenu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-content {
    padding: 1rem 0;
    background: var(--white);
}

/* Megamenu Sidebar */
.megamenu-sidebar {
    background: #f5f5f5;
    border-radius: 0px;
    padding: 1.5rem;
    height: 100%;
    margin-right: 0;
}

.sidebar-header h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-brown);
}

.service-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.25rem;
}

.category-item a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid transparent;
}

.category-item:hover a,
.category-item.active a {
    color: var(--primary-brown);
    background: rgba(139, 69, 19, 0.1);
    border-color: var(--primary-brown);
    transform: translateX(4px);
}

.category-item a i:first-child {
    color: var(--primary-brown);
    width: 24px;
}

.category-item a i:last-child {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Megamenu Subcategories */
.megamenu-subcategories {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0px;
    border: 1px solid var(--border-light);
    height: 100%;
    margin-left: 0;
}

.subcategory-content {
    display: none;
}

.subcategory-content.active {
    display: block;
}

.subcategory-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.subcategory-header h6 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.subcategory-header p {
    margin: 0;
    font-size: 0.9rem;
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-list li {
    margin-bottom: 0.5rem;
}

.subcategory-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.subcategory-list a:hover {
    color: var(--primary-brown);
    background: var(--hover-bg);
    transform: translateX(4px);
}

.subcategory-list a i {
    color: var(--primary-brown);
    width: 20px;
}

/* Book Demo Button */
.btn-demo {
    background: var(--dark-brown);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.btn-demo:hover {
    background: var(--secondary-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    color: var(--white);
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1070;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu-container.show {
    right: 0;
}

.mobile-menu-header {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-demo-section {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.mobile-categories-section {
    padding: 0;
}

.mobile-category-item {
    border-bottom: 1px solid var(--border-light);
}

.mobile-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.mobile-category-link:hover {
    background: var(--hover-bg);
    color: var(--primary-brown);
}

.mobile-category-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary-brown);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.9rem;
}

/* Enhanced Mobile Contact Section */
.mobile-contact-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-align: center;
    position: relative;
}

.mobile-contact-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--dark-brown));
    border-radius: 2px;
}

.mobile-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.mobile-contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mobile-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.mobile-contact-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 16px;
}

.mobile-contact-icon.phone {
    background: linear-gradient(135deg, #10b981, #059669);
}

.mobile-contact-icon.email {
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
}

.mobile-contact-icon.location {
    background: linear-gradient(135deg, var(--light-brown), var(--accent-orange));
}

.mobile-contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.mobile-contact-info h6 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-contact-info p {
    margin: 0 0 0.2rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.mobile-contact-info small {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Mobile Social Media Section */
.mobile-social-section {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
}

.mobile-social-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
}

.mobile-social-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), var(--dark-brown));
    border-radius: 2px;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.mobile-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.mobile-social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.mobile-social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}
.mobile-social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}
.mobile-social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}
.mobile-social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}
.mobile-social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.mobile-social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: var(--white);
}

/* Mobile Solutions Screen */
.mobile-solutions-screen {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1080;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-solutions-screen.show {
    right: 0;
}

.mobile-solutions-header {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-solutions-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-start;
    text-align: left;
}

.mobile-solutions-back {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-solutions-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-solutions-content {
    padding: 0;
}

.mobile-submenu-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.mobile-submenu-section:last-child {
    border-bottom: none;
}

.mobile-submenu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-submenu-header:hover {
    background: var(--hover-bg);
    color: var(--primary-brown);
}

.mobile-submenu-header.active {
    background: rgba(139, 69, 19, 0.1);
    color: var(--primary-brown);
    border-color: var(--primary-brown);
}

.mobile-submenu-header.active .mobile-submenu-icon i {
    transform: rotate(90deg);
}

.mobile-subcategory-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-subcategory-content.show {
    max-height: 500px;
}

.mobile-submenu-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.mobile-submenu-links li {
    margin-bottom: 0.5rem;
}

.mobile-submenu-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid transparent;
}

.mobile-submenu-links a:hover {
    color: var(--primary-brown);
    background: var(--hover-bg);
    border-color: var(--border-light);
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .mini-header {
        display: none;
    }

    .main-navbar {
        top: 0;
    }

    .search-bar-container {
        top: 80px;
    }

    .navbar-collapse {
        display: none !important;
    }

    .megamenu-dropdown {
        position: static;
        width: 100%;
        transform: none;
        margin-left: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-light);
        opacity: 1;
        visibility: visible;
    }

    .megamenu-content {
        padding: 1rem 0;
    }

    .btn-demo {
        width: 100%;
        margin: 1rem 0;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .mobile-contact-grid {
        grid-template-columns: 1fr;
    }

    .mobile-social-links {
        gap: 0.8rem;
    }

    .mobile-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* slider or Flat Services Section Start */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--overlay-dark) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: slideInLeft 1s ease-out;
}

.slide.active .slide-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 500px;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-color: var(--primary-brown);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.slide-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    border-color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

.slide-buttons .btn-outline-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--warm-beige);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.slide-buttons .btn-outline-custom:hover {
    background: var(--warm-beige);
    color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 164, 96, 0.3);
}

/* Navigation Arrows - Positioned at corners */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 69, 19, 0.8);
    border: 2px solid rgba(139, 69, 19, 0.9);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: var(--primary-brown);
    border-color: var(--primary-brown);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Professional Bullet Navigation */
.slider-bullets {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.bullet.active {
    background: var(--warm-beige);
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(244, 164, 96, 0.6);
}

.bullet:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Flat Services Section */
.services-flat-section {
    background: var(--white);
    border-top: 1px solid #e9ecef;
}

.service-flat-item {
    display: flex;
    align-items: center;
    padding: 2rem 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border-right: 1px solid #e9ecef;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.service-flat-item:last-child {
    border-right: none;
}

.service-flat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-flat-item:hover::before {
    left: 100%;
}

.service-flat-item:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02), rgba(244, 164, 96, 0.02));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
}

.service-flat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-flat-item:hover .service-flat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.service-flat-content {
    flex: 1;
    margin-right: 1rem;
}

.service-flat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.service-flat-item:hover .service-flat-title {
    color: var(--primary-brown);
}

.service-flat-description {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.service-flat-arrow {
    color: var(--primary-brown);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.service-flat-item:hover .service-flat-arrow {
    transform: translateX(5px);
    opacity: 1;
    color: var(--secondary-brown);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-flat-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        height: auto;
        min-height: 100px;
    }

    .service-flat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .service-flat-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .service-flat-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .service-flat-content {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .hero-slider {
        height: 80vh;
    }

    .slider-bullets {
        bottom: 20px;
        padding: 8px 15px;
        gap: 8px;
    }

    .bullet {
        width: 8px;
        height: 8px;
    }
}

/* slider or Flat Services Section End */

/* Main Footer Start*/
/* Main Footer - Professional Background */
.main-footer {
    background: linear-gradient(135deg, #2c1810 0%, var(--dark-brown) 25%, var(--primary-brown) 75%, var(--secondary-brown) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(244, 164, 96, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.main-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.5), transparent);
}

/* Footer Top */
.footer-top {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-widget {
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-brand-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Action Buttons */
.footer-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.footer-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-btn:hover::before {
    left: 100%;
}

.btn-find-doctor {
    background: linear-gradient(135deg, var(--warm-beige), var(--accent-orange));
    color: var(--dark-brown);
    border-color: var(--warm-beige);
}

.btn-find-doctor:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-brown));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 164, 96, 0.4);
    color: var(--dark-brown);
}

.btn-book-appointment {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-book-appointment:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--warm-beige);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-widget-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--warm-beige), var(--accent-orange));
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(244, 164, 96, 0.3);
}

/* Professional Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--warm-beige), var(--accent-orange));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(1rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover::before {
    width: 0.75rem;
}

/* Contact Information */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(244, 164, 96, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--warm-beige), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-details h6 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--warm-beige);
}

.contact-details small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.developer-link {
    color: var(--warm-beige);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-beige);
    transition: width 0.3s ease;
}

.developer-link:hover {
    color: var(--accent-orange);
    text-shadow: 0 2px 4px rgba(244, 164, 96, 0.3);
}

.developer-link:hover::after {
    width: 100%;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0;
}

.footer-bottom-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm-beige);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--warm-beige);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }

    .footer-action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-btn {
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
        gap: 1rem;
    }

    .contact-item {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .footer-action-buttons {
        align-items: stretch;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        gap: 0.75rem;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Services Section */
/* Common Section Styles */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.view-all-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: var(--secondary-brown);
    transform: translateX(5px);
}

/* Slider Common Styles */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-brown);
    background: var(--white);
    color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.slider-btn:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-brown);
    transform: scale(1.2);
}

/* Services Section */
/* Common Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.view-all-btn {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

/* Horizontal Scroll Container */
.horizontal-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.scroll-content {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-content::-webkit-scrollbar {
    display: none;
}

/* Services Section */
/* Common Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: left;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.view-all-btn {
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.view-all-btn:hover {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

/* Slider Container */
.slider-container {
    position: relative;
}

.slider-wrapper {
    margin: 0 0px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0px;
}

.slider-item {
    flex: 0 0 auto;
    padding: 0 5px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    --shadow-color: hsl(220deg 100% 55%);
    border: 1px solid rgba(121, 121, 121, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: var(--warm-beige);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Case Studies Section */
.case-studies-section {
    background: var(--white);
}

.case-study-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    --shadow-color: hsl(220deg 100% 55%);
    border: 1px solid rgba(121, 121, 121, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: var(--warm-beige);
}

.case-study-image {
    height: 220px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.05);
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
}

.team-card {
    position: relative;
    background: var(--white);
    --shadow-color: hsl(220deg 100% 55%);
    border: 1px solid rgba(121, 121, 121, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: var(--warm-beige);
}

.team-image {
    height: 280px;
    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.05);
}

.team-content {
    padding: 1.5rem;
    text-align: center;
}

.team-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.designation {
    color: var(--primary-brown);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.experience {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--secondary-brown) 50%, var(--dark-brown) 100%);
    color: var(--white);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warm-beige), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-brown);
    box-shadow: 0 8px 25px rgba(244, 164, 96, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-text {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

/* Blog & News Section */
.blog-news-section {
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-brown);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .slider-wrapper {
        margin: 0 50px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        margin: 0 40px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .slider-wrapper {
        margin: 0 35px;
    }

    .slider-track {
        gap: 5px;
    }

    .slider-item {
        padding: 0 5px;
    }
}

/* Testimonial Section */
.testimonials-section {
    background: var(--bg-gray);
}

/* Testimonials Container */
.testimonials-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonials-wrapper {
    margin: 0 0px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 10px;
}

.testimonial-item {
    flex: 0 0 auto;
    width: 33.333%;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.2);
}

.testimonial-arrow:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.3);
}

.testimonial-arrow-left {
    left: 0;
}

.testimonial-arrow-right {
    right: 0;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border-color: var(--warm-beige);
    --shadow-color: hsl(220deg 100% 55%);
    border: 1px solid rgba(121, 121, 121, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.2);
    border-color: var(--warm-beige);
}

/* Testimonial Media */
.testimonial-media {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-media img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.testimonial-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.testimonial-card:hover .play-button {
    transform: scale(1);
}

.testimonial-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 69, 19, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

/* Testimonial Content */
.testimonial-content {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--warm-beige), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-brown);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(244, 164, 96, 0.3);
}

.testimonial-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0 1rem;
    line-height: 1.4;
}

.testimonial-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--warm-beige);
    font-size: 0.9rem;
}

/* Testimonial Stats */
.testimonial-stats {
    background: rgba(139, 69, 19, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(139, 69, 19, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
    .testimonial-item {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .testimonials-wrapper {
        margin: 0 50px;
    }

    .testimonial-arrow {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 100%;
    }

    .testimonials-wrapper {
        margin: 0 45px;
    }

    .testimonial-media {
        height: 200px;
    }

    .testimonial-content {
        padding: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-wrapper {
        margin: 0 40px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .testimonial-content {
        padding: 1.25rem;
    }

    .testimonial-title {
        font-size: 1.1rem;
    }

    .testimonial-description {
        font-size: 0.9rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        margin: 0 35px;
    }

    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
    }

    .testimonial-media {
        height: 180px;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
}


        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 50%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(244, 164, 96, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Left Side - Content */
        .contact-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
            width: fit-content;
        }

        .contact-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            position: relative;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-brown), var(--warm-beige));
            border-radius: 2px;
        }

        .contact-description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        /* Contact Features */
        .contact-features {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: rgba(139, 69, 19, 0.05);
            border-radius: 12px;
            border-left: 4px solid var(--primary-brown);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(139, 69, 19, 0.08);
            transform: translateX(5px);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }

        .feature-content h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 0;
        }

        /* Right Side - Contact Actions */
        .contact-actions {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .contact-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(139, 69, 19, 0.1);
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .contact-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .contact-header p {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 0;
        }

        /* Contact Buttons */
        .contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--white);
            border: 2px solid var(--border-light);
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            width: 100%;
            text-align: left;
        }

        .contact-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
        }

        .contact-btn::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 ease;
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .contact-btn:active {
            transform: translateY(-1px);
        }

        /* Button Specific Styles */
        .emergency-btn:hover {
            border-color: var(--emergency-red);
            background: linear-gradient(135deg, var(--emergency-red), #dc2626);
            color: var(--white);
        }

        .emergency-btn .btn-icon {
            background: var(--emergency-red);
        }

        .appointment-btn:hover {
            border-color: var(--primary-brown);
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: var(--white);
        }

        .appointment-btn .btn-icon {
            background: var(--primary-brown);
        }

        .call-btn:hover {
            border-color: var(--accent-orange);
            background: linear-gradient(135deg, var(--accent-orange), var(--warm-beige));
            color: var(--white);
        }

        .call-btn .btn-icon {
            background: var(--accent-orange);
        }

        .whatsapp-btn:hover {
            border-color: var(--whatsapp-green);
            background: linear-gradient(135deg, var(--whatsapp-green), #22c55e);
            color: var(--white);
        }

        .whatsapp-btn .btn-icon {
            background: var(--whatsapp-green);
        }

        .email-btn:hover {
            border-color: var(--secondary-brown);
            background: linear-gradient(135deg, var(--secondary-brown), var(--light-brown));
            color: var(--white);
        }

        .email-btn .btn-icon {
            background: var(--secondary-brown);
        }

        .visit-btn:hover {
            border-color: var(--dark-brown);
            background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
            color: var(--white);
        }

        .visit-btn .btn-icon {
            background: var(--dark-brown);
        }

        .btn-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .btn-content {
            flex: 1;
            min-width: 0;
        }

        .btn-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: inherit;
        }

        .btn-content p {
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
            opacity: 0.8;
            color: inherit;
        }

        .btn-number,
        .btn-action,
        .btn-email,
        .btn-address {
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0.9;
            color: inherit;
        }

        .btn-arrow {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .contact-btn:hover .btn-arrow {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        /* Quick Info */
        .quick-info {
            display: flex;
            justify-content: space-around;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }

        .info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-align: center;
        }

        .info-item i {
            color: var(--primary-brown);
            font-size: 1.2rem;
        }

        .info-item span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* Mobile Responsive Design */
        @media (max-width: 1200px) {
            .contact-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .contact-section {
                min-height: auto;
            }
            
            .contact-content,
            .contact-actions {
                height: auto;
            }
            
            .contact-title {
                font-size: 2.2rem;
            }
            
            .contact-description {
                font-size: 1rem;
            }
            
            .contact-card {
                padding: 1.5rem;
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .contact-title {
                font-size: 2rem;
            }
            
            .contact-description {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }
            
            .feature-item {
                padding: 0.75rem;
            }
            
            .feature-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .contact-card {
                padding: 1.25rem;
            }
            
            .contact-btn {
                padding: 1rem;
            }
            
            .btn-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .quick-info {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .info-item {
                flex-direction: row;
                justify-content: center;
                flex: 1;
                min-width: 120px;
            }
        }

        @media (max-width: 576px) {
            .contact-title {
                font-size: 1.75rem;
            }
            
            .section-badge {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
            
            .contact-features {
                gap: 1rem;
            }
            
            .feature-item {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }
            
            .contact-card {
                padding: 1rem;
            }
            
            .contact-header h3 {
                font-size: 1.5rem;
            }
            
            .contact-btn {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
                padding: 1.25rem;
            }
            
            .btn-content {
                order: 2;
            }
            
            .btn-arrow {
                order: 3;
                align-self: center;
            }
            
            .quick-info {
                flex-direction: column;
                gap: 1rem;
            }
            
            .info-item {
                justify-content: flex-start;
            }
        }


        /* Contact Us Page */
        .breadcrumb {
            background: var(--bg-gray);
            padding: 1rem 0;
            margin-top: 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: rgba(0, 0, 0, 0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--light-brown);
        }
        
        .contact-info-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            height: 100%;
        }
        
        .location-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 8px;
            transition: transform 0.2s ease;
        }
        
        .contact-info-item:hover {
            transform: translateY(-2px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--bg-gray);
            color: var(--light-brown);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .form-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            margin-top: 3rem;
        }
        
        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }
        
        .btn-primary {
            background: var(--dark-brown);
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.2s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            background: var(--secondary-brown);
        }
        
        .section-title {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .section-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        .map-container {
            position: relative;
            height: 0;
            min-height: 450px;
            width: 100%;
            background: var(--bg-light);
            border-radius: 0 0 12px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
        }

        .location-card .map-container {
            flex: 1;
        }

        .map-container iframe {
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            position: absolute;
            }

        .form-control-custom {
            background-color: #f3f4f6;
            border: 1px solid var(--border-light);
            padding: 0.75rem;
            border-radius: 5px;
        }

        .form-control-custom:focus {
            background-color: #f3f4f6;
            border: 1px solid #d2691e;
            box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
        }

        .bg-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            height: 100%;
        }
        .list-checked {
            list-style: none; /* 🔹 removes bullets */
            padding-left: 0;  /* 🔹 optional: removes extra indent */
            }

        .icon-box {
            border-radius: 8px;
            padding: 20px;
            background-color: #f8f9fa;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
            }
        .counter {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-brown);
            }


        /* Misison Vision Values Section */
        .btn-primary {
            background-color: var(--primary-brown);
            border-color: var(--primary-brown);
        }
        
        .text-primary {
            color: var(--primary-brown) !important;
        }
        .bg-primary {
            background-color: var(--primary-brown) !important;
        }

        /* Custom section styling */
        .section-card {
            background: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .section-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        /* Value cards styling */
        .value-card {
            background: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
            border-color: var(--accent-orange);
        }

        /* Section divider */
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, var(--primary-brown), var(--accent-orange));
            border-radius: 2px;
            width: 60px;
        }

        /* Icon styling */
        .section-icon {
            color: var(--accent-orange);
            margin-right: 15px;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: white;
        }

        /* Custom colors for value icons */
        .icon-compassion { background-color: #dc3545; }
        .icon-integrity { background-color: var(--primary-brown); }
        .icon-excellence { background-color: #ffc107; color: #000 !important; }
        .icon-patient { background-color: #198754; }
        .icon-teamwork { background-color: #0dcaf0; }
        .icon-accountability { background-color: #6c757d; }
        .icon-respect { background-color: #6f42c1; }
        .icon-innovation { background-color: var(--accent-orange); }


        /* Breadcrumb styling */
        /* Progressive Breadcrumb styling */
        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 0;
            backdrop-filter: blur(10px);
        }
        .breadcrumb-item {
            position: relative;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            content: ">";
            color: rgba(255, 255, 255, 0.7);
            font-weight: bold;
            margin: 0 0.5rem;
        }
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        .breadcrumb-item a:hover {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
        }
        .breadcrumb-item.active {
            color: white;
            font-weight: 600;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
        }

        /* News & media section */
                /* News Card Styling */
        .news-card {
            background: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .news-card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            transform: translateY(-3px);
            border-color: var(--accent-orange);
        }

        .news-meta {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .news-category {
            background-color: var(--warm-beige);
            color: var(--dark-brown);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .news-link-icon {
            color: var(--accent-orange);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .news-link-icon:hover {
            color: var(--primary-brown);
            transform: scale(1.1);
        }

        /* Load More Button */
        .load-more-btn {
            background: linear-gradient(135deg, var(--primary-brown), var(--accent-orange));
            border: none;
            border-radius: 25px;
            padding: 0.75rem 2rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }

        /* Hidden news items */
        .news-item.hidden {
            display: none;
        }

        /* Animation for new items */
        .news-item.fade-in {
            animation: fadeInUp 0.6s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Our Team Section */
        /* Team Card Styling */
        .team-card {
            background: white;
            border: 1px solid #e0e0e0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            transition: all 0.4s ease;
            overflow: hidden;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
            border-color: var(--accent-orange);
        }

        .team-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .team-card:hover .team-image {
            transform: scale(1.05);
        }

        .team-info {
            padding: 1.5rem;
        }

        .team-name {
            color: var(--primary-brown);
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
        }

        .team-department {
            color: var(--accent-orange);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .team-experience {
            background-color: var(--warm-beige);
            color: var(--dark-brown);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
        }

        /* Department Section Styling */
        .department-section {
            margin-bottom: 4rem;
        }

        .department-title {
            color: var(--primary-brown);
            font-weight: 700;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 0.5rem;
            position: relative;
        }

        .department-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-brown), var(--accent-orange));
            border-radius: 2px;
        }

        .department-description {
            text-align: center;
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        /* Doctor Profile Page */
        .doctor-header {
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: white;
            padding: 2rem 0;
        }

        .doctor-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .doctor-info h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .doctor-info .department {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 0.5rem;
        }

        .doctor-info .hospital-name {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .info-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin: 0.25rem;
            display: inline-block;
            font-size: 0.9rem;
        }

        .profile-section-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-brown);
        }

        .profile-section-title {
            color: var(--primary-brown);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }

        .profile-section-title i {
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }

        .education-item, .position-item, .affiliation-item {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 3px solid var(--secondary-brown);
        }

        .education-item h5, .position-item h5, .affiliation-item h5 {
            color: var(--primary-brown);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .education-item .institution, .position-item .organization, .affiliation-item .hospital {
            color: var(--secondary-brown);
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .education-item .year, .position-item .duration, .affiliation-item .role {
            color: #666;
            font-size: 0.9rem;
        }

        .specialization-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .specialization-tag {
            background: var(--primary-brown);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .appointment-card {
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: white;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            position: sticky;
            top: 8rem;
        }

        .appointment-card h4 {
            margin-bottom: 1rem;
        }

        .appointment-card .btn {
            background: white;
            color: var(--primary-brown);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .appointment-card .btn:hover {
            background: var(--bg-light);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        @media (max-width: 768px) {
            .doctor-info h1 {
                font-size: 2rem;
            }
            
            .doctor-image {
                width: 150px;
                height: 150px;
            }
            
            .section-card {
                padding: 1.5rem;
            }
        }

        /* Appointment Booking Page */
        
        /* Base Styles */
        .appointment-page {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background-color: var(--gray-lighter);
        }

        /* Navigation */
        .hospital-navigation {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navigation-spacer {
            height: 76px;
        }

        /* Page Header */
        .appointment-header {
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .header-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .header-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        /* Form Container */
        .appointment-form-wrapper {
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 3rem;
            margin: -2rem auto 3rem;
            position: relative;
            z-index: 10;
            transition: all 0.3s ease;
        }

        /* Dynamic Layout Classes */
        .form-main-container {
            transition: all 0.3s ease;
        }
        .form-main-container.doctor-selected .doctor-profile-section {
            /* Doctor profile takes 4 columns when doctor is selected */
            display: block !important;
        }

        .form-section-header {
            color: var(--primary-brown);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--background-light);
            display: flex;
            align-items: center;
        }

        .form-section-header i {
            margin-right: 0.75rem;
            font-size: 1.1rem;
        }

        /* Form Field Container */
        .form-field-container {
            position: relative;
            margin-bottom: 1rem;
        }

        /* Search Dropdown Styles */
        .medical-search-dropdown-wrapper {
            position: relative;
        }

        .medical-search-input-field {
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            width: 100%;
            background-color: var(--white);
            transition: all 0.3s ease;
        }

        .medical-search-input-field:focus {
            border-color: var(--primary-brown);
            box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
            outline: none;
        }

        .medical-dropdown-options-list {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border: 2px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 8px 8px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }

        .medical-dropdown-option-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            border-bottom: 1px solid #f8f9fa;
        }

        .medical-dropdown-option-item:hover {
            background-color: var(--gray-light);
        }

        .medical-dropdown-option-item:last-child {
            border-bottom: none;
        }

        .medical-dropdown-option-item.selected {
            background-color: var(--primary-brown);
            color: white;
        }

        /* Doctor Details Card */
        .doctor-profile-section {
            display: none;
            transition: all 0.3s ease;
        }

        .doctor-profile-details-card {
            background: var(--white);
            border: 2px solid var(--primary-brown);
            border-radius: 15px;
            padding: 1.5rem;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
            position: sticky;
            top: 2rem;
        }

        .doctor-profile-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-brown);
        }

        .doctor-profile-name {
            color: var(--primary-brown);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        }

        .doctor-profile-department {
            color: var(--secondary-brown);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .doctor-profile-experience-text {
            background-color: #f8f9fa;
            color: #6c757d;
            border-radius: 15px;
            padding: 0.5rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Terms Section */
        .terms-agreement-section {
            background: var(--gray-lighter);
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 4px solid var(--primary-brown);
        }

        .terms-policy-link {
            color: var(--primary-brown);
            text-decoration: none;
            font-weight: 600;
        }

        .terms-policy-link:hover {
            color: var(--dark-brown);
            text-decoration: underline;
        }

        /* Submit Button */
        .appointment-submit-btn {
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            border: none;
            border-radius: 10px;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }

        .appointment-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
        }

        .appointment-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        /* Form Validation Styles */
        .form-field-invalid {
            border-color: var(--danger) !important;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
        }

        .validation-error-message {
            display: none;
            color: var(--danger);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            padding: 0.5rem 0.75rem;
            background-color: rgba(220, 53, 69, 0.1);
            border: 1px solid rgba(220, 53, 69, 0.3);
            border-radius: 6px;
            position: relative;
        }

        .validation-error-message::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 15px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid rgba(220, 53, 69, 0.3);
        }

        .validation-error-message.show {
            display: block;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .validation-error-message i {
            margin-right: 0.5rem;
            color: var(--danger);
        }

        /* Specific field error styling */
        .form-control.form-field-invalid,
        .form-select.form-field-invalid {
            border-color: var(--danger);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }

        .form-check-input.form-field-invalid {
            border-color: var(--danger);
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
        }

        /* Messages */
        .success-notification {
            background: var(--success);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: none;
        }

        .error-notification {
            background: var(--danger);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 2rem;
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-title {
                font-size: 2rem;
            }
            
            .appointment-form-wrapper {
                padding: 2rem 1.5rem;
                margin: -1rem 1rem 2rem;
            }

            .doctor-profile-details-card {
                position: static;
                margin-top: 2rem;
            }
        }
        

            .blog-post img {
                object-fit: cover;
                height: 100%;
                width: 100%;
                max-height: 180px;
                }
                .blog-post .card {
                overflow: hidden;
                }
                a.post-title {
                text-decoration: none;
                color: #212529;
                }
                a.post-title:hover {
                color: #8b4513;
                }
                .pagination .page-link {
                background-color: #8b4513;
                color: #ffffff;
                border: none;
                margin: 0 2px;
            }

            .pagination .page-link:hover {
                background-color: #a0522d;
                color: #fff;
            }

            .pagination .active .page-link {
                background-color: #5a2d0c;
                border-color: #ffffff;
            }

            .pagination .disabled .page-link {
                background-color: #ccc;
                color: #666;
            }
