/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0984e3;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #6c5ce7 0%, #0984e3 100%);
    color: white;
    text-align: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    margin-bottom: 1rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero-text {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #fff;
    color: #0984e3;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #0984e3;
}

/* Core Offerings Section */
.core-offerings {
    padding: 5rem 5%;
    background-color: #fff;
    text-align: center;
}

.core-offerings h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.section-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #636e72;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.service-card p {
    color: #636e72;
    margin-bottom: 1.5rem;
}

.learn-more {
    color: #0984e3;
    text-decoration: none;
    font-weight: 600;
}

/* AI Insights Section */
.ai-insights {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.ai-insights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.insights-content {
    max-width: 1200px;
    margin: 0 auto;
}

.insights-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #636e72;
}

.expertise-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.expertise-item h3 {
    color: #2d3436;
    margin-bottom: 1rem;
}

.expertise-item p {
    color: #636e72;
}

/* Footer */
footer {
    background-color: #2d3436;
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.footer-info h3 {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero {
        padding-top: 6rem;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Business Automation Page Styles */
.automation-services {
    padding: 5rem 5%;
    background-color: #fff;
}

.services-container,
.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h3 {
    color: #2d3436;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.service-item ul {
    list-style-type: none;
    padding: 0;
}

.service-item ul li {
    margin-bottom: 1rem;
    color: #636e72;
    padding-left: 1.5rem;
    position: relative;
}

.service-item ul li::before {
    content: "•";
    color: #0984e3;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.benefits {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3436;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-item p {
    color: #636e72;
}

.cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #6c5ce7 0%, #0984e3 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .service-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .benefit-item {
        padding: 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

/* Private Learning Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.learning-approach {
    padding: 5rem 0;
    background-color: #fff;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-item h3 {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.approach-item p {
    color: #636e72;
}

.learning-topics {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.topic-item h3 {
    color: #2d3436;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.topic-item ul {
    list-style-type: none;
    padding: 0;
}

.topic-item ul li {
    margin-bottom: 1rem;
    color: #636e72;
    padding-left: 1.5rem;
    position: relative;
}

.topic-item ul li::before {
    content: "•";
    color: #0984e3;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.learning-process {
    padding: 5rem 0;
    background-color: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6c5ce7 0%, #0984e3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-item h3 {
    color: #2d3436;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-item p {
    color: #636e72;
}

/* Additional Responsive Design Updates */
@media (max-width: 768px) {
    .approach-grid,
    .topics-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-item {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-form {
    padding: 5rem 0;
    background-color: #fff;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-container iframe {
    width: 100%;
    border: none;
}

/* Additional Responsive Design Updates */
@media (max-width: 768px) {
    .form-container {
        margin: 0 1rem;
    }

    .form-container iframe {
        width: 100%;
        height: 800px; /* Adjusted height for mobile */
    }
}

/* Updated Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Update hero buttons alignment for the new layout */
.hero-buttons {
    justify-content: flex-start;
}

/* Responsive updates for hero section */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }
} 