/* === RESET & BASE STYLES === */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f9f7f4;
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* === NAVIGATION BAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px; /* Adjust this value to fit your navbar */
    width: auto;
    height: auto;
}

/* .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
} */

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06B6D4 0%, #8B5CF6 100%);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a.active {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0891B2 0%, #4F46E5 50%, #7C3AED 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    border-color: transparent;
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

/* === HERO SECTION === */
.hero-section {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f9f7f4 0%, #ede8e1 100%);
    padding: 4rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 160px);
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Social Proof */
.social-proof {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid #e0d8cf;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 0.9rem;
    color: #7a8894;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background-color: #e0d8cf;
}

/* Hero Right - Circular Diagram */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.circle-diagram {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-center {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.circle-center h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0;
}

/* Circle Icons */
.circle-icon {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.icon-circle svg {
    width: 30px;
    height: 30px;
    color: #8B5CF6;
}

.circle-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    max-width: 80px;
}

.icon-1 { top: 0; left: 50%; transform: translateX(-50%); }
.icon-2 { right: 0; top: 50%; transform: translateY(-50%); }
.icon-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.icon-4 { left: 0; top: 50%; transform: translateY(-50%); }

/* === SERVICES SECTION === */
.services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7a8894;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
}

.service-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, #0891B2 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
    display: inline-block;
}

/* === WHY CHOOSE US SECTION === */
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ede8e1 100%);
}

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

.why-choose-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #5a6c7d;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #5a6c7d;
}

/* === CTA SECTION === */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    background: #ffffff;
    color: #8B5CF6;
}

.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    background: #f0f0f0;
    color: #7C3AED;
    transform: translateY(-3px);
}

/* === FOOTER === */
.footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-logo .logo-text {
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

/* === PAGE HEADER === */
.page-header {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
    text-align: center;
    color: #ffffff;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* === CONTENT SECTION === */
.content-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.content-text p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-box {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #06B6D4 0%, #8B5CF6 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border: 3px solid #f9f7f4;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #7a8894;
    margin: 0;
}

/* === MISSION SECTION === */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ede8e1 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.mission-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.mission-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #5a6c7d;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    margin-top: 3rem;
}

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

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #7a8894;
    margin: 0;
}

/* === TEAM SECTION === */
.team-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.team-card {
    background-color: #f9f7f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #e0d8cf;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #06B6D4 0%, #667EEA 50%, #8B5CF6 100%);
}

.team-placeholder svg {
    width: 100px;
    height: 100px;
    color: #ffffff;
}

.team-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card > * {
    padding: 0 1.5rem;
}

.team-name {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 1.5rem 0 0.5rem;
}

.team-role {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #5a6c7d;
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

/* === SERVICE DETAIL === */
.service-detail {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-detail.alt-bg {
    background-color: #f9f7f4;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.service-detail-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features,
.service-benefits {
    margin-bottom: 2rem;
}

.service-features h3,
.service-benefits h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: 700;
}

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

.benefit-box {
    background-color: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #8B5CF6;
}

.service-detail.alt-bg .benefit-box {
    background-color: #ffffff;
}

.benefit-box h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-box p {
    color: #7a8894;
    font-size: 0.9rem;
    margin: 0;
}

/* Tech Stack */
.tech-stack,
.automation-examples,
.ai-capabilities {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.service-detail.alt-bg .tech-stack {
    background-color: #f9f7f4;
}

.tech-stack h3,
.automation-examples h3,
.ai-capabilities h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.tech-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-category h4 {
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background-color: #f9f7f4;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-detail.alt-bg .tech-tag {
    background-color: #ffffff;
}

/* Use Cases */
.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9f7f4;
    border-radius: 8px;
}

.use-case-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.use-case-content h4 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.use-case-content p {
    color: #7a8894;
    font-size: 0.9rem;
    margin: 0;
}

/* AI Capabilities */
.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.capability-card {
    background-color: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.service-detail.alt-bg .capability-card {
    background-color: #ffffff;
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.capability-card h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.capability-card p {
    color: #7a8894;
    font-size: 0.85rem;
    margin: 0;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

/* Contact Form */
.contact-form-wrapper {
    background-color: #f9f7f4;
    padding: 2.5rem;
    border-radius: 10px;
}

.form-title {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #7a8894;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input,
textarea,
select {
    padding: 0.8rem;
    border: 2px solid #e0d8cf;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.form-message {
    padding: 1rem;
    border-radius: 8px;
    display: none;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    display: block;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-description {
    color: #7a8894;
    margin-bottom: 2rem;
}

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

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.info-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #5a6c7d;
    margin-bottom: 0.3rem;
}

/* Map Placeholder */
.map-placeholder {
    background-color: #e0d8cf;
    border-radius: 10px;
    height: 300px;
    overflow: hidden;
}

.map-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.map-content svg {
    width: 60px;
    height: 60px;
    color: #7a8894;
}

.map-content p {
    color: #5a6c7d;
    font-weight: 600;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f7f4 0%, #ede8e1 100%);
}

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

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-answer {
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

/* === ANIMATIONS === */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* === RESPONSIVE DESIGN === */

/* Tablets */
@media (max-width: 1024px) {
    .hero-container,
    .why-choose-content,
    .content-grid,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .circle-diagram {
        width: 350px;
        height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-container {
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .proof-divider {
        display: none;
    }
    
    .circle-diagram {
        width: 280px;
        height: 280px;
        margin-top: 2rem;
    }
    
    .circle-center {
        width: 150px;
        height: 150px;
    }
    
    .circle-center h3 {
        font-size: 1rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle svg {
        width: 22px;
        height: 22px;
    }
    
    .circle-icon span {
        font-size: 0.75rem;
        max-width: 60px;
    }
    
    /* Sections */
    .services-section,
    .why-choose-section,
    .content-section,
    .mission-section,
    .team-section,
    .service-detail,
    .contact-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .circle-diagram {
        width: 240px;
        height: 240px;
    }
    
    .circle-center {
        width: 120px;
        height: 120px;
    }
    
    .circle-center h3 {
        font-size: 0.85rem;
    }
}