/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #06438c;
    --primary-dark: #043366;
    --primary-light: #0856b3;
    --primary-alpha: rgba(6, 67, 140, 0.1);
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #06438c 0%, #0856b3 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border-bottom-color: transparent;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 10001;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: #1d1d1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-toggle span:nth-child(1) {
    top: 18px;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 18px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
    margin-top: -0.75px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 50%;
    margin-bottom: -0.75px;
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    animation-duration: 15s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.shape-3 {
    bottom: 10%;
    left: 50%;
    animation-duration: 25s;
    animation-delay: 10s;
}

.network-grid {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-alpha) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 67, 140, 0.05) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@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-content {
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(6, 67, 140, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-welcome {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.hero-brand {
    display: block;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Trust indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Client logos */
.hero-clients {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 67, 140, 0.1);
}

.clients-label {
    display: block;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    color: #a0a0a0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.client-logo:hover {
    color: var(--primary-color);
}

/* Button glow effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(6, 67, 140, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 6px 25px rgba(6, 67, 140, 0.4);
    transform: translateY(-2px);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

/* Floating particles animation */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #06438c, #0856b3);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(6, 67, 140, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(6, 67, 140, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-alpha);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

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

.product-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

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

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

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

.product-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-alpha);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 2rem 1rem 2rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0 2rem 1.5rem 2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 2rem 2rem 2rem;
}

.feature-tag {
    background: var(--primary-alpha);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-alpha);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary-color);
}

.why-card:hover .why-icon svg {
    stroke: white;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-content {
    padding-right: 2rem;
}

.services-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 1rem 0;
    color: var(--text-dark);
}

.services-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-features {
    margin: 2rem 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: var(--primary-alpha);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.services-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.service-main {
    max-width: 800px;
    margin: 0 auto;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(6, 67, 140, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-alpha);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-gray);
    line-height: 1.8;
}

