/* ==========================================================================
   CORE VARIABLES & THEME DEFINITIONS
   ========================================================================== */
:root {
    /* Brand Colors - Automotive Theme */
    --primary: #00c0c0 !important;
    --primary-dark: #009b9b !important;
    --primary-light: rgba(0, 192, 192, 0.08) !important;
    --primary-lighter: rgba(0, 192, 192, 0.05) !important;
    --primary-lightest: rgba(0, 192, 192, 0.03) !important;
    --primary-overlay: rgba(0, 192, 192, 0.15) !important;
    --primary-glow: rgba(0, 192, 192, 0.25) !important;
    --accent: #00a8a8 !important;
    
    /* Bootstrap 5 Color System Override - Complete Set */
    --bs-blue: #00c0c0 !important;                   /* Override blue with our teal */
    --bs-primary: #00c0c0 !important;                /* Direct primary variable */
    --bs-primary-rgb: 0, 192, 192 !important;        /* RGB format for rgba() functions */
    --bs-primary-text-emphasis: #006060 !important;  /* Darker shade for text emphasis */
    --bs-primary-bg-subtle: #ccf2f2 !important;      /* Light background variant */
    --bs-primary-border-subtle: #99e5e5 !important;  /* Border color variant */

    /* Button-specific Bootstrap variables */
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #00c0c0 !important;
    --bs-btn-border-color: #00c0c0 !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #009b9b !important;
    --bs-btn-hover-border-color: #008e8e !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #008e8e !important;
    --bs-btn-active-border-color: #008181 !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #00c0c0 !important;
    --bs-btn-disabled-border-color: #00c0c0 !important;
    
    /* Link colors - ensure consistent colors in links */
    --bs-link-color: #00c0c0 !important;
    --bs-link-hover-color: #009b9b !important; 
    --bs-link-color-rgb: 0, 192, 192 !important;
    --bs-link-hover-color-rgb: 0, 155, 155 !important;

    /* Neutral Colors */
    --secondary: #1b1b1d;
    --light: #f8f9fa;
    --dark: #121212;
    --dark-lighter: #1e1e20;
    --dark-lightest: #232528;
    
    /* Gray Scale */
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --gray-lighter: rgba(255, 255, 255, 0.7);
    --gray-lightest: rgba(255, 255, 255, 0.5);
    --gray-dark: #495057;
    
    /* UI Elements */
    --border-radius: 10px;
    --card-border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    
    /* White with opacity variants */
    --white: #ffffff;
    --white-trans-10: rgba(255, 255, 255, 0.1);
    --white-trans-20: rgba(255, 255, 255, 0.2);
    --white-trans-50: rgba(255, 255, 255, 0.5);
    --white-trans-70: rgba(255, 255, 255, 0.7);
    --white-trans-80: rgba(255, 255, 255, 0.8);
    
    /* Black with opacity variants */
    --black-trans-10: rgba(0, 0, 0, 0.1);
    --black-trans-30: rgba(0, 0, 0, 0.3);
    --black-trans-50: rgba(0, 0, 0, 0.5);
    --black-trans-70: rgba(0, 0, 0, 0.7);
    
    /* Gradient definitions - UPDATED TO REMOVE GRADIENTS */
    --gradient-primary: var(--primary);  /* Solid color instead of gradient */
    --gradient-primary-reverse: var(--primary-dark);  /* Solid color instead of gradient */
    --gradient-dark: var(--dark);  /* Solid color instead of gradient */
    
    /* Standardized typography scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Standardized spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
    
    /* Section padding consistency */
    --section-padding-y: 5rem;
    --section-padding-y-mobile: 3rem;

    /* Reset Bootstrap primary color to our teal/aqua */
    --bs-primary: #00c0c0 !important; 
    --bs-primary-rgb: 0, 192, 192 !important;
}


/* ==========================================================================
   BASE STYLES & RESETS
   ========================================================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--light);
}

.protected-email {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,192,192,.4);
}

.btn-outline-light {
    color: var(--primary);
    border: 2px solid var(--primary);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2); /* Replaced gradient with solid color */
    transition: left 0.7s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 10px 20px rgba(0, 192, 192, 0.2);
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 192, 192, 0.3);
    color: var(--white);
}

