/* ========================================
   Critical Network Solutions Ltd - Enterprise Design System
   CorporateWebPro Agency (UK) - 2026
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & BRAND IDENTITY
   ======================================== */
:root {
    /* Brand Colors - Critical Network Solutions */
    --primary-color: #00aeef;
    --secondary-orange: #dd872a;
    --secondary-blue: #303385;
    --secondary-red: lab(48.55% 67.86 46.15);
    --dark-color: #020303;
    
    /* Neutral Palette */
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --border-gray: #dee2e6;
    --white: #ffffff;
    --text-dark: #212529;
    --text-medium: #495057;
    --text-light: #6c757d;
    
    /* Enterprise Shadows */
    --shadow-sm: 0 2px 4px rgba(2, 3, 3, 0.06);
    --shadow-md: 0 4px 12px rgba(2, 3, 3, 0.08);
    --shadow-lg: 0 8px 24px rgba(2, 3, 3, 0.12);
    --shadow-xl: 0 16px 48px rgba(2, 3, 3, 0.16);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:not(.btn):not(.nav-link):not(.navbar-brand) {
    color: var(--secondary-orange);
}

a:not(.btn):not(.nav-link):not(.navbar-brand):hover {
    color: var(--secondary-blue);
}

a .bi {
    color: inherit;
}

.text-primary {
    color: var(--secondary-orange) !important;
}

.btn-link {
    color: var(--secondary-orange);
}

.btn-link:hover {
    color: var(--secondary-blue);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   2. TOP BAR
   ======================================== */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right {
    justify-content: flex-end;
}

.top-bar a {
    color: var(--white);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar .separator {
    margin: 0 10px;
    color: #555;
}

.top-bar .social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   3. NAVIGATION
   ======================================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 48px;
    width: auto;
    display: block;
    /* Prevent logo from being squashed on small navbars */
    max-width: 220px;
    object-fit: contain;
}

/* Retained for fallback if image fails to load */
.brand-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.brand-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--secondary-orange) !important;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.btn-quote {
    background-color: var(--secondary-orange) !important;
    color: var(--white) !important;
    border-radius: 5px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.btn-quote::after {
    display: none;
}

.btn-quote:hover {
    background-color: var(--secondary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

/* ========================================
   4. HERO SECTION (CAROUSEL VERSION)
   ======================================== */
.hero-carousel-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    height: 100vh;
    position: relative;
}

.carousel-inner {
    height: 100%;
}

.hero-slide-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 3, 3, 0.5);
    z-index: 1;
}

.hero-carousel .container {
    position: relative;
    z-index: 2;
}

.hero-slide-content {
    color: var(--white);
}

.hero-service-label {
    display: inline-block;
    background: rgba(0, 174, 239, 0.25);
    color: #00ff88;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 174, 239, 0.4);
}

.hero-carousel .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-carousel .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.hero-benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-benefits-list i {
    color: #00ff88;
    font-size: 1.2rem;
    min-width: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 1.05rem;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-slide-visual {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide-visual img {
    max-height: 500px;
    object-fit: cover;
}

.hero-carousel-control {
    width: 55px;
    height: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 174, 239, 0.8);
    border-radius: 50%;
    opacity: 1;
    transition: var(--transition);
    z-index: 10;
}

.hero-carousel-control:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

.hero-carousel-control-prev-icon,
.hero-carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    opacity: 0.6;
    transition: var(--transition);
    cursor: pointer;
}

.hero-carousel-indicators button.active {
    width: 36px;
    border-radius: 7px;
    background: var(--primary-color);
    opacity: 1;
    border-color: var(--primary-color);
}

.hero-carousel-indicators button:hover {
    opacity: 1;
    border-color: var(--primary-color);
}

/* Mobile responsive hero carousel */
@media (max-width: 768px) {
    .hero-carousel .hero-title {
        font-size: 2.2rem;
    }

    .hero-carousel .hero-subtitle {
        font-size: 1rem;
    }

    .hero-benefits-list li {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-slide-wrapper {
        min-height: 100vh;
        padding: 80px 0;
    }

    .hero-slide-content {
        padding: 20px;
    }

    .hero-slide-visual {
        display: none;
    }

    .hero-carousel-control {
        width: 45px;
        height: 45px;
    }
}
}

.hero-buttons .btn {
    padding: 12px 35px;
    font-weight: 500;
    border-radius: 5px;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s backwards;
}

.animate-slide-in {
    animation: slideIn 1s ease-out 0.3s backwards;
}

/* ========================================
   5. FEATURES SECTION
   ======================================== */
.features-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   6. SECTION STYLING
   ======================================== */
.section-heading {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   7. ABOUT SECTION
   ======================================== */
.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    margin: 5px 0 0;
    font-size: 14px;
    font-weight: 500;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

.vm-item {
    margin-bottom: 20px;
}

.vm-item h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-item h5 i {
    font-size: 24px;
}

.vm-item p {
    color: var(--text-light);
    margin: 0;
}

.core-values h5 {
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 15px;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.value-badge {
    background-color: var(--light-gray);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.value-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.value-badge:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.value-badge:hover i {
    color: var(--white);
}

/* ========================================
   8. SERVICES SECTION
   ======================================== */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.15);
    border-top-color: var(--secondary-orange);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-orange), var(--secondary-red));
    transform: rotateY(360deg);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   9. PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 80px 0;
}

.product-category {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.product-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--white);
}

.product-category h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category ul li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid #f0f0f0;
}

.product-category ul li:last-child {
    border-bottom: none;
}

/* ========================================
   10. CLIENTS SECTION
   ======================================== */
.clients-section {
    padding: 80px 0;
}

.client-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.client-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.15);
}

