/* Basic Reset & Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #343a40;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scroll during animations */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px; /* Adjust if fixed header is added later */
}

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

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

@keyframes kenBurns {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

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

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

@keyframes shine {
    from {
        background-position: -100% 0;
    }
    to {
        background-position: 200% 0;
    }
}

@keyframes iconRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Hero Section Styling */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    background-image: url('images/aximo-hero.jpg'); /* Links to the image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #2a4a73; /* Even lighter fallback color */
    animation: kenBurns 25s ease infinite alternate;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.05), rgba(13, 27, 42, 0.2)); /* Extremely light gradient overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px; /* Adjusted width */
    padding: 0 25px;
    opacity: 0;
    animation: fadeIn 1s ease 0.2s forwards;
}

.tagline {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Responsive font size */
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.sub-tagline {
    font-size: clamp(1rem, 3vw, 1.4rem); /* Responsive font size */
    margin-bottom: 3rem;
    opacity: 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #00bfff, #0052d4);
    background-size: 200% auto;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
    font-weight: 700;
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.4);
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button:hover, .cta-button:focus { /* Added focus state */
    background-position: right center;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 107, 210, 0.6);
    outline: none; /* Remove default focus outline */
}

.cta-button:hover::before {
    animation: shine 1.5s ease;
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

/* Styling for placeholder sections */
main section {
    min-height: 300px;
    scroll-margin-top: 60px; /* Offset for potential fixed header */
    display: flex;          /* Using flexbox for alignment */
    flex-direction: column; /* Stack children vertically */
    justify-content: center;/* Center vertically */
    align-items: center;    /* Center horizontally */
}

#features h2, #testimonials h2 {
    font-size: clamp(2rem, 5vw, 2.8rem); /* Responsive headings */
    margin-bottom: 1rem;
    color: #1e3a5f;
}

#features p, #testimonials p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
}

/* Footer Styling */
footer {
    background-color: #0d1b2a;
    color: #adb5bd;
    padding: 80px 20px 30px;
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    flex: 1 1 280px;
}

.logo-placeholder {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 191, 255, 0.5);
    transition: text-shadow 0.3s ease;
}

.logo-placeholder:hover {
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.8);
}

.footer-tagline {
    color: #8d99ae;
    font-size: 0.95rem;
    margin-top: 12px;
    max-width: 240px;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h4, .footer-social h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4:after, .footer-social h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, transparent);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 2px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    flex: 1 1 200px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-icon:hover {
    background-color: rgba(0, 191, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
}

.footer-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* Feature Icon Images */
.feature-icon {
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00bfff, #0052d4);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px; /* Slightly larger than container font-size */
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

/* ===================== AGI-Inspired Features Section Styling ===================== */
.features-section {
    padding: 100px 0;
    background-color: #0d1b2a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subheading {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =================== Testimonials Section Styling ================== */
.testimonials-section {
    padding: 100px 20px;
    background-color: #f8f9fa; /* Keep light grey background */
    text-align: center;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0, 123, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 123, 255, 0.02) 50%, rgba(0, 123, 255, 0.02) 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    opacity: 0.6;
    animation: pulse 25s ease-in-out infinite;
    will-change: opacity;
}

.testimonial-wrapper {
    max-width: 800px; /* Limit width of the testimonial */
    margin: 0 auto; /* Center the block */
    position: relative;
    padding: 55px 45px;
    background-color: #ffffff; /* White background for the quote box */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, box-shadow;
}

.testimonial-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    font-size: 7rem; /* Larger quote mark */
    color: #e9ecef; /* Light grey for quote mark */
    position: absolute;
    top: -30px; /* Position above the box */
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    font-family: serif; /* Use a serif font for classic quote look */
    z-index: 1; /* Below text, above background */
    transition: color 0.5s ease, transform 0.5s ease;
}

.testimonial-wrapper:hover .quote-icon {
    color: rgba(0, 123, 255, 0.15);
    transform: translateX(-50%) scale(1.1);
}

.testimonial-quote {
    font-size: 1.6rem;
    font-style: italic;
    color: #3a4a5e; /* Richer color for better contrast and premium feel */
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    z-index: 2; /* Ensure quote text is above the quote icon */
    font-weight: 300; /* Lighter weight for elegance */
    letter-spacing: -0.3px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f; /* Match heading color */
    margin-top: 30px;
    position: relative;
    letter-spacing: 0.5px; /* Slight letter spacing for elegance */
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, #0052d4);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-wrapper:hover .testimonial-author::before {
    width: 60px;
}

/* =================== How It Works Section Styling ================== */
.how-it-works-section {
    padding: 120px 0 150px;
    background: linear-gradient(135deg, #040a16, #0a1526);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    min-height: auto;
}

.how-works-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 191, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 191, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 30% 20%, rgba(0, 191, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 191, 255, 0.03) 0%, transparent 50%);
    background-size: 30px 30px, 30px 30px, 800px 800px, 800px 800px;
    z-index: 1;
    opacity: 0.7;
    animation: subtle-shift 30s ease-in-out infinite alternate;
}

