/* =======================================================
   HASHBANG IT - MAIN STYLESHEET
   ======================================================= */

/* ----- DARK THEME WITH GRADIENT BACKGROUNDS ----- */
:root {
    --bg-deep: #0b0b0b;
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-soft: #252525;
    --bg-mid: #2a2a2a;
    --text-light: #eaeaea;
    --text-muted: #b0b0b0;
    --text-dim: #7a7a7a;
    --border-grey: #3a3a3a;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0b0b0b 0%, #1a1a2e 50%, #16213e 100%);
    --gradient-soft: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-card: linear-gradient(145deg, #1e1e1e 0%, #2a2a3a 100%);
    --gradient-metrics: linear-gradient(135deg, #0f0f1f 0%, #1a1a2e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(11,11,11,0.7) 0%, rgba(22,33,62,0.6) 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

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

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.text-muted-custom {
    color: var(--text-muted);
}

.lead {
    color: var(--text-muted);
    font-weight: 400;
}

/* Buttons */
.btn-outline-light {
    border: 1.5px solid var(--white);
    color: var(--white);
    border-radius: 4px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--bg-deep);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--bg-deep);
    border: none;
    border-radius: 4px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-white:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #ffffff, #d0d0d0);
    color: var(--bg-deep);
    border: none;
    border-radius: 4px;
    padding: 0.7rem 2rem;
    font-weight: 700;
    transition: all 0.2s;
}
.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.15);
    color: var(--bg-deep);
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
}
.btn-hero-primary {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    color: var(--bg-deep);
    border: none;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
    color: var(--bg-deep);
}
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-hero-outline:hover {
    background: var(--white);
    color: var(--bg-deep);
    transform: translateY(-3px);
}

/* ----- TOP HEADER ----- */
.top-header {
    background-color: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border-grey);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.top-header .contact-info span {
    color: var(--text-muted);
    margin-right: 1.5rem;
}
.top-header .contact-info i {
    margin-right: 0.4rem;
    color: var(--white);
}
.top-header .established {
    color: var(--text-dim);
    font-size: 0.85rem;
}
.top-header .established i {
    color: var(--white);
    margin-right: 0.3rem;
}

/* ========== NAVIGATION ========== */
.navbar {
    background-color: rgba(18, 18, 18, 0.92) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-grey);
    padding: 0.6rem 0;
}
.navbar-brand img {
    height: 40px;
    width: auto;
}
.navbar-nav .nav-link {
    color: #c0c0c0 !important;
    font-weight: 500;
    margin: 0 0.6rem;
    transition: color 0.15s;
    font-size: 0.95rem;
}
.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}
.navbar .dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
}
.navbar .dropdown-item {
    color: var(--text-muted);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}
.navbar .dropdown-item:hover {
    background-color: var(--bg-soft);
    color: var(--white);
}
.navbar .dropdown-item i {
    margin-right: 0.5rem;
    width: 1.2rem;
}
.navbar .dropdown-divider {
    border-color: var(--border-grey);
}
.navbar .btn-login {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-left: 0.5rem;
}
.navbar .btn-login:hover {
    background: var(--white);
    color: var(--bg-deep);
    transform: translateY(-2px);
}
.navbar .btn-submit-req {
    background: var(--white);
    color: var(--bg-deep);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
}
.navbar .btn-submit-req:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
}

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
    margin-top: 0;
    position: relative;
}
.hero-carousel .carousel-item {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #0a0a1a;
}
.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}
.hero-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 650px;
    z-index: 2;
    background: transparent;
    padding: 0;
}
.hero-carousel .carousel-caption .badge {
    background: rgba(255,255,255,0.9);
    color: var(--bg-deep);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.hero-carousel .carousel-caption h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-carousel .carousel-caption h1 .highlight {
    color: var(--white);
    border-bottom: 3px solid var(--white);
    padding-bottom: 0.2rem;
}
.hero-carousel .carousel-caption p {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin: 1.5rem 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    z-index: 3;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 1.5rem;
    background-size: 50%;
}
.hero-carousel .carousel-indicators {
    z-index: 3;
    bottom: 30px;
}
.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    margin: 0 6px;
    opacity: 0.7;
}
.hero-carousel .carousel-indicators .active {
    background: var(--white);
    opacity: 1;
}