.client-card p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.certifications-section {
    border-top: 1px solid #e0e0e0;
}

.certification-badge {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.certification-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.certification-badge i {
    font-size: 48px;
    color: var(--secondary-orange);
    margin-bottom: 20px;
}

.certification-badge h5 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.certification-badge p {
    color: var(--text-light);
    margin: 0;
}

/* ========================================
   11. CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-info-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.contact-info-box h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info-box p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-box a {
    color: var(--text-light);
    transition: var(--transition);
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h4 {
    color: var(--text-dark);
    text-align: center;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.15);
}

.contact-form .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.contact-form .btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========================================
   12. FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
    color: var(--white);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-widget h4,
.footer-widget h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Modern enterprise footer (applies to new markup) */
.footer-enterprise {
    background: linear-gradient(180deg, rgba(2, 3, 3, 0.98) 0%, rgba(2, 3, 3, 0.92) 100%);
    color: var(--white);
}

.footer-modern {
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(0, 174, 239, 0.12), transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(221, 135, 42, 0.1), transparent 40%);
    pointer-events: none;
}

.footer-cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 0;
    background: rgba(221, 135, 42, 0.14);
}

.footer-cta h3 {
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-enterprise .footer-links-section h5,
.footer-enterprise .footer-contact h5,
.footer-enterprise .footer-about h4 {
    color: var(--white);
}

.footer-enterprise .footer-links-section ul,
.footer-enterprise .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-enterprise .footer-links-section ul li,
.footer-enterprise .footer-contact ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-enterprise a {
    color: var(--secondary-orange);
}

.footer-enterprise a:hover {
    color: var(--secondary-orange);
}

.footer-certifications .cert-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: 999px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 8px;
    margin-top: 8px;
    font-size: 0.85rem;
}

.footer-seo-section h6 {
    color: rgba(255, 255, 255, 0.9);
}

.footer-seo-section .text-muted.small {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-enterprise .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================
   13. SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.4);
}

.scroll-top-btn.show {
    display: flex;
}

/* ========================================
   14. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        text-align: center;
    }

    .top-bar .row > div {
        margin-bottom: 10px;
    }

    .experience-badge {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 100px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-box,
    .service-card,
    .product-category {
        margin-bottom: 20px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .top-bar {
        font-size: 12px;
    }

    .brand-text {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ========================================
   15. UTILITY CLASSES
   ======================================== */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
}

.text-primary-custom {
    color: var(--primary-color);
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   16. PAGE HEADER (FOR INTERNAL PAGES)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 20px;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.header-cta-buttons .btn {
    margin: 5px;
}

/* ========================================
   17. ABOUT PAGE SPECIFIC STYLES
   ======================================== */
.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-box h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-box p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.leader-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.leader-info {
    padding: 40px;
}

.leader-info h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.leader-info h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.leader-bio {
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

.leader-credentials h6 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.leader-credentials ul {
    list-style: none;
    padding-left: 0;
}

.leader-credentials ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.leader-credentials ul li::before {
    content: '\F26B';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.why-card {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ========================================
   18. SERVICES PAGE SPECIFIC STYLES
   ======================================== */
.service-detail-section {
    padding: 60px 0;
}

.service-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.industry-tags span {
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.use-case-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.use-case-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.use-case-item p {
    margin: 0;
    font-size: 14px;
}

.benefits-list {
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-item h6 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.benefit-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

.service-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    margin: 0;
    line-height: 1;
}

.stat-item p {
    margin: 5px 0 0;
    font-size: 13px;
}

/* ========================================
   19. PROJECTS PAGE SPECIFIC STYLES
   ======================================== */
.stat-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-card p {
    margin: 0;
    color: var(--text-light);
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.project-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    color: var(--white);
    text-align: center;
}

.project-header.embassy {
    background: linear-gradient(135deg, #303385, #00aeef);
}

.project-header.government {
    background: linear-gradient(135deg, #df272a, #dd872a);
}

.project-header.ngo {
    background: linear-gradient(135deg, #00aeef, #303385);
}

.project-header.corporate {
    background: linear-gradient(135deg, #020303, #303385);
}

.project-header.international {
    background: linear-gradient(135deg, #dd872a, #df272a);
}

.project-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.project-header h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--white);
}

.project-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.project-body {
    padding: 20px;
}

.project-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 60px;
}

.project-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-color);
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    border: 2px solid var(--primary-color);
}

.category-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ========================================
   20. SHOP PAGE SPECIFIC STYLES
   ======================================== */
.category-section {
    margin-bottom: 50px;
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.category-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.category-header h3 i {
    color: var(--primary-color);
    margin-right: 15px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
}

.product-image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.product-info {
    padding: 20px;
}

.product-info h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.order-step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.order-step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.order-step h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ========================================
   21. BLOG PAGE SPECIFIC STYLES
   ======================================== */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-blue);
}

.newsletter-form .input-group {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   22. CONTACT PAGE SPECIFIC STYLES
   ======================================== */
.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
}

.contact-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
}

.contact-benefits li {
    padding: 10px 0;
    color: var(--text-light);
}

.contact-benefits li i {
    color: var(--secondary-orange);
    margin-right: 10px;
}

.contact-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.coverage-list .badge {
    padding: 8px 15px;
    font-size: 13px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 15px;
}

.cert-badge i {
    font-size: 2rem;
    color: var(--secondary-orange);
}

/* ========================================
   23. FLOATING CTA BUTTONS
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float,
.call-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float {
    background: #25D366;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

.call-float {
    background: var(--secondary-red);
}

.call-float:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
    color: var(--white);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float,
.call-float {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   24. CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(221, 135, 42, 0.12), rgba(221, 135, 42, 0.03));
    border: 1px solid rgba(221, 135, 42, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-section .lead {
    opacity: 0.95;
}

.cta-conversion,
.blog-cta,
.newsletter-section {
    background: linear-gradient(135deg, rgba(221, 135, 42, 0.1), rgba(221, 135, 42, 0.02));
    border-top: 1px solid rgba(221, 135, 42, 0.2);
    border-bottom: 1px solid rgba(221, 135, 42, 0.2);
}

.all-services-cta,
.service-cta-banner,
.support-cta,
.services-cta,
.procurement-cta,
.contact-cta {
    background: linear-gradient(135deg, rgba(221, 135, 42, 0.95), rgba(198, 111, 30, 0.9)) !important;
    color: var(--white);
}

/* ========================================
   25. RESPONSIVE ADJUSTMENTS FOR NEW PAGES
   ======================================== */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 80px 0 40px;
    }

    .category-filter-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
}

/* ========================================
   26. ENTERPRISE UX ENHANCEMENTS
   ======================================== */
.trust-strip {
    background: #ffffff;
    border-bottom: 1px solid #eef1f4;
}

.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f5f8fb;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-badge i {
    color: var(--secondary-orange);
    font-size: 1.2rem;
}

.trust-icon,
.trust-icon i,
.trust-feature-card i,
.trust-stat i {
    color: var(--secondary-orange);
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
    font-weight: 500;
    color: var(--text-light);
}

.regions-map img {
    border-radius: 12px;
}

.regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.region-pill {
    padding: 8px 14px;
    background: #f0f6fb;
    border-radius: 30px;
    font-weight: 600;
    color: var(--secondary-blue);
}

.featured-projects .project-highlight {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef1f4;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.project-highlight .project-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0, 174, 239, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.conversion-band {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-color));
}

