:root {
    /* Logo-inspired color palette */
    --primary-blue: #0066CC;
    --light-blue: #33C3F0;
    --bright-cyan: #4DD0E1;
    --deep-blue: #0052A3;
    --dark-blue: #003D82;
    
    /* Gradients matching logo */
    --primary-gradient: linear-gradient(135deg, #33C3F0 0%, #0066CC 100%);
    --secondary-gradient: linear-gradient(135deg, #4DD0E1 0%, #0052A3 100%);
    --accent-gradient: linear-gradient(135deg, #33C3F0 0%, #4DD0E1 100%);
    --dark-gradient: linear-gradient(135deg, #003D82 0%, #001F3F 100%);
    
    /* Background colors */
    --dark-bg: #001F3F;
    --darker-bg: #001529;
    --card-bg: #ffffff;
    
    /* Text colors */
    --text-primary: #001F3F;
    --text-secondary: #4A5568;
    --text-light: #ffffff;
    
    /* Accent colors from logo */
    --accent-color: #0066CC;
    --accent-light: #33C3F0;
    --accent-bright: #4DD0E1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #fafbfc;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 30px rgba(51, 195, 240, 0.2);
    border-bottom: 2px solid rgba(51, 195, 240, 0.3);
}

/* Dynamic animated gradient line */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #33C3F0 25%, 
        #4DD0E1 50%, 
        #0066CC 75%, 
        transparent 100%);
    animation: navbar-shine 3s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes navbar-shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-combined-image {
    height: 175px;
    width: auto;
    object-fit: contain;
    display: block;
    animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(51, 195, 240, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(51, 195, 240, 0.6));
    }
}

.logo-text-image {
    height: 66px;
    width: 292px;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Original colors preserved */
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logo-pulse 3s ease-in-out infinite;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.logo-icon-image {
    width: 143px;
    height: 143px;
    object-fit: contain;
    flex-shrink: 0;
    animation: logo-glow 4s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(51, 195, 240, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(51, 195, 240, 0.6));
    }
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10003;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    background: var(--dark-bg);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 208, 225, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

/* Hexagonal accent elements */
.hero .container::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate-hexagon 20s linear infinite;
}

@keyframes rotate-hexagon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #33C3F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: 2px solid transparent;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--light-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(51, 195, 240, 0.2);
    border-color: var(--bright-cyan);
}

/* Download 1-Pager Button */
.btn-download-pager {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    background: rgba(51, 195, 240, 0.12);
    border: 1.5px solid rgba(51, 195, 240, 0.4);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-download-pager:hover {
    background: rgba(51, 195, 240, 0.25);
    border-color: var(--bright-cyan);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 195, 240, 0.3);
}

.download-icon {
    font-size: 1.1rem;
    color: var(--cyan);
    transition: transform 0.3s ease;
}

.btn-download-pager:hover .download-icon {
    transform: rotate(60deg);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

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

/* Hexagonal icon background */
.feature-card .icon {
    position: relative;
    display: inline-block;
}

.feature-card .icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-card:hover .icon::before {
    transform: translate(-50%, -50%) rotate(60deg) scale(1.1);
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.2) 0%, rgba(0, 102, 204, 0.2) 100%);
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(51, 195, 240, 0.3);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    line-height: 1;
}

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

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-weight: 800;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.about h2 .section-icon {
    font-size: 2.5rem;
}

.about h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    color: var(--text-primary);
    line-height: 1.9;
    text-align: center;
    position: relative;
    padding: 0 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.about-content p::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.9rem;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
    opacity: 0.5;
}

.about-content p:last-child::before {
    display: none;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }
    
    .about-content p {
        font-size: 1rem;
        padding: 0;
    }
}