/* ========== SECTION STYLES ========== */
.company-intro {
    background: var(--gradient-soft);
    border-bottom: 1px solid var(--border-grey);
    padding: 60px 0;
}
.company-intro .intro-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s;
}
.company-intro .intro-card:hover {
    border-color: var(--white);
    transform: translateY(-4px);
}
.company-intro .intro-card .icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.services-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-grey);
}
.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}
.service-card:hover {
    border-color: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.service-card .icon {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.service-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.service-card .btn-outline-light {
    padding: 0.3rem 1.2rem;
    font-size: 0.85rem;
    margin-top: 0.8rem;
}

.jobs-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    border-bottom: 1px solid var(--border-grey);
}
.job-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 1.8rem;
    height: 100%;
    transition: all 0.3s;
}
.job-card:hover {
    border-color: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.job-card .job-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.job-card .job-company {
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.job-card .job-meta {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.job-card .job-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}
.job-card .btn-outline-light {
    padding: 0.3rem 1.5rem;
    font-size: 0.85rem;
}

.why-choose-section {
    background: var(--gradient-soft);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-grey);
}
.why-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 1.8rem;
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}
.why-card:hover {
    border-color: var(--white);
    transform: translateY(-4px);
}
.why-card .icon {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.why-card h6 {
    font-weight: 600;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.industries-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-grey);
}
.industry-item-simple {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}
.industry-item-simple:hover {
    border-color: var(--white);
    transform: translateY(-4px);
}
.industry-item-simple .icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.industry-item-simple h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.trust-section {
    background: var(--gradient-metrics);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-grey);
}
.trust-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}
.trust-card:hover {
    border-color: var(--white);
    transform: translateY(-4px);
}
.trust-card .number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.trust-card .label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.3rem;
}
.trust-card .icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    display: block;
}

.industry-start-closer {
    background: rgba(30, 30, 50, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-grey);
    text-align: center;
}
.industry-start-closer h3 {
    font-weight: 700;
}
.industry-start-closer p {
    max-width: 700px;
    margin: 0.5rem auto 0;
    color: var(--text-muted);
}

.industry-grid .industry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-grey);
    background: var(--bg-card);
    transition: all 0.3s;
    height: 100%;
}
.industry-grid .industry-item:hover {
    transform: scale(1.02);
    border-color: var(--white);
}
.industry-grid .industry-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-grey);
}
.industry-grid .industry-item .industry-content {
    padding: 1.2rem 1.2rem 1.5rem;
}
.industry-grid .industry-item .industry-content h6 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.industry-grid .industry-item .industry-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}
.industry-grid .industry-item .badge-industry {
    background: var(--bg-soft);
    color: var(--text-muted);
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid var(--border-grey);
}

.metrics-section {
    background: var(--gradient-metrics);
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
    padding: 60px 0;
    overflow: hidden;
}
.metrics-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.metrics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transition: left 0.6s ease;
}
.metrics-card:hover::before {
    left: 100%;
}
.metrics-card:hover {
    border-color: var(--white);
    background: var(--bg-soft);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.metrics-card .metric-icon {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    display: inline-block;
    transition: transform 0.4s ease;
}
.metrics-card:hover .metric-icon {
    transform: scale(1.1) rotate(-5deg);
}
.metrics-card .metric-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
}
.metrics-card .metric-number .symbol {
    font-size: 2rem;
    color: var(--text-muted);
}
.metrics-card .metric-label {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 0.3rem;
    letter-spacing: 0.3px;
}
.metrics-card .metric-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.metrics-card:hover .metric-desc {
    opacity: 1;
}
.metrics-card .metric-progress {
    width: 100%;
    height: 4px;
    background: var(--bg-soft);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}
