/* 
   Shivansh Nexora Hospitality Pvt. Ltd.
   Premium Corporate Hospitality stylesheet - Refined Mobile & Grid Details
*/

/* --- Design Tokens / CSS Custom Properties --- */
:root {
    --primary-color: #0D5C63;
    --primary-glow: rgba(13, 92, 99, 0.15);
    --primary-dark: #093e43;
    --secondary-color: #D4A017;
    --secondary-hover: #b8860b;
    --accent-color: #F4F6F8;
    --dark-color: #102A43;
    --dark-translucent: rgba(16, 42, 67, 0.95);
    --bg-color: #FFFFFF;
    --text-color: #2C3E50;
    --text-light: #4A5D6E;
    --white: #FFFFFF;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 30px;
    --box-shadow-premium: 0 10px 30px rgba(16, 42, 67, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(13, 92, 99, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--accent-color);
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: #cbd5e0 !important;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--accent-color);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* --- Loading Animation --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-logo {
    position: absolute;
    top: 22px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 1.5rem;
}

.loader-text {
    margin-top: 20px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Common Components & UI Elements --- */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.tag-gold {
    color: var(--secondary-color) !important;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--dark-color);
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 42, 67, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.25);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.25);
}

.btn-proposal {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 22px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(212, 160, 23, 0.2);
}

.btn-proposal:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg, .btn-call-action svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-call-action {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call-action:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 15px;
}

.btn-text svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.btn-text:hover svg {
    transform: translateX(5px);
}

/* Icon Utilities */
.icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* --- Top Info Bar --- */
.top-bar {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1010;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: auto;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info svg {
    fill: var(--secondary-color);
    width: 14px;
    height: 14px;
}

.top-info a {
    color: rgba(255, 255, 255, 0.9);
}

.top-info a:hover {
    color: var(--secondary-color);
}

.topbar-email-wrapper {
    display: none !important;
}

.top-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-social .social-icon svg {
    fill: rgba(255, 255, 255, 0.9);
    width: 18px;
    height: 18px;
}

.top-social .social-icon:hover svg {
    fill: var(--secondary-color);
}

/* --- Header / Navigation (White BG, High Contrast) --- */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid rgba(16, 42, 67, 0.1);
    position: fixed;
    top: 39px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 15px 0;
}

/* Sticky Header styling */
.main-header.sticky-always, .main-header.sticky {
    position: fixed;
    top: 39px; /* Offset the 39px high top-bar */
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(16, 42, 67, 0.08);
    padding: 12px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 28px;
    height: 28px;
    fill: var(--secondary-color);
    margin-right: 10px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark-color);
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hamburger Menu button */
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 25px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition-smooth);
}

/* Hamburger Active States */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* --- Hero Section --- */
.hero-section {
    min-height: calc(100vh - 120px);
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.95), rgba(13, 92, 99, 0.85));
    z-index: 1;
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1), rgba(13, 92, 99, 0.1));
    z-index: 2;
    pointer-events: none;
    animation: floatShape 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -50px;
    animation-duration: 25s !important;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -50px;
    animation-duration: 18s !important;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 30%;
    animation-duration: 30s !important;
}

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(-50px) rotate(360deg) scale(1.1); }
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 60px;
}

.hero-content {
    max-width: 800px;
    padding-top: 50px;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-actions-group {
    display: flex;
    gap: 20px;
}

/* Hero Stats Section (White Text for High Contrast Visibility) */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--box-shadow-premium);
}

.stat-card {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
    border-right: none;
}

.stat-num-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--white) !important;
    margin-bottom: 5px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--white) !important;
}

.stat-num-wrapper .plus {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 2px;
    color: var(--white) !important;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Mission, Vision & Core Values --- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-top-color: var(--secondary-color);
}

.mv-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.mv-card:hover .mv-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