.service-card-large {
    background: linear-gradient(135deg, var(--primary-alpha) 0%, rgba(6, 67, 140, 0.02) 100%);
    border: 1px solid rgba(6, 67, 140, 0.1);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.service-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-alpha) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.service-icon-large {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    flex-shrink: 0;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-heading.centered {
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    flex: 1;
}

.feature-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.about-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subheading {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

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

.service-box {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-box p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.service-link:hover {
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-check {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.features-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-member {
    text-align: center;
}

.team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Contact Section */
.contact-section {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
}

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

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Form Loading and Messages */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.125em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
    margin-left: 8px;
}

.spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
    border-width: 0.125em;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.form-messege {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.about {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 1rem 0;
    color: var(--text-dark);
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.about-stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stat p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-values {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 67, 140, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.about-values h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-values h3:first-child {
    margin-top: 0;
}

.about-values p {
    color: var(--text-gray);
    line-height: 1.8;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

/* Career Section */
.career {
    padding: 5rem 0;
    background: white;
}

.career-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.career-header {
    text-align: center;
    margin-bottom: 3rem;
}

.career-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin: 1rem 0;
    color: var(--text-dark);
}

.career-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

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

.career-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

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

.career-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.career-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.career-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.career-list {
    list-style: none;
    text-align: left;
}

.career-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.career-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.career-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.career-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit {
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.career-action {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.career-content {
    max-width: 800px;
    margin: 0 auto;
}

.career-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.career-cta {
    margin-top: 2rem;
}

.career-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.career-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.career-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.career-opportunities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.opportunity-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.opportunity-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.opportunity-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.career-visual {
    position: relative;
    height: 400px;
}

.career-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.graphic-circle {
    position: absolute;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.graphic-circle-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-alpha);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.graphic-circle-2 {
    width: 150px;
    height: 150px;
    background: rgba(6, 67, 140, 0.15);
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

.graphic-circle-3 {
    width: 100px;
    height: 100px;
    background: rgba(6, 67, 140, 0.2);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

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

/* Blog Section */
.blog {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.blog-image {
    position: relative;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder {
    opacity: 0.5;
}

.blog-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 0.75rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--primary-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-alpha);
}

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

/* Newsletter Section */
.newsletter {
    padding: 3rem 0;
    background: var(--bg-gradient);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-input:focus {
    outline: none;
    background: white;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--text-dark);
    color: white;
}

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

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

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

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

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

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


/* What We Do Section */
.llms-section {
    padding: 100px 0;
}

.what-we-do-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.capability-card {
    background: var(--bg-white);
    border: 1px solid rgba(6, 67, 140, 0.1);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.capability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(6, 67, 140, 0.2);
}

.capability-icon i {
    color: white;
    font-size: 24px;
}

.capability-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.capability-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

.products-showcase {
    margin-top: 60px;
}

.product-item {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-item.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 40px;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-badge.green {
    background: #10b981;
}

.product-badge.purple {
    background: #8b5cf6;
}

.product-info {
    padding: 40px;
}

.product-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
    margin-bottom: 30px;
}

.product-features li {
    padding: 10px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.products-grid .product-item {
    display: flex;
    flex-direction: column;
}

.products-grid .product-image {
    height: 250px;
}

.eco-stats, .tech-stack {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-badge {
    display: inline-block;
    background: var(--primary-alpha);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Updated About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 30px 0;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-stat {
    text-align: center;
}

.about-stat .stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-values {
    margin-top: 50px;
}

.about-values h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.value-icon {
    font-size: 32px;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.value-item p {
    color: var(--text-gray);
    margin: 0;
}

.about-images {
    position: relative;
}

.about-main-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.about-secondary-images img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Blog Section */
.blog-section {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-cta {
    text-align: center;
    margin-top: 50px;
}

/* Career Banner */
.career-banner {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.career-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.career-banner-text {
    flex: 1;
}

.career-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.career-banner-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

.career-banner-action {
    flex-shrink: 0;
}

.career-banner .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.career-banner .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Section padding adjustments */
    .llms-section,
    .innovation-section,
    .what-we-do-section,
    .about-section,
    .blog-section,
    .contact-section {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
    
    .career-banner {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Hero adjustments */
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    /* Grid adjustments */
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper,
    .career-wrapper {
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-column: span 2;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Responsive Design - Mobile */
/* Tablet Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile - Apple Style Full Screen */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 40px 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
    
    /* Backdrop blur effect */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(251, 251, 253, 0.98);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        z-index: -1;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 2.5rem;
        font-weight: 600;
        letter-spacing: -0.03em;
        color: #1d1d1f;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
    }

    .nav-link:hover {
        color: var(--primary-color);
        transform: translateX(10px);
    }

    .nav-link::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile Menu Animation */
    .nav-menu .nav-link {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }
    
    /* Hero Mobile */
    .hero {
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 0 20px 60px;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-welcome {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .hero-stat .stat-value {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .hero-clients {
        margin-top: 2rem;
    }
    
    .clients-logos {
        gap: 1.5rem;
    }
    
    .client-logo {
        font-size: 0.8rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* What We Do Mobile */
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .capability-card {
        padding: 30px 20px;
    }
    
    /* Products Mobile */
    .product-item.featured {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-info {
        padding: 30px 20px;
    }
    
    .product-info h3 {
        font-size: 24px;
    }
    
    .eco-stats,
    .tech-stack {
        flex-direction: column;
        gap: 15px;
    }
    
    /* About Mobile */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 0;
    }
    
    .about-stat .stat-value {
        font-size: 28px;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .about-secondary-images {
        grid-template-columns: 1fr;
    }
    
    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    /* Career Mobile */
    .career-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .career-stats {
        position: relative;
        margin-top: 20px;
        padding: 20px;
    }
    
    .position-card {
        padding: 15px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* General Mobile Adjustments */
    section {
        padding: 80px 0;
    }
    
    .llms-section,
    .innovation-section,
    .what-we-do-section,
    .about-section,
    .blog-section,
    .contact-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
    
    /* Career Banner Mobile */
    .career-banner {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .career-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .career-banner-title {
        font-size: 28px;
    }
    
    .career-banner-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .career-banner-action {
        width: 100%;
    }
    
    .career-banner .btn {
        width: 100%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-welcome {
        font-size: 1.1rem;
    }
    
    .hero-stat .stat-value {
        font-size: 1.8rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .capability-card h3,
    .product-info h3 {
        font-size: 18px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .blog-meta {
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
    }
    
    .blog-content h3 {
        font-size: 18px;
    }
}

/* Desktop - ensure proper section padding */
@media (min-width: 1025px) {
    .llms-section {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-welcome {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 56px;
    }
}
EOF < /dev/null
/* Mobile Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets for mobile */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }
    
    /* Touch-friendly nav links already styled above */
    
    .contact-form input,
    .contact-form textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Remove hover effects on touch devices */
    .product-card:hover,
    .capability-card:hover,
    .blog-card:hover,
    .service-box:hover {
        transform: none;
    }
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
    position: relative;
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}
EOF < /dev/null
/* LLMs Section */
.llms-section {
    position: relative;
    background: #f8f9fa;
    z-index: 10;
    isolation: isolate;
    display: block;
    min-height: auto;
}


.llms-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.llms-section .container {
    position: relative;
    z-index: 1;
}

.llms-content .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.llms-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.llms-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.llm-feature {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.llm-feature .feature-icon {
    font-size: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(6, 67, 140, 0.2);
}

.llm-feature .feature-icon i {
    color: white;
    font-size: 24px;
}

.llm-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.llm-feature p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.llms-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.llms-img, .llms-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Innovation Section */
.innovation-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.innovation-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin: 60px 0 80px;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
}

.innovation-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.innovation-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.innovation-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.innovation-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.innovation-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.innovation-card-image {
    height: 200px;
    overflow: hidden;
}

.innovation-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.innovation-card-content {
    padding: 30px;
}

.innovation-card-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.innovation-card-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.innovation-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.innovation-link:after {
    content: "→";
    transition: var(--transition);
}

.innovation-link:hover {
    color: var(--primary-dark);
}

.innovation-link:hover:after {
    transform: translateX(3px);
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .llms-wrapper {
        gap: 60px;
    }
    
    .innovation-featured {
        padding: 40px;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Reduce double padding between specific sections on tablets and mobile */
    .llms-section {
        padding: 80px 0 50px 0 !important;
    }
    
    .what-we-do-section {
        padding: 50px 0 50px 0 !important;
    }
    
    .innovation-section {
        padding: 50px 0 50px 0 !important;
    }
    
    .about-section {
        padding: 50px 0 80px 0 !important;
    }
    
    /* Ensure consistent text alignment for all section titles on mobile */
    .section-title,
    .section-subtitle {
        text-align: center !important;
    }
    
    .llms-content .section-title,
    .about-content .section-title {
        text-align: center !important;
    }
    
    .section-label {
        display: block;
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .llms-description,
    .about-lead {
        text-align: center !important;
    }
    
    /* Center about-text, contact text, and llms features on mobile */
    .about-text {
        text-align: center !important;
    }
    
    .section-heading,
    .contact-text,
    .contact-details,
    .contact-item {
        text-align: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    .llms-features {
        justify-items: center !important;
    }
    
    .llm-feature {
        align-items: center !important;
        text-align: center !important;
    }
    
    .llm-feature h4,
    .llm-feature p {
        text-align: center !important;
    }
    
    .llms-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .llms-content .section-title {
        font-size: 32px;
    }
    
    .llms-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .llms-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .llms-visual {
        order: -1;
    }
    
    .innovation-featured {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .innovation-title {
        font-size: 28px;
    }
    
    .innovation-description {
        font-size: 16px;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .innovation-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    /* Reduce double padding between specific sections */
    .llms-section {
        padding: 70px 0 50px 0 !important;
    }
    
    .what-we-do-section {
        padding: 50px 0 50px 0 !important;
    }
    
    .innovation-section {
        padding: 50px 0 50px 0 !important;
    }
    
    .about-section {
        padding: 50px 0 70px 0 !important;
    }
    
    /* Reinforce consistent text alignment for all section titles on small mobile */
    .section-title,
    .section-subtitle {
        text-align: center !important;
    }
    
    .llms-content .section-title,
    .about-content .section-title {
        text-align: center !important;
    }
    
    .section-label {
        display: block;
        text-align: center !important;
        margin-bottom: 8px;
    }
    
    .llms-description,
    .about-lead,
    .about-description {
        text-align: center !important;
    }
    
    /* Center about-text, contact text, and llms features on small mobile */
    .about-text {
        text-align: center !important;
    }
    
    .section-heading,
    .contact-text,
    .contact-details,
    .contact-item {
        text-align: center !important;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    
    .llms-features {
        justify-items: center !important;
    }
    
    .llm-feature {
        align-items: center !important;
        text-align: center !important;
    }
    
    .llm-feature h4,
    .llm-feature p {
        text-align: center !important;
    }
    
    .blog-section,
    .contact-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .career-banner {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .career-banner-title {
        font-size: 24px;
    }
    
    .career-banner-description {
        font-size: 14px;
    }
    
    .llms-content .section-title {
        font-size: 24px;
    }
    
    .llm-feature .feature-icon {
        font-size: 28px;
        width: 48px;
        height: 48px;
    }
    
    .innovation-featured {
        padding: 20px;
    }
    
    .innovation-title {
        font-size: 24px;
    }
    
    .innovation-card-content {
        padding: 20px;
    }
}
EOF < /dev/null