:root {
    --primary-bg: #0b0f19;
    --card-bg: #131b2e;
    --accent-emerald: #10b981;
    --accent-emerald-hover: #059669;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;     
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(11, 15, 25, 0.85);
    --shadow-smooth: 0 20px 40px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
.text-emerald { color: var(--accent-emerald) !important; }
.text-light-muted { color: var(--text-muted) !important; }
.text-light-muted1 { color: white !important;
font-weight:50 !important; font-size: small; }

.sub-title {
    color: var(--accent-emerald);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 10px auto 0;
}

/* Sticky Glass Navbar */
#navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-logo {
    max-height: 40px;
}

.navbar-nav .nav-link {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-emerald) !important;
}

.custom-button {
    background-color: var(--accent-emerald);
    color: #000 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background-color: var(--accent-emerald-hover);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Hero Section */
#home {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(11, 15, 25, 0.75), rgba(11, 15, 25, 0.9)), url('img/comp.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent-emerald);
    color: var(--accent-emerald);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 35px;
}

.hero-input-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.hero-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 8px;
    box-shadow: var(--shadow-smooth);
}

.hero-input-group input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 15px;
    box-shadow: none !important;
}

.hero-input-group input::placeholder {
    color: #94a3b8;
}

.btn-emerald {
    background-color: var(--accent-emerald);
    color: #0b0f19;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 26px;
    border: none;
    transition: all 0.3s ease;
}

.btn-emerald:hover {
    background-color: var(--accent-emerald-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Sections Global Styling */
section {
    padding: 100px 0;
}

/* Services Section */
#product {
    background-color: #0e1526;
}

.service-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.4) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #0b0f19;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-wrapper img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.badge-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid var(--border-color);
    color: var(--accent-emerald);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.service-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.service-card .card-title {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card .card-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-outline-custom {
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 12px;
    padding: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--accent-emerald);
    color: #0b0f19;
    border-color: var(--accent-emerald);
}

/* Modals */
.custom-modal {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-main);
}

.custom-modal .modal-header {
    border-bottom: 1px solid var(--border-color);
}

.custom-modal .modal-footer {
    border-top: 1px solid var(--border-color);
}

/* Modal Case Studies Styling */
.case-study-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.metric-badge {
    align-self: flex-start;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--accent-emerald);
    color: var(--accent-emerald);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.case-study-card h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
}

.tags {
    margin-top: auto;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 6px;
}

/* About Section */
#about {
    background: var(--primary-bg);
}

.about-image-card {
    position: relative;
}

.about-glass-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(19, 27, 46, 0.9);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 18px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-smooth);
}

.about-mission-box {
    margin-top: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.mission-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

/* Process Section */
#process {
    background-color: #0b0f19;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.4);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 55px;
    height: 55px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.process-card h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Testimonials Section */
#testimonials {
    background: #0e1526;
}

.testimonial-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-smooth);
}

.testimonial-heading {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.quote-icon {
    font-size: 40px;
    color: var(--accent-emerald);
    line-height: 1;
}

.testimonial-quote {
    font-size: 18px;
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--accent-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-emerald);
}

.testimonial-meta h5 {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-meta span {
    font-size: 13px;
    color: var(--text-muted);
}

#testimonialCarousel .carousel-indicators {
    position: relative;
    justify-content: flex-start;
    margin: 30px 0 0 0;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    margin-right: 8px;
    transition: all 0.3s ease;
}

#testimonialCarousel .carousel-indicators .active {
    background-color: var(--accent-emerald);
    width: 28px;
    border-radius: 10px;
}

/* FAQ Section */
#faq {
    background-color: #0e1526;
}

.custom-accordion .accordion-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: var(--card-bg);
    color: #fff;
    font-weight: 600;
    box-shadow: none !important;
    padding: 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-emerald);
    background-color: rgba(16, 185, 129, 0.05);
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
}

.custom-accordion .accordion-body {
    padding: 0 20px 20px;
    font-size: 14px;
}

/* Contact Section */
#contact {
    background: var(--primary-bg);
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-smooth);
}

.contact-info-pane {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    padding: 50px 40px;
    color: #ffffff;
}

.contact-info-pane h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-form-pane {
    padding: 50px 40px;
}

.contact-form-pane h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.custom-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-emerald);
    color: #fff;
    box-shadow: none;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Footer */
#siteFooter {
    background: #070a12;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-logo {
    max-height: 40px;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-emerald);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent-emerald);
    color: #000;
    border-color: var(--accent-emerald);
}

.footer-divider {
    border-color: var(--border-color);
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .about-glass-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
    
    .testimonial-box {
        padding: 30px;
    }
}