@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #00e599;
    --primary-green-hover: #00c985;
    --primary-teal: #00b87c;
    --primary-cyan: #00dfa2;
    --dark-bg: #060e18;
    --dark-surface: #091624;
    --dark-card: #0b1a2b;
    --dark-card-border: rgba(0, 229, 153, 0.18);
    --dark-card-border-hover: rgba(0, 229, 153, 0.45);
    --dark-text-muted: #8ea1b4;
    --light-bg: #ffffff;
    --light-surface: #f8fafc;
    --light-text-dark: #0e1726;
    --light-text-muted: #64748b;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-pill: 50px;
    --radius-card: 16px;
    --radius-sm: 10px;
    --transition: all 0.28s ease-in-out;
    --glow-shadow: 0 0 20px rgba(0, 229, 153, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

/* ==================================================
   DYNAMIC ANIMATIONS & REVEALS
   ================================================== */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 229, 153, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 229, 153, 0.5); }
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.float-anim {
    animation: floating 4s ease-in-out infinite;
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Scroll reveal classes */
.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==================================================
   COMMON UTILITIES & BADGES
   ================================================== */
.text-cyan {
    color: var(--primary-green) !important;
}

.text-gradient-cyan {
    background: linear-gradient(90deg, #00e599 0%, #00dfa2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
    display: inline-block;
}

.section-eyebrow.cyan {
    color: var(--primary-green);
}

.section-eyebrow.green-dark {
    color: #009660;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 680px;
}

.bg-dark-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    position: relative;
}

.bg-light-section {
    background-color: var(--light-surface);
    color: var(--light-text-dark);
}

.bg-white-section {
    background-color: #ffffff;
    color: var(--light-text-dark);
}

/* ==================================================
   SUBPAGE BANNERS & BREADCRUMBS
   ================================================== */
.page-banner-section {
    background-color: #060e18;
    background-image: 
        radial-gradient(circle at 85% 30%, rgba(0, 229, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 70%, rgba(0, 223, 162, 0.06) 0%, transparent 40%);
    padding: 75px 0 55px;
    border-bottom: 1px solid rgba(0, 229, 153, 0.15);
    position: relative;
}

.page-banner-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--primary-green);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ==================================================
   BUTTONS
   ================================================== */
.btn-brand-primary {
    background-color: var(--primary-green);
    color: #061019;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--radius-pill);
    padding: 10px 24px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-brand-primary:hover {
    background-color: var(--primary-green-hover);
    color: #061019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 153, 0.4);
}

.btn-brand-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--radius-pill);
    padding: 9px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-brand-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.btn-brand-outline-green {
    background-color: transparent;
    color: #009660;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: var(--radius-pill);
    padding: 8px 22px;
    border: 1.5px solid #00c784;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-brand-outline-green:hover {
    background-color: var(--primary-green);
    color: #061019;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.btn-search-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-search-icon:hover {
    background: rgba(0, 229, 153, 0.15);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Floating Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #061019;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 229, 153, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: #00c784;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 229, 153, 0.6);
}

/* ==================================================
   NAVBAR
   ================================================== */
.bg-dark-nav {
    background-color: #060d15;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
    padding-bottom: 14px;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.bg-dark-nav.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(6, 13, 21, 0.96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(0, 229, 153, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: #cbd5e1;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

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

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-green);
    box-shadow: 0 0 8px var(--primary-green);
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero-section {
    position: relative;
    background-color: #060e18;
    background-image: 
        radial-gradient(circle at 85% 30%, rgba(0, 229, 153, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 10% 20%, rgba(0, 223, 162, 0.05) 0%, transparent 40%);
    padding-top: 85px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center right/cover no-repeat;
    opacity: 0.55;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-desc {
    color: #94a3b8;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-cards-row {
    position: relative;
    z-index: 3;
    margin-top: 65px;
}

.hero-feature-card {
    background: rgba(10, 24, 38, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--dark-card-border);
    border-radius: var(--radius-card);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.hero-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: var(--glow-shadow);
}

.card-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 229, 153, 0.08);
    border: 1.5px solid rgba(0, 229, 153, 0.35);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
    transition: var(--transition);
}

.hero-feature-card:hover .card-icon-circle {
    background: var(--primary-green);
    color: #061019;
    box-shadow: 0 0 15px var(--primary-green);
}

.hero-card-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-card-sub {
    color: #8198af;
    font-size: 0.78rem;
    margin-bottom: 0;
}

/* ==================================================
   ABOUT US SECTION
   ================================================== */
.about-section {
    padding: 95px 0;
}

.about-text-content {
    padding-right: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-img-box {
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 190px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-box:hover img {
    transform: scale(1.08);
}

/* Dynamic Stats Counter Section */
.stats-counter-section {
    background: #091624;
    border-top: 1px solid rgba(0, 229, 153, 0.15);
    border-bottom: 1px solid rgba(0, 229, 153, 0.15);
    padding: 50px 0;
}

.counter-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-heading);
    line-height: 1;
}

.counter-label {
    font-size: 0.88rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================================================
   OUR VISION & OUR MISSION
   ================================================== */
.vision-mission-section {
    padding: 75px 0;
    background-color: #050c14;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 229, 153, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(0, 223, 162, 0.04) 0%, transparent 40%);
}

.vision-mission-card {
    background: rgba(10, 23, 36, 0.6);
    border: 1px solid rgba(0, 229, 153, 0.15);
    border-radius: var(--radius-card);
    padding: 36px 32px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.vision-mission-card:hover {
    border-color: rgba(0, 229, 153, 0.4);
    box-shadow: var(--glow-shadow);
    transform: translateY(-4px);
}

.vm-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 229, 153, 0.08);
    border: 1.5px solid rgba(0, 229, 153, 0.35);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.vision-mission-card:hover .vm-icon-box {
    background: var(--primary-green);
    color: #061019;
}

.vm-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.vm-desc {
    color: #94a3b8;
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* ==================================================
   OUR SERVICES OVERVIEW
   ================================================== */
.services-overview-section {
    padding: 95px 0;
}

.service-card-item {
    background: #091624;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 229, 153, 0.2);
}

.service-card-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-item:hover .service-card-img-wrap img {
    transform: scale(1.08);
}

.service-card-footer {
    padding: 16px 20px;
    background: #08121d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 229, 153, 0.15);
    margin-top: auto;
}

.service-card-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card-icon {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.service-card-title {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.service-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.8rem;
    transition: var(--transition);
}

.service-card-item:hover .service-card-arrow {
    background: var(--primary-green);
    color: #061019;
    border-color: var(--primary-green);
}

/* ==================================================
   DETAILED SERVICE FEATURE SECTIONS
   ================================================== */
.feature-service-section {
    padding: 90px 0;
}

.feature-img-box {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.feature-img-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.feature-img-box:hover img {
    transform: scale(1.04);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    font-size: 0.94rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.feature-list li:hover {
    transform: translateX(4px);
}

.feature-list li i {
    margin-right: 10px;
    font-size: 1.05rem;
}

/* ==================================================
   OUR SECTORS SECTION
   ================================================== */
.sectors-section {
    padding: 90px 0;
}

.sector-card {
    background: rgba(10, 24, 38, 0.85);
    border: 1px solid rgba(0, 229, 153, 0.15);
    border-radius: var(--radius-card);
    padding: 30px 18px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: var(--glow-shadow);
    background: rgba(13, 30, 48, 0.95);
}

.sector-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 229, 153, 0.08);
    border: 1px solid rgba(0, 229, 153, 0.3);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    background: var(--primary-green);
    color: #061019;
}

.sector-title {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

/* ==================================================
   OUR PROJECTS SECTION & INTERACTIVE SLIDER
   ================================================== */
.projects-section {
    padding: 95px 0;
}

.projects-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.projects-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.project-slide-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
}

@media (max-width: 991.98px) {
    .project-slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .project-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.project-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.project-img-wrap {
    height: 220px;
    overflow: hidden;
}

.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img-wrap img {
    transform: scale(1.08);
}

.project-info {
    padding: 18px 20px;
    text-align: center;
}

.project-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.project-sub {
    font-size: 0.84rem;
    color: #009660;
    font-weight: 500;
    margin-bottom: 0;
}

.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.carousel-nav-btn:hover {
    background: var(--primary-green);
    color: #061019;
    border-color: var(--primary-green);
    transform: scale(1.08);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-green);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 229, 153, 0.5);
}

/* Filter pills */
.filter-btn {
    border-radius: var(--radius-pill);
    padding: 8px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: #061019;
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 229, 153, 0.35);
}

/* ==================================================
   OUR BRANDS SECTION
   ================================================== */
.brands-section {
    padding: 75px 0;
    background-color: #060e18;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition);
}

.brand-logo-item:hover {
    filter: brightness(1.25) drop-shadow(0 0 12px rgba(0, 229, 153, 0.4));
    transform: scale(1.08);
}

.brand-logo-item img,
.brand-logo-item svg {
    max-height: 38px;
    max-width: 140px;
    object-fit: contain;
}

/* ==================================================
   WHY CHOOSE US SECTION
   ================================================== */
.why-us-section {
    padding: 95px 0;
}

.feature-circle-item {
    text-align: center;
    padding: 10px 12px;
}

.feature-circle-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(0, 229, 153, 0.1);
    border: 1.5px solid rgba(0, 229, 153, 0.3);
    color: #009660;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    transition: var(--transition);
}

.feature-circle-item:hover .feature-circle-icon {
    background: var(--primary-green);
    color: #061019;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 229, 153, 0.4);
}

.feature-circle-text {
    font-size: 0.86rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 0;
}

.why-quote-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-card);
    padding: 26px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.why-quote-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.why-quote-mark {
    font-size: 2.8rem;
    line-height: 1;
    color: var(--primary-green);
    display: block;
    margin-bottom: -5px;
}

.why-quote-text {
    font-size: 0.92rem;
    font-style: italic;
    color: #334155;
    font-weight: 500;
    margin-bottom: 14px;
}

/* ==================================================
   WHAT OUR CLIENTS SAY (TESTIMONIALS SLIDER)
   ================================================== */
.testimonials-section {
    padding: 90px 0;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 12px;
}

@media (max-width: 991.98px) {
    .testimonial-slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .testimonial-slide-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.testimonial-card {
    background: rgba(10, 24, 38, 0.75);
    border: 1px solid rgba(0, 229, 153, 0.18);
    border-radius: var(--radius-card);
    padding: 26px 24px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-quote {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-green);
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--primary-green);
    margin-bottom: 0;
}

.social-links-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-left: 8px;
    transition: var(--transition);
}

.social-links-row a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(0, 229, 153, 0.1);
    transform: translateY(-2px);
}