.mv-icon-box svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mv-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-color);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image:hover {
    transform: translate(10px, 10px);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius-md);
    z-index: 3;
    box-shadow: var(--box-shadow-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .exp-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

.about-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.highlight-info h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.highlight-info p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Services Section (4 Columns on Desktop) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* exactly 4 columns */
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: visible; /* Changed from hidden so icon badge can overlap */
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Service Card Icon Badge (Outside Image container to prevent clipping) */
.service-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-top: -25px; /* Pull it up to overlay the bottom of the image */
    margin-left: 25px;
    position: relative;
    z-index: 5;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-badge {
    background-color: var(--primary-color);
}

.service-icon-badge svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.service-content {
    padding: 20px 25px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    flex-grow: 1;
    line-height: 1.6;
}

/* --- Institutional-Grade Internal Operations --- */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ops-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid rgba(16, 42, 67, 0.05);
}

.ops-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.ops-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-sm);
    background-color: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: var(--transition-smooth);
}

.ops-card:hover .ops-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
}

.ops-icon-wrapper svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.ops-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* --- Full-Width Monthly Reporting Section Layout --- */
.reporting-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.reporting-image-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
}

.reporting-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.reporting-banner-wrapper {
    background-color: var(--dark-color);
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    box-shadow: var(--box-shadow-premium);
    color: var(--white);
}

.reporting-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.reporting-title-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--secondary-color);
}

.reporting-title-wrapper h3 {
    font-size: 1.4rem;
    color: var(--white);
}

.reporting-intro-text {
    font-size: 0.95rem;
    color: #cbd5e0;
    margin-bottom: 25px;
    line-height: 1.6;
}

.reporting-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reporting-items-list li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: #cbd5e0;
}

.reporting-items-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

/* --- Compliance Section --- */
.compliance-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.compliance-intro {
    font-size: 1rem;
    color: #cbd5e0;
    margin-bottom: 40px;
}

.compliance-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.comp-feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    transition: var(--transition-smooth);
}

.comp-feature-card:hover {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.comp-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(212, 160, 23, 0.1);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.comp-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.comp-feature-card h4 {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.4;
}

.compliance-image-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
}

.compliance-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* --- Why Choose Us Section --- */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--white);
    border: 1px solid rgba(16, 42, 67, 0.06);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow-premium);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-hover);
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.why-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Counter Area */
.counter-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 70px;
    border-top: 1px solid rgba(16, 42, 67, 0.08);
    padding-top: 50px;
}

.counter-card {
    text-align: center;
}

.counter-num-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.counter-num-wrapper .plus {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 2px;
}

.counter-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Testimonials loop slider styling (3 columns visible on desktop, dark BG) --- */
.testimonials-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.testimonial-grid-slider {
    max-width: 1200px;
    margin: 50px auto 0;
    overflow: hidden;
    position: relative;
}

.testimonial-grid-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

.testimonial-grid-card {
    flex-shrink: 0;
    width: calc((100% - 60px) / 3); /* exactly 3 cards visible on desktop */
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
    text-align: left;
    transition: var(--transition-smooth);
}

.testimonial-grid-card:hover {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.reviewer-meta h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.reviewer-meta span {
    font-size: 0.8rem;
    font-weight: 500;
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-bottom: 60px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 25px;
    border-radius: 5px;
}

/* --- FAQ Accordion --- */
.faq-accordion-container {
    max-width: 850px;
    margin: 50px auto 0;
}

.accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow-premium);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background-color: var(--white);
    border: none;
    padding: 22px 30px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-header .arrow {
    transform: rotate(-135deg);
    border-color: var(--primary-color);
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
    border-bottom: 1px solid var(--accent-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 25px 30px;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.contact-intro-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color) !important; /* Label highly visible */
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #718096 !important; /* High contrast border */
    border-radius: var(--border-radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1a202c !important; /* High contrast text color */
    background-color: var(--white) !important; /* High contrast white background */
    transition: var(--transition-smooth);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #4a5568 !important; /* High contrast placeholder text */
    opacity: 1;
}

.form-group select option {
    color: #1a202c !important;
    background-color: var(--white) !important;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    background-color: var(--white) !important;
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form textarea {
    resize: none;
}

.contact-info-wrapper {
    background-color: var(--accent-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-premium);
}

.contact-info-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark-color);
}