.conversion-band h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.services-hub .service-hub-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eef1f4;
    color: var(--text-dark);
    transition: var(--transition);
    height: 100%;
}

.services-hub .service-hub-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.services-hub .service-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.managed-support {
    background: #ffffff;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.support-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.support-list i {
    color: var(--primary-color);
    margin-right: 8px;
}

.support-cta {
    background: #f5f8fb;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef1f4;
}

.services-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
}

.timeline {
    display: grid;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef1f4;
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
}

.compliance-card {
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef1f4;
    text-align: center;
    background: #ffffff;
}

.compliance-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-categories .category-card {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef1f4;
    background: #ffffff;
}

.project-categories .category-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.client-logos .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.client-logos .logo-grid span {
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
}

.case-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eef1f4;
    height: 100%;
}

.case-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(48, 51, 133, 0.12);
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.85rem;
}

.procurement-value {
    background: #ffffff;
}

.procurement-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.procurement-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.procurement-list i {
    color: var(--primary-color);
    margin-right: 8px;
}

.procurement-cta {
    background: #f5f8fb;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eef1f4;
}

.whatsapp-cart {
    position: fixed;
    right: 20px;
    bottom: 120px;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e6edf3;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.whatsapp-cart.show {
    display: flex;
}

.cart-header,
.cart-footer {
    padding: 15px;
    border-bottom: 1px solid #eef1f4;
}

.cart-footer {
    border-bottom: none;
}

.cart-body {
    padding: 15px;
    max-height: 280px;
    overflow-y: auto;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cart-items button {
    border: none;
    background: transparent;
    color: var(--secondary-red);
    font-size: 1rem;
}

.cart-empty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-trigger {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--secondary-blue);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.cart-trigger .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--secondary-red);
    color: #ffffff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.featured-insights .featured-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eef1f4;
    padding: 25px;
    height: 100%;
}

@media (max-width: 991px) {
    .trust-logos {
        justify-content: flex-start;
    }

    .whatsapp-cart {
        width: 90%;
        right: 5%;
    }
}

/* ========================================
   27. SERVICES CAROUSEL
   ======================================== */
/* ========================================
   8. SERVICES SECTION - MODERN CARD GRID
   ======================================== */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 174, 239, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    position: relative;
    z-index: 1;
}

.service-card {
    height: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    border: 1px solid rgba(0, 174, 239, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.2);
    border-color: var(--primary-color);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-card:hover .service-image {
    transform: scale(1.1) rotate(2deg);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.7), rgba(51, 51, 133, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-label {
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--neon-green);
    padding: 10px 20px;
    border-radius: 25px;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-points li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-points li i {
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.service-card:hover .service-points li i {
    color: var(--secondary-orange);
    animation: none;
}

.service-points li:hover {
    transform: translateX(5px);
}

.service-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.service-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
    border-color: var(--primary-color);
    color: var(--white);
}

.service-btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-color));
    border-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
}

.service-btn.btn-whatsapp {
    background: transparent;
    border-color: #25D366;
    color: #25D366;
}