@keyframes subtle-shift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 30px 30px, 30px 30px, 100px 50px, -50px -100px;
    }
}

.how-it-works-section .section-heading {
    color: #ffffff;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(0, 191, 255, 0.4);
    background: linear-gradient(90deg, #ffffff, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0 20px;
}

.how-it-works-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00bfff, #0052d4);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
}

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

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.step-item {
    flex: 1 1 240px;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.1);
    border-radius: 12px;
    padding: 35px 25px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 360px;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
    opacity: 0.5;
}

.step-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.2);
}

.step-item:hover::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.6), transparent);
}

@keyframes stepFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00bfff, #0052d4);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, transparent);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-item:hover .step-title::after {
    width: 100%;
}

.step-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 10px;
    width: 100%;
}

/* Updated Icon Styling */
.step-icon-container {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.07);
    box-shadow: 0 0 25px rgba(0, 191, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.step-icon-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.1), rgba(0, 82, 212, 0.1));
    z-index: -1;
    animation: pulse 3s infinite ease-in-out;
}

/* Add ripple effect */
.step-icon-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: iconRipple 3s infinite;
}

.step-icon-container img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 1)) brightness(1.3) contrast(1.2);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 2;
    animation: subtleFloat 4s ease-in-out infinite;
    position: relative;
    display: block;
}

@media (max-width: 992px) {
    .steps-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 90px 0 100px;
    }
    
    .step-item {
        flex: 1 1 45%;
        max-width: 100%;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 70px 0 80px;
    }
    
    .step-item {
        flex: 1 1 100%;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}

/* Make each step's icon slightly unique */
.step-item:nth-child(1) .step-icon-container {
    background: rgba(0, 191, 255, 0.07);
}

.step-item:nth-child(2) .step-icon-container {
    background: rgba(0, 200, 255, 0.07);
}

.step-item:nth-child(3) .step-icon-container {
    background: rgba(0, 210, 255, 0.07);
}

.step-item:nth-child(4) .step-icon-container {
    background: rgba(0, 220, 255, 0.07);
}

.step-item:nth-child(1) .step-icon-container img {
    animation-delay: 0s;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 1)) brightness(1.3) contrast(1.2);
}

.step-item:nth-child(2) .step-icon-container img {
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 15px rgba(0, 200, 255, 1)) brightness(1.3) contrast(1.2);
}

.step-item:nth-child(3) .step-icon-container img {
    animation-delay: 1s;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 1)) brightness(1.3) contrast(1.2);
}

.step-item:nth-child(4) .step-icon-container img {
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 15px rgba(0, 220, 255, 1)) brightness(1.3) contrast(1.2);
}

.step-item:hover .step-icon-container {
    background: rgba(0, 191, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
    transform: scale(1.05);
}

.step-item:hover .step-icon-container img {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 1)) brightness(1.4) contrast(1.3);
    animation-play-state: paused;
}

/* Add styles for the CTA Buttons Container */
.cta-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.primary-cta {
    background: linear-gradient(90deg, #00bfff, #0052d4);
    background-size: 200% auto;
}

.secondary-cta {
    background: transparent;
    border: 2px solid #00bfff;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.2);
}

.secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.1), rgba(0, 82, 212, 0.1));
    transition: all 0.3s ease;
    z-index: -1;
}

.secondary-cta:hover {
    border-color: #00bfff;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 107, 210, 0.4);
}

.secondary-cta:hover::before {
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.2), rgba(0, 82, 212, 0.2));
}

@media (max-width: 576px) {
    .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===================== Intelligence Core Section ===================== */
.intelligence-core-section {
    padding: 120px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.intelligence-core-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.intelligence-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.05);
}

.intelligence-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #2563eb, #3b82f6);
    transition: height 0.4s ease;
}

.intelligence-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.1);
}

.intelligence-item:hover::before {
    height: 100%;
}

