/* Modern GeoCon Infra - Enhanced Design */

:root {
    --e-global-color-primary: #141414;
    --e-global-color-secondary: #FFFFFF;
    --e-global-color-text: #141414;
    --e-global-color-accent: #DB0202;
    --e-global-color-ad705c3: #2D2D2D;
    --e-global-color-0028f2f: #9E9E9E;
    --e-global-color-0982d6d: #2D2D2D;
    --e-global-color-title: #037EB8;
    --e-global-color-1aeabb6: #03A554;
    
    /* Modern additions */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(3, 126, 184, 0.9) 0%, rgba(3, 165, 84, 0.9) 100%);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scroll Animation System - Base Styles */
.scroll-fade-up,
.scroll-fade-down,
.scroll-fade-left,
.scroll-fade-right,
.scroll-fade-in,
.scroll-scale-up,
.scroll-scale-down,
.scroll-slide-up,
.scroll-slide-down,
.scroll-zoom-in,
.scroll-rotate-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade Up Animation */
.scroll-fade-up {
    transform: translateY(50px);
}

.scroll-fade-up.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down Animation */
.scroll-fade-down {
    transform: translateY(-50px);
}

.scroll-fade-down.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left Animation */
.scroll-fade-left {
    transform: translateX(50px);
}

.scroll-fade-left.scroll-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right Animation */
.scroll-fade-right {
    transform: translateX(-50px);
}

.scroll-fade-right.scroll-animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Animation */
.scroll-fade-in {
    opacity: 0;
}

.scroll-fade-in.scroll-animated {
    opacity: 1;
}

/* Scale Up Animation */
.scroll-scale-up {
    transform: scale(0.8);
}

.scroll-scale-up.scroll-animated {
    opacity: 1;
    transform: scale(1);
}

/* Scale Down Animation */
.scroll-scale-down {
    transform: scale(1.2);
}

.scroll-scale-down.scroll-animated {
    opacity: 1;
    transform: scale(1);
}

/* Slide Up Animation */
.scroll-slide-up {
    transform: translateY(100px);
}

.scroll-slide-up.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Down Animation */
.scroll-slide-down {
    transform: translateY(-100px);
}

.scroll-slide-down.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom In Animation */
.scroll-zoom-in {
    transform: scale(0.5);
}

.scroll-zoom-in.scroll-animated {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In Animation */
.scroll-rotate-in {
    transform: rotate(-10deg) scale(0.9);
}

.scroll-rotate-in.scroll-animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Stagger Animation Container */
.scroll-stagger {
    /* Container doesn't need animation itself */
}

.scroll-stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-stagger-item.scroll-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Animation Timing */
@media (prefers-reduced-motion: reduce) {
    .scroll-fade-up,
    .scroll-fade-down,
    .scroll-fade-left,
    .scroll-fade-right,
    .scroll-fade-in,
    .scroll-scale-up,
    .scroll-scale-down,
    .scroll-slide-up,
    .scroll-slide-down,
    .scroll-zoom-in,
    .scroll-rotate-in,
    .scroll-stagger-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Global Typography */
body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--e-global-color-text);
    line-height: 1.7;
    font-size: 16px;
}

/* Modern Headline Sizes - Reduced */
h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--e-global-color-primary);
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    color: var(--e-global-color-primary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Hero Section - Modern Design */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(3, 126, 184, 0.5) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Section Title with Modern Underline */
.section-title {
    color: var(--e-global-color-title);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 0;
}

/* Main Heading Styles - Reduced Size */
.main-heading {
    color: var(--e-global-color-primary);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .main-heading {
        font-size: 2.25rem;
    }
}

/* Stats Section - Modern Cards */
.stat-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 1.5rem;
    padding-bottom: 2.5rem;
    border-radius: 0;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 126, 184, 0.1);
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--e-global-color-primary);
    border-radius: 0;
}

.stat-block:first-child::after {
    background: var(--gradient-primary);
    height: 4px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--e-global-color-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--e-global-color-ad705c3);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Service Cards - Modern Design */
.service-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--e-global-color-title);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    color: var(--e-global-color-title);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card-description {
    color: var(--e-global-color-0028f2f);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Project Gallery - Modern Grid */
.project-item {
    overflow: hidden;
    border-radius: 0;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.project-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.project-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.8) 0%, rgba(3, 165, 84, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover::after {
    opacity: 1;
}

/* Modern Button Styles */
.btn-primary {
    background: white;
    color: var(--e-global-color-title);
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--e-global-color-title);
}

.btn-modern {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline {
    color: white;
    background: transparent;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline:hover {
    background: white;
    color: var(--e-global-color-title);
    transform: translateY(-2px);
}

.btn-link {
    color: var(--e-global-color-title);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.btn-link:hover {
    color: var(--e-global-color-1aeabb6);
    border-bottom-color: var(--e-global-color-1aeabb6);
}

/* Section Spacing - Modern */
.section-padding {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* Text Colors */
.text-primary {
    color: var(--e-global-color-primary);
}

.text-secondary {
    color: var(--e-global-color-secondary);
}

.text-title {
    color: var(--e-global-color-title);
}

.text-accent {
    color: var(--e-global-color-accent);
}

.text-green {
    color: var(--e-global-color-1aeabb6);
}

.text-gray {
    color: var(--e-global-color-0028f2f);
}

/* Dark Section - Modern */
.dark-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.5;
}

.dark-section .section-title {
    color: #4FC3F7;
}

.dark-section .main-heading {
    color: white;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* About Section Images - Modern Overlap */
.about-image-container {
    position: relative;
    height: 450px;
}

.about-image-base {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 75%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-base img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlap {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 75%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}

.about-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modern Card Styles */
.modern-card {
    background: white;
    border-radius: 0;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .about-image-container {
        height: 350px;
    }
    
    .about-image-overlap {
        width: 70%;
    }
    
    .section-padding {
        padding: 40px 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--e-global-color-title);
}

/* Modern Animated Banner Styles with Background Image */
.banner-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -80px;
    padding-top: 80px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .banner-section {
        min-height: 600px;
    }
}

@media (min-width: 1024px) {
    .banner-section {
        min-height: 700px;
    }
}

/* Reduced Banner Height for Non-Index Pages */
.banner-section-reduced {
    min-height: 300px;
}

@media (min-width: 768px) {
    .banner-section-reduced {
        min-height: 350px;
    }
}

@media (min-width: 1024px) {
    .banner-section-reduced {
        min-height: 400px;
    }
}

/* Internal Pages - Position Content at Bottom Center */
.banner-section-internal {
    align-items: flex-end;
    justify-content: center;
}

.banner-section-internal .banner-content {
    width: 100%;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .banner-section-internal .banner-content {
        padding-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .banner-section-internal .banner-content {
        padding-bottom: 4rem;
    }
}

/* Credentials / Partners */
.logo-marquee {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.logo-marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee 20s linear infinite;
}

.logo-marquee:hover .logo-marquee-track {
    animation-play-state: paused;
}

.logo-marquee-item {
    flex: 0 0 auto;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    min-width: 160px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.logo-pill img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: none;
}

.logo-pill span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partner grid */
.partner-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.partner-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: none;
}

.partner-name {
    font-weight: 600;
    color: #141414;
    font-size: 0.95rem;
}

/* Floating logos */
/* Innovation Network - Redesigned */
.innovation-network-container {
    position: relative;
    min-height: 600px;
    overflow: visible;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #f0f9ff 100%);
    border: 2px solid rgba(3, 126, 184, 0.1);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 80px 40px;
    /* Allow tooltips to overflow */
    clip-path: inset(0);
}

.innovation-network-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.network-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(3, 126, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 126, 184, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.network-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: network-glow-pulse 8s ease-in-out infinite;
}

.network-glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(3, 126, 184, 0.4), transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.network-glow-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(3, 165, 84, 0.4), transparent 70%);
    bottom: -125px;
    right: -125px;
    animation-delay: 2s;
}

.network-glow-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(3, 126, 184, 0.3), transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes network-glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.innovation-logos-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    z-index: 2;
    overflow: hidden;
    /* Large padding to keep logos well away from border */
    padding: 80px 60px;
    /* Subtle background gradient for bubble effect */
    background: radial-gradient(ellipse at top, rgba(3, 126, 184, 0.02) 0%, transparent 50%);
}

.innovation-logo-item {
    position: absolute;
    top: var(--current-y, var(--start-y, 50%));
    left: var(--current-x, var(--start-x, 50%));
    transform: translate(-50%, -50%);
    z-index: 3;
    will-change: transform;
    /* Smooth transition for position updates from JavaScript */
    transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.innovation-logo-item:hover {
    animation-play-state: paused;
    z-index: 10;
}

/* Bubble Effect - Glassmorphic Bubble Container */
.innovation-logo-card {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.85) 100%);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* Circular shadow using filter - ensures perfect circle */
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
            drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15));
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    /* Remove CSS animation - let JavaScript handle smooth movement */
    will-change: transform, filter;
}

