/* ===================================================
   PRP GROUP – Custom Stylesheet
   Primary Color: #032e7d | Font: Inter, Poppins
=================================================== */

/* ── CSS Variables ───────────────────────────── */
:root {
    --primary: #032e7d;
    --primary-dark: #021f56;
    --primary-light: #0e4fb5;
    --accent: #f0a500;
    --accent-dark: #d08c00;
    --white: #ffffff;
    --light-bg: #f4f7fd;
    --light-bg2: #eef2fc;
    --text-dark: #1a1a2e;
    --text-muted: #6c7a8d;
    --border: #dde4f0;
    --shadow-sm: 0 4px 15px rgba(3,46,125,0.08);
    --shadow-md: 0 10px 40px rgba(3,46,125,0.12);
    --shadow-lg: 0 20px 60px rgba(3,46,125,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ── Base Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ── Typography ──────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3,46,125,0.07);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.text-primary-brand { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-brand { background-color: var(--primary) !important; }

/* ── Buttons ─────────────────────────────────── */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary-brand {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}
.btn-primary-brand:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3,46,125,0.35);
}
.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
    border: 2px solid var(--accent);
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240,165,0,0.35);
}
.btn-outline-brand {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-brand:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
}

/* ── Top Bar ─────────────────────────────────── */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--accent); }
.topbar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-left: 6px;
    font-size: 0.82rem;
    color: var(--white);
}
.topbar .social-icon:hover { background: var(--accent); color: var(--text-dark); }

/* ── Navigation ──────────────────────────────── */
#mainNav {
    background: var(--primary);
    padding: 0;
    box-shadow: 0 4px 20px rgba(3,46,125,0.3);
    transition: var(--transition);
}
#mainNav.scrolled {
    padding: 0;
    box-shadow: 0 6px 30px rgba(3,46,125,0.4);
}
#mainNav .container { padding: 0 20px; }
.navbar-brand { padding: 12px 0; }
.logo-wrapper { display: flex; align-items: center; }
.logo-wrapper img { height: 46px; width: auto; object-fit: contain; }
.logo-text-fallback {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text-main {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}
.logo-text-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 4px;
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 20px 14px !important;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--white) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    min-width: 260px;
    margin-top: 0;
    border-top: 3px solid var(--primary);
}
.navbar-nav .dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 20px;
    transition: var(--transition);
}
.navbar-nav .dropdown-item:hover {
    background: var(--light-bg2);
    color: var(--primary);
    padding-left: 26px;
}
.navbar-nav .dropdown-item i { color: var(--primary); }
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler:focus { box-shadow: none; }

/* ── Breadcrumb ──────────────────────────────── */
.breadcrumb-section {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.breadcrumb { margin: 0; background: none; padding: 0; font-size: 0.85rem; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ── Hero Section ────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240,165,0,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.hero-badge i { color: var(--accent); }
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-title .highlight {
    color: var(--accent);
    position: relative;
}
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    opacity: 0.5;
}
.hero-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}
.hero-visual {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
}
.hero-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hero-service-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.hero-service-pill i { font-size: 1.2rem; color: var(--accent); }
.hero-service-pill:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}
.hero-floating-badge {
    position: absolute;
    top: -16px;
    right: 20px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(240,165,0,0.4);
    white-space: nowrap;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ── Section Padding ─────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── Services Cards ──────────────────────────── */
.service-cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.service-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(3,46,125,0.2);
}
.service-cat-card:hover::before { transform: scaleX(1); }
.service-cat-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-cat-card:hover .service-cat-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}
.service-cat-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.service-cat-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}
.service-cat-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--light-bg2);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-list-item:last-child { border-bottom: none; }
.service-list-item i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}
.service-list-item:hover { color: var(--primary); padding-left: 6px; }

/* ── Stats / Counter Section ─────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-num {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-num span.suffix { font-size: 0.6em; font-weight: 700; }
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto;
}

/* ── Feature Cards (Why Choose Us) ──────────────*/
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(3,46,125,0.25);
}
.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── Process Steps ───────────────────────────── */
.process-section { background: var(--light-bg); }
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.process-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-text { font-size: 0.85rem; color: var(--text-muted); }

/* ── CTA Section ─────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* ── Team / Director Card ────────────────────── */
.director-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.director-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.director-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(3,46,125,0.3);
}
.director-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.director-title { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

/* ── Vision Mission Cards ────────────────────── */
.vmp-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    height: 100%;
}
.vmp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vmp-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}
.vmp-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.vmp-text { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* ── What We Offer (3 cols) ──────────────────── */
.offer-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}
.offer-icon {
    width: 72px;
    height: 72px;
    background: var(--light-bg2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}
.offer-card:hover .offer-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}
.offer-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.offer-text { font-size: 0.88rem; color: var(--text-muted); }