.btn-hero-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGATION COMPONENTS
   ========================================================================== */
.navbar {
    padding: 18px 0;
    transition: all 0.4s ease;
    background-color: rgba(248, 249, 250, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    padding: 12px 0;
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 12px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: auto;
    padding: 100px 0 60px;
    overflow: hidden;
    background: var(--dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 192, 192, 0.05); /* Replaced radial gradient with solid color */
    z-index: 0;
    opacity: 0.4;
}

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

/* 3D Lines Animation */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    background: rgba(0, 192, 192, 0.4); /* Replaced gradient with solid color */
    transform: translateY(-100%);
    animation: line-animation 8s infinite;
    opacity: 0;
}

.hero-line:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.hero-line:nth-child(2) {
    left: 30%;
    animation-delay: 1.5s;
}

.hero-line:nth-child(3) {
    left: 50%;
    animation-delay: 3s;
}

.hero-line:nth-child(4) {
    left: 70%;
    animation-delay: 4.5s;
}

.hero-line:nth-child(5) {
    left: 90%;
    animation-delay: 6s;
}

@keyframes line-animation {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Updated Hero Content Styling */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff; /* Replaced gradient with solid color */
    position: relative;
    -webkit-text-fill-color: initial; /* Reset text-fill-color */
    background-clip: initial; /* Reset background-clip */
    -webkit-background-clip: initial; /* Reset -webkit-background-clip */
    background: none; /* Remove background gradient */
}

.hero-title span {
    color: var(--primary); /* Replaced gradient with solid color */
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: initial; /* Reset text-fill-color */
    background-clip: initial; /* Reset background-clip */
    -webkit-background-clip: initial; /* Reset -webkit-background-clip */
    background: none; /* Remove background gradient */
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 192, 192, 0.2);
    z-index: -1;
    border-radius: 10px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Enhanced Car Display */
.car-display-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px; /* Add padding around the wrapper for better spacing */
}

.car-display {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: all 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 2;
    height: 340px; /* Slightly taller for better proportions */
    width: 100%;
    margin-bottom: 30px; /* Add margin bottom for spacing */
}

.car-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 192, 192, 0.2);
    border-radius: 20px;
    box-shadow: inset 0 0 30px rgba(0, 192, 192, 0.1);
    z-index: 1;
    pointer-events: none;
}

.car-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%; /* Adjust vertical position to focus on the car better */
    transition: transform 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.car-display:hover {
    transform: perspective(1200px) rotateY(-1deg) rotateX(1deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(0, 192, 192, 0.2);
}

.car-display:hover img {
    transform: scale(1.05);
}

/* Enhanced geometric accents */
.geo-accent {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
    transition: all 0.7s ease;
}

.geo-circle {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(0, 192, 192, 0.3);
    border-radius: 50%;
    top: -70px;
    right: -50px;
}

.geo-square {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(0, 192, 192, 0.2);
    transform: rotate(45deg);
    bottom: -40px;
    left: -30px;
}

.car-display-wrapper:hover .geo-accent {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
}

/* Enhanced overlay text */
.branding-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: auto;
    max-width: 80%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.branding-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.branding-overlay p {
    color: var(--primary);
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Better stat card styling */
.hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: absolute;
    z-index: 3;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-stat-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 192, 192, 0.4);
    background: rgba(0, 192, 192, 0.08);
}

.stat-card-1 {
    top: 50px;
    right: 30px;
    animation: float 6s ease-in-out infinite;
}

.stat-card-2 {
    bottom: 40px;
    left: 40px;
    animation: float 6s ease-in-out infinite 1s;
}

/* ==========================================================================
   WHAT WE OFFER SECTION STYLING
   ========================================================================== */
.services-section {
    position: relative;
    padding: 120px 0 100px;
    background: #ffffff; /* Replaced gradient with solid color */
    overflow: hidden;
}

/* Decorative elements */
.services-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.4;
}

.decoration-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 192, 192, 0.2);
    top: -150px;
    left: -100px;
    z-index: 0;
}