.intelligence-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.intelligence-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.intelligence-icon i {
    font-size: 32px;
    color: white;
    transition: transform 0.4s ease;
}

.intelligence-item:hover .intelligence-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.intelligence-item:hover .intelligence-icon::after {
    opacity: 1;
}

.intelligence-item:hover .intelligence-icon i {
    transform: scale(1.1);
}

.intelligence-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f172a;
    position: relative;
    display: inline-block;
}

.intelligence-item h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, transparent);
    transition: width 0.4s ease;
}

.intelligence-item:hover h3::after {
    width: 100%;
}

.intelligence-item p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
}

.intelligence-highlight {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 70px;
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 1;
}

.intelligence-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    z-index: -1;
}

.highlight-content {
    padding: 50px;
    color: white;
    position: relative;
}

.highlight-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.highlight-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.highlight-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    transition: width 0.4s ease;
}

.intelligence-highlight:hover .highlight-content h3::after {
    width: 100%;
}

.highlight-content p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
}

.highlight-content .btn-secondary {
    background-color: white;
    color: #1e40af;
    border: none;
    padding: 16px 36px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.highlight-content .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Intelligence item animations */
.intelligence-item {
    opacity: 0;
    transform: translateY(30px);
    animation: intelligenceItemFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intelligence-item:nth-child(1) { animation-delay: 0.1s; }
.intelligence-item:nth-child(2) { animation-delay: 0.2s; }
.intelligence-item:nth-child(3) { animation-delay: 0.3s; }
.intelligence-item:nth-child(4) { animation-delay: 0.4s; }

.intelligence-highlight {
    opacity: 0;
    transform: translateY(30px);
    animation: intelligenceItemFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes intelligenceItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .intelligence-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intelligence-item {
        padding: 30px;
    }
    
    .highlight-content {
        padding: 40px;
    }
    
    .highlight-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .intelligence-core-section {
        padding: 80px 0;
    }
    
    .intelligence-icon {
        width: 70px;
        height: 70px;
    }
    
    .intelligence-item h3 {
        font-size: 22px;
    }
    
    .highlight-content {
        padding: 30px;
    }
    
    .highlight-content h3 {
        font-size: 24px;
    }
    
    .highlight-content p {
        font-size: 16px;
    }
}

/* Demo Request Section Styling */
.demo-request-section {
    padding: 100px 0;
    background-color: #0d1b2a;
    position: relative;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.demo-request-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.3);
    animation: floatParticle 15s infinite linear;
}

.particle-1 {
    width: 15px;
    height: 15px;
    top: 20%;
    left: 10%;
    animation-duration: 25s;
}

.particle-2 {
    width: 25px;
    height: 25px;
    top: 40%;
    left: 85%;
    animation-duration: 30s;
    animation-delay: 2s;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 70%;
    left: 20%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.particle-4 {
    width: 20px;
    height: 20px;
    top: 30%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: 6s;
}

.particle-5 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 70%;
    animation-duration: 18s;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-50px) translateX(50px);
    }
    50% {
        transform: translateY(50px) translateX(100px);
    }
    75% {
        transform: translateY(100px) translateX(50px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.form-container {
    max-width: 700px;
    margin: 40px auto 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 191, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
}

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

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

.cta-buttons-container {
    margin-top: 20px;
}

.how-it-works-cta {
    margin-top: 60px;
    text-align: center;
}

.how-it-works-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #00bfff, #0052d4);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Font Awesome icon styling */
.fas, .fab {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.3s; }
.step-item:nth-child(3) { animation-delay: 0.5s; }
.step-item:nth-child(4) { animation-delay: 0.7s; }

/* Aximo Logo Styling */
.aximo-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.aximo-logo-text {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
    position: relative;
    margin-left: 10px;
    background: linear-gradient(90deg, #ffffff, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.2);
}

.aximo-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 12px;
}

.aximo-logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #00bfff, #0052d4);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    animation: pulse 3s infinite ease-in-out;
}

.aximo-logo-hexagon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotate 20s linear infinite;
}

.aximo-logo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: linear-gradient(135deg, #00bfff, #0052d4);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

.aximo-logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 191, 255, 0.2);
    opacity: 0;
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Header Logo */
.header-logo {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
}

.header-logo .aximo-logo-text {
    font-size: 1.8rem;
}

.header-logo .aximo-logo-icon {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .header-logo {
        left: 20px;
    }
}

/* Footer Logo adjustment */
.footer-logo .aximo-logo-text {
    background: linear-gradient(90deg, #ffffff, #00bfff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}