/* Certifications Section */
.certifications {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.certifications h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.certifications h2 .section-icon {
    font-size: 2.5rem;
}

.cert-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.cert-level-title {
    font-size: 1.6rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 3rem 0 2rem 0;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.cert-level-title::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.cert-grid {
    display: grid;
    gap: 1rem;
    margin: 0 auto 2.5rem auto;
    justify-items: center;
}

.cert-grid.foundational {
    grid-template-columns: repeat(2, 1fr);
    max-width: 280px;
}

.cert-grid.associate {
    grid-template-columns: repeat(5, 1fr);
    max-width: 700px;
}

.cert-grid.professional {
    grid-template-columns: repeat(3, 1fr);
    max-width: 420px;
}

.cert-grid.specialty {
    grid-template-columns: repeat(3, 1fr);
    max-width: 420px;
}

.cert-grid.early-adopter {
    grid-template-columns: repeat(2, 1fr);
    max-width: 280px;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.8rem;
    background: rgba(51, 195, 240, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 130px;
    border: 1px solid rgba(51, 195, 240, 0.15);
    position: relative;
    overflow: hidden;
}

.cert-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cert-badge:hover::before {
    transform: scaleX(1);
}

.cert-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(51, 195, 240, 0.35);
    background: rgba(51, 195, 240, 0.1);
    border-color: var(--bright-cyan);
}

.cert-badge img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.cert-badge:hover img {
    transform: scale(1.08);
}

.cert-badge p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .cert-grid.associate {
        grid-template-columns: repeat(3, 1fr);
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .cert-grid.foundational,
    .cert-grid.associate,
    .cert-grid.professional,
    .cert-grid.specialty,
    .cert-grid.early-adopter {
        grid-template-columns: repeat(3, 1fr);
        max-width: 420px;
    }
    
    .cert-badge {
        padding: 0.6rem;
        max-width: 120px;
    }
    
    .cert-badge p {
        font-size: 0.8rem;
    }
    
    .cert-level-title {
        font-size: 1.3rem;
    }
    
    .certifications h2 {
        font-size: 2.2rem;
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .certifications h2 .section-icon {
        font-size: 2.64rem;
    }
    
    .cert-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cert-grid.foundational,
    .cert-grid.associate,
    .cert-grid.professional,
    .cert-grid.specialty,
    .cert-grid.early-adopter {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
    }
    
    .cert-badge {
        padding: 0.5rem;
        max-width: 130px;
    }
    
    .cert-badge p {
        font-size: 0.75rem;
    }
    
    .cert-level-title {
        font-size: 1.2rem;
    }
    
    .certifications h2 {
        font-size: 1.9rem;
        gap: 0.5rem;
    }
    
    .certifications h2 .section-icon {
        font-size: 2.28rem;
    }
}

/* Page Header */
.page-header {
    background: var(--dark-bg);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* Enhanced Case Studies Header */
.case-studies-header {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, #001a33 0%, #003d82 50%, #0052a3 100%);
}

.case-studies-header::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.15) 0%, transparent 70%);
}

.hexagon-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(51, 195, 240, 0.5) 50px, rgba(51, 195, 240, 0.5) 51px),
        repeating-linear-gradient(60deg, transparent, transparent 50px, rgba(51, 195, 240, 0.5) 50px, rgba(51, 195, 240, 0.5) 51px),
        repeating-linear-gradient(120deg, transparent, transparent 50px, rgba(51, 195, 240, 0.5) 50px, rgba(51, 195, 240, 0.5) 51px);
}

.header-icon {
    font-size: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #33C3F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.header-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.header-description {
    font-size: 1.1rem;
    opacity: 0.75;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}