/* Bubble shine/reflection effect */
.innovation-logo-card::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 40%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transition: all 0.5s ease;
    filter: blur(1px);
}

/* Bubble inner glow */
.innovation-logo-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(3, 126, 184, 0.15) 0%,
        rgba(3, 165, 84, 0.1) 30%,
        transparent 70%);
    opacity: 0.6;
    z-index: -1;
    transition: all 0.5s ease;
    filter: blur(8px);
}

/* Clean and simple hover effect - no blinking */
.innovation-logo-card:hover {
    transform: scale(1.15);
    /* Circular shadow on hover */
    filter: drop-shadow(0 16px 40px rgba(3, 126, 184, 0.2)) 
            drop-shadow(0 8px 20px rgba(3, 126, 184, 0.15));
    border-color: rgba(255, 255, 255, 0.7);
}

/* Enhanced shine on hover */
.innovation-logo-card:hover::before {
    top: 10%;
    left: 15%;
    width: 45%;
    height: 45%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.6) 40%,
        transparent 70%);
    filter: blur(2px);
}

.innovation-logo-card:hover::after {
    opacity: 1;
    background: radial-gradient(circle at 30% 30%,
        rgba(3, 126, 184, 0.25) 0%,
        rgba(3, 165, 84, 0.15) 30%,
        transparent 70%);
    filter: blur(12px);
}

.innovation-logo-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: transparent;
    position: relative;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
    /* Ensure circular clipping */
    clip-path: circle(50%);
}

/* Bubble particles effect */
.innovation-logo-image::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 20%;
    right: 15%;
    opacity: 0;
    transition: all 0.6s ease;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.3),
        0 0 0 4px rgba(3, 126, 184, 0.1);
    z-index: 5;
    pointer-events: none;
}

.innovation-logo-image::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    bottom: 25%;
    left: 20%;
    opacity: 0;
    transition: all 0.6s ease 0.2s;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.2),
        0 0 0 4px rgba(3, 165, 84, 0.1);
    z-index: 5;
    pointer-events: none;
}

.innovation-logo-card:hover .innovation-logo-image::before,
.innovation-logo-card:hover .innovation-logo-image::after {
    opacity: 0.6;
    transform: scale(1.2);
}

.innovation-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    position: relative;
    z-index: 10;
    /* Ensure image respects circular boundary */
    clip-path: circle(50%);
    display: block;
}

.innovation-logo-card:hover .innovation-logo-image img {
    transform: scale(1.08);
    filter: drop-shadow(0 3px 12px rgba(3, 126, 184, 0.15));
}

/* Modern Glassmorphism Tooltip */
.innovation-logo-info {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.85);
    background: linear-gradient(135deg, 
        rgba(3, 126, 184, 0.95) 0%, 
        rgba(3, 165, 84, 0.95) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 16px 24px;
    border-radius: 16px;
    min-width: 220px;
    max-width: 300px;
    width: max-content;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(3, 126, 184, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    text-align: center;
}

.innovation-logo-info::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(3, 126, 184, 0.95);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    z-index: 1001;
}

.innovation-logo-card:hover .innovation-logo-info {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.4),
        0 12px 32px rgba(3, 126, 184, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Smart tooltip positioning - logos in top half show tooltip below */
.innovation-logo-item.tooltip-below .innovation-logo-info {
    bottom: auto;
    top: calc(100% + 16px);
    transform: translateX(-50%) translateY(-8px) scale(0.85);
}

.innovation-logo-item.tooltip-below .innovation-logo-info::before {
    bottom: auto;
    top: -8px;
    border-top: none;
    border-bottom: 8px solid rgba(3, 126, 184, 0.95);
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.2));
}

.innovation-logo-item.tooltip-below .innovation-logo-card:hover .innovation-logo-info {
    transform: translateX(-50%) translateY(0) scale(1);
}

.innovation-logo-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    padding: 0;
    line-height: 1.4;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    white-space: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.innovation-logo-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Bubble Ripple Effects - Enhanced for bubble appearance */
@keyframes ripple-left {
    0% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
    50% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(-12px 0 30px rgba(3, 126, 184, 0.4));
    }
    100% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
}

@keyframes ripple-right {
    0% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
    50% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(12px 0 30px rgba(3, 126, 184, 0.4));
    }
    100% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
}

@keyframes ripple-top {
    0% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
    50% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 -12px 30px rgba(3, 126, 184, 0.4));
    }
    100% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
}

@keyframes ripple-bottom {
    0% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
    50% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 12px 30px rgba(3, 126, 184, 0.4));
    }
    100% { 
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12)) 
                drop-shadow(0 4px 12px rgba(3, 126, 184, 0.15))
                drop-shadow(0 0 0 0 rgba(3, 126, 184, 0));
    }
}

