/* ==========================================================================
   Gurkha Guard Security Services Pvt. Ltd. - Simple & Clean Corporate Stylesheet
   ========================================================================== */

:root {
    --gg-primary: #0f2942;
    --gg-primary-hover: #1e3a8a;
    --gg-secondary: #0f172a;
    --gg-dark: #0f172a;
    --gg-navy: #0f2942;
    --gg-light: #f8fafc;
    --gg-text-dark: #0f172a;
    --gg-text-muted: #475569;
    --gg-text-light: #ffffff;
    --gg-font-heading: 'Space Grotesk', sans-serif;
    --gg-font-body: 'DM Sans', sans-serif;
}

body {
    font-family: var(--gg-font-body);
    color: var(--gg-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

p {
    color: #475569;
    font-size: 1.02rem;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--gg-font-heading);
    font-weight: 700;
    color: #0f172a;
}

/* Text color utilities */
.text-gurkha-primary {
    color: var(--gg-primary) !important;
}
.bg-gurkha-primary {
    background-color: var(--gg-primary) !important;
}

/* Icon boxes for cards */
.icon-box-primary {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0f2942;
    transition: all 0.25s ease;
}
.card-gurkha:hover .icon-box-primary {
    background: #0f2942;
    border-color: #0f2942;
    color: #ffffff !important;
}
.card-gurkha:hover .icon-box-primary i {
    color: #ffffff !important;
}
.icon-box-light {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #0f2942;
    transition: all 0.25s ease;
}

/* Simple Clean Page Header */
.page-header-bg {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    padding: 60px 0 !important;
}
.page-header-bg h1 {
    color: #0f172a !important;
}
.page-header-bg p {
    color: #475569 !important;
}

/* ==========================================================================
   Topbar & Header Navigation
   ========================================================================== */
.header-topbar {
    background-color: #0f172a !important;
    border-bottom: 1px solid #1e293b;
}

.navbar-gurkha {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}
.navbar-gurkha.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    background-color: #ffffff;
}
.navbar-gurkha .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-logo-badge {
    width: 44px;
    height: 44px;
    background: #0f2942;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
}
.brand-text .title {
    font-family: var(--gg-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.brand-text .subtitle {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.navbar-gurkha .nav-link {
    font-family: var(--gg-font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: #1e293b !important;
    padding: 8px 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    position: relative;
}
.navbar-gurkha .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 16px; right: 16px;
    height: 2px;
    background-color: #0f2942;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.navbar-gurkha .nav-link:hover::after,
.navbar-gurkha .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-gurkha .nav-link:hover,
.navbar-gurkha .nav-link.active {
    color: #0f2942 !important;
}

/* Dropdown on Hover for Desktop */
.navbar-gurkha .nav-link.dropdown-toggle::after {
    display: none !important;
}
.dropdown-chevron {
    display: inline-block;
    transition: transform 0.25s ease;
}
.navbar-gurkha .nav-item.dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

@media (min-width: 992px) {
    .navbar-gurkha .nav-item.dropdown {
        position: relative;
    }
    .navbar-gurkha .nav-item.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        margin-top: 0;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08) !important;
    }
    .navbar-gurkha .nav-item.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-gurkha-primary {
    background-color: #0f2942;
    color: #ffffff !important;
    font-family: var(--gg-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-gurkha-primary:hover {
    background-color: #1e3a8a;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.2);
}
.btn-gurkha-outline {
    background-color: transparent;
    color: #0f2942 !important;
    border: 1.5px solid #0f2942;
    font-family: var(--gg-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 6px;
    transition: all 0.25s ease;
}
.btn-gurkha-outline:hover {
    background-color: #0f2942;
    color: #ffffff !important;
}
.btn-gurkha-outline-light {
    background-color: transparent;
    color: #0f2942 !important;
    border: 1.5px solid #0f2942 !important;
    font-family: var(--gg-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 6px;
    transition: all 0.25s ease;
}
.btn-gurkha-outline-light:hover {
    background-color: #0f2942;
    color: #ffffff !important;
}

/* ==========================================================================
   Hero & Sections
   ========================================================================== */
.hero-section {
    position: relative;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 80px 0 70px;
}
.hero-section h1 {
    color: #0f172a !important;
}
.hero-section p {
    color: #475569 !important;
    font-weight: 400;
}

.section-padding {
    padding: 70px 0;
}
.bg-light-subtle-custom {
    background-color: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.section-title-wrap {
    margin-bottom: 40px;
}
.section-subtitle {
    color: #0f2942;
    font-family: var(--gg-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 6px;
}
.section-title {
    color: #0f172a !important;
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Simple Clean Cards */
.card-gurkha {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 28px 22px;
    transition: all 0.25s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.card-gurkha h4, .card-gurkha h5 {
    color: #0f172a !important;
}
.card-gurkha p {
    color: #475569 !important;
}
.card-gurkha:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}
.card-gurkha .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #f1f5f9;
    color: #0f2942;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

/* Stats Counter Bar - Simple Light Theme */
.stats-counter-bar {
    background: #ffffff;
    color: #0f172a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    margin-top: -45px;
    position: relative;
    z-index: 10;
    border: 1px solid #e2e8f0;
}
.stat-item h3 {
    color: #0f2942 !important;
    font-size: 2.4rem;
    margin-bottom: 2px;
    font-weight: 800;
}
.stat-item p {
    color: #64748b !important;
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Banner - Clean Simple Theme */
.cta-banner-bg {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
}
.cta-banner-bg h2, .cta-banner-bg p {
    color: #0f172a !important;
}

/* Footer - Clean Dark Slate */
.footer-gurkha {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 60px;
    padding-bottom: 25px;
    font-size: 0.95rem;
    border-top: 3px solid #1e293b;
}
.footer-gurkha p {
    color: #94a3b8 !important;
}
.footer-gurkha h5 {
    color: #ffffff !important;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-links a {
    color: #cbd5e1;
    transition: color 0.2s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    background-color: #0f2942;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top-btn:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
}