.service-btn.btn-whatsapp:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Services CTA Band */
.services-cta-band {
    background: linear-gradient(135deg, var(--secondary-orange), #c66f1e);
    padding: 50px 40px;
    border-radius: 12px;
    color: var(--white);
    margin-top: 60px;
}

.services-cta-band h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.services-cta-band p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.services-cta-band .cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.services-cta-band .btn {

    /* ========================================
       MODERN HOMEPAGE LAYOUT
       ======================================== */

    /* Navigation Bar */
    .navbar {
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        padding: 15px 0;
        z-index: 1000;
    }

    .navbar-brand {
        font-weight: 700;
        font-size: 1.2rem;
        color: var(--primary-color) !important;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .navbar-brand i {
        font-size: 1.5rem;
    }

    .navbar-brand .brand-name {
        color: var(--text-dark);
    }

    .nav-link {
        color: var(--text-dark) !important;
        font-weight: 500;
        margin: 0 15px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }

    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        background-attachment: fixed;
        color: var(--white);
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(2, 3, 3, 0.3);
        z-index: 1;
    }

    .hero-section .container {
        position: relative;
        z-index: 2;
    }

    .hero-label {
        display: inline-block;
        background: rgba(0, 255, 136, 0.2);
        border: 2px solid var(--neon-green);
        color: var(--white);
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        animation: slideInDown 0.6s ease-out;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        animation: slideInUp 0.6s ease-out 0.2s backwards;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        max-width: 600px;
        margin-bottom: 30px;
        animation: slideInUp 0.6s ease-out 0.4s backwards;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        animation: slideInUp 0.6s ease-out 0.6s backwards;
    }

    .hero-image {
        max-height: 500px;
        object-fit: cover;
        animation: slideInRight 0.8s ease-out 0.4s backwards;
    }

    @keyframes slideInDown {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* About/Who We Are Section */
    .about-section {
        background: #f8f9fa;
    }

    .section-label {
        display: inline-block;
        color: var(--primary-color);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .lead-text {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .about-highlights {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 30px 0;
    }

    .highlight-item {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .highlight-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        flex-shrink: 0;
        margin-top: 5px;
    }

    .highlight-item h6 {
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 5px;
    }

    .highlight-item p {
        color: var(--text-light);
        margin: 0;
        font-size: 0.95rem;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 50px;
    }

    .section-header .section-label {
        display: block;
    }

    .section-description {
        font-size: 1rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Portfolio Section */
    .portfolio-section {
        background: #f8f9fa;
    }

    .portfolio-grid {
        margin-bottom: 40px;
    }

    .portfolio-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background: var(--white);
        height: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .portfolio-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 174, 239, 0.2);
    }

    .portfolio-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .portfolio-card:hover .portfolio-image {
        transform: scale(1.08);
    }

    .portfolio-content {
        padding: 25px;
    }

    .portfolio-tag {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
        color: var(--white);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .portfolio-content h5 {
        color: var(--text-dark);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .portfolio-content p {
        color: var(--text-light);
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .portfolio-link {
        color: var(--primary-color);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .portfolio-link:hover {
        gap: 12px;
        color: var(--secondary-blue);
    }

    /* Testimonials Section */
    .testimonials-section {
        background: var(--white);
    }

    .testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        transition: all 0.3s ease;
        height: 100%;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 174, 239, 0.15);
    }

    .testimonial-stars {
        color: #FFB800;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .testimonial-text {
        color: var(--text-light);
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.6;
        font-style: italic;
    }

    .testimonial-author h6 {
        color: var(--text-dark);
        font-weight: 600;
        margin: 0 0 5px;
    }

    .testimonial-author p {
        color: var(--primary-color);
        font-size: 0.85rem;
        margin: 0;
    }

    /* Why Choose Us Section */
    .why-choose-us {
        background: linear-gradient(135deg, var(--light-gray), #ffffff);
    }

    .features-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin: 30px 0;
    }

    .feature-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .feature-item:hover .feature-icon {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 174, 239, 0.3);
    }

    .feature-content h6 {
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .feature-content p {
        color: var(--text-light);
        margin: 0;
        font-size: 0.95rem;
    }

    /* Contact CTA Section */
    .contact-cta {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-blue));
        color: var(--white);
    }

    .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-buttons .btn-outline-primary {
        background: transparent;
        border: 2px solid var(--white);
        color: var(--white);
    }

    .cta-buttons .btn-outline-primary:hover {
        background: var(--white);
        color: var(--primary-color);
        border-color: var(--white);
    }

    /* Contact Section */
    .contact-section {
        background: #f8f9fa;
    }

    .contact-info-card {
        background: var(--white);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 174, 239, 0.15);
    }

    .contact-info-card i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .contact-info-card h5 {
        color: var(--text-dark);
        font-weight: 600;
        margin-bottom: 12px;
    }

    .contact-info-card p {
        color: var(--text-light);
        margin: 5px 0;
        font-size: 0.95rem;
    }

    .contact-info-card a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .contact-info-card a:hover {
        color: var(--secondary-blue);
    }

    .contact-form-wrapper {
        background: var(--white);
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .contact-form-wrapper h4 {
        color: var(--text-dark);
        font-weight: 600;
    }

    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 12px 16px;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .contact-form-wrapper .form-control:focus,
    .contact-form-wrapper .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.15);
    }

    .contact-form-wrapper .btn {
        padding: 14px 35px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .contact-form-wrapper .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 174, 239, 0.3);
    }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, var(--dark-color), #1a1a1a);
        color: var(--white);
        padding: 60px 0 0;
    }

    .footer h5,
    .footer h6 {
        color: var(--white);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer p {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .footer-social {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        color: var(--white);
        transition: all 0.3s ease;
    }

    .footer-social a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }

    /* Floating CTAs */
    .floating-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 999;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

    .floating-btn.whatsapp {
        background: #25D366;
    }

    .floating-btn.whatsapp:hover {
        transform: scale(1.15);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    .floating-btn.phone {
        background: var(--primary-color);
    }

    .floating-btn.phone:hover {
        transform: scale(1.15);
        box-shadow: 0 8px 30px rgba(0, 174, 239, 0.4);
    }

    /* Mobile Responsive */
    @media (max-width: 991px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .cta-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .navbar-brand {
            font-size: 1rem;
        }

        .nav-link {
            margin: 10px 0;
        }

        .hero-section {
            min-height: 70vh;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .cta-title {
            font-size: 1.8rem;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .cta-buttons .btn {
            width: 100%;
        }

        .features-list {
            gap: 20px;
        }

        .contact-form-wrapper {
            padding: 25px;
        }

        .floating-cta {
            bottom: 20px;
            right: 20px;
            gap: 12px;
        }
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.services-cta-band .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.services-cta-band .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-cta-band .btn-outline-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.services-cta-band .btn-outline-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Grid Layout */
@media (max-width: 991px) {
    .services-grid {
        --bs-gutter-x: 2rem;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .services-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }

    .services-grid {
        --bs-gutter-x: 1.5rem;
    }

    .service-card {
        margin-bottom: 15px;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .service-body {
        padding: 20px;
    }

    .service-name {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-points li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .service-cta-group {
        gap: 8px;
    }

    .service-btn {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .services-cta-band {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .services-cta-band h3 {
        font-size: 1.4rem;
    }

    .services-cta-band p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .services-cta-band .cta-buttons {
        gap: 12px;
    }

    .services-cta-band .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        flex: 1;
    }
}

@media (max-width: 576px) {
    .services-grid {
        --bs-gutter-x: 1rem;
    }

    .service-image-wrapper {
        height: 180px;
    }

    .service-body {
        padding: 15px;
    }

    .service-name {
        font-size: 1rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .service-points li {
        font-size: 0.8rem;
    }

    .service-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .service-btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   HOMEPAGE CONVERSION POLISH (2026)
   ======================================== */
.badge.bg-primary-subtle {
    background-color: rgba(0, 174, 239, 0.12) !important;
    border: 1px solid rgba(0, 174, 239, 0.2);
}

/* Value strip polish */
.border-top.border-bottom {
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.04), rgba(255, 255, 255, 0.9));
}

.border-top.border-bottom .fw-semibold {
    letter-spacing: -0.01em;
}

.border-top.border-bottom .btn-outline-primary {
    border-width: 2px;
}

.border-top.border-bottom .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Subtle section tint to reduce white dominance */
.section-tint {
    background: linear-gradient(180deg, rgba(0, 174, 239, 0.08), rgba(255, 255, 255, 0.96));
}

/* Typography tightening */
body {
    letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.015em;
}

.lead {
    line-height: 1.7;
    max-width: 52rem;
}

p {
    line-height: 1.7;
}

.display-5 {
    letter-spacing: -0.02em;
}

.card.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
    border-radius: var(--radius-lg);
}

.card.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
    border-radius: var(--radius-md);
}

.btn-primary {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.btn {
    font-weight: 600;
    border-radius: 10px;
    letter-spacing: -0.01em;
    transition: var(--transition);
}

.btn-lg {
    padding: 14px 24px;
}

.btn-outline-primary {
    border-color: var(--secondary-orange);
    color: var(--secondary-orange);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: var(--white);
}

.btn-primary,
.btn-outline-primary,
.btn-success {
    box-shadow: 0 8px 20px rgba(2, 3, 3, 0.12);
}

.btn-primary:hover,
.btn-outline-primary:hover,
.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(2, 3, 3, 0.16);
}

.btn-success {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
}

.btn-success:hover {
    background-color: #c67622;
    border-color: #c67622;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary-orange {
    color: var(--secondary-orange) !important;
}

.text-secondary-blue {
    color: var(--secondary-blue) !important;
}

.badge-accent {
    border-color: rgba(221, 135, 42, 0.35) !important;
    color: var(--secondary-blue) !important;
    background-color: rgba(221, 135, 42, 0.12) !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.border-top,
.border-bottom {
    border-color: var(--border-gray) !important;
}

.card .fw-bold {
    letter-spacing: -0.01em;
}

/* Hero premium gradient and highlights */
.hero-premium {
    position: relative;
    overflow: hidden;
    background-color: #1a0505;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    min-height: 70vh;
}

.hero-premium .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    z-index: 0;
}

.hero-premium .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 5, 5, 0.92) 0%, rgba(15, 5, 5, 0.78) 50%, rgba(15, 5, 5, 0.45) 100%);
    z-index: 0;
}

.hero-premium::before {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(223, 39, 42, 0.22), rgba(223, 39, 42, 0) 70%);
    filter: blur(0px);
    z-index: 1;
}

.hero-premium::after {
    content: '';
    position: absolute;
    inset: auto auto -30% -10%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(221, 135, 42, 0.20), rgba(221, 135, 42, 0) 70%);
    z-index: 1;
}

.hero-premium .container,
.hero-premium .card {
    position: relative;
    z-index: 2;
}

.hero-premium .card {
    border: 1px solid rgba(221, 135, 42, 0.25);
}

.hero-accent-red  { color: #df272a !important; }
.hero-accent-orange { color: #dd872a !important; }

.hero-premium .badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}

.card a.fw-semibold {
    color: var(--secondary-orange);
}

.card a.fw-semibold:hover {
    color: var(--secondary-blue);
}

.badge.bg-primary-subtle.text-primary {
    font-weight: 600;
}

/* Hero form polish */
.card input.form-control,
.card select.form-select {
    border-radius: var(--radius-md);
    border-color: var(--border-gray);
    padding: 12px 14px;
}

.form-control,
.form-select {
    border-radius: 10px;
    border-color: var(--border-gray);
    padding: 12px 14px;
}

.card input.form-control:focus,
.card select.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.15);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.15);
}