/* Remove gradient from decoration-dots */
.decoration-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    /* Replace radial gradient with a solid background */
    background: rgba(0, 192, 192, 0.1);
    bottom: 50px;
    right: 0;
    border-radius: 50%;
    opacity: 0.5;
}

.decoration-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(0, 192, 192, 0.3); /* Replaced gradient with solid color */
    top: 50%;
}

/* Section header styling */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.title-highlight {
    position: relative;
    color: var(--primary);
    z-index: 1;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 15px;
    background-color: rgba(0, 192, 192, 0.15);
    z-index: -1;
    border-radius: 10px;
}

.services-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Solution grid layout */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.solution-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.solution-card.featured {
    grid-column: span 6;
}

.solution-card.standard {
    grid-column: span 4;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 192, 192, 0.02); /* Replaced gradient with solid color */
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 192, 192, 0.2);
}

.solution-card:hover::before {
    opacity: 1;
}

/* Card header */
.solution-card-header {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.solution-icon-wrapper {
    position: relative;
    margin-right: 20px;
}

.solution-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: rgba(0, 192, 192, 0.05); /* Replaced radial gradient with solid color */
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card:hover .solution-icon-wrapper::before {
    opacity: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 192, 192, 0.1); /* Replaced gradient with solid color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 192, 192, 0.1);
}

.solution-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(0, 192, 192, 0.2);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 25px rgba(0, 192, 192, 0.15);
    background: rgba(0, 192, 192, 0.15); /* Replaced gradient with solid color */
}

.solution-card:hover .solution-icon::after {
    opacity: 1;
}

.solution-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
    color: var(--primary-dark);
}

.solution-subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    margin: 6px 0 0 0;
    font-weight: 500;
    opacity: 0.9;
}

/* Card body */
.solution-body {
    padding: 30px;
}

.solution-media {
    margin: -5px -5px 25px -5px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* Replaced gradient with solid color */
    z-index: 1;
}

.solution-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: all 0.7s ease;
    transform-origin: center;
}

.solution-card:hover .solution-media img {
    transform: scale(1.05);
}

.solution-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.solution-badge {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: inline-block;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-badge {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.solution-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.solution-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.solution-tag {
    background: rgba(0, 192, 192, 0.08); /* Replaced gradient with solid color */
    color: var(--primary-dark);
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-tag {
    background: rgba(0, 192, 192, 0.15); /* Replaced gradient with solid color */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 192, 192, 0.1);
}

/* ==========================================================================
   SOLUTIONS SECTION STYLING
   ========================================================================== */
.solutions-section {
    background: #f8f9fa; /* Replaced gradient with solid color */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 192, 192, 0.02); /* Replaced radial gradient with solid color */
    z-index: 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
}

.title-highlight {
    position: relative;
    color: var(--primary);
    z-index: 1;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 15px;
    background-color: rgba(0, 192, 192, 0.15);
    z-index: -1;
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Tab Navigation Styling */
.nav-tabs-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.solutions-tabs .nav-link {
    border-radius: 50px;
    padding: 15px 25px;
    margin: 0 8px;
    color: var(--gray-dark);
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.solutions-tabs .nav-link .icon {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.solutions-tabs .nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 192, 192, 0.3);
}

.solutions-tabs .nav-link.active {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 192, 192, 0.2);
}

/* Solution Panel Styling */
.solution-panel {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    padding: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.solution-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 192, 192, 0.01); /* Replaced radial gradient with solid color */
    z-index: -1;
}

.solution-panel-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
}

.solution-panel-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

/* Solution Stats */
.solution-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(0, 192, 192, 0.08); /* Replaced gradient with solid color */
    border-radius: 15px;
    padding: 15px 20px;
    border: 1px solid rgba(0, 192, 192, 0.1);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Solution Checklist */
.solution-checklist {
    margin-top: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.checklist-item i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.2rem;
}

.checklist-item span {
    font-size: 1.05rem;
    font-weight: 500;
}