.innovation-logo-item.ripple-left,
.innovation-logo-item.ripple-right,
.innovation-logo-item.ripple-top,
.innovation-logo-item.ripple-bottom {
    animation: ripple-left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.innovation-logo-item.ripple-right {
    animation-name: ripple-right;
}

.innovation-logo-item.ripple-top {
    animation-name: ripple-top;
}

.innovation-logo-item.ripple-bottom {
    animation-name: ripple-bottom;
}


.innovation-logo-item.ripple-bottom {
    animation: ripple-bottom 0.6s ease-out;
}

/* Bounce effect when hitting borders - improved with transform */
@keyframes bounce-left {
    0% { transform: translate(-50%, -50%) translate(0, 0); }
    30% { transform: translate(-50%, -50%) translate(-15px, 0); }
    60% { transform: translate(-50%, -50%) translate(5px, 0); }
    100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@keyframes bounce-right {
    0% { transform: translate(-50%, -50%) translate(0, 0); }
    30% { transform: translate(-50%, -50%) translate(15px, 0); }
    60% { transform: translate(-50%, -50%) translate(-5px, 0); }
    100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@keyframes bounce-top {
    0% { transform: translate(-50%, -50%) translate(0, 0); }
    30% { transform: translate(-50%, -50%) translate(0, -15px); }
    60% { transform: translate(-50%, -50%) translate(0, 5px); }
    100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@keyframes bounce-bottom {
    0% { transform: translate(-50%, -50%) translate(0, 0); }
    30% { transform: translate(-50%, -50%) translate(0, 15px); }
    60% { transform: translate(-50%, -50%) translate(0, -5px); }
    100% { transform: translate(-50%, -50%) translate(0, 0); }
}

.innovation-logo-item.bounce-left {
    animation: bounce-left 0.5s ease-out !important;
    animation-fill-mode: both;
}

.innovation-logo-item.bounce-right {
    animation: bounce-right 0.5s ease-out !important;
    animation-fill-mode: both;
}

.innovation-logo-item.bounce-top {
    animation: bounce-top 0.5s ease-out !important;
    animation-fill-mode: both;
}

.innovation-logo-item.bounce-bottom {
    animation: bounce-bottom 0.5s ease-out !important;
    animation-fill-mode: both;
}

/* Enhanced hover effect for tooltip */
.innovation-logo-item:hover .innovation-logo-info {
    animation: tooltip-pulse 0.4s ease-out;
}

@keyframes tooltip-pulse {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(8px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(-4px) scale(1);
    }
}


@media (max-width: 768px) {
    .innovation-network-container {
        min-height: 400px;
        padding: 30px 15px;
    }
    
    .innovation-logo-card {
        width: 120px;
    }
    
    .innovation-logo-image {
        height: 80px;
        padding: 15px;
    }
}

.floating-logos-area {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(3,126,184,0.05), transparent 35%),
                radial-gradient(circle at 80% 30%, rgba(3,165,84,0.05), transparent 40%),
                #f8fbff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.floating-logo {
    position: absolute;
    top: var(--start-y, 50%);
    left: var(--start-x, 50%);
    width: 90px;
    height: 90px;
    margin: -45px;
    transform: translate(-50%, -50%);
    animation: float-sway-random var(--duration, 30s) ease-in-out infinite;
    animation-delay: calc(var(--i) * -2s);
    z-index: var(--z-index, 1);
}

.floating-logo-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-logo-inner img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.floating-logo-inner::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20,20,20,0.9);
    color: white;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-logo-inner:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.floating-logo:hover {
    animation-play-state: paused;
}

.floating-logo-inner:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

@keyframes float-sway-random {
    0% { 
        transform: translate(-50%, -50%) translate(0, 0);
    }
    25% { 
        transform: translate(-50%, -50%) translate(var(--offset1-x, 0), var(--offset1-y, 0));
    }
    50% { 
        transform: translate(-50%, -50%) translate(var(--offset2-x, 0), var(--offset2-y, 0));
    }
    75% { 
        transform: translate(-50%, -50%) translate(var(--offset3-x, 0), var(--offset3-y, 0));
    }
    100% { 
        transform: translate(-50%, -50%) translate(0, 0);
    }
}
.banner-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Background Image Wrapper */
.banner-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 20s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.banner-section:hover .banner-bg-image {
    transform: scale(1.15);
}

/* Internal Pages - Position Banner Image at Top Center and Make Wider */
.banner-section-internal .banner-image-wrapper {
    overflow: visible;
}

.banner-section-internal .banner-bg-image {
    object-position: center top;
    width: 120%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(1.1);
    object-fit: fill;
    transition: transform 20s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-section-internal:hover .banner-bg-image {
    transform: translateX(-50%) scale(1.15);
}

@media (min-width: 768px) {
    .banner-section-internal .banner-bg-image {
        width: 130%;
    }
}

@media (min-width: 1024px) {
    .banner-section-internal .banner-bg-image {
        width: 150%;
    }
}

/* Multi-layer Overlay Effects */
.banner-overlay-layer-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.75) 0%, rgba(3, 165, 84, 0.65) 100%);
    z-index: 2;
}

.banner-overlay-layer-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 3;
}

.banner-overlay-layer-3 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 4;
}

/* Animated Pattern Overlay */
.banner-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(3, 126, 184, 0.1) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 5;
    animation: patternPulse 8s ease-in-out infinite;
}

@keyframes patternPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.9;
    }
}

/* Light Rays Effect */
.banner-light-rays {
    position: absolute;
    inset: 0;
    z-index: 6;
    overflow: hidden;
}

.light-ray {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    filter: blur(1px);
    animation: rayMove 15s linear infinite;
}

.ray-1 {
    left: 20%;
    animation-delay: 0s;
    height: 120%;
    transform: rotate(15deg);
}

.ray-2 {
    left: 50%;
    animation-delay: 5s;
    height: 150%;
    transform: rotate(-10deg);
}

.ray-3 {
    left: 80%;
    animation-delay: 10s;
    height: 110%;
    transform: rotate(20deg);
}

@keyframes rayMove {
    0% {
        transform: translateY(-100%) rotate(15deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(15deg);
        opacity: 0;
    }
}

/* Floating Shapes for Depth */
.banner-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 7;
}

.banner-shapes .shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -30px;
    right: -30px;
    animation-delay: 8s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    top: 40%;
    right: 10%;
    animation-delay: 16s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 25%;
    left: 15%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(20px, -20px) rotate(270deg) scale(1.05);
    }
}

.banner-content {
    position: relative;
    z-index: 10;
}

.banner-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.banner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.banner-badge:hover::before {
    left: 100%;
}

.banner-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.badge-text {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(3, 126, 184, 0.3);
    letter-spacing: -0.5px;
    position: relative;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .banner-title {
        font-size: 4rem;
    }
}

.banner-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.4),
        0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .banner-subtitle {
        font-size: 1.25rem;
    }
}

.banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.banner-scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Enhanced Creative Card Styles */
.creative-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.creative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.creative-card:hover::before {
    transform: scaleX(1);
}

.creative-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--e-global-color-title);
}

.creative-card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.creative-card:hover .creative-card-icon {
    transform: rotate(5deg) scale(1.1);
}

.creative-card-icon i {
    color: white;
    font-size: 1.5rem;
}

/* SVG Icon Styles for Category Cards */
.category-svg-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(1);
}

.creative-card:hover .category-svg-icon {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(0) saturate(100%) invert(1);
}

.creative-card-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--e-global-color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Feature Card with Hover Effect */
.feature-card {
    background: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 126, 184, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--e-global-color-title);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Stats Card Enhanced */
.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--e-global-color-title);
}