/* Subtle lift on hover */
.card.h-100:hover {
    transform: translateY(-4px);
    transition: var(--transition);
}

/* Client logo tiles */
.border.rounded.py-3 {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-color: var(--border-gray) !important;
    font-weight: 600;
}

/* CTA section */
.card.border-0.shadow-lg .btn-outline-primary {
    border-width: 2px;
}

/* Floating CTA buttons visibility polish */
.floating-cta-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-buttons {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

/* Section spacing system */
.home-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-section--hero {
    padding-top: 96px;
    padding-bottom: 96px;
}

.home-section--tight {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Global section rhythm for other pages */
.page-header-enterprise,
.company-story,
.vision-mission-values,
.ceo-section,
.why-trust-section,
.regional-presence,
.certifications-section,
.service-detail-section,
.services-showcase,
.industries-section,
.projects-showcase,
.projects-grid,
.project-filters,
.contact-info-section,
.contact-form-section,
.map-section,
.contact-trust-section,
.regional-offices,
.products-section,
.b2b-features,
.category-nav,
.blog-categories,
.featured-article,
.blog-articles,
.blog-cta,
.newsletter-section,
.shop-preview,
.contact-section,
.cta-conversion {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 991px) {
    .page-header-enterprise,
    .company-story,
    .vision-mission-values,
    .ceo-section,
    .why-trust-section,
    .regional-presence,
    .certifications-section,
    .service-detail-section,
    .services-showcase,
    .industries-section,
    .projects-showcase,
    .projects-grid,
    .project-filters,
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .contact-trust-section,
    .regional-offices,
    .products-section,
    .b2b-features,
    .category-nav,
    .blog-categories,
    .featured-article,
    .blog-articles,
    .blog-cta,
    .newsletter-section,
    .shop-preview,
    .contact-section,
    .cta-conversion {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (max-width: 768px) {
    .page-header-enterprise,
    .company-story,
    .vision-mission-values,
    .ceo-section,
    .why-trust-section,
    .regional-presence,
    .certifications-section,
    .service-detail-section,
    .services-showcase,
    .industries-section,
    .projects-showcase,
    .projects-grid,
    .project-filters,
    .contact-info-section,
    .contact-form-section,
    .map-section,
    .contact-trust-section,
    .regional-offices,
    .products-section,
    .b2b-features,
    .category-nav,
    .blog-categories,
    .featured-article,
    .blog-articles,
    .blog-cta,
    .newsletter-section,
    .shop-preview,
    .contact-section,
    .cta-conversion {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}

@media (max-width: 991px) {
    .home-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .home-section--hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .home-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .home-section--hero {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}

/* Scroll micro-animations */
.fade-in-up,
.service-card,
.service-card-enterprise,
.service-nav-card,
.solution-card,
.project-card,
.project-card-detailed,
.project-item,
.blog-card,
.product-card,
.product-category-card,
.contact-info-card,
.contact-info-box,
.industry-card,
.license-card,
.trust-stat,
.region-badge,
.feature-card,
.client-logo-card,
.vmv-card,
.stat-card,
.ceo-photo-wrapper,
.country-card,
.certification-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CLIENTS LOGO CAROUSEL
   ============================================ */
.clients-marquee-section {
    padding: 5rem 0 4.5rem;
    background: #f9fafb;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* ── Section header ──────────────────────────────────────────────── */
.clients-marquee-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-marquee-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color, #00aeef);
    background: rgba(0, 174, 239, 0.07);
    border: 1px solid rgba(0, 174, 239, 0.18);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.clients-marquee-header h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0b1829;
    margin-bottom: 0.25rem;
}

.clients-marquee-header p {
    color: #6b7280;
    font-size: 0.92rem;
    margin: 0;
}

/* ── Individual logo card ────────────────────────────────────────── */
.client-logo-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2.5rem 1.5rem 1.75rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.client-logo-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
    border-color: #00aeef;
    transform: translateY(-4px);
}

.client-logo-card img {
    display: block;
    margin: 0 auto 1.25rem;
    max-height: 56px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ── Carousel chrome: light-background prev/next buttons ─────────── */
.clients-carousel-btn {
    top: 50%;
    transform: translateY(calc(-50% - 1.25rem)); /* offset above indicators */
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e0e4e8;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.clients-carousel-btn:hover {
    border-color: #00aeef;
    box-shadow: 0 4px 16px rgba(0, 174, 239, 0.18);
}

.clients-carousel-btn .carousel-control-prev-icon,
.clients-carousel-btn .carousel-control-next-icon {
    width: 14px;
    height: 14px;
    /* Recolour arrow to brand blue */
    filter: invert(47%) sepia(98%) saturate(472%) hue-rotate(162deg) brightness(100%) contrast(101%);
}

/* ── Dot indicators ──────────────────────────────────────────────── */
.clients-carousel-indicators {
    position: static;
    margin: 1.75rem 0 0;
    justify-content: center;
    gap: 6px;
}

.clients-carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ced4da;
    border: none;
    opacity: 1;
    transition: background-color 0.25s ease;
}

.clients-carousel-indicators button.active {
    background-color: #00aeef;
}

/* ── Accessibility: reduce motion — disable carousel auto-slide ───── */
@media (prefers-reduced-motion: reduce) {
    .clients-marquee-section .carousel {
        /* Bootstrap respects this natively via its own reduced-motion check */
        --bs-carousel-interval: 0;
    }
}
.clients-section-pro {
    background: #0b1829;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.clients-section-pro::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.clients-section-pro::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(221, 135, 42, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Eyebrow + Headline */
.clients-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #00aeef;
    display: block;
    margin-bottom: 0.75rem;
}

.clients-headline {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0;
}

.clients-headline span {
    color: #dd872a;
}

/* Trust stat bar */
.clients-stat-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.clients-stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0.75rem 1.5rem;
}

.clients-stat-item + .clients-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    display: block;
}

.clients-stat-number span {
    color: #dd872a;
}

.clients-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
    display: block;
}

/* Logo grid */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.clients-logo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.clients-logo-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 174, 239, 0.35);
    transform: translateY(-3px);
}

.clients-logo-card img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    display: block;
}