/* Case Studies Introduction Section */
.case-studies-intro {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    border: 2px solid rgba(51, 195, 240, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 15px 40px rgba(51, 195, 240, 0.2);
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Detail */
.services-detail {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.service-section {
    margin-bottom: 3.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border-radius: 24px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-section:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(51, 195, 240, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    line-height: 1;
}

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

.service-section h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.service-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.service-section ul {
    list-style: none;
    color: var(--text-secondary);
}

.service-section li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Case Studies Section - Rebuilt from Scratch */
.case-studies {
    padding: 4rem 0;
    background: #ffffff;
}

.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Case Study Card - Clean List Design with Image */
.case-study-card {
    background: #ffffff;
    border: 2px solid rgba(51, 195, 240, 0.2);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    text-decoration: none;
}

.case-study-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 24px rgba(51, 195, 240, 0.15);
    transform: translateX(8px);
}

/* Image Section - Left Side */
.case-study-image-wrapper {
    display: block;
    position: relative;
    width: 280px;
    min-width: 280px;
    height: auto;
    background: #ffffff;
    padding: 1.5rem;
}

.hexagon-accent {
    display: none;
}

.case-study-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.case-study-overlay,
.view-case-study {
    display: none;
}

/* Content Layout */
.case-study-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

/* Industry Tag */
.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0;
    background: none;
    border: none;
    width: fit-content;
    margin: 0;
}

/* Title */
.case-study-content h2 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.case-study-card:hover .case-study-content h2 {
    color: var(--cyan);
}

/* Summary Text */
.case-study-preview {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Metrics */
.case-study-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0.5rem 0 0 0;
    padding: 0;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(51, 195, 240, 0.08);
    border: 1px solid rgba(51, 195, 240, 0.25);
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.metric-icon {
    font-size: 0.85rem;
    color: var(--cyan);
}

/* Read More Link */
.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.case-study-link:hover {
    gap: 0.8rem;
    color: var(--primary-blue);
}

/* Empty State */
.no-studies {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9ff;
    border-radius: 12px;
    border: 2px dashed rgba(51, 195, 240, 0.3);
}

.no-studies p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Error State */
.error-message {
    text-align: center;
    padding: 2rem;
    background: #fff5f5;
    border-radius: 12px;
    border: 2px solid rgba(255, 0, 0, 0.2);
}

.error-message h3 {
    color: #c53030;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.error-message p {
    color: #742a2a;
    font-size: 1rem;
}

/* Case Study Detail Page */
.case-study-header {
    background: var(--dark-bg);
    color: white;
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.case-study-detail-header {
    padding: 3rem 0 5rem;
    background: linear-gradient(135deg, #001a33 0%, #003d82 50%, #0052a3 100%);
}

.case-study-detail-header::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Header Layout with Image on Right */
.header-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-text-content {
    display: flex;
    flex-direction: column;
}

.header-image-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--cyan);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.back-arrow {
    transition: transform 0.3s ease;
}

.back-link:hover {
    color: var(--bright-cyan);
}

.back-link:hover .back-arrow {
    transform: translateX(-5px);
}

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

.detail-industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 2rem;
    background: rgba(51, 195, 240, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(51, 195, 240, 0.4);
    margin-bottom: 1.5rem;
}

.case-study-header h1 {
    font-size: 3rem;
    margin: 0 0 1.5rem 0;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #33C3F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.case-study-summary {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Hero Image in Header */
.hero-image-frame {
    position: relative;
    width: 100%;
}

.hexagon-corner {
    display: none;
}

.detail-hero-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: block;
    border: 3px solid rgba(51, 195, 240, 0.3);
    transition: all 0.3s ease;
}

.detail-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(51, 195, 240, 0.3);
    border-color: var(--cyan);
}

/* Remove old hero image section styles */
.case-study-hero-image {
    display: none;
}

/* Content Section Enhancements */
.case-study-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 50%, #ffffff 100%);
    position: relative;
}

.content-section {
    max-width: 900px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
    padding: 3rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.06);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.content-section:hover {
    border-left-color: var(--cyan);
    box-shadow: 0 15px 50px rgba(51, 195, 240, 0.15);
    transform: translateX(5px);
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.content-section-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(51, 195, 240, 0.2);
    border-left: 4px solid var(--cyan);
}

.case-study-main-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.case-study-main-title::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.case-study-section-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 0 0 2rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(51, 195, 240, 0.2);
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-icon {
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

/* Enhanced Text Styling */
.section-text,
.section-emphasis,
.section-list li {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-secondary);
    font-weight: 400;
}

.section-text {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.section-text:first-of-type {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.section-emphasis {
    margin: 2.5rem 0;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: left;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.08) 0%, rgba(0, 102, 204, 0.08) 100%);
    border-left: 4px solid var(--cyan);
    border-radius: 8px;
}

/* Enhanced List Styling */
.section-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    gap: 1rem;
}

.section-list li {
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    position: relative;
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.04) 0%, rgba(0, 102, 204, 0.04) 100%);
    border-radius: 12px;
    border-left: 3px solid rgba(51, 195, 240, 0.3);
    transition: all 0.3s ease;
}

.section-list li:hover {
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-left-color: var(--cyan);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(51, 195, 240, 0.15);
}

.section-list li::before {
    content: '⬡';
    position: absolute;
    left: 1.2rem;
    top: 1.2rem;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.4rem;
}