.contact-info-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 15px;
}

.info-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.info-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.info-text h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.info-text a {
    color: var(--text-light);
}

.info-text a:hover {
    color: var(--primary-color);
}

/* Map */
.map-container {
    margin-top: 30px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Quick contact buttons in card */
.quick-contact-actions {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-color);
    color: #a0aec0;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    margin-bottom: 20px;
    display: inline-block;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cbd5e0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h4, .footer-newsletter h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 0.85rem;
    color: #a0aec0;
}

.footer-links ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: var(--border-radius-lg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.75rem;
}

/* --- Sticky Actions & Floating buttons --- */
.floating-sticky-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 990;
}

.sticky-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.sticky-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.sticky-whatsapp svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.sticky-call {
    background-color: var(--primary-color);
    color: var(--white);
}

.sticky-call svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.sticky-top {
    background-color: var(--secondary-color);
    color: var(--white);
    display: none; /* Controlled via JS */
}

.sticky-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.sticky-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* --- Scroll Animations / Reveal On Scroll --- */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.active-reveal {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* --- Certification Section --- */
.certification-section {
    background-color: var(--white) !important;
}

.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.certification-image-wrapper {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    border: 1px solid rgba(16, 42, 67, 0.08);
    transition: var(--transition-smooth);
}

.certification-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: var(--box-shadow-hover);
}

.certification-image {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    background-color: var(--white);
    padding: 10px;
}