/* Modern Stat Card Design */
.stat-card-modern {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(3, 126, 184, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.15);
    cursor: pointer;
}

/* Top border line effect like service cards */
.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

/* Shimmer effect like service cards */
.stat-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 126, 184, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.stat-card-modern:hover::after {
    left: 100%;
}

/* Remove background color effects */
.stat-card-bg {
    display: none;
}

.stat-card-glow {
    display: none;
}

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

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.25);
}

.stat-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    opacity: 0.3;
    filter: blur(8px);
    transition: all 0.5s ease;
    z-index: -1;
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 126, 184, 0.4);
}

.stat-card-modern:hover .stat-icon-wrapper::before {
    opacity: 0.6;
    filter: blur(12px);
}

.stat-icon {
    font-size: 2rem;
    color: white;
    transition: transform 0.5s ease;
}

.stat-card-modern:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    transition: all 0.5s ease;
    letter-spacing: -1px;
}

.stat-card-modern:hover .stat-number-modern {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(3, 126, 184, 0.3));
}

.stat-label-modern {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.stat-card-modern:hover .stat-label-modern {
    color: #037EB8;
}

/* Remove bottom decoration */
.stat-card-decoration {
    display: none;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(3, 126, 184, 0.2);
    border-color: var(--e-global-color-title);
}

/* Responsive adjustments for modern stat cards */
@media (max-width: 768px) {
    .stat-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .stat-icon {
        font-size: 1.75rem;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .stat-label-modern {
        font-size: 0.9rem;
    }
}

/* Project Card Enhanced */
.project-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 0.9;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.15);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-card-title {
    transform: translateY(0);
}

.project-card-category {
    font-size: 0.875rem;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.project-card:hover .project-card-category {
    transform: translateY(0);
}

.project-card-details {
    font-size: 0.8125rem;
    opacity: 0.85;
    margin-top: 0.5rem;
    line-height: 1.4;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
    max-width: 90%;
}

.project-card:hover .project-card-details {
    transform: translateY(0);
}

.project-card-location {
    font-size: 0.8125rem;
    opacity: 0.9;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.3s;
}

.project-card:hover .project-card-location {
    transform: translateY(0);
}

.project-card-location i {
    font-size: 0.75rem;
    color: #03A554;
}

/* Modern Enhanced Footer Styles */
.footer-modern {
    position: relative;
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 50%, #141414 100%);
    color: white;
}

.footer-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.footer-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 50%, #037EB8 100%);
    opacity: 0.1;
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(3, 126, 184, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(3, 165, 84, 0.15) 0%, transparent 50%);
    opacity: 0.5;
}

.footer-column {
    position: relative;
    z-index: 2;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-heading-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-heading:hover .footer-heading-icon {
    transform: rotate(5deg) scale(1.1);
}

.footer-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 0.5rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 1rem;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 3px;
}

.footer-link i {
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: translateX(3px);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.4);
}

.footer-social-icon:hover::before {
    opacity: 1;
}

.footer-social-icon:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-contact-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-contact-item:hover .footer-contact-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.4);
}

.footer-contact-item:hover .footer-contact-icon::after {
    transform: scale(1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
}

/* Footer Responsive Adjustments */
@media (max-width: 768px) {
    .footer-modern {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .footer-contact-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.875rem;
    }
}

/* Light Footer Theme Styles */
.footer-modern-light {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: #141414;
    /* border-top: 3px solid #037EB8; */
    box-shadow: 0 -2px 10px rgba(3, 126, 184, 0.1);
}

.footer-gradient-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 50%, rgba(3, 126, 184, 0.05) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

.footer-pattern-light {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(3, 126, 184, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(3, 165, 84, 0.03) 0%, transparent 50%);
    opacity: 0.5;
}

.footer-heading-light {
    font-size: 1.125rem;
    font-weight: 700;
    color: #141414;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer-heading-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-heading-icon-light {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.footer-heading-light:hover .footer-heading-icon-light {
    transform: rotate(5deg) scale(1.1);
}

.footer-link-light {
    display: flex;
    align-items: center;
    color: #2D2D2D;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 0.5rem;
}

.footer-link-light::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-link-light:hover {
    color: #037EB8;
    padding-left: 1rem;
    transform: translateX(5px);
}

.footer-link-light:hover::before {
    width: 3px;
}

.footer-link-light i {
    transition: transform 0.3s ease;
}

.footer-link-light:hover i {
    transform: translateX(3px);
}

.footer-social-icon-light {
    width: 40px;
    height: 40px;
    background: rgba(3, 126, 184, 0.1);
    border: 1px solid rgba(3, 126, 184, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #037EB8;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social-icon-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social-icon-light i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-icon-light:hover {
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.3);
}

.footer-social-icon-light:hover::before {
    opacity: 1;
}

.footer-social-icon-light:hover i {
    transform: scale(1.2);
    color: white;
}

.footer-contact-item-light {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.footer-contact-item-light:hover {
    transform: translateX(5px);
}

.footer-contact-icon-light {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-contact-icon-light::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-contact-item-light:hover .footer-contact-icon-light {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.3);
}

.footer-contact-item-light:hover .footer-contact-icon-light::after {
    transform: scale(1);
}

.footer-bottom-light {
    border-top: 1px solid rgba(3, 126, 184, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
}

.footer-bottom-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
}

/* Testimonial Card Styles */
.testimonial-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.3);
}

/* Inspiring Testimonials Carousel Styles */
.testimonials-section {
    position: relative;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card-inspire {
    background: white;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(3, 126, 184, 0.15);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card-inspire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card-inspire:hover::before {
    transform: scaleX(1);
}

.testimonial-card-inspire:hover {
    border-color: #037EB8;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(3, 126, 184, 0.25);
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #037EB8;
    font-size: 1.5rem;
    border-radius: 50%;
    opacity: 0.3;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #037EB8;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.testimonial-rating i:hover {
    transform: scale(1.2);
    color: #03A554;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(3, 126, 184, 0.1);
}

.testimonial-avatar-inspire {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(3, 126, 184, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-avatar-inspire::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.testimonial-card-inspire:hover .testimonial-avatar-inspire {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(3, 126, 184, 0.4);
}

.testimonial-card-inspire:hover .testimonial-avatar-inspire::before {
    transform: scale(1);
}

.testimonial-author-info {
    flex-grow: 1;
}

.testimonial-author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.25rem;
}

.testimonial-author-role {
    font-size: 0.875rem;
    color: #9E9E9E;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #037EB8;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.testimonial-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #037EB8;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.testimonial-dot.active::after,
.testimonial-dot:hover::after {
    transform: scale(1);
}

.testimonial-dot.active {
    border-color: #037EB8;
    box-shadow: 0 0 0 3px rgba(3, 126, 184, 0.2);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-card-inspire {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .testimonial-avatar-inspire {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.25rem;
    }
}

/* World Map Integration Styles */
.world-map-container {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    width: auto;
    max-width: 100%;
}

.world-map-container > div {
    width: auto;
}

.world-map-container img {
    transition: transform 0.5s ease;
    height: auto;
    display: block;
    max-width: 100%;
    width: auto;
}

.world-map-container:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .world-map-container {
        padding: 1rem !important;
        max-width: 90%;
    }
    
    .world-map-container img {
        max-width: 100% !important;
        max-height: 350px !important;
    }
}

@media (min-width: 1024px) {
    .world-map-container {
        max-width: 80%;
    }
    
    .world-map-container img {
        max-width: 100%;
        max-height: 600px;
    }
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(3, 126, 184, 0.15) 20%, rgba(3, 126, 184, 0.15) 80%, transparent 100%);
    margin: 0;
    border: none;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: rgba(3, 126, 184, 0.3);
}

/* Modern Service Page Styles */
.service-hero-section {
    position: relative;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-gradient-overlay {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.4) 0%, rgba(3, 165, 84, 0.4) 100%);
    z-index: 1;
}

.service-hero-section:hover .hero-bg-image {
    transform: scale(1.05);
    transition: transform 8s ease-in-out;
}

.service-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 2;
}

.service-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1.5rem;
    border-radius: 30px;
}

