/* 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: -1;
        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: -1;
    }
    
    .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;
}