/* Feature Cards - Enhanced Design */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 192, 192, 0.05); /* Replaced gradient with solid color */
    opacity: 0;
    z-index: -1;
    transition: opacity 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 192, 192, 0.1); /* Replaced gradient with solid color */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 192, 192, 0.1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 192, 192, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 192, 192, 0.2); /* Replaced gradient with solid color */
    transform: scale(1.1) rotate(10deg);
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 192, 192, 0.15);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--gray-dark);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
    position: relative;
}

/* Add accent decoration to feature cards */
.feature-accent {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    transition: all 0.8s ease;
}

.feature-accent-1 {
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    transform: scale(0.8);
}

.feature-accent-2 {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    transform: rotate(45deg) scale(0.6);
}

.feature-card:hover .feature-accent-1 {
    transform: scale(1.1);
    opacity: 0.25;
}

.feature-card:hover .feature-accent-2 {
    transform: rotate(45deg) scale(0.8);
    opacity: 0.2;
}

/* Enhance the solution features container */
.solution-features {
    position: relative;
}

.solution-features::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(0, 192, 192, 0.04); /* Replaced radial gradient with solid color */
    top: -50px;
    right: -50px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.solution-features .row {
    position: relative;
    z-index: 1;
}

/* Feature transition element styling */
.feature-transition-element {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    opacity: 0.6;
}

.transition-line {
    height: 1px;
    background: var(--primary); /* Replaced gradient with solid color */
    flex-grow: 1;
}

/* Call to Action Section */
.cta-section {
    background: #1a1e23; /* Replaced gradient with solid color */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 192, 192, 0.04); /* Replaced radial gradient with solid color */
    z-index: 0;
}

.cta-wrapper {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.btn-cta-primary {
    background: var(--primary); /* Replaced gradient with solid color */
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 192, 192, 0.25);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 192, 192, 0.35);
    color: var(--white);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    color: var(--white);
}

/* ==========================================================================
   FOOTER STYLING - PREMIUM EDITION
   ========================================================================== */

/* Base Footer Styling with improved depth */
footer, .premium-footer {
    background-color: #080c14;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
    box-shadow: inset 0 15px 15px -15px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Enhanced top border with gradient */
footer::before, .premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(0,192,192,0.7), #00c0c0 50%, rgba(0,192,192,0.7)) !important;
    box-shadow: 0 0 15px rgba(0, 192, 192, 0.5);
}

/* Subtle background texture */
footer::after, .premium-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%2300c0c0' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

/* Footer Logo Showcase Area */
.footer-logo-showcase {
    text-align: center;
    padding: 20px 0 5px;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 5px;
}

.main-footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.3) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.main-footer-logo:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.6) drop-shadow(0 8px 20px rgba(0, 192, 192, 0.5));
}

.tagline-container p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Enhanced footer divider */
.footer-divider {
    margin: 20px auto;
    width: 100%;
    max-width: 300px;
    height: 1px;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1px;
}

.footer-divider span {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 192, 192, 0.2), var(--primary), rgba(0, 192, 192, 0.2)) !important;
    box-shadow: 0 0 8px rgba(0, 192, 192, 0.4);
}

/* Footer Navigation Area */
.footer-navigation {
    padding: 5px 0 15px;
    position: relative;
    z-index: 1;
}

.footer-column {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Section Headings */
.footer-heading,
.footer-column h5 {
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.footer-heading::after,
.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(0, 192, 192, 0.5)) !important;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 192, 192, 0.3);
}

.footer-heading:hover::after,
.footer-column h5:hover::after {
    width: 100%;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-links li {
    margin-bottom: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(3px);
}

/* Enhanced links */
.footer-links a,
.footer-navigation a,
.contact-link,
.protected-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover,
.footer-navigation a:hover,
.contact-link:hover,
.protected-email:hover {
    color: var(--primary) !important;
    text-decoration: none;
}

/* Active Link Styling */
.footer-links a.active-link {
    font-weight: 500;
    color: var(--primary) !important;
}

/* Contact info styling */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: transform 0.3s ease;
    margin-bottom: 8px;
}

.contact-info-item:hover {
    transform: translateX(3px);
}