.service-hero-badge span {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .service-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .service-hero-title {
        font-size: 4rem;
    }
}

.service-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .service-hero-description {
        font-size: 1.25rem;
    }
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(3, 126, 184, 0.3);
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

/* Update service-icon-large to work with SVG */
.service-icon-large {
    transition: all 0.3s ease;
}

.service-icon-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(3, 126, 184, 0.4);
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(3, 126, 184, 0.2);
}

.service-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-wrapper:hover .service-main-image {
    transform: scale(1.05);
}

.service-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.service-stat-item {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(3, 126, 184, 0.2);
    text-align: center;
}

.service-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.service-stat-label {
    color: #2D2D2D;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(3, 126, 184, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-feature-card:hover::before {
    transform: scaleX(1);
}

.service-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 126, 184, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-feature-card:hover::after {
    left: 100%;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(3, 126, 184, 0.2);
    border-color: rgba(3, 126, 184, 0.3);
}

.service-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.25);
    transition: all 0.4s ease;
}

.service-feature-card:hover .service-feature-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 126, 184, 0.4);
}

.service-feature-icon i {
    font-size: 2rem;
    color: white;
}

.service-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-feature-description {
    color: #2D2D2D;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-application-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(3, 126, 184, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-application-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(3, 126, 184, 0.15);
    border-color: rgba(3, 126, 184, 0.3);
}

.service-application-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-application-card:hover .service-application-icon {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    transform: scale(1.1);
}

.service-application-icon i {
    font-size: 1.75rem;
    color: #037EB8;
    transition: color 0.3s ease;
}

.service-application-card:hover .service-application-icon i {
    color: white;
}

.service-application-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 1rem;
}

.service-application-description {
    color: #2D2D2D;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-advantage-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(3, 126, 184, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.service-advantage-card:hover::before {
    transform: scaleY(1);
}

.service-advantage-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(3, 126, 184, 0.15);
    border-color: rgba(3, 126, 184, 0.3);
}

.service-advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.25);
    transition: all 0.4s ease;
}

.service-advantage-card:hover .service-advantage-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 126, 184, 0.4);
}

.service-advantage-icon i {
    font-size: 2rem;
    color: white;
}

.service-advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 1rem;
}

.service-advantage-description {
    color: #2D2D2D;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    .service-feature-card,
    .service-application-card,
    .service-advantage-card {
        padding: 1.5rem;
    }
}

/* Modern Dropdown Menu Styles */
.modern-dropdown {
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.group:hover .modern-dropdown {
    transform: translateY(0);
}

.dropdown-header {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.dropdown-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.group:hover .dropdown-header::before {
    left: 100%;
}

.dropdown-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.dropdown-header-icon i {
    color: white;
    font-size: 1.25rem;
}

.dropdown-header-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dropdown-menu {
    padding: 0.5rem;
    background: white;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 126, 184, 0.05), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::after {
    left: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 100%);
    transform: translateX(5px);
}

.dropdown-item-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-item-icon {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.3);
}

.dropdown-item-icon i {
    color: #037EB8;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-item-icon i {
    color: white;
}

/* SVG Icon Styles for Dropdown Menu */
.dropdown-svg-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(2000%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.dropdown-item:hover .dropdown-svg-icon {
    filter: brightness(0) saturate(100%) invert(1);
    transform: scale(1.1);
}

.dropdown-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item-title {
    display: block;
    color: #141414;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-item-title {
    color: #037EB8;
}

.dropdown-item-desc {
    display: block;
    color: #9E9E9E;
    font-size: 0.8rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-item-desc {
    color: #2D2D2D;
}

.dropdown-item-arrow {
    color: #9E9E9E;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-5px);
}

.dropdown-item:hover .dropdown-item-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #037EB8;
}

.dropdown-footer {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 100%);
    border-top: 1px solid rgba(3, 126, 184, 0.1);
}

.dropdown-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #037EB8;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.dropdown-footer-link:hover {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.3);
}

.dropdown-footer-link i {
    transition: transform 0.3s ease;
}

.dropdown-footer-link:hover i {
    transform: translateX(3px);
}

/* Service Solution Cards - Enhanced Design */
.service-solution-card {
    position: relative;
    overflow: hidden;
}

.service-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.service-solution-card:hover::before {
    transform: scaleX(1);
}

.service-solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 126, 184, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-solution-card:hover::after {
    left: 100%;
}

/* Contact Form - Modern Design */
.contact-form-container {
    position: relative;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 25px 50px -12px rgba(3, 126, 184, 0.25);
}

.contact-form-header {
    position: relative;
    overflow: hidden;
}

.contact-form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-form-container:hover .contact-form-header::before {
    left: 100%;
}

.contact-form-group {
    position: relative;
}

.contact-form-label {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #141414;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-input-wrapper {
    position: relative;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #141414;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    background: white;
    border-color: #037EB8;
    box-shadow: 0 0 0 4px rgba(3, 126, 184, 0.1);
    transform: translateY(-2px);
}

.contact-form-group:has(input:focus) .contact-form-label,
.contact-form-group:has(textarea:focus) .contact-form-label {
    color: #037EB8;
}

.contact-form-group:has(input:focus) .contact-form-label i,
.contact-form-group:has(textarea:focus) .contact-form-label i {
    color: #037EB8;
    transform: scale(1.1);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 126, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(4px);
}

.contact-form-label i {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        border-radius: 1rem;
    }
    
    .contact-form-header {
        padding: 1.5rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.125rem;
    }
    
    .contact-form-input,
    .contact-form-textarea {
        padding: 0.75rem 0.875rem;
    }
}

/* Project Photo Gallery Section */
.project-gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(3, 126, 184, 0.1);
    border: 1px solid rgba(3, 126, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.project-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(3, 126, 184, 0.2);
    border-color: #037EB8;
}

.project-gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.project-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-gallery-card:hover .project-gallery-image {
    transform: scale(1.08);
}