.metrics-card .metric-progress .progress-bar {
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.metrics-card.animate .metric-progress .progress-bar {
    width: var(--progress-width);
}
.counter-value {
    display: inline-block;
}

.offering-tabs .nav-tabs {
    border-bottom: 1px solid var(--border-grey);
    justify-content: center;
    gap: 0.5rem;
}
.offering-tabs .nav-tabs .nav-link {
    color: var(--text-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px 8px 0 0;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.2s;
}
.offering-tabs .nav-tabs .nav-link:hover {
    color: var(--white);
    border-color: var(--border-grey);
}
.offering-tabs .nav-tabs .nav-link.active {
    color: var(--white);
    background: var(--bg-card);
    border-color: var(--border-grey);
    border-bottom-color: var(--bg-card);
}
.offering-tabs .tab-content {
    background: var(--bg-card);
    border: 1px solid var(--border-grey);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 2rem 1.5rem;
}
.offering-tabs .tab-content .service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.8rem 0;
    border-bottom: 1px solid #2a2a2a;
}
.offering-tabs .tab-content .service-item:last-child {
    border-bottom: none;
}
.offering-tabs .tab-content .service-item i {
    font-size: 1.4rem;
    color: var(--white);
    margin-top: 0.2rem;
    min-width: 2rem;
}
.offering-tabs .tab-content .service-item h6 {
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.offering-tabs .tab-content .service-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.tech-capabilities-section {
    background: var(--gradient-soft);
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}
.tech-capability-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.2s;
    text-align: center;
}
.tech-capability-card:hover {
    border-color: var(--white);
    background: var(--bg-soft);
    transform: translateY(-4px);
}
.tech-capability-card .capability-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
    background: var(--bg-soft);
    padding: 0.8rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 1;
}
.tech-capability-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.tech-capability-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.tech-capability-card .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 0.8rem;
}
.tech-capability-card .tech-tags span {
    background: var(--bg-soft);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border-grey);
}

.testimonials-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}
.testimonial-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    padding: 1.8rem;
    height: 100%;
    transition: all 0.2s;
    margin: 0 0.5rem;
}
.testimonial-card:hover {
    border-color: var(--white);
    background: var(--bg-soft);
}
.testimonial-card .testimonial-text {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}
.testimonial-card .client-name {
    font-weight: 700;
    color: var(--white);
    margin-top: 1rem;
}
.testimonial-card .client-title {
    color: var(--text-dim);
    font-size: 0.85rem;
}
.testimonial-card .client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 5%;
    opacity: 0.5;
}
.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
    opacity: 1;
}
.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 1.2rem;
    background-size: 50%;
}

.case-studies-section {
    background: var(--gradient-soft);
    padding: 60px 0;
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
}
.case-study-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}
.case-study-card:hover {
    transform: translateY(-6px);
    border-color: var(--white);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.case-study-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-grey);
}
.case-study-card .case-content {
    padding: 1.5rem;
}
.case-study-card .case-tag {
    background: var(--bg-soft);
    color: var(--text-muted);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    border: 1px solid var(--border-grey);
    display: inline-block;
    margin-bottom: 0.5rem;
}
.case-study-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.case-study-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.solution-card, .tech-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.2s;
}
.solution-card:hover, .tech-card:hover {
    background: var(--bg-soft);
    border-color: var(--white);
}
.solution-card h6, .tech-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.solution-card p, .tech-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.faq-accordion .accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-grey);
    margin-bottom: 0.75rem;
    border-radius: 8px;
}
.faq-accordion .accordion-button {
    background-color: var(--bg-card);
    color: var(--white);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border-radius: 8px !important;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-soft);
    color: var(--white);
    border-bottom: 1px solid var(--border-grey);
}
.faq-accordion .accordion-button::after {
    filter: invert(1);
}
.faq-accordion .accordion-body {
    background-color: var(--bg-card);
    color: var(--text-muted);
    padding: 1.5rem;
}