/* ── Clients Section ─────────────────────────── */
.clients-section { background: var(--light-bg); }
.client-logo-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 90px;
    transition: var(--transition);
    filter: grayscale(80%);
    opacity: 0.75;
}
.client-logo-wrap:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.client-logo-placeholder {
    background: var(--light-bg2);
    border-radius: 8px;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ── Business Meet Gallery ───────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--light-bg);
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3,46,125,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 600; }
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-bg2), var(--border));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}
.gallery-placeholder i { font-size: 2.5rem; color: var(--primary); opacity: 0.4; }

/* ── Contact Section ─────────────────────────── */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
}
.contact-icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--light-bg2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 14px;
    transition: var(--transition);
}
.contact-card:hover .contact-icon-wrap {
    background: var(--primary);
    color: var(--white);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--light-bg2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(3,46,125,0.1);
    outline: none;
}
.contact-form .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* ── Inner Page Hero ─────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 70%, var(--primary-light) 100%);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    position: relative;
    z-index: 1;
}
.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    position: relative;
    z-index: 1;
}
.page-breadcrumb {
    position: relative;
    z-index: 1;
    padding-top: 14px;
}
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-breadcrumb .breadcrumb-item.active { color: var(--accent); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── Service Detail Card ─────────────────────── */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(3,46,125,0.2);
    transform: translateY(-4px);
}
.service-detail-icon {
    width: 46px;
    height: 46px;
    background: var(--light-bg2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 14px;
    transition: var(--transition);
}
.service-detail-card:hover .service-detail-icon {
    background: var(--primary);
    color: var(--white);
}
.service-detail-title { font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
.service-detail-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

/* ── About Page ──────────────────────────────── */
.about-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.about-stats-strip {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 20px;
}
.about-stat { text-align: center; padding: 10px; }
.about-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
}
.about-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; }

/* ── Footer ──────────────────────────────────── */
.footer-wave { background: var(--white); line-height: 0; }
.footer-wave svg { display: block; width: 100%; }
.site-footer { background: var(--primary-dark); }
.footer-main { padding: 60px 0 40px; }
.footer-brand img { height: 46px; width: auto; object-fit: contain; }
.footer-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}
.footer-logo-text span { color: var(--accent); }
.footer-tagline { color: var(--accent); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.footer-desc { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.75; margin-top: 12px; }
.footer-heading {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 2px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    transition: var(--transition);
}
.footer-links a i { font-size: 0.72rem; }
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    color: rgba(255,255,255,0.65);
    font-size: 0.87rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-contact-list li:last-child { border-bottom: none; }
.footer-contact-list li i { color: var(--accent); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--text-dark); transform: translateY(-3px); }
.footer-social .whatsapp-icon:hover { background: #25d366; color: var(--white); }
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
}
.footer-badge i { color: var(--accent); }
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* ── Floating Buttons ────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    background: #1da851;
    color: var(--white);
}
@keyframes pulse-green {
    0% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
    100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
}
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Testimonial Card ────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-weight: 700; font-size: 0.9rem; }
.testimonial-company { font-size: 0.8rem; color: var(--text-muted); }

/* ── Accordion ───────────────────────────────── */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: 0.95rem; background: var(--white); color: var(--text-dark); }
.accordion-button:not(.collapsed) { background: var(--light-bg2); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }

/* ── Badges ──────────────────────────────────── */
.badge-primary { background: rgba(3,46,125,0.1); color: var(--primary); border-radius: 6px; padding: 5px 12px; font-size: 0.8rem; font-weight: 600; }
.badge-accent { background: rgba(240,165,0,0.12); color: var(--accent-dark); border-radius: 6px; padding: 5px 12px; font-size: 0.8rem; font-weight: 600; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding: 60px 0; }
    #mainNav .navbar-nav { padding: 16px 0; }
    .navbar-nav .nav-link { padding: 12px 8px !important; }
    .navbar-nav .nav-link::after { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-image-wrapper { margin-top: 40px; }
    .section-pad { padding: 60px 0; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 1.9rem; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; text-align: center; }
    .hero-stats { justify-content: center; gap: 20px; }
    .stats-section .stat-divider { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .contact-card { padding: 24px; }
    .director-card { padding: 28px; }
    .footer-main { padding: 40px 0 20px; }
}
@media (max-width: 575.98px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-visual-grid { grid-template-columns: 1fr; }
}
