/* Global Styles */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #10b981;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --aws-color: #ff9900;
    --azure-color: #0078d4;
    --gcp-color: #4285f4;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-aws {
    background-color: var(--aws-color);
    color: white;
}

.btn-aws:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}

.btn-azure {
    background-color: var(--azure-color);
    color: white;
}

.btn-azure:hover {
    background-color: #006bb3;
    transform: translateY(-2px);
}

.btn-gcp {
    background-color: var(--gcp-color);
    color: white;
}

.btn-gcp:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 15px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    background: none;
    border: none;
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    filter: brightness(1) contrast(1.1) saturate(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.15) saturate(1.15);
}

.company-name {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2d3748, #4a5568, #1a365d, #2c5282);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.1);
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.company-name:hover {
    transform: scale(1.02);
    animation-duration: 4s;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

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

/* Key Offerings Section */
.key-offerings {
    padding: 5rem 0;
    background-color: white;
}

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

.offering-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.offering-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.offering-card p {
    color: var(--gray-color);
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

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

.why-us-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-us-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.why-us-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-buttons {
    justify-content: center;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: #f8fafc;
}

.cta-section .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo .footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

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

.footer-links ul li a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

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

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Methodology Section */
.methodology {
    padding: 5rem 0;
    background-color: white;
}

.methodology-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.methodology-text {
    flex: 1;
}

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

.methodology-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.methodology-text ul li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: disc;
    color: var(--gray-color);
}

.methodology-text ul li strong {
    color: var(--dark-color);
}

.methodology-image {
    flex: 1;
    text-align: center;
}

.methodology-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.methodology-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Cloud Paths Section */
.cloud-paths {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

.cloud-path {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

.cloud-path:last-child {
    margin-bottom: 0;
}

.cloud-path-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.cloud-logo {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
}

.cloud-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.cloud-path-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
}

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

.career-track {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

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

.track-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.aws .track-icon {
    color: var(--aws-color);
}

.azure .track-icon {
    color: var(--azure-color);
}

.gcp .track-icon {
    color: var(--gcp-color);
}

.career-track h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.career-track ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.career-track ul li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
    color: var(--gray-color);
}

.career-track p {
    color: var(--dark-color);
    font-weight: 500;
}

.path-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.aws .feature i {
    color: var(--aws-color);
}

.azure .feature i {
    color: var(--azure-color);
}

.gcp .feature i {
    color: var(--gcp-color);
}

.feature p {
    font-weight: 500;
}

/* Cloud Selection CTA */
.cloud-selection-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.cloud-selection-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cloud-selection-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cloud-selection-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cloud-selection-buttons .btn {
    min-width: 150px;
}

/* Consulting Intro */
.consulting-intro {
    padding: 5rem 0;
    background-color: white;
}

.consulting-intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.consulting-intro-text {
    flex: 1;
}

.consulting-intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.consulting-intro-image {
    flex: 1;
    text-align: center;
}

.consulting-intro-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.consulting-intro-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Our Services Section */
.our-services {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.service-features {
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
    color: var(--gray-color);
}

/* Client Fit Section */
.client-fit {
    padding: 5rem 0;
    background-color: white;
}

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

.client-type {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition);
}

.client-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.client-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.client-type h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.client-type p {
    color: var(--gray-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

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

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--gray-color);
}

/* Consultation CTA */
.consultation-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

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

.consultation-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.consultation-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.consultation-cta .btn-primary:hover {
    background-color: #f8fafc;
}

/* Brand Story Section */
.brand-story {
    padding: 5rem 0;
    background-color: white;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.story-image {
    flex: 1;
    text-align: center;
}

.story-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Mission Vision Section */
.mission-vision {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

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

.mv-card {
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
    box-shadow: var(--box-shadow);
}

.mission {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%);
}

.vision {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
}

.mv-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Founders Section */
.founders {
    padding: 5rem 0;
    background-color: white;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.founder-card {
    background-color: #f8fafc;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid white;
    box-shadow: var(--box-shadow);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.founder-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.founder-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.founder-expertise span {
    background-color: #e2e8f0;
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    font-weight: 500;
}

.founder-linkedin:hover {
    text-decoration: underline;
}

/* Team Expertise Section */
.team-expertise {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

.expertise-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.expertise-text {
    flex: 1;
}

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

.expertise-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.expertise-text ul li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: disc;
    color: var(--gray-color);
}

.expertise-image {
    flex: 1;
    text-align: center;
}

.expertise-image img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.expertise-image img:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.expertise-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.badge {
    text-align: center;
}

.badge img {
    max-width: 120px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

/* Join Us CTA */
.join-us-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

.join-us-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-us-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-us-cta .cta-buttons {
    justify-content: center;
}

.join-us-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.join-us-cta .btn-primary:hover {
    background-color: #f8fafc;
}

.join-us-cta .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.join-us-cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: white;
    margin: 0 auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.modal-header #selectedPlatform {
    color: var(--primary-color);
}

.close {
    color: #64748b;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-body {
    padding: 1rem 2rem 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.form-actions .btn {
    min-width: 120px;
}

/* Cloud Journey Button Styles */
.cloud-journey-btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.cloud-journey-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .container,
    .methodology-content,
    .consulting-intro-content,
    .story-content,
    .expertise-content {
        flex-direction: column;
    }

    .hero-image,
    .methodology-image,
    .consulting-intro-image,
    .story-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .expertise-badges {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section h2,
    .cloud-selection-cta h2,
    .consultation-cta h2,
    .join-us-cta h2 {
        font-size: 2rem;
    }

    .cloud-path {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cloud-selection-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .page-banner p {
        font-size: 1rem;
    }
}
/* ===
== MOBILE RESPONSIVE STYLES ===== */

/* Mobile First - Base styles for mobile devices */
@media (max-width: 768px) {
    
    /* Container adjustments */
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    /* Header Mobile Styles */
    header {
        padding: 10px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    /* Mobile Navigation */
    nav {
        width: 100%;
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 16px;
        padding: 10px 15px;
        display: block;
        border-radius: var(--border-radius);
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: var(--primary-color);
        color: white;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 40px 0;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-image {
        order: 0;
    }

    .hero-image img {
        max-width: 280px;
    }
    
    /* CTA Buttons Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
    }
    
    /* Page Banner Mobile */
    .page-banner {
        padding: 40px 0;
        text-align: center;
    }
    
    .page-banner h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .page-banner p {
        font-size: 16px;
    }
    
    /* Grid Layouts Mobile */
    .offerings-grid,
    .services-grid,
    .benefits-grid,
    .client-types,
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Cards Mobile */
    .offering-card,
    .service-card,
    .benefit-card,
    .client-type,
    .founder-card {
        padding: 20px;
        text-align: center;
    }
    
    .offering-card h3,
    .service-card h3,
    .benefit-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .offering-card p,
    .service-card p,
    .benefit-card p {
        font-size: 14px;
    }
    
    /* Course Cards Mobile */
    .course-card {
        padding: 20px;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .course-logo {
        width: 60px;
        height: 60px;
    }
    
    .course-title {
        font-size: 20px;
    }
    
    .course-subtitle {
        font-size: 14px;
    }
    
    .course-features {
        margin: 15px 0;
    }
    
    .course-features li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-width: 400px;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Section Spacing Mobile */
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-contact {
        font-size: 14px;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }
    
    /* Consultation CTA Mobile */
    .consultation-cta {
        padding: 40px 0;
        text-align: center;
    }
    
    .consultation-cta h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .consultation-cta p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .container {
        width: 92%;
    }
    
    /* Grid adjustments for tablet */
    .offerings-grid,
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .client-types {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Hero adjustments */
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    /* Modal adjustments */
    .modal-content {
        width: 80%;
        max-width: 500px;
    }
}

/* Large Mobile / Small Tablet */
@media (max-width: 480px) {
    
    /* Extra small screens */
    .hero-text h1 {
        font-size: 24px;
    }
    
    .page-banner h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .modal-content {
        width: 98%;
        margin: 10px auto;
    }
    
    .offering-card,
    .service-card,
    .benefit-card {
        padding: 15px;
    }
    
    .course-card {
        padding: 15px;
    }
    
    .course-title {
        font-size: 18px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    nav ul li a {
        min-height: 44px;
        padding: 12px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Remove hover effects on touch devices */
    .offering-card:hover,
    .service-card:hover,
    .benefit-card:hover,
    .course-card:hover {
        transform: none;
    }
}

/* Landscape phone orientation */
@media (max-width: 768px) and (orientation: landscape) {
    
    .hero {
        padding: 30px 0;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
        order: 2;
    }
    
    .modal-content {
        max-height: 80vh;
    }
}

/* Print styles */
@media print {
    
    .mobile-menu-btn,
    .btn,
    .modal,
    nav {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        width: 100%;
        max-width: none;
    }
}/* 
===== MOBILE MENU STYLES ===== */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1001;
    }
    
    header .container {
        position: relative;
        flex-direction: column;
        align-items: center;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 20px;
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-radius: var(--border-radius);
        font-weight: 500;
        transition: var(--transition);
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .mobile-menu-btn.active {
        color: var(--secondary-color);
        transform: rotate(90deg);
    }
}

/* Mobile Menu Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved Form Styles for Mobile */
@media (max-width: 768px) {
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        transform: translateY(-1px);
    }
    
    /* Better button spacing */
    .cta-buttons {
        padding: 0 20px;
    }
    
    /* Improved card hover effects for touch */
    .offering-card,
    .service-card,
    .benefit-card,
    .course-card {
        transition: var(--transition);
    }
    
    .offering-card:active,
    .service-card:active,
    .benefit-card:active,
    .course-card:active {
        transform: scale(0.98);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .mobile-menu-btn.active {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .offering-card,
    .service-card,
    .benefit-card,
    .course-card {
        border: 2px solid var(--gray-color);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    
    :root {
        --dark-color: #f8fafc;
        --light-color: #1e293b;
        --gray-color: #94a3b8;
    }
    
    body {
        background-color: var(--light-color);
        color: var(--dark-color);
    }
    
    .offering-card,
    .service-card,
    .benefit-card,
    .course-card,
    .modal-content,
    nav {
        background: #334155;
        border-color: #475569;
    }
}/
* ===== FINAL MOBILE OPTIMIZATIONS ===== */

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

/* Improve text readability on mobile */
@media (max-width: 768px) {
    
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Better spacing for content */
    .hero-content,
    .consulting-intro-content {
        gap: 25px;
    }
    
    /* Optimize images for mobile */
    .hero-image img,
    .consulting-intro-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    /* Better list spacing */
    .service-features,
    .course-features {
        padding-left: 0;
    }
    
    .service-features li,
    .course-features li {
        padding: 5px 0;
        font-size: 14px;
    }
    
    /* Improve icon sizing */
    .service-icon,
    .benefit-icon,
    .client-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    /* Better modal positioning */
    .modal {
        padding: 20px 10px;
    }
    
    /* Improve form UX */
    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 2px solid #e2e8f0;
        border-radius: var(--border-radius);
        transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }
    
    /* Better button states */
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Improve consultation CTA */
    .consultation-cta .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 375px) {
    
    .container {
        width: 98%;
        padding: 0 5px;
    }
    
    .hero-text h1 {
        font-size: 22px;
    }
    
    .page-banner h1 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .offering-card,
    .service-card,
    .benefit-card {
        padding: 12px;
    }
    
    .modal-content {
        width: 100%;
        margin: 5px auto;
        border-radius: 0;
    }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    
    .hero {
        padding: 20px 0;
    }
    
    .page-banner {
        padding: 20px 0;
    }
    
    section {
        padding: 30px 0;
    }
    
    .modal-content {
        max-height: 85vh;
        overflow-y: auto;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        border-radius: var(--border-radius);
    }
    
    .btn {
        -webkit-appearance: none;
        border-radius: var(--border-radius);
    }
}

/* Android Chrome specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    
    .form-group select {
        background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 40px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    
    /* Reduce animations on mobile for better performance */
    .offering-card,
    .service-card,
    .benefit-card,
    .course-card {
        will-change: transform;
    }
    
    /* Optimize images */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
}

/* Ensure proper stacking context */
.modal {
    z-index: 9999;
}

nav.active {
    z-index: 1000;
}

.mobile-menu-btn {
    z-index: 1001;
}/* ====
= MOBILE HEADER FIX ===== */

/* Mobile menu button styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: var(--light-color);
    color: var(--secondary-color);
}

/* Header base styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--primary-color);
    color: white;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    
    /* Fix header layout for mobile */
    header {
        padding: 10px 0;
        position: relative;
    }
    
    header .container {
        position: relative;
        justify-content: center; /* Center the logo */
        padding: 0 60px; /* Add padding to prevent overlap with menu button */
    }
    
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    /* Center logo and prevent overlap */
    .logo {
        justify-content: center;
        flex: 1;
        text-align: center;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    /* Hide desktop navigation */
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        box-shadow: var(--box-shadow);
        padding: 20px;
        z-index: 1000;
        animation: slideDown 0.3s ease;
    }
    
    /* Show navigation when active */
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        border-radius: var(--border-radius);
        font-weight: 500;
        transition: var(--transition);
    }
    
    nav ul li a:hover,
    nav ul li a.active {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    /* Active menu button state */
    .mobile-menu-btn.active {
        color: var(--secondary-color);
        transform: translateY(-50%) rotate(90deg);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    
    header .container {
        padding: 0 50px; /* Reduce padding on very small screens */
    }
    
    .company-name {
        font-size: 14px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .mobile-menu-btn {
        right: 10px;
        font-size: 20px;
        padding: 8px;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper stacking */
header {
    z-index: 1000;
}

.mobile-menu-btn {
    z-index: 1001;
}

nav.active {
    z-index: 999;
}
/* ===== AWS SA BATCH — NEW STYLES ===== */

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    color: white;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 999;
}

.announcement-link {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    white-space: nowrap;
}

.announcement-link:hover {
    opacity: 0.85;
}

/* Batch Badge */
.batch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

/* ===== HOMEPAGE: AWS SA Section ===== */
.aws-sa-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

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

.aws-sa-text h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.aws-sa-text p {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.batch-schedule-mini {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.schedule-item-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    flex: 1;
}

.schedule-item-mini i {
    font-size: 1.4rem;
    color: var(--aws-color);
}

.schedule-item-mini div {
    display: flex;
    flex-direction: column;
}

.schedule-item-mini strong {
    font-size: 0.95rem;
    color: white;
}

.schedule-item-mini span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.aws-sa-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.highlight-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.highlight-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.highlight-card i {
    font-size: 1.6rem;
    color: var(--aws-color);
    margin-bottom: 0.6rem;
    display: block;
}

.highlight-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.highlight-card p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
}

/* ===== COURSES PAGE: AWS SA Featured Batch ===== */
.aws-sa-batch-featured {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

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

.batch-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.batch-header p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.batch-schedule-card,
.batch-topics-card,
.batch-meeting-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 2rem;
}

.batch-schedule-card h3,
.batch-topics-card h3,
.batch-meeting-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.batch-schedule-card h3 i,
.batch-topics-card h3 i,
.batch-meeting-card h3 i {
    color: var(--aws-color);
}

/* Schedule Days */
.schedule-day {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.schedule-day:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.day-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
}

.day-label.saturday {
    background: rgba(255, 153, 0, 0.2);
    color: var(--aws-color);
}

.day-label.sunday {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.day-detail {
    display: flex;
    flex-direction: column;
}

.day-detail strong {
    color: white;
    font-size: 0.95rem;
}

.day-detail span {
    color: #94a3b8;
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

/* Batch Meta */
.batch-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #94a3b8;
}

.meta-item i {
    color: var(--aws-color);
    width: 14px;
}

/* Topics List */
.topics-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.topics-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.topics-list li i {
    color: #10b981;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Meeting Card */
#meeting-link-box {
    margin-bottom: 1.5rem;
}

.meeting-active-msg {
    color: #10b981;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.meeting-pending-msg {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.meeting-pending-msg i {
    color: var(--aws-color);
    margin-right: 0.4rem;
}

.meeting-pending-msg span {
    display: block;
    font-size: 0.82rem;
    margin-top: 0.4rem;
    opacity: 0.7;
}

.btn-join-meeting {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.btn-join-meeting:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.meeting-instructions {
    font-size: 0.78rem;
    color: #64748b;
    padding: 0.8rem;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 1.5;
}

.meeting-instructions i {
    color: var(--aws-color);
    margin-right: 0.3rem;
}

.meeting-instructions code {
    background: rgba(255,255,255,0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.batch-enroll h4 {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 0.8rem;
}

.batch-enroll .btn-aws {
    width: 100%;
    text-align: center;
    display: block;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .aws-sa-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .batch-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aws-sa-text h2 {
        font-size: 1.8rem;
    }

    .batch-schedule-mini {
        flex-direction: column;
    }

    .aws-sa-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .announcement-banner {
        font-size: 0.82rem;
        gap: 0.5rem;
    }
}

/* ===== FIXES & IMPROVEMENTS ===== */

/* Scroll offset for sticky header on hash navigation */
#aws-sa-batch,
.cloud-paths,
.methodology,
.consulting-intro,
.our-services,
.brand-story,
.founders {
    scroll-margin-top: 80px;
}

/* Fix conflicting logo-img sizes — single source of truth */
.logo-img {
    width: auto !important;
    height: 48px !important;
    image-rendering: auto !important;
}

@media (max-width: 768px) {
    .logo-img {
        height: 36px !important;
    }
}

/* Company name size fix — was 2.2rem (too big for a nav header) */
.company-name {
    font-size: 1.3rem !important;
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.1rem !important;
    }
}

/* CTA buttons — wrap on small screens instead of overflowing */
.cta-buttons {
    flex-wrap: wrap;
}

/* Announcement banner — better mobile wrap */
.announcement-banner {
    padding: 0.5rem 1rem;
}

@media (max-width: 480px) {
    .announcement-banner {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}

/* Card enter animation */
.offering-card,
.why-us-card,
.service-card,
.client-type,
.benefit-card,
.founder-card,
.highlight-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.offering-card.animate,
.why-us-card.animate,
.service-card.animate,
.client-type.animate,
.benefit-card.animate,
.founder-card.animate,
.highlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TOAST NOTIFICATION ===== */
.scs-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: #1e293b;
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 99999;
    max-width: 90vw;
    width: max-content;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.scs-toast--visible {
    transform: translateX(-50%) translateY(0);
}

.scs-toast--success {
    border-left: 4px solid #10b981;
}

.scs-toast--error {
    border-left: 4px solid #ef4444;
}

.scs-toast__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .scs-toast {
        bottom: 1rem;
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Footer social icon fix — show placeholder tooltip on broken link */
.footer-contact .social-icons a[href="#"] {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* Better footer layout on mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-contact .social-icons {
        justify-content: center;
    }
    footer .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Page banner mobile fix */
@media (max-width: 768px) {
    .page-banner {
        padding: 2.5rem 0;
    }
    .page-banner h1 {
        font-size: 1.8rem;
    }
}

/* Ensure modals always sit above announcement banner */
.modal {
    z-index: 10000 !important;
}

/* CRITICAL FIX: Remove opacity:0 initial state — cards were invisible without scroll event.
   Use a simple CSS keyframe instead so content is always visible. */
.offering-card,
.why-us-card,
.service-card,
.client-type,
.benefit-card,
.founder-card,
.highlight-card {
    opacity: 1 !important;
    transform: none !important;
}

.offering-card.animate,
.why-us-card.animate,
.service-card.animate,
.client-type.animate,
.benefit-card.animate,
.founder-card.animate,
.highlight-card.animate {
    opacity: 1 !important;
    transform: none !important;
}

/* =====================================================================
   OVERRIDES & NEW COMPONENTS — appended clean section
   These rules win due to later cascade position.
   ===================================================================== */

/* ── Base resets ────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: #1e293b;
    background-color: #f8fafc;
}

/* ── Force dark-color to always be dark regardless of prefers-color-scheme ── */
:root {
    --dark-color: #1e293b !important;
}

/* Override the dark mode block that flips --dark-color to light */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #1e293b !important;
        --light-color: #f8fafc !important;
        --gray-color: #64748b !important;
    }
    body {
        background-color: #f8fafc !important;
        color: #1e293b !important;
    }
    .offering-card,
    .service-card,
    .benefit-card,
    .course-card,
    .modal-content,
    nav {
        background: white !important;
        border-color: #e2e8f0 !important;
    }
}

/* ── Typography scale ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
}

/* ── Header layout ──────────────────────────────────────────────────── */
header {
    padding: 0.8rem 0 !important;
}

header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    flex-direction: row !important;
    gap: 0 !important;
}

.logo {
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
}

.logo a {
    gap: 0.75rem !important;
}

/* ── Logo image ─────────────────────────────────────────────────────── */
.logo-img {
    height: 44px !important;
    width: auto !important;
    image-rendering: auto !important;
}

@media (max-width: 768px) {
    .logo-img {
        height: 36px !important;
    }
}

/* ── Company name — no gradient, no animation, solid dark color ─────── */
.company-name {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    animation: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1rem !important;
    }
}

/* ── Nav links — clean hover underline, not background fill ─────────── */
nav ul li {
    margin-left: 0 !important;
}

nav ul {
    gap: 0.25rem !important;
}

nav ul li a {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: 0 !important;
    color: #1e293b !important;
    position: relative !important;
    background: none !important;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

nav ul li a:hover {
    color: var(--primary-color) !important;
    background: none !important;
    transform: none !important;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    transform: scaleX(1);
}

nav ul li a.active {
    color: var(--primary-color) !important;
    background: none !important;
}

/* ── Section title — centered underline accent ──────────────────────── */
.section-title {
    font-size: 2rem !important;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem !important;
    }
}

/* ── Section spacing ────────────────────────────────────────────────── */
section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.offering-card,
.why-us-card,
.service-card,
.client-type,
.benefit-card,
.founder-card,
.career-track,
.highlight-card,
.batch-schedule-card,
.batch-topics-card,
.batch-meeting-card {
    border-radius: 12px !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
    height: 44px;
    min-width: 130px;
    font-weight: 600 !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0 1.4rem;
    font-size: 0.95rem;
    line-height: 1;
    white-space: nowrap;
}

/* ── Footer text ────────────────────────────────────────────────────── */
footer p,
.footer-links ul li a,
.footer-contact p {
    font-size: 0.9rem;
}

/* ── Hero fixes ─────────────────────────────────────────────────────── */
.hero {
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .container {
        flex-direction: column;
    }
    .hero-image {
        order: 0;
    }
}

/* ── WhatsApp hero button ───────────────────────────────────────────── */
.btn-wa-hero {
    background-color: #25d366;
    color: white !important;
}

.btn-wa-hero:hover {
    background-color: #1ebe5a;
    color: white !important;
    transform: translateY(-2px);
}

/* ── Floating WhatsApp button ───────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: waBounce 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    animation: none;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: #1e293b;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1e293b;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

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

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ── WhatsApp social icon in footer ────────────────────────────────── */
.social-wa:hover {
    background-color: #25d366 !important;
}

/* ── btn-outline-wa (Get Pricing / WhatsApp outlined) ───────────────── */
.btn-outline-wa {
    background: transparent;
    color: #25d366 !important;
    border: 2px solid #25d366;
    font-weight: 600;
}

.btn-outline-wa:hover {
    background: #25d366;
    color: white !important;
    transform: translateY(-2px);
}

/* ── Weekend schedule bar (homepage strip) ──────────────────────────── */
.weekend-strip {
    background: #1e293b;
    padding: 0.85rem 0;
    color: white;
}

.weekend-strip-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.weekend-strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #e2e8f0;
}

.weekend-strip-item i {
    color: #38bdf8;
    font-size: 0.9rem;
}

.weekend-strip-item strong {
    color: white;
}

.weekend-strip-divider {
    color: #475569;
    font-size: 1rem;
    user-select: none;
}

@media (max-width: 600px) {
    .weekend-strip-divider { display: none; }
    .weekend-strip-items { flex-direction: column; gap: 0.4rem; }
}

/* ── Weekend schedule bar (courses page) ────────────────────────────── */
.weekend-schedule-bar {
    background: #0f172a;
    padding: 0.9rem 0;
}

.schedule-bar-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
}

.schedule-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.schedule-bar-item i {
    color: var(--aws-color);
}

.schedule-bar-divider {
    color: #334155;
    user-select: none;
}

@media (max-width: 600px) {
    .schedule-bar-divider { display: none; }
    .schedule-bar-items { flex-direction: column; gap: 0.35rem; }
}

/* ── Featured batch grid (2-col) ────────────────────────────────────── */
.batch-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 768px) {
    .batch-grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ── Course filter tabs ─────────────────────────────────────────────── */
.course-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.course-filter-btn {
    padding: 0.5rem 1.4rem;
    border-radius: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    height: 40px;
}

.course-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.course-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* ── Courses section background ─────────────────────────────────────── */
.courses-section {
    background: #f1f5f9;
    padding: 4rem 0;
}

/* ── Courses grid ───────────────────────────────────────────────────── */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Course card ────────────────────────────────────────────────────── */
.course-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.course-card-popular {
    border: 2px solid #f97316;
}

.badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f97316;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* ── Course card header ─────────────────────────────────────────────── */
.course-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.course-platform-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.course-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* ── Level badges ───────────────────────────────────────────────────── */
.badge-level {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
}

.badge-beginner {
    background: #dcfce7;
    color: #166534;
}

.badge-intermediate {
    background: #dbeafe;
    color: #1e40af;
}

.badge-advanced {
    background: #f3e8ff;
    color: #6b21a8;
}

/* ── Course card body ───────────────────────────────────────────────── */
.course-title {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.course-cert {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.course-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.course-meta span {
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f1f5f9;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}

.course-meta span i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.course-topics {
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.course-topics li {
    font-size: 0.85rem;
    color: #475569;
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.4;
}

.course-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 0.75rem;
    top: 0.05rem;
}

.course-cert-label {
    font-size: 0.8rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    margin: 0;
}

.course-cert-label i {
    color: var(--aws-color);
    flex-shrink: 0;
}

/* ── Course card actions ────────────────────────────────────────────── */
.course-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.course-actions .btn {
    flex: 1;
    min-width: 100px;
    font-size: 0.85rem;
    height: 40px;
}

/* ── Bio expand/collapse ────────────────────────────────────────────── */
.founder-bio-wrap {
    position: relative;
    margin-bottom: 0.5rem;
}

.founder-bio {
    font-size: 0.88rem !important;
    line-height: 1.65;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-bottom: 0.4rem;
}

.founder-bio.expanded {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.bio-toggle-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bio-toggle-btn:hover {
    color: #3730a3;
}

/* ── Founders grid spacing fix ──────────────────────────────────────── */
.founders-grid {
    gap: 2.5rem !important;
}

/* ── Mobile nav — clean version ─────────────────────────────────────── */
@media (max-width: 768px) {
    header .container {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 0 15px !important;
        position: relative !important;
    }

    .logo {
        flex: 1 !important;
        justify-content: flex-start !important;
    }

    .mobile-menu-btn {
        display: block !important;
        position: static !important;
        transform: none !important;
        flex-shrink: 0;
        font-size: 1.3rem;
        padding: 6px 8px;
        color: #1e293b;
    }

    .mobile-menu-btn.active {
        color: var(--primary-color);
        transform: rotate(90deg) !important;
    }

    nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        border-radius: 0 0 12px 12px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
        padding: 1rem !important;
        z-index: 1000 !important;
        animation: slideDown 0.25s ease !important;
    }

    nav.active {
        display: block !important;
    }

    nav ul {
        flex-direction: column !important;
        gap: 0.25rem !important;
    }

    nav ul li a {
        display: block !important;
        padding: 0.7rem 1rem !important;
        border-radius: 8px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        text-align: left !important;
        color: #1e293b !important;
    }

    nav ul li a::after {
        display: none !important;
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: #eff6ff !important;
        color: var(--primary-color) !important;
        transform: none !important;
    }
}

/* ── Announcement banner z-index ────────────────────────────────────── */
.announcement-banner {
    position: relative;
    z-index: 999;
}

/* Ensure WhatsApp float is above everything except modals */
.whatsapp-float {
    z-index: 9998;
}

.modal {
    z-index: 10000 !important;
}