/* ==================================================
   CONTACT BANNER & FORMS
   ================================================== */
.contact-banner-wrap {
    padding: 0 0 70px 0;
    background-color: #060e18;
}

.contact-banner {
    background: linear-gradient(135deg, rgba(8, 26, 38, 0.95) 0%, rgba(5, 16, 26, 0.98) 100%);
    border: 1.5px solid rgba(0, 229, 153, 0.35);
    border-radius: var(--radius-card);
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 50%, rgba(0, 229, 153, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 229, 153, 0.1);
    border: 1px solid rgba(0, 229, 153, 0.3);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-info-val {
    font-size: 0.92rem;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.4;
}

.form-control-dark {
    background: rgba(10, 24, 38, 0.9);
    border: 1px solid rgba(0, 229, 153, 0.25);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.94rem;
}

.form-control-dark:focus {
    background: rgba(12, 28, 44, 1);
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(0, 229, 153, 0.3);
    color: #ffffff;
}

.form-control-dark::placeholder {
    color: #64748b;
}

/* ==================================================
   INTERACTIVE MODALS (QUOTE & SEARCH)
   ================================================== */
.modal-content-dark {
    background: #081624;
    border: 1.5px solid rgba(0, 229, 153, 0.35);
    border-radius: var(--radius-card);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

.modal-header-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 26px;
}

.modal-body-dark {
    padding: 26px;
}

.btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}

