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

:root {
    --primary: #5B9BD5;
    --secondary: #4A8BC2;
    --accent: #7BB5E0;
    --dark: #1a1a1a;
    --darker: #0a0a0a;
    --light: #ffffff;
    --gray: #a0a0a0;
    --text: #e5e5e5;
    --card-bg: #1f1f1f;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(91, 155, 213, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-content .cta-button {
    align-self: center;
}

.logo img {
    height: 30px;
    width: auto;
}

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

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

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

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 155, 213, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.grid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(91, 155, 213, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 155, 213, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: 10%;
    left: 10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1100px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(91, 155, 213, 0.1);
    border: 1px solid rgba(91, 155, 213, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 600;
}

/* Base heading styles apply to both headings */
.hero h1,
.mobile-heading,
.desktop-heading {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--light);
    letter-spacing: -0.03em;
}

/* By default, show desktop version only */
.mobile-heading {
    display: none;
}

/* On smaller screens, show mobile version and hide desktop */
@media screen and (max-width: 768px) {
    .mobile-heading {
        display: block;
    }
    
    .desktop-heading {
        display: none;
    }
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.secondary-button {
    background: rgba(91, 155, 213, 0.1);
    border: 2px solid var(--primary);
    color: var(--light);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.secondary-button:hover {
    background: rgba(91, 155, 213, 0.2);
    transform: translateY(-2px);
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    opacity: 0.6;
}

.trust-bar span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Vision Section */
.vision-section {
    padding: 4rem 0;
    position: relative;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--light);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.vision-text .highlight {
    color: var(--primary);
}

.vision-text p {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.vision-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.vision-stat {
    text-align: left;
    padding: 1.5rem;
    background: rgba(91, 155, 213, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
}

.vision-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vision-stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.vision-stat-label {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.vision-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid rgba(91, 155, 213, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    animation: floatCard 6s ease-in-out infinite;
    max-width: 200px;
    min-height: 150px; /* Set min-height to prevent squishing */
    cursor: pointer;
    transition: all 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Hide any overflow content */
    box-sizing: border-box; /* Include padding in size calculations */
}

.floating-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(91, 155, 213, 0.3);
}

.floating-card.focused {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.2) !important;
    z-index: 1000 !important; /* Much higher z-index to ensure it's on top */
    animation: none !important;
    max-width: 300px; /* Wider when focused */
    min-height: 200px; /* Taller when focused */
    height: auto !important; /* Let it grow as needed */
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(91, 155, 213, 0.5);
    padding: 2rem; /* More padding when focused */
    overflow: visible !important; /* Show all content when focused */
}

.floating-card.focused h4 {
    font-size: 1rem; /* Slightly larger heading when focused */
}

.floating-card.focused p {
    font-size: 0.9rem; /* Slightly larger text when focused */
    line-height: 1.6;
}

.vision-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 50;
}

.vision-visual.has-focused::after {
    opacity: 1;
}

.floating-card:nth-child(1) {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    top: 45%;
    left: 10%;
    animation-delay: 2s;
}

.floating-card:nth-child(4) {
    top: 35%;
    right: 5%;
    animation-delay: 3s;
}

.floating-card:nth-child(5) {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.floating-card:nth-child(6) {
    bottom: 20%;
    right: 20%;
    animation-delay: 5s;
}

.floating-card:nth-child(7) {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    word-wrap: break-word; /* Allow long words to break */
}

.floating-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0; /* Remove bottom margin */
    word-wrap: break-word; /* Allow long words to break */
    overflow-wrap: break-word; /* Modern version of word-wrap */
    hyphens: auto; /* Allow hyphenation for better text fitting */
}

/* Thought Leadership */
.thought-leadership {
    padding: 4rem 0;
    background: rgba(31, 31, 31, 0.3);
}

.thought-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.thought-card {
    background: var(--card-bg);
    border: 1px solid rgba(91, 155, 213, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thought-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(91, 155, 213, 0.2);
}

.thought-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(91, 155, 213, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.thought-card h3 {
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.thought-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Manifesto Section */
.manifesto {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(91, 155, 213, 0.1), transparent);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

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

.manifesto-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.manifesto h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--light);
    line-height: 1.2;
}

.manifesto-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 300;
}

.manifesto-text strong {
    color: var(--primary);
    font-weight: 600;
}

/* Solutions Showcase */
.solutions-showcase {
    padding: 4rem 0;
    background: rgba(31, 31, 31, 0.3);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.solution-card {
    background: var(--card-bg);
    border: 1px solid rgba(91, 155, 213, 0.2);
    border-radius: 24px;
    padding: 3.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(91, 155, 213, 0.2);
}

.solution-tag {
    display: inline-block;
    background: rgba(91, 155, 213, 0.15);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.solution-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-size: 0.95rem;
}

.solution-feature::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Industries */
.industries {
    padding: 4rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.industry-card {
    background: var(--card-bg);
    border: 1px solid rgba(91, 155, 213, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    background: rgba(31, 31, 31, 0.8);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 155, 213, 0.2);
}

.industry-card h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.industry-card .subtitle {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.industry-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Platform */
.platform {
    padding: 4rem 0;
    background: rgba(31, 31, 31, 0.3);
    overflow: hidden;
}

.platform-slider-container {
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.platform-slider-container::before,
.platform-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.platform-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(31, 31, 31, 1) 0%, rgba(31, 31, 31, 0) 100%);
}

.platform-slider-container::after {
    right: 0;
    background: linear-gradient(90deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 1) 100%);
}

.platform-slider {
    display: flex;
    gap: 6rem;
    animation: scroll 30s linear infinite;
}

.platform-slider:hover {
    animation-play-state: paused;
}

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

.platform-logo-card {
    flex-shrink: 0;
    background: var(--card-bg);
    border: 1px solid rgba(91, 155, 213, 0.2);
    border-radius: 20px;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 160px;
    transition: all 0.3s ease;
    position: relative;
}

.platform-logo-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(91, 155, 213, 0.3);
    background: rgba(31, 31, 31, 0.9);
}

.platform-logo-card img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.platform-logo-card:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.platform-logo-card.aws-card:hover img {
    filter: brightness(1.1);
}

.platform-logo-text {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0 1rem;
}

.platform-logo-card:hover .platform-logo-text {
    opacity: 1;
    transform: translateY(-5px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.section-header h2 .accent {
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-content {
    background: linear-gradient(135deg, rgba(91, 155, 213, 0.15), rgba(74, 139, 194, 0.1));
    border-radius: 30px;
    padding: 6rem 4rem;
    text-align: center;
    border: 1px solid rgba(91, 155, 213, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(91, 155, 213, 0.15), transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: var(--light);
    font-weight: 900;
}

.cta-content p {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

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

/* Footer */
footer {
    border-top: 1px solid rgba(91, 155, 213, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(91, 155, 213, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typewriter effect styling */
.typewriter {
    min-height: 1.2em; /* Maintain height even when empty */
    position: relative;
    display: inline-block;
    will-change: contents; /* Optimize for animation performance */
}

/* Style for the blinking cursor */
.typewriter.typing {
    border-right: none; /* Remove default border, we use ::after for the cursor */
}

/* Ensure the highlight and other special styles are maintained during typing */
.typewriter .highlight,
.typewriter .accent,
.typewriter em {
    display: inline-block; /* Keep these elements as inline blocks */
    will-change: opacity, transform; /* Performance optimization */
}

/* Make sure the typing animation is smooth and doesn't cause layout shifts */
.typewriter.typing + * {
    transition: margin-top 0.3s ease-out;
}

/* Improve cursor blinking animation - applies to both typing and typed-complete */
.typewriter.typing::after,
.typewriter.typed-complete::after {
    content: '|';
    display: inline-block;
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    color: var(--primary);
    font-weight: 400; /* Make cursor thinner */
    opacity: 0.9; /* Slightly transparent */
}

@keyframes blink {
    from, to { opacity: 0.9; }
    50% { opacity: 0; }
}

/* Make typing animation more eye-catching */
.typewriter.typed-complete {
    animation: subtle-pulse 1s ease-out;
}

@keyframes subtle-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); } /* Reduce the pulse intensity */
    100% { transform: scale(1); }
}

/* Fix for duplicate headings */
@media screen and (max-width: 768px) {
    /* The display property is now controlled by JavaScript */
    .desktop-heading {
        visibility: hidden;
        position: absolute;
        opacity: 0;
    }
    
    .mobile-heading {
        visibility: visible;
        position: relative;
        opacity: 1;
    }
}

@media screen and (min-width: 769px) {
    /* The display property is now controlled by JavaScript */
    .mobile-heading {
        visibility: hidden;
        position: absolute;
        opacity: 0;
    }
    
    .desktop-heading {
        visibility: visible;
        position: relative;
        opacity: 1;
    }
}

/* Additional styles for platform cards section */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid rgba(91, 155, 213, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    text-align: center;
}

.platform-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(91, 155, 213, 0.2);
}

.platform-card h4 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.platform-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