.clients-logo-card:hover img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

/* Divider with text */
.clients-divider {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 2.75rem 0;
}

.clients-divider::before,
.clients-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.clients-divider span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
}

/* Testimonial strip */
.clients-testimonial {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #dd872a;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    position: relative;
    margin-bottom: 2.5rem;
}

.clients-quote-icon {
    font-size: 4rem;
    line-height: 0.8;
    color: #dd872a;
    opacity: 0.4;
    font-family: Georgia, serif;
    position: absolute;
    top: 1rem;
    left: 1.75rem;
}

.clients-quote-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.75;
    padding-left: 2rem;
    margin: 0 0 1.25rem 0;
}

.clients-quote-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-left: 2rem;
}

.clients-quote-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aeef, #0088cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.clients-quote-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
    display: block;
}

.clients-quote-role {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    display: block;
}

/* Section CTA */
.clients-section-cta {
    text-align: center;
    padding-top: 0.5rem;
}

.clients-section-cta p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .clients-stat-item + .clients-stat-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .clients-stat-bar {
        flex-direction: column;
        gap: 0;
    }
    .clients-testimonial {
        padding: 1.5rem 1.25rem;
    }
    .clients-quote-text,
    .clients-quote-author {
        padding-left: 0;
    }
    .clients-quote-icon {
        display: none;
    }
}

