/* Base Styles */
:root {
    /* Primary Colors */
    --boxless-blue: #0095FF;
    --boxless-dark: #121212;
    
    /* Secondary Colors */
    --blue-dark: #0078CC;
    --light-gray: #F8F9FA;
    --dark-gray: #212121;
    
    /* Accent Colors */
    --white: #FFFFFF;
    --light-blue: rgba(0, 149, 255, 0.1);
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

section {
    padding: 5rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
    max-width: 800px;
}

a {
    text-decoration: none;
    color: var(--boxless-dark);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--boxless-blue);
    color: var(--light-gray);
    border: none;
}

.btn-primary:hover {
    background-color: var(--blue-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--boxless-blue);
    color: var(--boxless-blue);
}

.btn-secondary:hover {
    background-color: var(--boxless-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--boxless-blue);
    border: 2px solid var(--boxless-blue);
    padding: 0.8rem 1.5rem;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--boxless-dark);
}

.section-header p {
    color: var(--boxless-blue);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 auto;
}

.underline {
    height: 4px;
    width: 70px;
    background-color: var(--boxless-blue);
    margin: 1rem auto;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    display: inline-block;
    transition: var(--transition);
}

.logo a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.logo img {
    height: auto;
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--boxless-dark);
    font-weight: 600;
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--boxless-dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background-color: var(--boxless-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.highlight {
    color: var(--boxless-blue);
    font-weight: 500;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* About Section */
.about {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%230095FF"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%230095FF"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%230095FF"/></svg>');
    background-size: cover;
}

/* Modules Section */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.module-card .icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.module-card .icon i {
    font-size: 1.8rem;
    color: var(--boxless-blue);
}

.module-card h3 {
    margin-bottom: 1rem;
    color: var(--boxless-dark);
}

/* Human + AI Collaboration Section */
.hybrid-approach {
    background-color: var(--light-gray);
    position: relative;
}

.hybrid-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hybrid-image {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hybrid-icon {
    width: 180px;
    height: 180px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hybrid-icon i {
    font-size: 5rem;
    color: var(--boxless-blue);
}

.hybrid-text {
    flex: 0 0 65%;
}

.hybrid-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--boxless-dark);
}

.hybrid-list {
    margin: 1.5rem 0;
}

.hybrid-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.hybrid-list li strong {
    margin-right: 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.hybrid-list li i {
    color: var(--boxless-blue);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Solutions Section */
.solutions-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-row {
    display: flex;
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.solution-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 1.8rem;
    color: var(--boxless-blue);
}

.solution-content h3 {
    margin-bottom: 1rem;
    color: var(--boxless-dark);
}

/* Why Us Section */
.pillars {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.pillar {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 1.8rem;
    color: var(--boxless-blue);
}

.pillar h3 {
    margin-bottom: 1rem;
    color: var(--boxless-dark);
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    margin: 0 auto 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

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

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 149, 255, 0.2) 0%, rgba(0, 120, 204, 0.2) 100%);
    z-index: 1;
}

/* Footer */
footer {
    background-color: var(--boxless-dark);
    color: var(--white);
    padding: 5rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo a {
    display: inline-block;
    transition: var(--transition);
}

.footer-logo a:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.footer-logo img {
    height: auto;
    max-height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--boxless-blue);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--boxless-blue);
}

.footer-contact p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    color: var(--boxless-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .module-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .pillars {
        justify-content: center;
    }
    
    .hybrid-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hybrid-image {
        margin-bottom: 2rem;
    }
    
    .hybrid-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .solution-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .solution-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-links, .footer-contact {
        width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
}