.cert-desc {
    font-size: 0.95rem;
    color: var(--text-light) !important;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cert-item {
    display: flex;
    gap: 15px;
}

.cert-bullet {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
}

.cert-item h4 {
    font-size: 1.05rem;
    color: var(--dark-color) !important;
    margin-bottom: 5px;
}

.cert-item p {
    font-size: 0.85rem;
    color: var(--text-light) !important;
    line-height: 1.5;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .about-grid, .contact-grid, .compliance-grid, .reporting-split-layout, .certification-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image, .compliance-image, .reporting-image {
        height: 380px;
    }
    .why-us-grid, .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
    .ops-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid-card {
        width: calc((100% - 30px) / 2); /* 2 cards visible on tablet */
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        position: relative;
        display: block;
        z-index: 1010;
        padding: 8px 0;
    }
    .top-bar-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }
    .top-info {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        font-size: 0.8rem;
        width: auto !important;
    }
    .topbar-email-wrapper {
        display: none !important;
    }
    .top-social {
        display: flex !important;
        gap: 15px !important;
        align-items: center !important;
    }
    .main-header,
    .main-header.sticky-always,
    .main-header.sticky {
        position: relative;
        top: 0;
        background-color: var(--white);
        box-shadow: none;
        padding: 15px 0;
    }
    .hamburger-menu {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: auto;
        min-height: calc(100vh - 60px);
        background-color: var(--white);
        padding: 45px 20px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(16, 42, 67, 0.08);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .nav-link {
        font-size: 1.1rem;
        color: var(--text-color);
    }
    .header-actions .btn-proposal {
        display: none;
    }
    
    /* Remove white gaps below header on every page in mobile */
    main {
        padding-top: 0 !important;
    }
    .hero-section {
        padding-top: 0 !important; 
        height: auto;
        min-height: auto;
    }
    .hero-content {
        padding-top: 20px !important;
    }
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    .about-grid .about-image-wrapper {
        order: 1 !important;
    }
    .about-grid .about-content {
        order: 2 !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .compliance-grid, .reporting-split-layout, .certification-grid {
        gap: 30px !important;
    }
    .compliance-features {
        grid-template-columns: 1fr !important;
    }
    .compliance-image {
        height: auto !important;
        max-height: 300px !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    .certification-grid {
        grid-template-columns: 1fr !important;
    }
    .certification-image {
        height: auto !important;
        max-height: 350px !important;
        width: 100% !important;
        object-fit: contain !important;
    }
    .subpage-banner {
        padding: 40px 0 30px !important;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    
    /* 2 Row 2 Column for hero stats in mobile */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 20px;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }
    .stat-card:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    .stat-card:nth-child(3), .stat-card:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 15px;
    }
    
    /* 2 Row 2 Column for employees counter section in mobile */
    .counter-section {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
    
    /* 2 Columns for ops-grid in mobile */
    .ops-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .compliance-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid-card {
        width: 100%; /* 1 card visible in mobile */
    }
    
    .quick-contact-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .hero-actions-group {
        flex-direction: column;
        gap: 15px;
    }
    .services-grid, .why-us-grid, .mv-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        display: flex;
        flex-direction: column;
    }
    .footer-grid > :nth-child(1) { order: 1; } /* Brand & Socials */
    .footer-grid > :nth-child(2) { order: 2; } /* Pages */
    .footer-grid > :nth-child(4) { order: 3; } /* Contact Info */
    .footer-grid > :nth-child(3) { order: 4; } /* Services list */
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- Sectors Custom List Layout (Matching Reference Image) --- */
.sectors-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.sector-horizontal-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid #e5e7eb;
}

.sector-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.sector-image-panel {
    position: relative;
    height: 100%;
    min-height: 240px;
}

.sector-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sector-content-panel {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.sector-tag-badge {
    background-color: #fef3c7;
    color: #d97706;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.active {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge.completed {
    background-color: #e5e7eb;
    color: #374151;
}

.sector-content-panel h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sector-content-panel p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sector-bullets-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    list-style: none;
    padding: 0;
}

.sector-bullets-list li {
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-check {
    color: var(--secondary-color);
    font-weight: bold;
}

/* --- Projects Custom Grid Portal (Matching Reference Image) --- */
.projects-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.projects-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #f3f4f6;
    padding: 6px;
    border-radius: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.projects-portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.project-portal-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--box-shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.project-portal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.project-portal-card.featured {
    background: var(--dark-color);
    color: var(--white);
    border: none;
}

.project-portal-card.featured h3 {
    color: var(--white);
}

.project-portal-card.featured p {
    color: #cbd5e0;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.category-badge {
    background: rgba(13, 92, 99, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.project-portal-card.featured .category-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.project-portal-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.project-portal-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #f3f4f6;
    padding-top: 15px;
}

.project-portal-card.featured .project-tags {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.p-tag {
    font-size: 0.75rem;
    background: #f3f4f6;
    color: #4b5563;
    padding: 4px 8px;
    border-radius: 4px;
}

.project-portal-card.featured .p-tag {
    background: rgba(255,255,255,0.08);
    color: #cbd5e0;
}

/* Subpage banner styled component (Primary Color Opacity Overlay & Symmetric Spacing) */
.subpage-banner {
    padding: 100px 0 50px !important;
    background: linear-gradient(rgba(13, 92, 99, 0.85), rgba(16, 42, 67, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80') center/cover !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.display-title {
    font-size: 2.8rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: var(--white) !important;
}
.subtitle-text {
    font-size: 1.15rem;
    color: #cbd5e0 !important;
}

/* Responsive layout adjustments */
@media (max-width: 1024px) {
    .sector-horizontal-card {
        grid-template-columns: 1fr;
    }
    .sector-image-panel {
        height: 240px;
    }
    .projects-portal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-portal-grid {
        grid-template-columns: 1fr;
    }
    .sector-bullets-list {
        grid-template-columns: 1fr;
    }
    .sector-image-panel {
        height: 240px !important;
        width: 100% !important;
        position: relative !important;
    }
    .sector-image-panel img {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
        top: 0 !important;
        left: 0 !important;
    }
}