/* ========================================
   MODERN SERVICES PAGE REDESIGN
   ======================================== */

/* Services Hero Modern */
.services-hero-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.services-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(221, 135, 42, 0.08));
    border-radius: 0 0 0 100%;
}

.badge-pill-modern {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-orange), #c66f1e);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(221, 135, 42, 0.3);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
}

/* Pain Points List */
.pain-points-list {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pain-point-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.95rem;
}

.pain-point-item:last-child {
    border-bottom: none;
}

.pain-point-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pulse-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
}

/* Quick Stats Modern */
.quick-stats-modern {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-gray);
}

.stat-item-modern {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual-modern {
    position: relative;
}

.trust-badge-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.trust-badge-card {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-badge-card i {
    font-size: 2rem;
}

.trust-badge-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Problem Solver Strip */
.problem-solver-strip {
    background: linear-gradient(135deg, var(--secondary-blue), #1f2557);
    padding: 2rem 0;
    color: white;
}

.solver-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.solver-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.solver-card a {
    color: var(--secondary-orange);
    text-decoration: none;
    font-weight: 600;
}

.solver-card a:hover {
    color: #ffa726;
}

/* Service Card Modern */
.service-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.service-card-modern:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Per-service top accent borders */
.service-card-modern.lan-accent  { border-top-color: #00aeef; }
.service-card-modern.wan-accent  { border-top-color: #303385; }
.service-card-modern.cctv-accent { border-top-color: #df272a; }
.service-card-modern.vsat-accent { border-top-color: #dd872a; }
.service-card-modern.voip-accent { border-top-color: #6f42c1; }

/* Service number label */
.service-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--secondary-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.service-card-image {
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 35%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-card-content {
    padding: 3rem;
}

/* Service Icon Badges */
.service-icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.lan-badge {
    background: linear-gradient(135deg, #00aeef, #0088cc);
}

.wan-badge {
    background: linear-gradient(135deg, #303385, #1f2557);
}

.cctv-badge {
    background: linear-gradient(135deg, #df272a, #b31f21);
}

.vsat-badge {
    background: linear-gradient(135deg, #dd872a, #c66f1e);
}

.voip-badge {
    background: linear-gradient(135deg, #6f42c1, #563d7c);
}

/* Problem-Solution Block */
.problem-solution-block {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary-orange);
}

.problem-item,
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.problem-item:last-child,
.solution-item:last-child {
    margin-bottom: 0;
}

.problem-item i,
.solution-item i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Features Mini List */
.features-mini-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    background: white;
    border: 1px solid var(--border-gray);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.feature-tag:hover {
    border-color: var(--secondary-orange);
    background: rgba(221, 135, 42, 0.05);
}

.feature-tag i {
    color: var(--secondary-orange);
}

/* Ideal For Section */
.use-case-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.use-case-pills span {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}

.use-case-pills span:hover {
    background: var(--primary-color);
    color: white;
}

/* Service Card Actions */
.service-card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Why Card Modern */
.why-card-modern {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.why-card-modern:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-orange), #c66f1e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Success Story Card */
.success-story-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-orange);
    height: 100%;
    transition: var(--transition);
}

.success-story-card:hover {
    box-shadow: var(--shadow-xl);
}

.story-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Urgency CTA Section */
.urgency-cta-section {
    background: linear-gradient(135deg, #df272a, #b31f21);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.urgency-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.urgency-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
}

.cta-button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .services-hero-modern {
        padding: 3rem 0 2rem;
    }

    .service-card-content {
        padding: 2rem;
    }

    .service-card-image {
        min-height: 300px;
    }

    .quick-stats-modern {
        gap: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .service-card-actions {
        flex-direction: column;
    }

    .service-card-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-card-content {
        padding: 1.5rem;
    }

    .trust-badge-overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .trust-badge-card {
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .quick-stats-modern {
        justify-content: space-around;
    }

    .cta-button-group {
        flex-direction: column;
    }

    .cta-button-group .btn {
        width: 100%;
    }
}

/* ========================================
   B2B E-COMMERCE SHOP DESIGN
   ======================================== */

/* Shop Hero B2B */
.shop-hero-b2b {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.shop-hero-b2b::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.08), transparent);
    border-radius: 50%;
}

.badge-corporate-shop {
    display: inline-block;
    background: linear-gradient(135deg, #00aeef, #0088cc);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.shop-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-row-shop {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--border-gray);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-medium);
}

.trust-item i {
    color: var(--secondary-orange);
}

.shop-hero-visual {
    position: relative;
}

.floating-product-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-content i {
    font-size: 2rem;
}

/* Stats Bar Shop */
.stats-bar-shop {
    background: linear-gradient(135deg, var(--secondary-blue), #1f2557);
    padding: 2rem 0;
    color: white;
}

.stat-shop-item {
    text-align: center;
}

.stat-shop-item .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-orange);
    line-height: 1;
}

.stat-shop-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

/* Category Card Modern */
.category-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.category-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid;
}

.category-card-header.dell-theme {
    border-bottom-color: #007DB8;
}

.category-card-header.hp-theme {
    border-bottom-color: #0096D6;
}

.category-card-header.lenovo-theme {
    border-bottom-color: #E2231A;
}

.category-card-header.apc-theme {
    border-bottom-color: #CC0000;
}

.category-card-header.cisco-theme {
    border-bottom-color: #049FD9;
}

.category-card-header.solar-theme {
    border-bottom-color: #FFB800;
}

.category-logo {
    max-width: 120px;
    height: 40px;
}

.category-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-blue);
    border: 1px solid var(--border-gray);
}

.category-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.quick-products-list {
    flex-grow: 1;
}

.quick-product-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.quick-product-link:last-child {
    border-bottom: none;
}

.quick-product-link i {
    color: var(--secondary-orange);
    font-size: 0.75rem;
}

.category-card-footer {
    margin-top: auto;
}

/* Why Shop Cards */
.why-shop-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.why-shop-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.why-shop-card i {
    font-size: 3rem;
}

/* Process Steps Shop */
.process-steps-shop {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step-shop {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-orange), #c66f1e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    margin-bottom: 0.5rem;
}

/* WhatsApp Preview Card */
.whatsapp-preview-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.whatsapp-header {
    background: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.whatsapp-header i {
    font-size: 1.5rem;
}

.whatsapp-body {
    padding: 2rem;
}

.whatsapp-message {
    background: #E5DDD5;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
}

/* Corporate CTA Section */
.corporate-cta-section {
    background: linear-gradient(135deg, var(--secondary-blue), #1f2557);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.corporate-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(221, 135, 42, 0.15), transparent);
    border-radius: 50%;
}

/* Responsive Shop */
@media (max-width: 991px) {
    .shop-hero-b2b {
        padding: 3rem 0 2rem;
    }

    .shop-benefits-grid {
        grid-template-columns: 1fr;
    }

    .floating-product-badge {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .badge-content {
        justify-content: center;
    }

    .trust-row-shop {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stat-shop-item .stat-number {
        font-size: 1.5rem;
    }

    .category-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .process-step-shop {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* Responsive tweaks for new homepage */
@media (max-width: 991px) {
    .display-5 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .display-5 {
        font-size: 2rem;
    }
}

/* ========================================
   PRODUCT BUNDLE CARDS
   ======================================== */

.bundle-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 174, 239, 0.1);
    display: flex;
    flex-direction: column;
}

.bundle-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: var(--secondary-orange);
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-orange), #c66f1e);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(221, 135, 42, 0.3);
}

.bundle-badge.bg-danger {
    background: linear-gradient(135deg, #df272a, #b31f21) !important;
    box-shadow: 0 4px 12px rgba(223, 39, 42, 0.3) !important;
}

.bundle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-orange), #c66f1e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(221, 135, 42, 0.2);
}

.bundle-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.bundle-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bundle-contents {
    background: linear-gradient(135deg, rgba(221, 135, 42, 0.05), rgba(0, 174, 239, 0.05));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    flex: 1;
}

.bundle-contents h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.bundle-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundle-contents li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.bundle-contents li:last-child {
    margin-bottom: 0;
}

.bundle-contents i {
    color: var(--secondary-green, #00ff88);
    font-weight: 700;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.bundle-price {
    background: var(--light-gray);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 1.5rem;
}

.bundle-price .h4 {
    color: var(--secondary-orange);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.bundle-price .small {
    color: var(--text-light);
    display: block;
}

.bundle-card .btn {
    padding: 14px 24px;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

/* Bundle Section */
.bundle-section {
    background: linear-gradient(135deg, rgba(221, 135, 42, 0.04), rgba(0, 174, 239, 0.04));
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.bundle-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(221, 135, 42, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.bundle-section .section-title {
    margin-bottom: 0.5rem;
}

.bundle-section .section-title i {
    color: var(--secondary-orange);
    margin-right: 0.5rem;
}

/* Responsive Bundles */
@media (max-width: 768px) {
    .bundle-card {
        padding: 1.75rem;
        margin-bottom: 1rem;
    }

    .bundle-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .bundle-card h3 {
        font-size: 1.25rem;
    }

    .bundle-contents {
        padding: 1rem;
    }

    .bundle-contents h5 {
        font-size: 0.8rem;
    }

    .bundle-contents li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .bundle-card {
        padding: 1.5rem;
    }

    .bundle-badge {
        top: 15px;
        right: 15px;
    }

    .bundle-card h3 {
        font-size: 1.1rem;
    }

    .bundle-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* ========================================
   Quote CTA & Enterprise Styling
   ======================================== */
.quote-cta-hero {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, rgba(221, 135, 42, 0.1) 100%);
    border: 2px solid rgba(0, 174, 239, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 174, 239, 0.15);
    color: #005a8c;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.quote-cta-hero .text-muted {
    color: #666 !important;
    font-size: 0.95rem;
    margin: 0;
}

.enterprise-quote-box {
    background: #f8f9fa;
    border-left: 4px solid #00aeef;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
}

.quote-feature i {
    color: #00aeef;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.quote-feature:last-child {
    margin-bottom: 0;
}