/* Enhanced icon styling */
.contact-link i,
.address-info i,
.contact-info-item i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: linear-gradient(135deg, rgba(0, 192, 192, 0.15), rgba(0, 192, 192, 0.05));
    border-radius: 50%;
    padding: 8px;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 192, 192, 0.1);
    color: var(--primary);
}

.contact-info-item:hover i {
    transform: scale(1.15);
    background: rgba(0, 192, 192, 0.2);
}

/* Footer bottom section */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    position: relative;
    z-index: 1;
}

/* Client login button styling */
.client-access-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-access-btn i {
    margin-right: 6px;
    font-size: 11px;
}

.client-access-btn:hover {
    background: rgba(0, 192, 192, 0.15);
    color: white !important;
    transform: translateY(-3px);
    border-color: rgba(0, 192, 192, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Address info styling */
.address-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.address-info:hover {
    transform: translateX(3px);
}

/* Animation support classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hover-effect {
    animation: pulse 0.6s ease;
}

/* ==========================================================================
   ENHANCED DESKTOP STYLING
   ========================================================================== */
@media (min-width: 768px) {
    /* Enhanced Header Experience */
    .navbar {
        padding: 15px 0;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
        padding: 10px 0;
        background-color: rgba(18, 18, 18, 0.95);
    }
    
    .navbar-brand img {
        height: 40px;
        transition: all 0.3s ease;
    }
    
    .navbar .nav-link {
        position: relative;
        padding: 8px 12px;
        margin: 0 3px;
        font-weight: 500;
    }
    
    /* Interactive Navigation Effects */
    .navbar .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        opacity: 0;
    }
    
    .navbar .nav-link:hover::after,
    .navbar .nav-link.active::after {
        width: 80%;
        opacity: 1;
    }
    
    /* Solution Tabs Enhancement */
    #solutionsTabs {
        display: flex;
        justify-content: center;
        gap: 12px;
        max-width: 900px;
        margin: 0 auto 40px;
    }
    
    #solutionsTabs .nav-link {
        border-radius: 10px;
        padding: 16px 20px;
        min-width: auto;
        white-space: nowrap;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    #solutionsTabs .nav-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
    }
    
    #solutionsTabs .nav-link.active {
        background: var(--primary);
        color: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 192, 192, 0.15);
    }
    
    /* Enhanced Solution Panels */
    .solution-panel {
        padding: 40px;
        border-radius: 20px;
        transition: all 0.4s ease;
    }
    
    .solution-panel:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }
    
    /* Feature Cards Enhancements */
    .feature-card {
        height: 100%;
        padding: 30px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }
    
    .feature-icon {
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .feature-card:hover .feature-icon {
        transform: scale(1.15) rotate(10deg);
    }
    
    /* Completely Redesigned Quote Section with Decorative Elements */
    .action-banner {
        background: linear-gradient(145deg, #131c25, #1a2530);
        border-radius: 24px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        margin: 80px auto;
        max-width: 1100px;
        overflow: hidden;
        padding: 0;
        position: relative;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    /* Main glow effect */
    .action-banner::before {
        background: rgba(0, 192, 192, 0.12);
        border-radius: 50%;
        content: '';
        filter: blur(70px);
        height: 300px;
        opacity: 0.6;
        position: absolute;
        right: -50px;
        top: -100px;
        transition: all 0.5s ease-out;
        width: 300px;
        z-index: 0;
    }
    
    /* Decorative elements - floating circles */
    .action-banner::after {
        content: '';
        position: absolute;
        left: 5%;
        bottom: -15px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 1px solid rgba(0, 192, 192, 0.15);
        z-index: 1;
    }
    
    /* Decorative floating elements */
    .action-banner .floating-element {
        position: absolute;
        z-index: 1;
        pointer-events: none;
    }
    
    .action-banner .floating-element-1 {
        top: 20px;
        left: 10%;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 1px dashed rgba(0, 192, 192, 0.2);
        animation: float 15s ease-in-out infinite alternate;
    }
    
    .action-banner .floating-element-2 {
        bottom: 30px;
        right: 15%;
        width: 60px;
        height: 60px;
        border: 1px solid rgba(0, 192, 192, 0.15);
        transform: rotate(45deg);
        animation: rotate 20s linear infinite;
    }
    
    .action-banner .floating-element-3 {
        top: 50%;
        right: 25%;
        width: 40px;
        height: 40px;
        background: rgba(0, 192, 192, 0.05);
        border-radius: 8px;
        animation: float 10s ease-in-out infinite alternate-reverse;
    }
    
    .action-banner .floating-element-4 {
        top: 70%;
        left: 20%;
        width: 15px;
        height: 15px;
        background: rgba(0, 192, 192, 0.1);
        border-radius: 50%;
        animation: pulse 7s ease-in-out infinite;
    }
    
    .action-banner .giant-quote {
        position: absolute;
        font-family: Georgia, serif;
        font-size: 300px;
        color: rgba(0, 192, 192, 0.03);
        line-height: 1;
        z-index: 0;
        pointer-events: none;
    }
    
    .action-banner .giant-quote-left {
        top: -50px;
        left: 20px;
    }
    
    .action-banner .giant-quote-right {
        bottom: -120px;
        right: 40px;
    }
    
    .action-banner:hover {
        box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
        transform: translateY(-5px);
    }
    
    .action-banner:hover::before {
        opacity: 0.8;
        transform: scale(1.1);
    }
    
    .action-banner:hover .floating-element-1,
    .action-banner:hover .floating-element-2,
    .action-banner:hover .floating-element-3,
    .action-banner:hover .floating-element-4 {
        animation-play-state: running;
    }
    
    .action-content {
        align-items: stretch;
        display: flex;
        flex-direction: row;
        position: relative;
        z-index: 2;
    }
    
    .action-text-container {
        flex: 1 1 65%;
        padding: 50px;
        position: relative;
        z-index: 3;
    }
    
    .action-button-container {
        align-items: center;
        background: rgba(0, 0, 0, 0.2);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex: 0 0 auto;
        justify-content: center;
        padding: 50px;
        position: relative;
        width: 280px;
        z-index: 3;
    }
    
    .action-button-container::before {
        background: rgba(0, 192, 192, 0.05);
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }
    
    /* Diagonal line decorative element */
    .action-button-container::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 15px;
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, rgba(0, 192, 192, 0.5), transparent);
        transform: rotate(45deg);
        transform-origin: left bottom;
    }
    
    .action-quote {
        background: rgba(255, 255, 255, 0.05);
        border-left: 4px solid var(--primary);
        border-radius: 0 16px 16px 0;
        margin-bottom: 28px;
        padding: 30px 35px 30px 40px;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    /* Subtle pattern overlay */
    .action-quote::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300c0c0' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
        pointer-events: none;
    }
    
    .action-quote:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-3px);
    }
    
    .action-quote p {
        color: rgba(255, 255, 255, 0.95);
        font-size: 20px;
        font-style: italic;
        letter-spacing: 0.2px;
        line-height: 1.6;
        margin-bottom: 15px;
        position: relative;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }
    
    .action-quote cite {
        color: var(--primary);
        display: block;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        opacity: 0.9;
        text-align: right;
    }
    
    .action-quote::before {
        color: rgba(0, 192, 192, 0.15);
        content: '"';
        font-family: Georgia, serif;
        font-size: 100px;
        left: 20px;
        line-height: 0.8;
        position: absolute;
        top: 15px;
        z-index: 1;
    }
    
    .action-title {
        color: white;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .action-text {
        color: rgba(255, 255, 255, 0.85);
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .action-banner .syndication-cta {
        background: linear-gradient(135deg, var(--primary), #009b9b);
        border-radius: 50px;
        box-shadow: 0 10px 25px rgba(0, 192, 192, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
        color: white;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        font-weight: 600;
        min-width: 200px;
        padding: 16px 30px;
        position: relative;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        white-space: nowrap;
        z-index: 2;
    }
    
    /* Button glow effect */
    .action-banner .syndication-cta::before {
        content: '';
        position: absolute;
        inset: -3px;
        background: linear-gradient(135deg, rgba(0, 192, 192, 0.5), rgba(0, 192, 192, 0.2));
        border-radius: 50px;
        filter: blur(10px);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }
    
    .action-banner .syndication-cta:hover::before {
        opacity: 0.7;
    }
    
    .action-banner .syndication-cta i {
        margin-left: 10px;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 2;
    }
    
    .action-banner .syndication-cta:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15);
        color: white;
        transform: translateY(-5px) scale(1.03);
    }
    
    .action-banner .syndication-cta:hover i {
        transform: translateX(5px);
    }
    
    /* Animation keyframes */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.5); opacity: 0.8; }
    }
    
    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    /* Responsive adjustments for different desktop sizes */
    @media (max-width: 991px) {
        .action-content {
            flex-direction: column;
        }
        
        .action-button-container {
            border-left: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            width: 100%;
        }
        
        .action-text-container {
            padding: 40px 40px 20px;
        }
        
        .action-banner .floating-element-1 {
            width: 80px;
            height: 80px;
        }
        
        .action-banner .giant-quote {
            font-size: 200px;
        }
    }
}

