/* Variables */
:root {
    --primary-color: #004e92;
    /* Deep Tech Blue */
    --secondary-color: #506175;
    /* Professional Gray */
    --accent-color: #00b4db;
    /* Bright Blue Accent */

    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-blue {
    background-color: var(--primary-color);
}

.bg-dark {
    background-color: var(--dark-bg);
}

.bg-deep-tech {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    /* Deep "Space" Gradient */
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 78, 146, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px 0;
    /* Reduced from 15px to compact height */
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    /* Filter removed for light mode */
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Remove old underline */
.nav-link::after {
    display: none;
}

/* Pill Hover Effect & Active State */
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(0, 78, 146, 0.05);
    /* Light blue tint */
    transform: translateY(-1px);
}

.nav-phone {
    font-weight: 700;
    color: var(--text-color);
    margin-right: -10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-phone i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Fix for Button inside Nav */
.nav-link.btn {
    color: var(--white) !important;
    padding: 12px 30px;
    /* Restore button padding */
}

.nav-link.btn:hover {
    color: var(--white) !important;
    transform: translateY(-2px);
    background: var(--accent-color);
    /* Restore button hover bg */
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile menu overlay */
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Responsive Menu - Fullscreen Dark Glass */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 10px 30px;
    }

    /* Hamburger Animation correction for active state */
    .hamburger.active .bar {
        background-color: var(--text-color);
    }
}

/* Hero Section */
/* Hero Partners Strip (Replaces old trust strip) */
.hero-partners-strip {
    margin-top: 10px;
    /* Further reduced */
    padding-top: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    /* Tighter gap between label and logos */
}

.partners-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0;
    /* Remove bottom margin */
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
    /* Reduced from 60px to fit screen */
    /* Reduced gap for better mobile fit */
    flex-wrap: wrap;
}

.partner-logo-img {
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.cisco-logo {
    height: 60px;
    transform: translateY(8px) scale(2);
    margin: 0 40px;
}

.microsoft-logo {
    height: 30px;
    transform: translateY(-24px);
}

.partner-logo-img:hover {
    opacity: 1 !important;
    filter: none !important;
}

.cisco-logo:hover {
    transform: translateY(8px) scale(2.1);
}

.microsoft-logo:hover {
    transform: translateY(-24px) scale(1.1);
}

.dell-logo {
    height: 40px;
    transform: translateY(-23px);
}

.dell-logo:hover {
    transform: translateY(-23px) scale(1.1);
}

.fortinet-logo {
    height: 40px;
    transform: translateY(-28px) scale(1.38);
}

.fortinet-logo:hover {
    transform: translateY(-28px) scale(1.5);
}

/* Placeholder Style */
.partner-placeholder-text {
    height: 80px;
    /* Reduced to balance visually */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    /* Smaller font */
    font-weight: 600;
    color: #999;
    border: 2px dashed #ddd;
    /* Thinner border */
    padding: 0 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.4);
}

/* Glass Panel for Hero */
.hero-glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/* Ensure text inside glass panel is readable */
.hero-glass-panel h1 {
    color: var(--secondary-color);
    text-shadow: none;
    /* Remove shadow if any, for cleanliness */
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .hero-glass-panel {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.85);
        /* More opaque on mobile */
    }
}

.hero {
    padding: 80px 0 10px;
    /* Reduced padding to fit 100vh */
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-values {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-secondary-link {
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.hero-secondary-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.hero-trust-strip {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto;
    border-radius: 2px;
}

.section-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 78, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Industries Section */
.industries-flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.industry-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.industry-item:hover {
    background: var(--white);
    color: var(--primary-color);
}

.industry-item i {
    font-size: 1.1rem;
}

/* Excellence Section */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.excellence-item {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.excellence-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.excellence-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    color: var(--white);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-detail-item i {
    color: var(--accent-color);
}

.contact-form-container {
    /* Removed default background to use glass-panel class instead */
    color: var(--white);
    padding: 20px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-detail-item:hover .icon-circle {
    background: var(--accent-color);
    transform: scale(1.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 180, 219, 0.2);
}

.glow-button {
    box-shadow: 0 0 20px rgba(0, 78, 146, 0.4);
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(0, 180, 219, 0.6);
}

/* Footer */
footer {
    background-color: #111;
    color: rgba(255, 255, 255, 0.5);
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Global Styles */
.hero-brand {
    font-size: 0.96rem;
}

/* Booking Section Overhaul */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.text-left {
    text-align: left;
}

.divider.ml-0 {
    margin-left: 0;
}

/* Process Indicator */
.process-steps {
    display: flex;
    align-items: center;
    margin: 40px 0;
    gap: 15px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-num {
    width: 35px;
    height: 35px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pulse Animation */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 180, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 180, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 219, 0);
    }
}

.step-num.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 10px rgba(0, 78, 146, 0.3);
    animation: softPulse 2s infinite;
}

.step-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.step-line {
    height: 2px;
    background: #e0e0e0;
    flex: 1;
    margin-top: -25px;
    /* Align with circles */
    max-width: 50px;
}

/* Checklist */
.booking-checklist {
    margin: 30px 0;
}

.booking-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.booking-checklist i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.trust-note {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: rgba(0, 78, 146, 0.05);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.trust-note i {
    color: var(--primary-color);
}

/* Widget Card */
.booking-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 78, 146, 0.15), 0 0 0 1px rgba(0, 180, 219, 0.1);
}

/* Who We Help Section */
.customer-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.customer-card:hover {
    transform: translateY(-5px);
}

.customer-card .icon-header {
    font-size: 2rem;
    margin-bottom: 20px;
}

.customer-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.customer-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Fits */
@media (max-width: 768px) {
    .fit-comparison-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Common Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-info {
        text-align: center;
    }

    .text-left {
        text-align: center;
    }

    .divider.ml-0 {
        margin: 15px auto;
    }

    .process-steps {
        justify-content: center;
    }

    .booking-checklist {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }



    .hero-values {
        gap: 15px;
    }

}

/* Services Section */
/* Services Section */
#services {
    padding-top: 80px;
    /* Restore breathing room for the background */
    background-color: #f4f8fb;
    /* Subtle premium cool gray */
    padding-bottom: 30px;
    /* Reduced to pull next section closer */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    /* Tighter grid gap */
    align-items: stretch;
}

.service-card {
    background: var(--white);
    padding: 24px;
    /* Reduced padding */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid var(--primary-color);
    /* Active Shelf Border */
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Tighter content spacing */
    align-items: flex-start;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 78, 146, 0.1);
    border-color: rgba(0, 180, 219, 0.2);
}

/* Scope of Work Accordion */
#scope-of-work {
    padding-top: 20px;
    padding-bottom: 80px;
}

