/* ==========================================
   BLOOMSERVE BASE CSS
   Version : 1.0 (Windows 11 Fluent UI Integrated)
========================================== */

/* ===========================
   CONTAINER
=========================== */

.container{
    width:100%;
    max-width:var(--container);
    margin:auto;
    padding:0 24px;
}

/* ===========================
   COMMON SECTION
=========================== */

.section-title{
    font-size:52px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-2px;
    color:var(--dark);
    margin-bottom:20px;
}

.section-subtitle{
    font-size:18px;
    color:var(--primary);
    font-weight:700;
    margin-bottom:18px;
    display:inline-block;
}

.section-description{
    max-width:720px;
    font-size:18px;
    color:var(--muted);
}

/* ===========================
   GLOBAL WINDOWS 11 FLUENT BUTTON SYSTEM
=========================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:50px;
    padding:0 28px;
    border-radius:16px; /* Fluent Rounded Style */
    font-size:15px;
    font-weight:700;
    letter-spacing:-0.2px;
    transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration:none;
    cursor:pointer;
    border:none;
}

/* 1. Primary Vibrant Gradient Button (Explore Services, Get Free HR Audit, CTA) */
.btn-primary,
.nav-actions .btn-primary,
.hero-actions .btn,
.cta-box .btn-primary,
.download-card .btn {
    background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #6366f1 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35) !important;
    border: none !important;
}

.btn-primary:hover,
.nav-actions .btn-primary:hover,
.hero-actions .btn:hover,
.cta-box .btn-primary:hover,
.download-card .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 30px rgba(99, 102, 241, 0.48) !important;
    color: #ffffff !important;
}

/* 2. HRMS Login & Outline Buttons (Glassmorphic Tint) */
.btn-outline,
.nav-actions .btn-outline {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: #2563eb !important;
    border: 1.5px solid rgba(99, 102, 241, 0.35) !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04) !important;
}

.btn-outline:hover,
.nav-actions .btn-outline:hover {
    background: #ffffff !important;
    border-color: #6366f1 !important;
    color: #4f46e5 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.18) !important;
}

/* 3. Header Navbar Actions Alignment */
.nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* ===========================
   GRID
=========================== */

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* ===========================
   CARD
=========================== */

.card{
    background:#fff;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
}

/* ===========================
   BADGE
=========================== */

.badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:999px;
    background:#eef7ff;
    color:var(--primary);
    font-size:14px;
    font-weight:700;
}

/* ===========================
   TEXT
=========================== */

.text-center{
    text-align:center;
}

.text-white{
    color:#fff;
}

.text-muted{
    color:var(--muted);
}

/* ===========================
   SPACING
=========================== */

.mt-20{
    margin-top:20px;
}

.mt-40{
    margin-top:40px;
}

.mt-60{
    margin-top:60px;
}

.mb-20{
    margin-bottom:20px;
}

.mb-40{
    margin-bottom:40px;
}

.mb-60{
    margin-bottom:60px;
}

/* ===========================
   IMAGE
=========================== */

.img-fluid{
    width:100%;
    height:auto;
    display:block;
}

/* ===========================
   HR
=========================== */

.divider{
    width:100%;
    height:1px;
    background:var(--border);
}

/* ==========================================
WHY BLOOMSERVE
========================================== */

.why-bloomserve{
padding:120px 0;
background:#ffffff;
}

.section-heading{
max-width:720px;
margin:0 auto 70px;
text-align:center;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
}

.why-card{
padding:40px 30px;
background:#fff;
border:1px solid #edf2f7;
border-radius:24px;
transition:.35s;
box-shadow:0 10px 30px rgba(15,23,42,.04);
}

.why-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(15,23,42,.10);
}

.why-icon{
width:70px;
height:70px;
border-radius:18px;
background:#eef7ff;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
margin-bottom:24px;
}

.why-card h3{
margin-bottom:14px;
font-size:24px;
}

.why-card p{
font-size:16px;
color:#64748b;
line-height:1.8;
}

/* ==========================================
   SERVICES
========================================== */

.services{
    padding:120px 0;
    background:#f8fbff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 35px;
    border-radius:24px;
    border:1px solid #edf2f7;
    transition:.35s;
    box-shadow:0 10px 25px rgba(15,23,42,.04);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(15,23,42,.10);
}