.search-result-item {
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 10px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #cbd5e1;
}

.search-result-item:hover {
    background: rgba(0, 229, 153, 0.15);
    border-left: 3px solid var(--primary-green);
    color: #ffffff;
    transform: translateX(4px);
}

/* ==================================================
   FOOTER
   ================================================== */
.footer-section {
    background-color: #04080e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright-text {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-nav-links .list-inline-item {
    margin-left: 18px;
    margin-right: 0;
}

.footer-nav-links a {
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-nav-links a:hover {
    color: var(--primary-green);
}

/* ==================================================
   RESPONSIVE MEDIA QUERIES (FULL MOBILE OPTIMIZED)
   ================================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #07121f;
        border: 1px solid rgba(0, 229, 153, 0.2);
        border-radius: 12px;
        padding: 16px 20px;
        margin-top: 14px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    }
    
    .navbar-nav .nav-link {
        padding: 11px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.98rem;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link.active::after {
        left: 0;
        transform: none;
        bottom: 8px;
    }

    .navbar-collapse .d-flex {
        padding-top: 16px;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        justify-content: space-between;
    }

    .navbar-collapse .btn-brand-primary {
        flex: 1;
        justify-content: center;
    }

    .hero-section {
        padding-top: 65px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.22;
    }
    
    .hero-bg-overlay {
        opacity: 0.22;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text-content {
        padding-right: 0;
        margin-bottom: 35px;
    }
    
    .feature-service-section {
        padding: 65px 0;
    }

    .feature-img-box {
        margin-bottom: 25px;
    }

    .feature-img-box img {
        height: 270px;
    }
    
    .contact-banner {
        padding: 32px 24px;
    }

    .page-banner-title {
        font-size: 2.2rem;
    }

    .projects-section,
    .testimonials-section,
    .sectors-section,
    .why-us-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .feature-circle-item {
        margin-bottom: 12px;
    }

    .why-quote-card {
        margin-top: 20px;
    }

    .page-banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-section {
        padding-top: 45px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 1.88rem;
        letter-spacing: -0.3px;
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 1.2px;
    }

    /* Modern 2x2 grid for About Us images on mobile */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .about-img-box {
        height: 135px;
        border-radius: 10px;
    }

    /* Counter metrics on mobile */
    .stats-counter-section {
        padding: 35px 0;
    }

    .counter-value {
        font-size: 2.1rem;
    }

    .counter-label {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
    }

    /* Feature service images */
    .feature-img-box img {
        height: 210px;
        border-radius: 12px;
    }

    /* Filter pills */
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.82rem;
    }

    /* Why Choose Us badge items */
    .feature-circle-item {
        padding: 8px 4px;
    }

    .feature-circle-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .feature-circle-text {
        font-size: 0.78rem;
        line-height: 1.28;
    }

    .contact-banner {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .contact-info-block {
        padding: 12px 14px;
    }

    .contact-info-val {
        font-size: 0.88rem;
    }

    .footer-nav-links {
        margin-top: 16px;
        text-align: left !important;
    }
    
    .footer-nav-links .list-inline-item {
        margin-left: 0;
        margin-right: 14px;
        margin-bottom: 8px;
    }

    .btn-back-to-top {
        width: 42px;
        height: 42px;
        right: 16px;
        bottom: 16px;
        font-size: 0.9rem;
    }

    .modal-dialog {
        margin: 12px;
    }

    .page-banner-section {
        padding: 48px 0 32px;
    }

    .page-banner-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .about-img-box {
        height: 115px;
    }

    .counter-value {
        font-size: 1.85rem;
    }

    .hero-feature-card {
        padding: 18px 14px;
    }
}

