/* CSS Variables for consistent theming */
:root {
    --primary-color: #396afc;
    --secondary-color: #2948ff;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --background: #ffffff;
    --gradient-primary: linear-gradient(135deg, #396afc 0%, #2948ff 100%);
    --gradient-secondary: linear-gradient(135deg, #396afc 0%, #2948ff 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    width: 100%;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

.hero-graphics {
    position: relative;
    height: 600px;
}

.hero-image-left {
    position: absolute;
    left: -100px;
    top: 0;
    width: 300px;
    height: 100%;
}

.hero-images-right {
    position: absolute;
    right: -50px;
    top: 0;
    width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.floating-image.delay-1 { animation-delay: -1s; }
.floating-image.delay-2 { animation-delay: -2s; }
.floating-image.delay-3 { animation-delay: -3s; }
.floating-image.delay-4 { animation-delay: -4s; }
.floating-image.delay-5 { animation-delay: -5s; }

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

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle-colored {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: var(--background);
}

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

.who-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.descriptive-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.main-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}

.main-text {
    color: var(--text-primary);
}

.highlight-purple {
    color: #B794F6;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    top: 50%;
    right: 30%;
    animation-delay: 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    top: 30%;
    right: 50%;
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    top: 10%;
    right: 60%;
    animation-delay: 4s;
}

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

.highlight-text {
    color: var(--text-primary);
}

.highlight-text-colored {
    color: var(--primary-color);
}

.rotating-words {
    position: relative;
    height: 2.5rem;
    overflow: hidden;
}

.word {
    position: absolute;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
}

.who-images {
    position: relative;
    height: 500px;
}

.who-img-1, .who-img-2 {
    position: absolute;
    border-radius: var(--border-radius);
    
}

.who-img-1 {
    width: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.who-img-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* What We Do Section */
.what-we-do {
    padding: 120px 0;
    background: #f8f9fa;
}

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

.what-images {
    position: relative;
    height: 500px;
}

.dots-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    opacity: 0.3;
    z-index: 1;
}

.what-img-1, .what-img-2 {
    position: absolute;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 2;
}

.what-img-1 {
    width: 65%;
    top: 50px;
    right: 0;
}

.what-img-2 {
    width: 55%;
    bottom: 0;
    left: 0;
}

.what-text .section-title {
    text-align: left;
}

/* Values Section */
.values {
    padding: 120px 0;
    background: var(--background);
}

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

.value-item {
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.main-value {
    grid-column: 1 / -1;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1.125rem;
    line-height: 1.6;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.value-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Founders Section */
.founders {
    padding: 120px 0;
    background: #f8f9fa;
}

/* New Founder Cards */
.founder-card-new {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.founder-card-new.right-layout {
    flex-direction: row-reverse;
}

.founder-image-container {
    position: relative;
    flex-shrink: 0;
}

.founder-image-new {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.achievement-3d {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(57, 106, 252, 0.3);
    min-width: 180px;
}

.achievement-item {
    text-align: center;
    color: white;
}

.achievement-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.achievement-label {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.founder-content-new {
    flex: 1;
}

.founder-name-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.founder-role-new {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.founder-description-new {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Social Media Buttons */
.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    color: white;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.founder-card {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
}

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

/* Featured Founder Card - Large */
.featured-founder {
    grid-template-columns: 300px 1fr;
    padding: 3rem;
    gap: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
}

.founder-image-large {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-primary);
    padding: 8px;
}

.founder-image-large .founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.founder-name-large {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.founder-experience-large {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.founder-achievements {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.founder-achievements h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.founder-achievements ul {
    list-style: none;
    padding: 0;
}

.founder-achievements li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.founder-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.founder-stats-large {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.stat-large {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 120px;
}

.stat-number-large {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label-large {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Regular Founder Card */
.founder-image {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-primary);
    padding: 5px;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Layout variations */
.right-layout {
    grid-template-columns: 1fr 200px;
}

.left-layout {
    grid-template-columns: 300px 1fr;
}

.founder-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.founder-experience {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Products Section */
.products {
    padding: 120px 0;
    background: var(--background);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-header {
    padding: 2rem;
    background: #f8f9fa;
}

.product-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-link {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-images {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-img-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-img-mobile {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #f8f9fa;
}

.testimonials-note {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* Trusted Companies Section */
.trusted-companies {
    padding: 80px 0;
    background: var(--background);
}

.trusted-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.company-logo {
    height: 40px;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.company-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card-new {
    background: var(--background);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.contact-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.contact-icon-new {
    font-size: 2rem;
    color: white;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.975rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

.contact-btn i {
    font-size: 0.875rem;
    transition: var(--transition);
}

.contact-btn:hover i {
    transform: translateX(3px);
}

/* Footer Banner */
.footer-banner {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.banner-container {
    height: 100%;
    position: relative;
}

.banner-img-desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-img-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-graphics {
        height: 400px;
    }
    
    .hero-image-left {
        left: -50px;
        width: 200px;
    }
    
    .hero-images-right {
        right: -50px;
        width: 250px;
    }
    
    .who-content,
    .what-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-content {
        grid-template-rows: auto auto;
    }
    
    .what-text {
        order: 1;
    }
    
    .what-images {
        order: 2;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-card,
    .right-layout,
    .left-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .featured-founder {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .founder-image,
    .founder-image-large {
        justify-self: center;
        margin-bottom: 1rem;
        height: 350px;
    }
    
    .founder-image-large {
        width: 250px;
        height: 350px;
    }
    
    .founder-stats-large {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-large {
        min-width: 100px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banner-img-desktop {
        display: none;
    }
    
    .banner-img-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .descriptive-text {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-heading {
        font-size: 1.75rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.125rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .founder-card-new {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-card-new.right-layout {
        flex-direction: column;
    }
    
    .founder-image-new {
        width: 250px;
        height: 250px;
    }
    
    .achievement-3d {
        position: static;
        transform: none;
        margin-top: 1rem;
        align-self: center;
    }
    
    .founders-grid {
        gap: 2rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    .founder-stats {
        justify-content: center;
    }
    
    .founder-name-large {
        font-size: 2rem;
    }
    
    .founder-role-large {
        font-size: 1.25rem;
    }
    
    .founder-experience-large {
        font-size: 1rem;
    }
    
    .contact-card-new {
        padding: 2rem 1.5rem;
    }
    
    .contact-title {
        font-size: 1.25rem;
    }
    
    .contact-description {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .founder-image-new {
        width: 200px;
        height: 200px;
    }
}

/* Smooth animations for scroll-triggered elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
