/* Modern Black & White Theme with Enhanced UI/UX */
:root {
    --primary: #000000;
    --secondary: #333333;
    --accent: #666666;
    --text: #1a1a1a;
    --text-light: #666666;
    --bg-light: #ffffff;
    --bg-dark: #000000;
    --success: #2ecc71;
    --warning: #f1c40f;
    --danger: #e74c3c;
    --border-radius: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --scroll-behavior: smooth;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
html {
    scroll-behavior: var(--scroll-behavior);
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 100% 100%, rgba(0,0,0,0.03) 0%, transparent 50%),
        radial-gradient(circle at 0% 0%, rgba(0,0,0,0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Modern Typography with Variable Font Support */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Navbar Styles */
.navbar {
    height: 70px;
    min-height: 70px;
    padding: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1.5px solid var(--glass-border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border-radius: 0 0 18px 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: rgba(255,255,255,0.85);
}

.navbar .container {
    height: 70px;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.navbar-brand {
    height: 70px;
    display: flex;
    align-items: center;
    margin-left: 24px;
}

.navbar-brand img {
    height: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav {
    margin-right: 32px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    color: var(--text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    overflow: hidden;
    border-radius: 0.75rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

.nav-link.active {
    background: rgba(0,0,0,0.06);
    color: var(--primary) !important;
}

/* Hamburger Animation (for mobile) */
.navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    transition: var(--transition);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
}

.navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 3px;
    background: var(--primary);
    display: block;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-toggler-icon::before {
    top: -9px;
}

.navbar-toggler-icon::after {
    top: 9px;
}

/* Navbar Layout Enhancements */
.navbar .navbar-brand {
    margin-left: 0;
    flex: 0 0 auto;
}

.navbar .d-flex.flex-grow-1.justify-content-center {
    flex: 1 1 0%;
    justify-content: center !important;
    margin: 0;
}

.navbar .navbar-social {
    margin-right: 0;
    flex: 0 0 auto;
    gap: 0.5rem;
}

.navbar-social a {
    color: var(--primary);
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s, transform 0.2s;
    font-size: 1.25rem;
}

.navbar-social a:hover {
    color: var(--secondary);
    opacity: 1;
    transform: scale(1.15) rotate(-6deg);
}

/* Hero Section and Carousel Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    perspective: 1000px;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-section .carousel-item.active img {
    transform: scale(1);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 10 !important;
    width: 3.5%;
    min-width: 40px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.7rem;
    border-radius: 50%;
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
    width: 2.2rem;
    height: 2.2rem;
}

.hero-section .carousel-control-prev-icon:hover,
.hero-section .carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.08);
}

/* Sleeker Carousel Caption Bar - moved higher */
.carousel-captions-wrapper {
    left: 0;
    right: 0;
    bottom: 2rem;
    z-index: 31;
    position: absolute;
    width: 100%;
    display: block;
    text-align: center;
    pointer-events: none;
}

.carousel-caption {
    display: none;
    width: 100%;
    text-align: center;
    pointer-events: auto;
}

.carousel-caption.active-caption {
    display: block !important;
    width: 100%;
    text-align: center;
}

.carousel-caption .caption-content {
    display: inline-block;
    margin: 0 auto;
}

.caption-badge {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Indicators (dots) centered between caption and scroll down */
.hero-section .carousel-indicators,
.carousel-indicators {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 6rem !important;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.hero-section .carousel-indicators button,
.carousel-indicators button {
    width: 32px;
    height: 1px;
    border-radius: 8px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid #fff;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.hero-section .carousel-indicators button.active,
.carousel-indicators button.active {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.2);
    opacity: 1;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1 !important;
}

.hero-section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2 !important;
}

.hero-section h1 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-section .hero-badge {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.7s;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .lead {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.hero-section .btn-group {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1.1s;
    display: inline-flex;
    gap: 1rem;
    width: auto;
    justify-content: center;
    align-items: center;
}

.hero-section .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
}

.hero-section .btn:hover::before {
    left: 100%;
}

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

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.5s;
    z-index: 20;
    margin-top: 1.5rem;
}

.scroll-indicator a {
    display: inline-block;
    color: #fff;
    background: rgba(30,30,30,0.45);
    border-radius: 1.5rem;
    padding: 0.2rem 1.2rem 0.2rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.2s;
}

.scroll-indicator a:hover {
    background: rgba(30,30,30,0.7);
}

.scroll-indicator i {
    font-size: 1.3rem;
    animation: bounce 2s infinite;
    display: block;
    margin-top: 0.1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.hero-flex-content, .carousel-indicators-wrapper { display: unset !important; }

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    border-radius: 18px 18px 0 0;
    margin-top: 3rem;
}

.footer h4,
.footer p,
.footer a,
.footer-links li,
.footer .social-links a {
    color: #fff !important;
}

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

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffd700 !important;
}

.social-links a {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
    color: #ffd700 !important;
    transform: scale(1.15) rotate(-6deg);
}

/* Modern Section Titles */
.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 auto;
}

/* Modern Stats Section with 3D Effect */
.stats-section {
    background: linear-gradient(45deg, var(--bg-dark), var(--secondary));
    color: var(--bg-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.stat-item:hover {
    transform: translateY(-10px) rotateX(10deg);
}

.stat-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.stat-item:hover i {
    transform: scale(1.2) translateZ(20px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bg-light);
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Auto-scroll Button */
.auto-scroll-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    border: none;
    box-shadow: var(--shadow);
}

.auto-scroll-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.auto-scroll-btn:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Modern Products Section Styles */
.products-preview {
    background: linear-gradient(120deg, #f8fafc 60%, #e9f0ff 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(60,60,90,0.08);
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInProducts 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.products-preview .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.products-preview .section-title p {
    font-size: 1.1rem;
    color: #2d3557;
    margin-bottom: 1.2rem;
}
.product-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(60,60,90,0.10);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border 0.25s;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1.5px solid #e6eaf3;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px 0 rgba(30,30,60,0.14);
    border: 1.5px solid #b3c6f7;
}
.product-card-img-wrapper {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}
.product-card img {
    border-radius: 0;
    object-fit: cover;
    width: 100%;
    height: 220px;
    transition: filter 0.3s;
    display: block;
}
.product-card:hover img {
    filter: brightness(0.97) saturate(1.1);
}
.product-card .card-body {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a2340;
    margin-bottom: 0.7rem;
}
.product-card p {
    color: #3a3a3a;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}
.product-card .btn {
    align-self: flex-start;
}
.all-products-btn {
    background: var(--primary);
    color: var(--bg-light);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.all-products-btn:hover, .all-products-btn:focus {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--secondary);
}
@keyframes fadeInProducts {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-card {
    background: #181818;
    color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    padding: 2rem 1.5rem;
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 33.3333%;
    margin: 1rem 0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}
.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.feature-card p {
    color: #ccc;
    font-size: 1rem;
}

.contact-form {
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(60,60,90,0.10);
    border: 1.5px solid #e6eaf3;
    padding: 2rem;
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
}
.contact-form input,
.contact-form textarea {
    background: #f0f3fa;
    border: 1.5px solid #d9e0f0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
    outline: none;
}

/* Modern Button Styles */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--bg-light);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: -1;
}

.btn-outline-light {
    background: transparent;
    color: var(--bg-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover::after {
    width: 200px;
    height: 200px;
}

.btn-outline-light:hover {
    color: var(--primary);
}

.btn-outline-light:hover::before {
    opacity: 1;
}

.btn-outline-light:hover {
    border-color: var(--bg-light);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn + .btn {
    margin-left: 1rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    /* --- CONSOLIDATED & CORRECTED MOBILE STYLES --- */

    /* GENERAL LAYOUT */
    .section-title h2 {
        font-size: 1.8rem;
    }
    .footer {
        text-align: center;
    }
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    .locations-grid .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* NAVBAR LAYOUT */
    .navbar .container-fluid {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .navbar-brand {
        flex-grow: 1;
    }
    .navbar-toggler {
        order: 2;
    }
    .navbar-collapse {
        order: 3;
        width: 100%;
    }

    /* HERO SECTION */
    .hero-section {
        height: 90vh;
    }
    .hero-section .container {
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;
        bottom: auto;
        transform: none;
        width: 90%;
        margin: 0 auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-section .hero-badge {
        font-size: 1rem;
        display: inline-block;
        margin-bottom: 1.5rem;
    }
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* THE FIX: Keep buttons horizontal and make them smaller */
    .hero-section .btn-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .hero-section .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        width: auto;
        white-space: normal;
        max-width: none;
    }

    /* Adjust carousel indicators to not overlap content */
    .hero-section .carousel-indicators {
        bottom: 20px !important;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .auto-scroll-btn,
    .contact-form,
    .hero-section .btn-group {
        display: none !important;
    }
    body {
        background: none;
        color: #000;
        font-size: 12pt;
    }
    a {
        text-decoration: none;
        color: #000;
    }
}

/* Additional Specificity & Overrides */
.hero-section .hero-badge {
    background: none;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 1.25rem;
    font-weight: 600;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    letter-spacing: 0.01em;
    transition: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.12);
    display: inline;
}

.about-preview {
    background: linear-gradient(120deg, rgba(255,255,255,0.85) 60%, rgba(240,245,255,0.7) 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(60,60,90,0.10);
    padding: 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInAbout 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.about-preview .section-title h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.about-preview .section-title p {
    font-size: 1.1rem;
    color: #2d3557;
    margin-bottom: 1.2rem;
}
.about-preview p {
    color: #3a3a3a;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.about-preview img {
    max-width: 450px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 1.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    object-fit: cover;
    width: 100%;
    min-height: 320px;
    max-height: 520px;
    transition: transform 0.3s cubic-bezier(.25,.8,.25,1), box-shadow 0.3s;
}
.about-preview img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
@media (min-width: 992px) {
    .about-preview .col-lg-6:last-child {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-preview img {
        margin: 0 auto;
        max-width: 100%;
    }
}
@media (max-width: 991.98px) {
    .about-preview .col-lg-6 {
        text-align: center;
    }
    .about-preview img {
        margin-bottom: 2rem;
    }
}
@keyframes fadeInAbout {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Products Slider Modular Styles */
.products-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 4rem 0 0;
  max-width: 1500px;
  margin: 0 auto 2.5rem auto;
}
.products-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.products-slider .product-card {
  min-width: 375px;
  max-width: 375px;
  flex: 0 0 33.3333%;
  margin: 0 1rem;
}
.products-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
}
.products-arrow.left-arrow {
  left: 0px;
}
.products-arrow.right-arrow {
  right: 0px;
}
.products-arrow:hover, .products-arrow:focus {
  background: #000;
  color: #fff;
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.products-description {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
}
.products-preview .products-description {
    margin-bottom: 2.5rem;
}
.products-preview .products-slider {
    margin-bottom: 2.5rem;
}
.products-preview .all-products-btn {
    margin-top: 1rem;
}
.products-preview .products-slider-track .product-card {
    height: 425px;
}

#product-search {
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    max-width: 400px;
    margin: 0 auto 2rem auto;
}
#product-search:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

hr {
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0;
}

.product-card .btn.quick-view-btn {
    background: rgba(0,0,0,0.1);
    color: var(--primary);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0,0,0,0.1);
}
.product-card .btn.quick-view-btn:hover {
    background: rgba(0,0,0,0.2);
}

.modal-content {
    border-radius: 1.5rem;
    border: none;
    box-shadow: var(--shadow-lg);
}
.modal-header {
    border-bottom: none;
}
.btn-close {
    background-size: 0.8em;
}

strong {
  font-weight: 600;
  color: var(--text);
}

/* Notable Client Card Styles */
.notable-client-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(60,60,90,0.10);
    border: 1.5px solid #e6eaf3;
    transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
    overflow: hidden;
    position: relative;
    padding: 1.5rem;
}
.notable-client-card:hover,
.notable-client-card.top-client {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px rgba(30,30,60,0.16);
    border-color: #b3c6f7;
}
.notable-client-card .card-body {
    padding: 0;
}
.notable-client-card .client-extra-info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}
.notable-client-card:hover .client-extra-info,
.notable-client-card.top-client .client-extra-info {
    opacity: 1;
    transform: translateY(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
    border: none;
    box-shadow: var(--shadow);
    visibility: hidden;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Modern Locations Page Enhancements */
.locations-hero {
    box-shadow: 0 8px 32px 0 rgba(30,30,60,0.10);
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.locations-section {
    background: linear-gradient(120deg, #f8fafc 60%, #e9f0ff 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(60,60,90,0.10);
    padding: 2.5rem 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.locations-section .card {
    background: rgba(255,255,255,0.85);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(60,60,90,0.10);
    border: 1.5px solid #e6eaf3;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border 0.25s;
    overflow: hidden;
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    margin-bottom: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.locations-section .card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 32px 0 rgba(30,30,60,0.16);
    border: 1.5px solid #b3c6f7;
}
.locations-section .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a2340;
    margin-bottom: 0.7rem;
}
.locations-section .card-body {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
}
.locations-section .ratio {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(30,30,60,0.08);
}

/* Locations Page Redesign Enhancements */
.locations-intro {
  background: linear-gradient(90deg, #f8fafc 60%, #e9f0ff 100%);
  border-radius: 0 0 2rem 2rem;
  margin-bottom: 0;
}
.locations-divider {
  width: 60px;
  border-top: 3px solid #b3c6f7;
  margin: 0 auto;
}
.locations-grid {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding-top: 0;
}
.location-card {
  background: rgba(255,255,255,0.95);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(60,60,90,0.10);
  border: 1.5px solid #e6eaf3;
  transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s both;
}
.location-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px 0 rgba(30,30,60,0.14);
  border: 1.5px solid #b3c6f7;
}
.location-card-header {
  padding: 1.2rem 1.2rem 0.5rem 1.2rem;
  text-align: left;
}
.location-card-body {
  padding: 0 1.2rem 1.5rem 1.2rem;
  flex: 1 1 auto;
}
.location-card .badge {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Why Choose Us Carousel Styles */
.why-slider-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
.why-slider-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 2rem;
}
.why-slider-track::-webkit-scrollbar {
  display: none;
}
.why-carousel-heading {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #fff;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .navbar .navbar-social {
        margin: 0 auto 0 0;
        justify-content: flex-end;
        padding-top: 0.5rem;
    }
    .navbar .d-flex.flex-grow-1.justify-content-center {
        justify-content: flex-start !important;
    }
    .navbar {
        border-radius: 0 0 12px 12px;
    }
    .navbar-brand {
        margin-left: 10px;
    }
    .hero-section {
        min-height: 80vh;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 10%;
    }
    .products-slider {
        padding: 1rem 2.5rem 0 0;
    }
    .products-arrow.left-arrow {
        left: -12px;
    }
    .products-arrow.right-arrow {
        right: -12px;
    }
    .products-slider .product-card {
        min-width: 75vw;
        max-width: 75vw;
        flex: 0 0 100%;
        margin: 0 0.5rem;
        height: 420px;
    }
    .feature-card {
        min-width: 80vw;
        max-width: 80vw;
        flex: 0 0 100%;
    }
    .why-slider-track {
        gap: 1rem;
    }
}

@media (min-width: 768px) {
  .locations-grid .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .locations-grid .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Show dropdown on hover and focus for desktop */
@media (min-width: 992px) {
  .navbar .nav-item.dropdown:hover > .dropdown-menu,
  .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.page-header {
    background: #f8f9fa;
    padding: 1.2rem 0;
    margin-top: 0;
}
.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 0;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
}
.breadcrumb-item.active {
    color: var(--text);
}

/* Custom positioning for shikhar.jpg image */
.hero-section .carousel-item:first-child img {
    object-position: center 70%;
}

/* Custom yellow badge color */
.bg-custom-yellow {
    background-color: #ffd700 !important;
    color: #000 !important;
}

/* Custom yellow border color */
.border-custom-yellow {
    border-color: #ffd700 !important;
}

/* Custom yellow text color */
.text-custom-yellow {
    color: #ffd700 !important;
}

/* Custom button style for maps links */
.btn-custom-map, a.btn-custom-map {
    background-color: #ffffff !important;
    color: #ffd700 !important;
    border: 1px solid #e0e0e0 !important;
}

.btn-custom-map:hover, a.btn-custom-map:hover {
    background-color: #000000 !important;
    color: #ffd700 !important;
    border-color: #000000 !important;
}

/* Force visibility of social links on contact card */
.contact-section .social-links a {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: var(--primary) !important;
}

/* --- Mobile & Tablet Navbar Menu Fix --- */
@media (max-width: 991.98px) {
    /* Hide social icons on smaller screens to prevent layout breaking */
    .navbar-social {
        display: none !important;
    }

    /* Style the dropdown menu container */
    .navbar-collapse {
        position: absolute;
        top: 70px; /* Position below the main navbar */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 1rem 1rem;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .navbar-nav {
        align-items: center; /* Center the nav items */
        gap: 0.5rem;
    }
}