/* ==================== STYLING VARIABLES (STORE THEME MATCHED) ==================== */
:root {
    --primary-color: #0d233a;       /* Deep Store Navy Blue Theme */
    --accent-color: #FF6200;        /* Gold / Store Button Accent Color */
    --accent-hover: #e05600;        /* Hover Dark Gold */
    --bg-light: #f8f9fa;            /* Light Clean Gray Background */
    --text-dark: #2c3e50;           /* Readable Text Color */
    --text-muted: #6c757d;          /* Subtitle Gray Color */
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Mobile side scroll fix */
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}
/* ==================== TOP CONTACT BAR STYLING ==================== */
.top-bar {
    background-color: #ffffff; /* White Background */
    color: #2c3e50;            /* Dark Readable Text */
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info, .top-hours {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-info a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.top-info a:hover {
    color: var(--accent-color);
}

/* Mobile Responsive Adjustments for Top Bar */
@media screen and (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .top-info {
        gap: 10px;
        font-size: 11px;
    }

    .top-hours {
        display: none; /* Mobile screen par jagah bachane ke liye hours hide ho jayenge */
    }
}

/* ================= FIXED NAVBAR LAYOUT ================= */
.navbar {
    background-color: #0d233a;
    padding: 10px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Left Side: Logo + Text */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-title {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-title span {
    color: #FF5722;
    font-weight: 900;
}

/* Right Side: Navigation Links & Button */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.nav-links a.active,
.nav-links a:hover {
    color: #FF6200;
}

/* Visit Shop Button */
.shop-btn {
    background-color: #FF6200;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

/* ==================== 2. HERO SECTION & VIDEO STYLING ==================== */
.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 35, 58, 0.75); /* Dark Navy Transparent Overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 15px;
}

.badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 48px;
    margin: 20px 0;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ==================== 3. SERVICES CARDS STYLING ==================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body .icon {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.card-body h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.highlight-card {
    border: 2px solid var(--accent-color);
}

/* ==================== 4. SERVICE AREAS STYLING ==================== */
.service-area {
    background: var(--primary-color);
    color: var(--white);
}

.service-area h2 {
    color: var(--accent-color);
}

.area-subtitle {
    margin-bottom: 30px;
    color: #cbd5e1;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.area-tags span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(243, 156, 18, 0.4);
}

/* ==================== 5. GALLERY STYLING ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 35, 58, 0.9));
    color: var(--white);
    padding: 15px;
}

/* ==================== 6. CEO & STATS STYLING ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ceo-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.ceo-quote {
    font-size: 18px;
    font-style: italic;
    color: #475569;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    margin: 20px 0;
}

.ceo-title {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    color: var(--accent-color);
    font-size: 28px;
}

/* ==================== 7. FOOTER STYLING ==================== */
footer {
    background: #081625;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 span {
    color: var(--accent-color);
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    margin-bottom: 10px;
    color: #94a3b8;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 2;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    color: #64748b;
    font-size: 14px;
}

/* ==================== 8. COMPACT MOBILE RESPONSIVE STYLING ==================== */
@media screen and (max-width: 768px) {
    /* Navbar height and spacing fix */
    .navbar {
        padding: 6px 0 !important;
    }

    .nav-container {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* Logo scaling on mobile */
    .site-logo {
        height: 38px !important;
    }

    .logo-title {
        font-size: 14px !important;
    }

    /* Compact nav links */
    .nav-links {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }

    .nav-links a {
        font-size: 12px !important;
    }

    .shop-btn {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    /* Hero section sizing */
    .hero-section {
        height: 70vh !important;
    }

    .hero-content h1 {
        font-size: 26px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    /* Layout adjustments */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
    }
}