* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* CSS Variables for Colors */
:root {
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-400: #94a3b8;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn-primary {
    background-color: var(--primary-600);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-700);
}

.btn-secondary {
    background-color: var(--secondary-100);
    color: var(--secondary-800);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--secondary-200);
}

.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.section-padding {
    padding: 4rem 1rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
}

/* Navigation */
nav {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-600);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #666;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--primary-600);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--primary-100);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Stats Section */
.stats {
    background-color: white;
    padding: 4rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
}

/* Services Section */
.services {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.25rem;
    color: #666;
    max-width: 48rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-600);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    padding: 4rem 1rem;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-vision {
    background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.about-vision h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.about-vision p {
    color: #666;
    margin-bottom: 1.5rem;
}

.vision-list {
    text-align: left;
}

.vision-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.vision-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-600);
    margin-right: 0.75rem;
}

/* Values Section */
.values {
    padding: 4rem 1rem;
    background-color: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-600);
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #666;
}

/* Team Section */
.team {
    padding: 4rem 1rem;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-avatar {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

/* CTA Section */
.cta {
    background-color: var(--primary-600);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--primary-100);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-600);
}

.cta .btn-secondary:hover {
    background-color: #f3f4f6;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 3rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-company {
    grid-column: 1 / -1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-600);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-company p {
    color: #d1d5db;
    margin-bottom: 1rem;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-company {
        grid-column: 1;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 5rem;
    }
}

/* Simple Icons (SVG) */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

/* Professional Carousel Styles */
.carousel {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 2rem auto;
    max-width: 1200px;
}

.carousel-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
    background-color: #000;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* Professional overlay for carousel items */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Professional carousel content overlay */
.carousel-content {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    bottom: 0;
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 0.5s ease-out;
    background: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    border-radius: 0;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.carousel-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    animation: slideInRight 1s ease-out 0.4s both;
}

/* Carousel animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel item transition effects */
.carousel-item.active .carousel-content {
    animation: fadeInUp 0.8s ease-out;
}

.carousel-item.active .carousel-title {
    animation: slideInLeft 1s ease-out 0.2s both;
}

.carousel-item.active .carousel-subtitle {
    animation: slideInRight 1s ease-out 0.4s both;
}

/* Professional carousel button */
.carousel-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.carousel-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.carousel-button:hover::before {
    left: 100%;
}

.carousel-button:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: white;
    transform: translate(-50%, -50%) translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-button:active {
    transform: translate(-50%, -50%) translateY(0);
}

/* Professional carousel indicators */
.carousel-indicators {
    bottom: 1rem;
}

.carousel-indicators button {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.1);
}

/* Professional carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-title {
        font-size: 2rem;
    }
    
    .carousel-subtitle {
        font-size: 1.1rem;
    }
    
    .carousel-content {
        padding: 1.5rem;
    }
    
    .carousel-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 3rem;
        height: 3rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        height: 350px;
    }
    
    .carousel-title {
        font-size: 1.75rem;
    }
    
    .carousel-subtitle {
        font-size: 1rem;
    }
    
    .carousel-content {
        padding: 1rem;
    }
    
    .carousel-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Generative AI Services Section */
.generative-services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.generative-service-card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: box-shadow 0.2s;
}

.generative-service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.generative-service-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.generative-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.generative-service-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.generative-service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-600);
}

.generative-service-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.generative-service-description {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.generative-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.generative-service-btn svg {
    width: 1rem;
    height: 1rem;
}

.generative-service-details {
    grid-column: 1 / -1;
    margin-top: 2rem;
}

.features-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.features-section,
.benefits-section {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.features-title,
.benefits-title {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.features-title svg,
.benefits-title svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-600);
    margin-right: 0.5rem;
}

.features-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li,
.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
}

.features-list li::before,
.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: var(--primary-500);
}

.benefits-list li::before {
    background-color: #10b981;
}

/* Light yellow gradient background for benefits sections in generative AI services */
#generative-ai-services .benefits-section {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fde68a 100%);
}

/* Responsive Design for Generative AI Services */
@media (max-width: 1024px) {
    .generative-service-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .generative-service-card {
        padding: 1.5rem;
    }
    
    .generative-service-header h3 {
        font-size: 1.25rem;
    }
    
    .generative-service-description {
        font-size: 1rem;
    }
    
    .features-section,
    .benefits-section {
        padding: 1rem;
    }
} 

/* Contact Section */
.contact {
    background-color: var(--secondary-50);
    padding: 4rem 1rem;
}

.contact-form-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-form-container iframe {
    max-width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.go-home-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.go-home-btn:hover {
    background-color: var(--primary-700);
}

/* Responsive adjustments for contact form */
@media (max-width: 768px) {
    .contact-form-container iframe {
        width: 100% !important;
        height: 800px !important;
    }
}

@media (max-width: 480px) {
    .contact-form-container iframe {
        height: 700px !important;
    }
} 

/* Rocket Animation Styles */
.rocket {
    position: fixed;
    font-size: 2rem;
    z-index: 1000;
    pointer-events: none;
    user-select: none;
    transition: transform 0.1s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.rocket:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Ensure rocket doesn't interfere with mobile menu */
@media (max-width: 768px) {
    .rocket {
        font-size: 1.5rem;
    }
} 