/* Project Gallery Overlay */
.project-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.85) 0%, rgba(3, 165, 84, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.project-gallery-card:hover .project-gallery-overlay {
    opacity: 1;
}

.project-view-btn {
    background: white;
    color: #037EB8;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.project-gallery-card:hover .project-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.project-view-btn:hover {
    background: #037EB8;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project-view-btn i {
    font-size: 1rem;
}

.project-gallery-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-gallery-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.project-gallery-card:hover .project-gallery-title {
    color: #037EB8;
}

.project-gallery-about {
    font-size: 0.875rem;
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.project-gallery-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #037EB8;
    font-weight: 500;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.project-gallery-location i {
    color: #037EB8;
    font-size: 0.875rem;
}

/* Responsive adjustments for project gallery */
@media (max-width: 1024px) {
    .project-gallery-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .project-gallery-image-wrapper {
        height: 250px;
    }
    
    .project-gallery-info {
        padding: 1.25rem;
    }
    
    .project-gallery-title {
        font-size: 1rem;
    }
    
    .project-gallery-about {
        font-size: 0.8125rem;
    }
}

/* Project Modal (Fullscreen Lightbox) */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.project-modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.project-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.project-modal-content {
    position: relative;
    z-index: 10000;
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.project-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-modal-close:hover {
    background: #037EB8;
    color: white;
    transform: rotate(90deg);
}

.project-modal-close i {
    font-size: 1.25rem;
    color: #141414;
    transition: color 0.3s ease;
}

.project-modal-close:hover i {
    color: white;
}

.project-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-height: 90vh;
    overflow: hidden;
}

.project-modal-image-wrapper {
    position: relative;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 90vh;
}

.project-modal-details {
    padding: 3rem;
    overflow-y: auto;
    background: white;
}

.project-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-modal-category {
    font-size: 1rem;
    color: #037EB8;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.project-modal-description {
    font-size: 1rem;
    color: #2D2D2D;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-modal-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #037EB8;
    font-weight: 500;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid #037EB8;
}

.project-modal-location i {
    font-size: 1.125rem;
    color: #037EB8;
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .project-modal-body {
        grid-template-columns: 1fr;
        max-height: 85vh;
    }
    
    .project-modal-image-wrapper {
        max-height: 50vh;
    }
    
    .project-modal-image {
        max-height: 50vh;
        object-fit: cover;
    }
    
    .project-modal-details {
        padding: 2rem;
        max-height: 35vh;
    }
    
    .project-modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .project-modal {
        padding: 1rem;
    }
    
    .project-modal-content {
        border-radius: 16px;
        max-height: 95vh;
    }
    
    .project-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .project-modal-body {
        max-height: 93vh;
    }
    
    .project-modal-image-wrapper {
        max-height: 40vh;
    }
    
    .project-modal-image {
        max-height: 40vh;
    }
    
    .project-modal-details {
        padding: 1.5rem;
        max-height: 53vh;
    }
    
    .project-modal-title {
        font-size: 1.25rem;
    }
    
    .project-modal-category {
        font-size: 0.875rem;
    }
    
    .project-modal-description {
        font-size: 0.9375rem;
    }
}

/* Vision & Mission Section - Enhanced Modern Design */
.vision-mission-section {
    position: relative;
    overflow: hidden;
}

.vision-mission-modern-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.vision-mission-modern-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.vision-mission-modern-card > div {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Ensure equal height for vision/mission cards */
.vision-mission-section .vision-mission-modern-card {
    height: 100%;
}
.vision-mission-section .vision-mission-modern-card > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vision-mission-modern-card:hover > div {
    box-shadow: 0 25px 80px rgba(3, 126, 184, 0.25);
}

/* Vision & Mission Cards - Legacy Support */
.vision-mission-card {
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(3, 126, 184, 0.15);
}

/* Excellence Section - Classy Design */
.excellence-section {
    position: relative;
    overflow: hidden;
}

/* Classy Excellence Cards */
.classy-excellence-card {
    transition: all 0.3s ease;
}

.classy-excellence-card:hover {
    transform: translateY(-8px);
}

.classy-excellence-card > div {
    box-shadow: 0 10px 40px rgba(3, 126, 184, 0.1);
}

.classy-excellence-card:hover > div {
    box-shadow: 0 20px 60px rgba(3, 126, 184, 0.2);
}

/* Classy Policy Cards */
.classy-policy-card {
    transition: all 0.3s ease;
    display: flex;
    height: 100%;
}

.classy-policy-card > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.classy-policy-card:hover {
    transform: translateY(-6px);
}

.classy-policy-card:hover > div {
    box-shadow: 0 20px 50px rgba(3, 126, 184, 0.15);
}

/* Classy Image Cards */
.classy-image-card {
    transition: all 0.3s ease;
    display: flex;
    height: 100%;
}

.classy-image-card > div {
    width: 100%;
    min-height: 100%;
}

.classy-image-card:hover {
    transform: translateY(-6px);
}

.classy-image-card:hover > div {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* About Us Images Section - Classy Design */
.about-images-container {
    min-height: 500px;
    padding: 2rem 0;
}

.about-main-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-main-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-images-container:hover .about-main-image {
    transform: scale(1.02);
}

.about-secondary-image-wrapper {
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-images-container:hover .about-secondary-image-wrapper {
    transform: translate(-8px, -8px) rotate(-1deg);
}

.about-secondary-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-images-container:hover .about-secondary-image {
    transform: scale(1.05);
}

/* Responsive adjustments for about images */
@media (max-width: 1024px) {
    .about-images-container {
        min-height: 400px;
        margin-bottom: 4rem;
    }
    
    .about-secondary-image-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 2rem;
        transform: none !important;
    }
}

/* Team Member Cards */
.team-member-card {
    transition: all 0.3s ease;
}

.team-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(3, 126, 184, 0.1);
    color: #037EB8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 126, 184, 0.2);
}

.team-social-link:hover {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 126, 184, 0.3);
    border-color: transparent;
}

.team-social-link i {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .about-images-container {
        min-height: 300px;
        padding: 1rem 0;
    }
}

/* Particle Logos Section */
.particle-logos-container {
    position: relative;
    width: 100%;
    height: 600px;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(244, 249, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(232, 247, 255, 0.8) 100%);
    border-radius: 24px;
    border: 1px solid rgba(3, 126, 184, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 40px;
}

/* Decorative background pattern */
.particle-logos-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(3, 126, 184, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(3, 165, 84, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.particle-logo-item {
    position: absolute;
    width: 80px;
    height: 80px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s ease;
    will-change: left, top;
}

.particle-logo-item:hover {
    z-index: 10;
    transform: translate(-50%, -50%) scale(1.15);
}

.particle-logo-card {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.particle-logo-image {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(3, 126, 184, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.particle-logo-item:hover .particle-logo-image {
    box-shadow: 
        0 16px 40px rgba(3, 126, 184, 0.25),
        0 8px 20px rgba(3, 126, 184, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(3, 126, 184, 0.3);
    transform: scale(1.1);
}

.particle-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.particle-logo-item:hover .particle-logo-image img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(3, 126, 184, 0.2));
}

.particle-logo-name {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, 
        rgba(3, 126, 184, 0.95) 0%, 
        rgba(3, 165, 84, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(3, 126, 184, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 100;
    min-width: max-content;
    text-align: center;
}

.particle-logo-name::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(3, 126, 184, 0.95);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.particle-logo-item:hover .particle-logo-name {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .particle-logos-container {
        height: 500px;
        min-height: 400px;
        padding: 30px 20px;
    }
    
    .particle-logo-item {
        width: 70px;
        height: 70px;
    }
    
    .particle-logo-name {
        font-size: 12px;
        padding: 6px 12px;
        bottom: -40px;
    }
}

/* Modern Contact Cards */
.modern-contact-card {
    transition: all 0.3s ease;
}

.modern-contact-card:hover {
    transform: translateY(-4px);
}

.modern-contact-card:hover > div {
    box-shadow: 0 15px 40px rgba(3, 126, 184, 0.15);
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 2px solid rgba(3, 126, 184, 0.2);
    border-radius: 0.5rem;
    color: #037EB8;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    font-family: inherit;
}

.pagination-btn:hover:not(.pagination-disabled) {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 126, 184, 0.3);
}

.pagination-btn.pagination-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    background: white;
    border: 2px solid rgba(3, 126, 184, 0.2);
    border-radius: 0.5rem;
    color: #037EB8;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.pagination-number:hover {
    background: rgba(3, 126, 184, 0.1);
    border-color: #037EB8;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(3, 126, 184, 0.2);
}

.pagination-number.pagination-active {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(3, 126, 184, 0.3);
    cursor: default;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0 0.5rem;
    color: #6b7280;
    font-weight: 600;
}

/* Responsive Pagination */
@media (max-width: 640px) {
    .pagination-container {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .pagination-number {
        min-width: 2.25rem;
        height: 2.25rem;
        padding: 0 0.5rem;
        font-size: 0.8125rem;
    }
}

/* Pagination Loader */
.pagination-loader {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(3, 126, 184, 0.1);
    border-top-color: #037EB8;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth transitions for projects container */
#projects-container {
    transition: opacity 0.3s ease;
}

/* ============================================
   PREMIUM HOME PAGE STYLES
   ============================================ */

/* Certification Badges - Premium */
.cert-badge-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-badge-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(3, 126, 184, 0.15);
    border-color: rgba(3, 126, 184, 0.2);
}

.cert-badge-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 0.75rem;
    color: white;
    font-size: 1.5rem;
}

.cert-badge-content {
    text-align: left;
}

.cert-badge-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.25rem;
}

.cert-badge-subtitle {
    font-size: 0.875rem;
    color: #2D2D2D;
    opacity: 0.8;
}

/* Premium Service Cards */
.service-card-premium {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    position: relative;
}

.service-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 126, 184, 0.2);
}

.service-card-premium-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
}

.service-card-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-card-premium-img {
    transform: scale(1.1);
}

.service-card-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-premium:hover .service-card-premium-overlay {
    opacity: 1;
}

.service-card-premium-number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #037EB8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-premium-content {
    padding: 1.75rem;
}

.service-card-premium-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    border-radius: 0.75rem;
    color: #037EB8;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-card-premium-icon {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    transform: scale(1.1);
}