/* Section Decorations */
.content-section::before {
    content: '';
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(51, 195, 240, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.content-section:nth-child(even)::before {
    left: 2rem;
    right: auto;
    background: rgba(0, 102, 204, 0.05);
}

/* Key Metrics Section */
.key-metrics-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.metrics-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    border: 2px solid rgba(51, 195, 240, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.metric-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan);
    box-shadow: 0 20px 50px rgba(51, 195, 240, 0.25);
}

.metric-icon-large {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Section with Progress Indicator */
.case-study-content {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.content-progress-indicator {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.progress-line {
    width: 3px;
    height: 200px;
    background: rgba(51, 195, 240, 0.2);
    position: relative;
}

.progress-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-gradient);
    transition: height 0.3s ease;
}

.content-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.content-section-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid rgba(51, 195, 240, 0.2);
}

.case-study-main-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.case-study-section-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-icon {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Consistent font styling for all text content */
.section-text,
.section-emphasis,
.section-list li {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 400;
}

.section-text {
    margin-bottom: 1.2rem;
}

.section-emphasis {
    margin: 2rem 0;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: left;
    padding-left: 1.5rem;
    border-left: 3px solid var(--cyan);
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.section-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
}

.section-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.case-study-error {
    padding: 6rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .case-studies {
        padding: 3rem 0;
    }
    
    .case-studies-grid {
        gap: 1.5rem;
    }
    
    .case-study-card {
        flex-direction: column;
    }
    
    .case-study-image-wrapper {
        width: 100%;
        height: 200px;
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .case-study-content {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .case-study-content h2 {
        font-size: 1.2rem;
    }
    
    .case-study-preview {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .case-study-main-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .case-study-section-title {
        font-size: 1.2rem;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .page-header h1 {
        font-size: 2.3rem;
    }
    
    .header-icon {
        font-size: 2.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .header-description {
        font-size: 0.9rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
    
    .case-study-metrics {
        flex-direction: column;
    }
    
    .case-study-preview {
        padding: 0.625rem 0 0 0;
    }
    
    .case-study-header h1 {
        font-size: 2rem;
    }
    
    .header-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-image-content {
        order: -1;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .case-study-summary {
        font-size: 1rem;
    }
    
    .btn-download-pager {
        font-size: 0.85rem;
        padding: 0.6rem 1.15rem;
        margin-top: 1.25rem;
    }
    
    .download-icon {
        font-size: 0.95rem;
    }
    
    .detail-industry-tag {
        font-size: 0.75rem;
        padding: 0.55rem 1.4rem;
    }
    
    .detail-hero-image {
        max-height: 300px;
    }
    
    .content-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .content-section::before {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }
    
    .case-study-main-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .case-study-section-title {
        font-size: 1.3rem;
    }
    
    .section-text,
    .section-list li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .section-list li {
        padding: 0.9rem 0.9rem 0.9rem 2.8rem;
    }
    
    .section-list li::before {
        left: 0.9rem;
        top: 0.9rem;
        font-size: 1.1rem;
    }
    
    .metrics-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .metric-card {
        padding: 1.8rem 1.3rem;
    }
    
    .metric-value {
        font-size: 2.6rem;
    }
    
    .metric-label {
        font-size: 0.9rem;
    }
    
    .content-progress-indicator {
        display: none;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-icon {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
        font-size: 0.9rem;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .content-section p {
        font-size: 0.95rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--dark-bg);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.case-study-cta {
    background: linear-gradient(135deg, #001a33 0%, #003d82 50%, #0052a3 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-icon {
    font-size: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #33C3F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    position: relative;
    z-index: 2;
    min-width: 200px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(51, 195, 240, 0.5);
}

.btn-secondary:hover {
    background: rgba(51, 195, 240, 0.1);
    border-color: var(--cyan);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #001529 0%, #050814 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(51, 195, 240, 0.2);
}

footer .hexagon-pattern {
    opacity: 0.02;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo-section {
    text-align: left;
}

.footer-logo-container {
    margin-bottom: 1rem;
}

.footer-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(51, 195, 240, 0.3));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 0 20px rgba(51, 195, 240, 0.6));
    transform: scale(1.05);
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

.footer-contact-section {
    text-align: right;
}

.footer-contact {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
}

.contact-icon {
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.footer-contact a {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact a:hover {
    color: var(--bright-cyan);
    transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-logo-section,
    .footer-contact-section {
        text-align: center;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .footer-logo {
        width: 90px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    * {
        max-width: 100%;
    }
    
    /* Base font size reduction */
    body {
        font-size: 0.95rem;
        width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Ensure all sections fit within viewport */
    section {
        overflow-x: hidden;
    }
    
    /* Constrain decorative elements */
    .hero::before,
    .hero::after,
    .about::before,
    .certifications::before,
    .page-header::before,
    .case-studies-header::before,
    .case-study-detail-header::before,
    .solution-overview::before,
    .cta-section::before {
        max-width: 300px;
        max-height: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.85rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 10002;
        overflow-y: auto;
        visibility: hidden;
    }
    
    .nav-links.active {
        right: 0;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(51, 195, 240, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 1rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .logo-combined-image {
        height: 140px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1.05rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
    
    /* Feature cards */
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    .icon {
        font-size: 3rem;
    }
    
    /* Service sections */
    .service-section {
        padding: 2rem;
    }
    
    .service-section h2 {
        font-size: 1.7rem;
    }
    
    .service-section p {
        font-size: 1rem;
    }
    
    .service-section li {
        font-size: 0.95rem;
    }
    
    /* Section headings */
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Case studies */
    .case-study-content h2 {
        font-size: 1.4rem;
    }
    
    .case-study-preview {
        font-size: 0.95rem;
    }
    
    .industry-tag {
        font-size: 0.7rem;
    }
    
    .metric-badge {
        font-size: 0.8rem;
    }
    
    /* Download button */
    .btn-download-pager {
        font-size: 0.85rem;
        padding: 0.65rem 1.3rem;
    }
    
    /* Footer */
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-contact {
        font-size: 0.95rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* Medium screens - smoother logo transition */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo-combined-image {
        height: 155px;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .logo-combined-image {
        height: 120px;
    }
}

/* Solutions Page */
.solution-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.solution-overview::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border: 2px solid rgba(51, 195, 240, 0.3);
    border-radius: 50px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    width: fit-content;
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(51, 195, 240, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(51, 195, 240, 0.2);
    }
}

.badge-icon {
    font-size: 1.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-overview h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 800;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.solution-overview h2 .section-icon {
    font-size: 2.5rem;
}

.solution-overview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.solution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(51, 195, 240, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(51, 195, 240, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--light-blue);
    box-shadow: 0 10px 30px rgba(51, 195, 240, 0.2);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 600;
}

.solution-benefits {
    padding: 6rem 0;
    background: #ffffff;
}

.solution-benefits h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.solution-benefits h2 .section-icon {
    font-size: 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(51, 195, 240, 0.3);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    line-height: 1;
}

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

.benefit-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.solution-components {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solution-components h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.solution-components h2 .section-icon {
    font-size: 2.5rem;
}

.component {
    background: white;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.component.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.component:hover::before {
    transform: scaleY(1);
}

.component:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(51, 195, 240, 0.2);
}

.component-icon-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.component h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.component ul {
    list-style: none;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.component li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    line-height: 1.7;
    position: relative;
}

.component li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.solution-industries {
    padding: 6rem 0;
    background: #ffffff;
}

.solution-industries h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 800;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.industry-card {
    background: var(--dark-bg);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(51, 195, 240, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(51, 195, 240, 0.4);
}

.industry-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.industry-card p {
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.solution-process {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.solution-process h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
    text-align: center;
    font-weight: 800;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(51, 195, 240, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(51, 195, 240, 0.4);
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-overview h2,
    .solution-benefits h2,
    .solution-components h2,
    .solution-industries h2,
    .solution-process h2 {
        font-size: 2.2rem;
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .solution-overview h2 .section-icon,
    .solution-benefits h2 .section-icon,
    .solution-components h2 .section-icon,
    .solution-industries h2 .section-icon,
    .solution-process h2 .section-icon {
        font-size: 2.64rem;
    }
    
    /* Solution Stats - Stack on mobile */
    .solution-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    /* Benefits Grid - Single column */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    /* Components - Reduce padding */
    .component {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Process Steps - Single column */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 2rem;
    }
    
    /* Solution Overview */
    .solution-overview {
        padding: 4rem 0;
    }
    
    .lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Small mobile - Solutions page headings */
@media (max-width: 480px) {
    .solution-overview h2,
    .solution-benefits h2,
    .solution-components h2,
    .solution-industries h2,
    .solution-process h2 {
        font-size: 1.9rem;
        gap: 0.5rem;
    }
    
    .solution-overview h2 .section-icon,
    .solution-benefits h2 .section-icon,
    .solution-components h2 .section-icon,
    .solution-industries h2 .section-icon,
    .solution-process h2 .section-icon {
        font-size: 2.28rem;
    }
}

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

/* Selection Color - Logo colors */
::selection {
    background: var(--light-blue);
    color: white;
}

::-moz-selection {
    background: var(--light-blue);
    color: white;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 100;
    transition: width 0.2s ease;
}

/* Custom Scrollbar - Logo colors */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #33C3F0 0%, #0066CC 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0066CC 0%, #33C3F0 100%);
}

/* Accessibility - Focus States - Logo colors */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--light-blue);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    footer {
        display: none;
    }
    
    body {
        background: white;
    }
}

/* Dynamic Elements Styles */

/* Floating Shapes - Logo inspired */
.floating-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
    animation: float-shape 20s ease-in-out infinite;
    z-index: 0;
}

.floating-shape[data-type="circle"] {
    border-radius: 50%;
    background: radial-gradient(circle, #33C3F0 0%, #0066CC 100%);
    box-shadow: 0 0 30px rgba(51, 195, 240, 0.4);
}

.floating-shape[data-type="square"] {
    background: linear-gradient(135deg, #4DD0E1 0%, #0052A3 100%);
    transform: rotate(45deg);
}

.floating-shape[data-type="triangle"] {
    width: 0 !important;
    height: 0 !important;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(51, 195, 240, 0.3);
}

.floating-shape[data-type="hexagon"] {
    background: linear-gradient(135deg, #33C3F0 0%, #0066CC 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 0 0 40px rgba(51, 195, 240, 0.5);
    position: relative;
}

/* Add node dots to hexagons like the logo */
.floating-shape[data-type="hexagon"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

/* Mouse Parallax Effect */
.hero {
    --mouse-x: 0px;
    --mouse-y: 0px;
}

.hero::before {
    transform: translate(calc(var(--mouse-x) * 0.5), calc(var(--mouse-y) * 0.5));
}

.hero::after {
    transform: translate(calc(var(--mouse-x) * -0.3), calc(var(--mouse-y) * -0.3));
}

/* Animated gradient border for cards - logo colors */
@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #33C3F0, #0066CC, #4DD0E1, #0052A3);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient-border 3s ease infinite;
}

.feature-card:hover::after {
    opacity: 0.6;
}

/* Pulsing glow effect - logo colors */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(51, 195, 240, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(51, 195, 240, 0.7);
    }
}

.cert-badge:hover {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Typing indicator animation */
@keyframes typing {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.typing-indicator {
    display: inline-block;
    animation: typing 1.5s ease-in-out infinite;
}

/* Shimmer effect for loading */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Rotating border effect - logo colors */
@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.service-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 340deg,
        #33C3F0 340deg 360deg
    );
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate-border 3s linear infinite;
}

.service-section:hover::after {
    opacity: 1;
}

/* Glitch effect for headings */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.glitch-effect:hover {
    animation: glitch 0.3s ease;
}

/* Ripple effect on click */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Particle container positioning */
#hero-particles,
#floating-shapes,
#dynamic-grid,
#data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Logo Placements */

/* Logo Image Settings - Preserve original design and proportions */
.hero-logo,
.page-header-logo,
.footer-logo {
    /* Preserve original logo colors and design */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain; /* Maintain aspect ratio */
    max-width: 100%;
    height: auto;
}

/* Hero Logo */
.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo {
    width: 220px;
    height: auto; /* Let height scale proportionally */
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(51, 195, 240, 0.4));
    animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

/* CTA Section Logo Accent */
.cta-logo-accent {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: auto; /* Let height scale proportionally */
    object-fit: contain;
    opacity: 0.08;
    pointer-events: none;
    animation: float-logo 8s ease-in-out infinite;
}

/* Page Header Logo */
.page-header-logo {
    width: 150px;
    height: auto; /* Let height scale proportionally */
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 5px 20px rgba(51, 195, 240, 0.5));
    animation: fadeInDown 0.8s ease-out;
}

/* Loading Logo Animation */
.logo-loading {
    animation: pulse-logo 2s ease-in-out infinite;
}

@keyframes pulse-logo {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Responsive Logo Sizes */
@media (max-width: 768px) {
    .hero-logo {
        width: 150px;
        height: auto;
    }
    
    .page-header-logo {
        width: 110px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 120px;
        height: auto;
    }
    
    .page-header-logo {
        width: 95px;
        height: auto;
    }
}