.cta-section {
    background: var(--gradient-soft);
    padding: 80px 0;
    border-top: 1px solid var(--border-grey);
}
.form-wrapper {
    background: var(--gradient-card);
    border-radius: 16px;
    padding: 2.8rem 3rem;
    border: 1px solid var(--border-grey);
    max-width: 660px;
    margin: 0 auto;
}
.form-wrapper .form-label {
    color: #d0d0d0;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-wrapper .form-control {
    background-color: #1a1a1a;
    border: 1px solid var(--border-grey);
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    color: var(--white);
}
.form-wrapper .form-control:focus {
    background-color: #222;
    border-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
    color: var(--white);
}
.form-wrapper .form-control::placeholder {
    color: #6a6a6a;
}
.form-wrapper .form-control.is-invalid {
    border-color: #b33c3c;
}
.form-wrapper .invalid-feedback {
    color: #e07a7a;
}
.form-wrapper .btn-submit {
    width: 100%;
    padding: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--bg-deep);
    border: none;
    transition: all 0.25s;
}
.form-wrapper .btn-submit:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
}
.form-wrapper .btn-submit i {
    margin-right: 0.5rem;
}

/* ========== FOOTER ========== */
.footer {
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(6px);
    padding: 3rem 0 1.5rem 0;
    border-top: 1px solid var(--border-grey);
}
.footer h5, .footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}
.footer p, .footer li, .footer a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    line-height: 2;
}
.footer a:hover {
    color: var(--white);
    transition: color 0.2s;
}
.footer .social-icon {
    color: var(--text-muted);
    font-size: 1.6rem;
    margin-right: 1rem;
    transition: color 0.2s;
}
.footer .social-icon:hover {
    color: var(--white);
}
.footer .footer-divider {
    border-top: 1px solid #2a2a2a;
    margin: 2rem 0 1.5rem 0;
}
.footer .copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
}
.footer .badge-everify {
    background: #2a2a2a;
    color: #ccc;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid #444;
}
.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}
.footer .contact-item i {
    color: var(--white);
    font-size: 1.2rem;
    min-width: 1.5rem;
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer ul li {
    margin-bottom: 0.3rem;
}

/* ----- ANIMATION KEYFRAMES ----- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.05); }
    50% { box-shadow: 0 0 40px rgba(255,255,255,0.15); }
}
.metrics-card.animate {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-carousel .carousel-item { height: 70vh; min-height: 400px; }
    .hero-carousel .carousel-caption { left: 5%; max-width: 85%; }
    .hero-carousel .carousel-caption h1 { font-size: 2.8rem; }
    .navbar .btn-submit-req { margin-top: 0.5rem; }
    .navbar .btn-login { margin-left: 0; margin-top: 0.5rem; }
    .navbar-nav .nav-link { margin: 0.2rem 0; }
    .top-header .contact-info span { display: block; margin-bottom: 0.2rem; }
    .offering-tabs .nav-tabs .nav-link { padding: 0.6rem 1rem; font-size: 0.9rem; }
    .navbar .dropdown-menu { position: static !important; }
    .navbar-brand img { height: 32px; }
    .footer .col-lg-3 { margin-bottom: 2rem; }
    .btn-hero { padding: 0.8rem 1.8rem; font-size: 1rem; }
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item { height: 60vh; min-height: 350px; }
    .hero-carousel .carousel-caption { left: 5%; max-width: 90%; top: 55%; }
    .hero-carousel .carousel-caption h1 { font-size: 2.2rem; }
    .hero-carousel .carousel-caption p { font-size: 1rem; }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next { display: none; }
    .section-title { font-size: 2rem; }
    .top-header { text-align: center; }
    .top-header .established { margin-top: 0.3rem; display: block; }
    .form-wrapper { padding: 1.8rem; }
    .industry-start-closer { padding: 1.5rem; }
    .metrics-card .metric-number { font-size: 2.8rem; }
    .tech-capability-card .capability-icon { width: 60px; height: 60px; font-size: 2.2rem; padding: 0.6rem; }
    .testimonials-section .carousel-control-prev,
    .testimonials-section .carousel-control-next { display: none; }
    .footer { text-align: center; }
    .footer .contact-item { justify-content: center; }
    .btn-hero { display: block; width: 100%; margin-right: 0; }
    .jobs-section .col-md-4 { margin-bottom: 1.5rem; }
}