/* ==================================================
   SITE LOGO PRELOADER
   ================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #060e18;
    background-image: 
        radial-gradient(circle at 50% 45%, rgba(0, 229, 153, 0.14) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 223, 162, 0.06) 0%, transparent 40%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-preloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.preloader-logo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.preloader-logo {
    max-width: 95px;
    max-height: 95px;
    object-fit: contain;
    z-index: 2;
    animation: preloaderPulse 2.2s ease-in-out infinite;
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2.5px solid transparent;
    border-top-color: var(--primary-green);
    border-right-color: rgba(0, 229, 153, 0.4);
    border-bottom-color: rgba(0, 229, 153, 0.08);
    animation: preloaderSpin 1.3s cubic-bezier(0.4, 0.1, 0.4, 0.9) infinite;
    box-shadow: 0 0 24px rgba(0, 229, 153, 0.25);
}

.preloader-ring::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 229, 153, 0.3);
    animation: preloaderSpinRev 7s linear infinite;
}

.preloader-bar-wrap {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, #00e599, #00dfa2, transparent);
    animation: preloaderSlide 1.5s ease-in-out infinite;
    border-radius: 99px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    animation: preloaderTextFade 2s ease-in-out infinite;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderSpinRev {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(0, 229, 153, 0.3)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(0, 229, 153, 0.65)); }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes preloaderTextFade {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; color: var(--primary-green); text-shadow: 0 0 10px rgba(0, 229, 153, 0.5); }
}