.scope-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scope-group {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.scope-group[open] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 78, 146, 0.1);
}

.scope-group summary {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    /* Remove default marker */
    font-weight: 600;
    color: var(--text-color);
    background: var(--white);
}

.scope-group summary::-webkit-details-marker {
    display: none;
    /* Chrome marker removal */
}

.scope-group summary:hover {
    background: #f9f9f9;
}

.group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.group-title i {
    color: var(--accent-color);
    width: 24px;
    text-align: center;
}

.toggle-icon {
    color: #ccc;
    transition: transform 0.3s ease;
}

.scope-group[open] summary .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.group-content {
    padding: 0 20px 20px 56px;
    /* Indent to align with text */
    color: var(--text-light);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: -1px;
    /* Overlap border if needed */
}

.group-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.group-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.group-content li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
    /* Align tops */
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 78, 146, 0.15);
    transform: scale(1.05);
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: black;
    font-weight: 800;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

.pricing-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-badge {
    background: rgba(0, 180, 219, 0.1);
    color: var(--primary-color);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-features {
    flex-grow: 1;
    /* Pushes content down */
    margin-bottom: 25px;
}

.includes-text {
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--text-light);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-features li::before {
    content: "✓";
    color: var(--success-color, #27ae60);
    /* Fallback green if var not set */
    position: absolute;
    left: 0;
    font-weight: 800;
}

.pricing-outcome {
    background: #f8fbff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    border-left: 3px solid var(--accent-color);
    margin-top: auto;
    /* Pushes outcome and CTA to the bottom */
}

.pricing-outcome strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.pricing-outcome p {
    margin: 0;
    line-height: 1.4;
}

.pricing-cta .btn {
    width: 100%;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 78, 146, 0.2);
}

.service-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    background: rgba(0, 180, 219, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Specific styling for VAD column icons */
.vad-card .service-icon {
    color: var(--primary-color);
    background: rgba(0, 78, 146, 0.1);
}

@media (max-width: 992px) {
    .services-split-grid {
        grid-template-columns: 1fr;
    }
}

/* Map Markers */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 171, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 171, 0, 0);
    }
}

.map-marker {
    width: 16px;
    height: 16px;
    background-color: #FFAB00;
    /* Gold/Amber */
    border: 2px solid white;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255, 171, 0, 0.4);
    animation: pulse 2s infinite;
}

/* Location Badges (Minimalist Pills) */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    /* Changed from white to hex for consistency */
    transition: all 0.3s ease;
    cursor: default;
}

.location-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Services Section Revisions */
.services-split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.column-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.service-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* VAD Card Specifics */
.vad-card {
    border-left: 4px solid var(--primary-color);
}

/* Industries Section Revamp */
.tech-grid-bg {
    background-color: var(--primary-color);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.glass-card:hover i {
    transform: scale(1.1);
    color: var(--white);
}

.glass-card span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Excellence / Advantage Section */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.excellence-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.excellence-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.excellence-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(0, 78, 146, 0.05);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.excellence-item:hover i {
    background: var(--primary-color);
    color: var(--white);
}

.excellence-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Onboarding Timeline */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    gap: 20px;
}

/* Connecting Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e0e0e0 0%, var(--primary-color) 100%);
    z-index: 1;
    border-radius: 2px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Highlight Final Step */
.process-step:last-child .step-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 78, 146, 0.4);
    transform: scale(1.1);
}

.process-step:last-child .step-number {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Why Enki Section (Pre-Footer) */
#why-enki {
    background-color: var(--secondary-color);
    /* Dark Blue */
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    /* Glass effect on dark */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: left;
    /* Ensure text is left aligned */
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.why-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0;
    /* Handled by flex gap */
    width: 40px;
    /* Fixed width for alignment consistency */
    display: flex;
    justify-content: center;
}

.why-card h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0;
    /* Handled by header margin */
    line-height: 1.3;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    position: relative;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: black;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.process-step h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    padding: 0 10px;
}

/* Timeline Mobile Responsive */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
        padding-left: 20px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 29px;
        width: 2px;
        height: auto;
        right: auto;
    }

    .process-step {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }

    .step-icon {
        margin: 0;
        min-width: 60px;
    }
}

.excellence-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-brand {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Main Footer */
#main-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .copyright-bar {
        flex-direction: column;
        text-align: center;
    }

    .legal-links a {
        margin: 0 10px;
    }
}