.service-icon{
    width:72px;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    background:#eef7ff;
    border-radius:20px;
    margin-bottom:24px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:16px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

/* ==========================================
PROCESS
========================================== */

.process{
padding:120px 0;
background:#fff;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
margin-top:60px;
}

.process-card{
padding:45px 35px;
border:1px solid #edf2f7;
border-radius:24px;
transition:.35s;
background:#fff;
position:relative;
overflow:hidden;
}

.process-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(15,23,42,.08);
}

.process-number{
font-size:56px;
font-weight:800;
color:#0b86d5;
opacity:.15;
margin-bottom:25px;
}

.process-card h3{
font-size:24px;
margin-bottom:16px;
}

.process-card p{
color:#64748b;
line-height:1.8;
}

/* ==========================================
   INDUSTRIES
========================================== */

.industries{
    padding:120px 0;
    background:#f8fbff;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:60px;
}

.industry-card{
    background:#fff;
    padding:38px 30px;
    border-radius:22px;
    border:1px solid #edf2f7;
    transition:.35s;
    box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.industry-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}

.industry-card h3{
    font-size:22px;
    margin-bottom:14px;
    color:var(--dark);
}

.industry-card p{
    color:#64748b;
    line-height:1.8;
}

/* ==========================================
DOWNLOADS
========================================== */

.downloads{
padding:120px 0;
background:#ffffff;
}

.downloads-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.download-card{
background:#fff;
border:1px solid #edf2f7;
border-radius:24px;
padding:40px;
transition:.35s;
box-shadow:0 10px 25px rgba(15,23,42,.04);
}

.download-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(15,23,42,.10);
}

.download-card h3{
font-size:26px;
margin-bottom:16px;
}

.download-card p{
margin-bottom:28px;
color:#64748b;
line-height:1.8;
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials{
    padding:120px 0;
    background:#f8fbff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    border:1px solid #edf2f7;
    box-shadow:0 10px 25px rgba(15,23,42,.04);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(15,23,42,.08);
}

.testimonial-card p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:30px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:16px;
}

.avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:20px;
}

.testimonial-user h4{
    margin-bottom:4px;
}

.testimonial-user span{
    color:#64748b;
    font-size:14px;
}

/* ==========================================
   FINAL CTA
========================================== */

.cta-section{
    padding:120px 0;
    background:#ffffff;
}

.cta-box{
    background:linear-gradient(
        135deg,
        #3b82f6,
        #6366f1
    );
    color:#ffffff;
    text-align:center;
    padding:80px 60px;
    border-radius:32px;
    box-shadow:0 30px 80px rgba(99,102,241,.28);
}

.cta-box .section-subtitle{
    color:#e0e7ff;
    margin-bottom:18px;
}

.cta-box h2{
    font-size:54px;
    line-height:1.15;
    color:#ffffff;
    margin-bottom:24px;
}

.cta-box p{
    max-width:760px;
    margin:0 auto 40px;
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.9;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.cta-box .btn-outline{
    background:#ffffff !important;
    color:#4f46e5 !important;
    border:none !important;
    box-shadow: 0 10px 24px rgba(15,23,42,0.12) !important;
}

.cta-box .btn-outline:hover{
    background:#f8fafc !important;
    transform:translateY(-3px) !important;
}

/* ==========================================
   FOOTER
========================================== */

.footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:90px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
    margin-bottom:60px;
}

.footer-logo{
    height:42px;
    margin-bottom:24px;
}

.footer-col p{
    line-height:1.9;
}

.footer-col h3{
    color:#ffffff;
    margin-bottom:22px;
    font-size:20px;
}

.footer-col ul{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-col a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-col a:hover{
    color:#ffffff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links{
    display:flex;
    gap:24px;
}

.footer-links a{
    color:#cbd5e1;
}

/* =====================================================
   WINDOWS 11 FLUENT NAVBAR DROPDOWN SYSTEM
===================================================== */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
    color: #0b86d5;
}

.nav-link i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-item:hover > .nav-link i {
    transform: rotate(180deg);
}

/* Glassmorphic Dropdown Box */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 270px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.dropdown-item i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #eef7ff;
    color: #0b86d5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f0f7ff;
    color: #0b86d5;
    transform: translateX(4px);
}

.dropdown-item:hover i {
    background: #0b86d5;
    color: #ffffff;
}

/* Mobile Drawer Nested Links */
.mobile-dropdown-title {
    font-size: 13px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 6px;
    padding-left: 6px;
}

.mobile-menu a.mobile-sub-link {
    font-size: 15.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    padding: 6px 12px !important;
    border-radius: 8px;
}

.mobile-menu a.mobile-sub-link:hover {
    background: #f1f5f9;
    color: #0b86d5 !important;
}