/* SVG Icon Styles for Service Cards */
.service-svg-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(2000%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.service-card-premium:hover .service-svg-icon {
    filter: brightness(0) saturate(100%) invert(1);
    transform: scale(1.1);
}

/* SVG Icon Styles for Service Pages - Large Icons */
.service-svg-icon-large {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(1);
}

.service-icon-large:hover .service-svg-icon-large {
    filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(2000%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
    transform: scale(1.1) rotate(5deg);
}

/* SVG Icon Styles for Services Page */
.service-page-icon {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(2000%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.service-icon-container {
    display: inline-block;
    transition: all 0.3s ease;
}

.service-icon-container:hover .service-page-icon {
    filter: brightness(0) saturate(100%) invert(40%) sepia(95%) saturate(1500%) hue-rotate(100deg) brightness(1.1) contrast(1.2);
    transform: scale(1.1) rotate(-5deg);
}

.service-card-premium-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card-premium-description {
    font-size: 0.9375rem;
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-card-premium-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #037EB8;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-card-premium-link {
    color: #03A554;
    transform: translateX(4px);
}

/* Premium Milestone Cards */
.milestone-card-premium {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.milestone-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(3, 126, 184, 0.25);
}

.milestone-card-premium-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.milestone-card-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone-card-premium:hover .milestone-card-premium-img {
    transform: scale(1.1);
}

.milestone-card-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.milestone-card-premium:hover .milestone-card-premium-overlay {
    opacity: 1;
}

.milestone-card-premium-content {
    color: white;
}

.milestone-card-premium-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.milestone-card-premium-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Premium Project Gallery Cards */
.project-gallery-card-premium {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.project-gallery-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(3, 126, 184, 0.25);
}

.project-gallery-card-premium-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.project-gallery-card-premium-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-gallery-card-premium:hover .project-gallery-card-premium-img {
    transform: scale(1.15);
}

.project-gallery-card-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 126, 184, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-gallery-card-premium:hover .project-gallery-card-premium-overlay {
    opacity: 1;
}

.project-gallery-card-premium-content {
    color: white;
    width: 100%;
}

.project-gallery-card-premium-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.project-gallery-card-premium-category {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Premium Testimonials */
.testimonials-section-premium {
    position: relative;
}

.testimonials-carousel-premium-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.testimonials-carousel-premium {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    position: relative;
}

.testimonial-slide-premium {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card-premium {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-quote-icon-premium {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.1) 0%, rgba(3, 165, 84, 0.1) 100%);
    border-radius: 1rem;
    color: #037EB8;
    font-size: 1.5rem;
    opacity: 0.3;
}

.testimonial-rating-premium {
    display: flex;
    gap: 0.5rem;
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text-premium {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2D2D2D;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar-premium {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author-info-premium {
    flex: 1;
}

.testimonial-author-name-premium {
    font-size: 1.125rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.25rem;
}

.testimonial-author-role-premium {
    font-size: 0.9375rem;
    color: #2D2D2D;
    opacity: 0.8;
}

.testimonials-dots-premium {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-dot-premium {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(3, 126, 184, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot-premium:hover {
    background: rgba(3, 126, 184, 0.5);
    transform: scale(1.2);
}

.testimonial-dot-premium.active {
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    width: 32px;
    border-radius: 6px;
}

/* Premium Global Map */
.global-map-container-premium {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 2rem;
}

.global-map-wrapper-premium {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 100%);
}

.global-map-image-premium {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 600px;
}

.global-map-overlay-premium {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.global-map-badge-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #037EB8;
    font-weight: 600;
    font-size: 0.9375rem;
}

.global-map-badge-premium i {
    font-size: 1.25rem;
}

/* Premium Contact Form */
.contact-form-premium-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-form-premium {
    display: flex;
    flex-direction: column;
}

.contact-form-group-premium {
    display: flex;
    flex-direction: column;
}

.contact-form-label-premium {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.contact-form-input-premium,
.contact-form-textarea-premium {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-input-premium::placeholder,
.contact-form-textarea-premium::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-input-premium:focus,
.contact-form-textarea-premium:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.contact-form-textarea-premium {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn-premium {
    padding: 1.25rem 2.5rem;
    background: white;
    color: #037EB8;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.contact-submit-btn-premium:active {
    transform: translateY(0);
}

/* Premium Contact Form - No Background Version */
.contact-form-premium-container-no-bg {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    border: 2px solid rgba(3, 126, 184, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form-label-premium-no-bg {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #141414;
    margin-bottom: 0.75rem;
}

.contact-form-label-premium-no-bg i {
    color: #037EB8;
}

.contact-form-input-premium-no-bg,
.contact-form-textarea-premium-no-bg {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border: 2px solid rgba(3, 126, 184, 0.15);
    border-radius: 0.75rem;
    color: #141414;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-input-premium-no-bg::placeholder,
.contact-form-textarea-premium-no-bg::placeholder {
    color: #9ca3af;
}

.contact-form-input-premium-no-bg:focus,
.contact-form-textarea-premium-no-bg:focus {
    outline: none;
    background: white;
    border-color: #037EB8;
    box-shadow: 0 0 0 4px rgba(3, 126, 184, 0.1);
}

.contact-form-textarea-premium-no-bg {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn-premium-no-bg {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(3, 126, 184, 0.3);
}

.contact-submit-btn-premium-no-bg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(3, 126, 184, 0.4);
}

.contact-submit-btn-premium-no-bg:active {
    transform: translateY(0);
}

/* Premium Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 126, 184, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.4);
}

.btn-premium:active {
    transform: translateY(0);
}

/* Responsive Premium Styles */
@media (max-width: 768px) {
    .cert-badge-modern {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cert-badge-content {
        text-align: center;
    }
    
    .service-card-premium-content {
        padding: 1.25rem;
    }
    
    .milestone-card-premium-image {
        height: 300px;
    }
    
    .testimonial-card-premium {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-slide-premium {
        padding: 0 0.5rem;
    }
    
    .testimonials-carousel-premium-wrapper {
        margin: 0 -0.5rem;
    }
    
    .contact-form-premium-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-premium-container-no-bg {
        padding: 2rem 1.5rem;
    }
    
    .global-map-container-premium {
        padding: 1rem;
    }
}

/* ============================================
   REINFORCED SOIL STRUCTURES - MODERN STYLES
   ============================================ */

/* RS Advantage Cards */
.rs-advantage-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.rs-advantage-card:hover::before {
    transform: scaleX(1);
}

.rs-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(3, 126, 184, 0.2);
    border-color: rgba(3, 126, 184, 0.3);
}

.rs-advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.rs-advantage-card:hover .rs-advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.3);
}

.rs-advantage-icon i {
    font-size: 2rem;
    color: white;
}

.rs-advantage-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 1rem;
}

.rs-advantage-description {
    font-size: 0.9375rem;
    color: #2D2D2D;
    line-height: 1.6;
}

/* RS Tabs */
.rs-tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #2D2D2D;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
}

.rs-tab-btn:hover {
    color: #037EB8;
}

.rs-tab-btn.active {
    color: #037EB8;
    border-bottom-color: #037EB8;
}

.rs-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.rs-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RS Content Image */
.rs-content-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rs-content-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.rs-content-image-wrapper:hover .rs-content-image {
    transform: scale(1.05);
}

/* RS Overview Box */
.rs-overview-box {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    border-left: 4px solid #037EB8;
}

.rs-overview-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #037EB8;
    margin-bottom: 1rem;
}

.rs-overview-text {
    font-size: 1rem;
    color: #2D2D2D;
    line-height: 1.7;
}

/* RS Section Subtitle */
.rs-section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #141414;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* RS Application Grid */
.rs-application-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.rs-application-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 0.75rem;
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.3s ease;
}

.rs-application-item:hover {
    border-color: #037EB8;
    background: rgba(3, 126, 184, 0.05);
    transform: translateX(8px);
}

.rs-application-item i {
    font-size: 1.25rem;
    color: #037EB8;
    width: 24px;
    text-align: center;
}

.rs-application-item span {
    font-size: 0.9375rem;
    color: #2D2D2D;
    font-weight: 500;
}

/* RS Components Section */
.rs-components-section {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.03) 0%, rgba(3, 165, 84, 0.03) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.rs-component-card {
    background: white;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.1);
}

.rs-component-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #037EB8;
    margin-bottom: 1rem;
}

.rs-component-text {
    font-size: 0.9375rem;
    color: #2D2D2D;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.rs-component-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-component-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: #2D2D2D;
    position: relative;
}

.rs-component-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #03A554;
    font-weight: 700;
}

/* RS Achievements Section */
.rs-achievements-section {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.rs-achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.rs-achievement-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.3s ease;
}

.rs-achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.2);
    border-color: #037EB8;
}

.rs-achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.rs-achievement-label {
    font-size: 1rem;
    font-weight: 600;
    color: #037EB8;
    margin-bottom: 0.5rem;
}

.rs-achievement-desc {
    font-size: 0.875rem;
    color: #2D2D2D;
    margin-bottom: 0.25rem;
}

.rs-achievement-detail {
    font-size: 0.8125rem;
    color: #2D2D2D;
    opacity: 0.8;
    font-style: italic;
}

/* RS Solutions Section */
.rs-solutions-section {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 2px solid rgba(3, 126, 184, 0.1);
}

.rs-service-card {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.03) 0%, rgba(3, 165, 84, 0.03) 100%);
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: center;
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.rs-service-card:hover {
    transform: translateY(-5px);
    border-color: #037EB8;
    box-shadow: 0 8px 25px rgba(3, 126, 184, 0.15);
}

.rs-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #037EB8 0%, #03A554 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.rs-service-card:hover .rs-service-icon {
    transform: scale(1.1) rotate(5deg);
}

.rs-service-icon i {
    font-size: 1.5rem;
    color: white;
}

.rs-service-title {
    font-size: 1rem;
    font-weight: 700;
    color: #141414;
    margin-bottom: 0.75rem;
}

.rs-service-text {
    font-size: 0.875rem;
    color: #2D2D2D;
    line-height: 1.6;
}

/* RS Materials Section */
.rs-materials-section {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 2px solid rgba(3, 126, 184, 0.1);
}

.rs-material-card {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.05) 0%, rgba(3, 165, 84, 0.05) 100%);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 2px solid rgba(3, 126, 184, 0.1);
    transition: all 0.3s ease;
}

.rs-material-card:hover {
    border-color: #037EB8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(3, 126, 184, 0.15);
}

.rs-material-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #037EB8;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(3, 126, 184, 0.2);
}

.rs-material-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rs-material-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: #2D2D2D;
    position: relative;
}

.rs-material-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #037EB8;
    font-weight: 700;
    font-size: 1.25rem;
}

/* RS Difference Box */
.rs-difference-box {
    background: linear-gradient(135deg, rgba(3, 126, 184, 0.08) 0%, rgba(3, 165, 84, 0.08) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid #03A554;
}

.rs-difference-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #03A554;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.rs-difference-text {
    font-size: 0.9375rem;
    color: #2D2D2D;
    line-height: 1.7;
}

/* Responsive RS Styles */
@media (max-width: 768px) {
    .rs-tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .rs-advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .rs-achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .rs-components-section,
    .rs-achievements-section,
    .rs-solutions-section,
    .rs-materials-section {
        padding: 1.5rem;
    }
}
