:root {
    --primary-dark: #13224B;
    --primary-blue: #568FF5;
    --primary-light: #7BA7FC;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--white);
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
}

.btn-nav {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 34, 75, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 150px 0 100px;
    margin-top: 80px;
    color: var(--white);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 34, 75, 0.3);
}

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

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

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

.btn-white:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 34, 75, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.badge {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.badge-text {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Trusted By Section */
.trusted-by {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.trusted-by p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ebf5ff, #e6f1ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.solution-icon svg {
    color: var(--primary-blue);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.solution-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    color: var(--text-gray);
}

.solution-features li {
    padding: 8px 0;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.growth-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.growth-header {
    text-align: left;
    margin-bottom: 50px;
}

.growth-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.blue-text {
    color: #5b9ff3;
}

.growth-header p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
}

.growth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cycle-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cycle-image {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.stages-list {
    padding-top: 20px;
}

.stage-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stage-bullet {
    color: #5b9ff3;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: -5px;
}

.stage-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.stage-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.learn-more-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 34, 75, 0.3);
}

/* Custom Solutions Section */
.custom-solutions {
    padding: 100px 0;
    background: var(--white);
}

.solutions-wrapper {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.solutions-left {
    padding-right: 40px;
}

.solutions-left h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.solutions-left p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.challenge-text {
    margin-top: 30px;
    margin-bottom: 30px;
}

.expert-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1rem;
}

.expert-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 34, 75, 0.3);
}

.solutions-right {
    padding-bottom: 40px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.challenge-card {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s;
    min-height: 280px;
}

.challenge-card:nth-child(2),
.challenge-card:nth-child(4) {
    transform: translateY(40px);
}

.challenge-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(35px);
    border-color: #5b9ff3;
}

.challenge-card:nth-child(2):hover,
.challenge-card:nth-child(4):hover {
    transform: translateY(30px);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    background: #ebf5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.challenge-icon svg {
    color: #5b9ff3;
}

.challenge-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.challenge-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.stats .section-title {
    color: var(--white);
}

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

.stat-card {
    padding: 30px;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stat-card span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-left h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.services-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.service-icon {
    background: var(--primary-blue);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-text h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.service-text p {
    color: var(--text-gray);
}

.service-highlight {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.service-highlight h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-highlight p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-highlight ul {
    list-style: none;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-highlight li {
    padding: 8px 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

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

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.contact-form button {
    width: 100%;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.contact-item strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

/* Employees Page Specific */
.employees-hero {
    padding: 120px 0 60px;
}

.content {
    padding: 80px 0;
    background: var(--bg-light);
}

.content h2 {
    color: var(--primary-dark);
    margin: 40px 0 30px;
    font-size: 2rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content .card {
    margin-bottom: 30px;
    text-align: center;
}

.content .grid {
    margin-top: 30px;
}

/* Team Sections */
.team-sections {
    background: white;
    padding: 80px 0;
}

.team-launch, .team-expand {
    margin-bottom: 60px;
}

.team-launch:last-child {
    margin-bottom: 0;
}

.team-row {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-row.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.team-content h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.team-content h2 .blue-text {
    color: var(--primary-blue);
    font-weight: 400;
}

.team-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 35px;
}

.team-content .btn {
    font-size: 1rem;
    padding: 12px 35px;
    background: var(--primary-dark);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.team-content .btn:hover {
    background: #0a1633;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-width: 450px;
}

/* Partner Section */
.partner-section {
    padding: 0;
}

.partner-header {
    background: var(--primary-dark);
    padding: 60px 20px 50px;
}

.partner-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 15px;
    padding-left: 40px;
    color: white;
}

.partner-header h2 .blue-text {
    color: #7BA7FC;
}

.partner-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
}

.partner-wrapper {
    background: #E8F2FF;
}

.partner-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--primary-dark);
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.partner-column {
    padding: 0 50px;
}

.partner-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-dark);
    text-align: left;
}

.partner-column h3 .blue-text {
    color: var(--primary-blue);
}

.partner-list {
    list-style: none;
    padding: 0;
}

.partner-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.3;
    color: #2c3e50;
    text-align: left;
}

.partner-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 0.9rem;
    top: 2px;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

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

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .growth-content {
        grid-template-columns: 1fr;
    }
    
    .cycle-image {
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .growth-card {
        padding: 30px 20px;
    }
    
    .growth-header h2 {
        font-size: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-card:nth-child(2),
    .challenge-card:nth-child(4) {
        transform: translateY(0);
    }
    
    .challenge-card:hover {
        transform: translateY(-5px);
    }
    
    .challenge-card:nth-child(2):hover,
    .challenge-card:nth-child(4):hover {
        transform: translateY(-5px);
    }
    
    .services-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .partner-content {
        grid-template-columns: 1fr;
    }
    
    .partner-column {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .partner-column:last-child {
        border-bottom: none;
    }
    
    .partner-header h2 {
        font-size: 2.5rem;
        padding-left: 20px;
    }
    
    .partner-header p {
        padding-left: 20px;
    }
    
    .team-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .team-row.reverse {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        text-align: left;
    }
    
    .team-content h2 {
        font-size: 1.8rem;
    }
    
    .team-image {
        order: -1;
    }
    
    .team-image img {
        max-width: 100%;
    }
}