/* Extra Large Screen Enhancements */
@media (min-width: 1400px) {
    .action-banner {
        max-width: 1300px;
    }
    
    .action-text-container {
        padding: 60px;
    }
    
    .action-button-container {
        padding: 60px;
        width: 350px;
    }
    
    .action-banner .floating-element-1 {
        width: 150px;
        height: 150px;
    }
    
    .action-banner .giant-quote {
        font-size: 350px;
    }
    
    .action-quote p {
        font-size: 22px;
    }
    
    .action-title {
        font-size: 36px;
    }
    
    .action-text {
        font-size: 19px;
    }
}

/* ==========================================================================
   SYNDICATION SECTION STYLING - FIXED
   ========================================================================== */
.syndication-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.syndication-cards {
    margin-top: 30px;
}

.syndication-card {
    position: relative;
    background: white;
    border-radius: var(--card-border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.syndication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
    padding: 5px 35px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.syndication-card .card-body {
    padding: 30px;
    text-align: center;
}

/* Platform icon styling */
.platform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.syndication-card:hover .platform-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-lighter);
}

.platform-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.platform-description {
    font-size: 0.95rem;
    color: var(--gray-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Platform stats */
.platform-stats {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fixed card footer with proper tag display */
.syndication-card .card-footer {
    background: rgba(0, 192, 192, 0.02);
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: nowrap;  /* Prevent tags from wrapping */
    gap: 10px;
    overflow-x: auto;  /* Allow horizontal scrolling if needed */
    -ms-overflow-style: none;  /* Hide scrollbar in IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar in Firefox */
    justify-content: center;
}

/* Hide scrollbar in WebKit browsers */
.syndication-card .card-footer::-webkit-scrollbar {
    display: none;
}

.platform-tag {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(0, 192, 192, 0.08);
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(0, 192, 192, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;  /* Prevent text wrapping within tags */
    flex: 0 0 auto;  /* Don't allow tags to grow or shrink */
}

.syndication-card:hover .platform-tag {
    background: rgba(0, 192, 192, 0.12);
    transform: translateY(-2px);
}

/* CTA styling */
.syndication-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 192, 192, 0.2);
    transition: all 0.3s ease;
}

.syndication-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.syndication-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 192, 192, 0.3);
    color: white;
}

.syndication-cta:hover i {
    transform: translateX(4px);
}

.syndication-note {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Mobile responsive handling for syndication cards */
@media (max-width: 767px) {
    .syndication-cards .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .syndication-cards .row::-webkit-scrollbar {
        display: none;
    }
    
    .syndication-cards .col-md-6 {
        min-width: 80%;
        scroll-snap-align: center;
        padding-right: 5px;
        padding-left: 5px;
    }
    
    .syndication-card .card-footer {
        justify-content: flex-start;  /* Left align on mobile */
    }
    
    /* Pagination dots for mobile card carousel */
    .syndication-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .pagination-dot {
        width: 8px;
        height: 8px;
        background: rgba(0, 192, 192, 0.2);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .pagination-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }
}