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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif; /* Secondary font */

    line-height: 1.6;
    color: hsl(0, 0%, 10%);
    background-color: #ffffff;
}


h1, h2, h3, h4, h5, h6,
.navbar .brand-text,
.header-title,
.logo-text {
  font-family: 'Montserrat', sans-serif; /* Primary font */
}

  
/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.7rem;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: hsl(225, 100%, 60%);
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-item {
    color: hsl(0, 0%, 10%);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 0.375rem;
}

.mobile-menu-toggle {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.menu-btn {
    color: hsl(225, 100%, 60%);
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-nav {
    display: none;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav-content {
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-item {
    display: block;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: hsl(0, 0%, 10%);
    text-decoration: none;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background-color: #f3f4f6;
    color: #2563eb;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    background-color: #ffffff;
    padding-bottom: 4rem;
}

.hero-content {
    padding: 0rem 0;
    /* display: grid; */
    /* gap: 3rem; */
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        /* gap: 3rem; */
    }
}

.hero-text {
    padding-right: 0;
}

@media (min-width: 1024px) {
    .hero-text {
        padding-right: 2rem;
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: hsl(0, 0%, 10%);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    background-color: hsl(225, 100%, 60%);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background-color: hsl(225, 100%, 55%);
}

.hero-image {
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .hero-image {
        margin-top: 0;
    }
}

.hero-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
}

/* Goal Section */
.goal-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.goal-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: hsl(0, 0%, 10%);
    margin-bottom: 2rem;
}

.goal-description {
    font-size: 1.125rem;
    color: hsl(0, 0%, 40%);
    line-height: 1.7;
}

/* GenAI Skills Section */
.genai-section {
    background-color: hsl(225, 100%, 93%);
    padding: 4rem 0;
}

.genai-content {
    padding: 4rem 0;
}

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

.stats-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-value {
    color: hsl(225, 100%, 60%);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: hsl(0, 0%, 40%);
}

.genai-content-grid {
    max-width: 56rem;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .genai-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.genai-image {
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .genai-image {
        margin-bottom: 0;
    }
}

.genai-img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.genai-description {
    font-size: 1.125rem;
    color: hsl(0, 0%, 10%);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.approaches-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .approaches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.approach-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    color: hsl(225, 100%, 60%);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.approach-icon i {
    font-size: 3rem;
}

.approach-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(0, 0%, 10%);
    margin-bottom: 1rem;
}

.approach-description {
    color: hsl(0, 0%, 40%);
}

/* Benefits Section */
.benefits-section {
    background-color: hsl(225, 100%, 93%);
    padding: 4rem 0;
}

.benefits-content {
    padding: 0 0;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.benefit-check {
    color: hsl(225, 100%, 60%);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-check i {
    font-size: 1.25rem;
}

.benefit-text {
    font-size: 1.125rem;
    color: hsl(0, 0%, 10%);
    line-height: 1.6;
    margin: 0;
}

.secondary-cta {
    background-color: hsl(225, 100%, 60%);
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-cta:hover {
    background-color: hsl(225, 100%, 55%);
}

.benefits-image {
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .benefits-image {
        margin-top: 0;
    }
}

.benefits-img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .footer-logo-img {
        width: 200px;
    }
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFE27A;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.contact-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.address-section {
    margin-bottom: 1rem;
}

.office-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.address-item i {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

.address-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.hero-title,
.hero-description,
.cta-button {
    animation: fadeInUp 0.8s ease-out;
}

.hero-description {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

/* Scroll effects */
.section-title {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.section-title.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design Enhancements */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .approaches-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
.nav-item:focus,
.mobile-nav-item:focus,
.footer-link:focus {
    outline: 2px solid hsl(225, 100%, 60%);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .mobile-nav {
        display: none;
    }
    
    .hero-section {
        padding-top: 0;
    }
    
    * {
        box-shadow: none !important;
    }
}
