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

html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

main {
    overflow-y: clip;
}

.reveal-on-scroll {
    opacity: 0;
    transform: none;
    transition: opacity 0.25s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    animation: revealUp 0.7s ease both;
    animation-delay: var(--reveal-delay, 0ms);
}

@keyframes revealUp {
    from {
        transform: translateY(26px);
    }
    to {
        transform: translateY(0);
    }
}

.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy.fade-in {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .lazy {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.logo-image {
    height: 30px; 
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;    
}

.nav-link {
    color: #111827;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.25s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-btn {
    background-color: #3B82F6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.hero {
    background-color: white;
    padding: 6rem 2rem;
    color: #374151;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 480px;
    object-fit: contain;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
    color: #111827;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.highlight {
    color: #3B82F6;
}

.hero-text {
    font-size: 20px;
    color: #000000;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: inline-block;
    background-color: #2A7AF6;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-cta span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.hero-cta:hover span {
    transform: scaleX(1.5);
}

.orbit-highlight {
    background-color: #3d485d;
    height: 421px;
    padding: 2rem;
    display: flex;
    align-items: center;
}

.orbit-highlight-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.orbit-highlight h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.orbit-highlight p {
    font-size: 18px;
    line-height: 1.5;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.orbit-btn {
    display: inline-block;
    background-color: #2A7AF6;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.orbit-btn:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.invoices-work {
    background-color: #f1f3f5;
    padding: 5rem 2rem;
}

.invoices-work-container {
    max-width: 1080px;
    margin: 0 auto;
}

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

.invoices-work-header h2 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.invoices-work-header p {
    font-size: 20px;
    color: #1f2937;
}

.invoices-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 320px));
    gap: 1.5rem;
    justify-content: center;
}

.invoice-work-card {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.invoice-work-media {
    background-color: #e5e7eb;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invoice-work-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.invoice-work-kicker {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.invoice-work-body h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.invoice-work-body p {
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 1rem;
}

.features {
    background-color: #f8f9fb;
    padding: 5.5rem 2rem 6.5rem;
}

.features-container {
    max-width: 1120px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.features-header h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.1rem;
}

.features-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

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

.how-step.reverse .how-visual {
    order: 2;
}

.how-step.reverse .how-copy {
    order: 1;
}

.how-visual {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-number {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 58px;
    font-weight: 700;
    color: #d1d5db;
    z-index: 1;
}

.how-step-orb {
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    left: 36px;
    bottom: -8px;
    z-index: 0;
}

.orb-pink {
    background: rgba(244, 176, 178, 0.38);
}

.orb-blue {
    background: rgba(189, 196, 230, 0.35);
}

.orb-yellow {
    background: rgba(233, 213, 143, 0.36);
}

.how-card {
    background-color: #ffffff;
    border: 1px solid #eceef2;
    box-shadow: 0 18px 24px rgba(17, 24, 39, 0.12);
    position: relative;
    z-index: 2;
}

.account-card {
    width: 330px;
    padding: 1.5rem 1.7rem;
}

.account-card h3 {
    font-size: 33px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.1rem;
}

.account-card .line {
    display: block;
    height: 8px;
    border-radius: 999px;
    background-color: #eef0f3;
    margin-bottom: 0.55rem;
}

.account-card .line.short {
    width: 78%;
}

.account-card button {
    margin-top: 1rem;
    border: none;
    background-color: #2A7AF6;
    color: #ffffff;
    padding: 0.5rem 1.05rem;
    border-radius: 2px;
    font-size: 12px;
    cursor: default;
}

.send-card {
    width: 330px;
    padding: 1.05rem 1.15rem 1.2rem;
}

.send-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.85rem;
}

.invoice-send-stage {
    position: relative;
    min-height: 142px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef2ff 100%);
    border: 1px solid #d7def9;
    border-radius: 10px;
    padding: 0.9rem;
    overflow: visible;
}

.invoice-mockup {
    width: 210px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
    padding: 0.75rem 0.8rem;
}

.invoice-mockup-top {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.invoice-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #3b82f6;
}

.invoice-title-mini {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
}

.invoice-status {
    margin-left: auto;
    background-color: #2A7AF6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-size: 10px;
    font-weight: 700;
}

.invoice-mockup-body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.mock-line {
    display: block;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e5e7eb, #cbd5e1);
}

.mock-line.wide {
    width: 92%;
}

.mock-line.medium {
    width: 68%;
}

.invoice-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.35rem;
    padding-top: 0.55rem;
    border-top: 1px dashed #dbe3ef;
    font-size: 11px;
    color: #64748b;
}

.invoice-total-row strong {
    color: #111827;
    font-size: 13px;
}



.get-paid-card {
    position: relative;
    width: 330px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 235px;
    background: #ffffff;
}

.get-paid-orb {
    width: 210px;
    height: 210px;
    left: 36px;
    bottom: -8px;
    opacity: 0.5;
    background: rgba(145, 108, 18, 0.5);
    filter: none;
}

.get-paid-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 290px;
    height: auto;
}

.how-copy {
    max-width: 370px;
}

.how-copy h3 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.how-copy p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

.how-it-works {
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 4rem; 
}

/* Update selector to include all bubbles */
.how-it-works::before,
.how-it-works::after,
.how-it-works .bubble-1,
.how-it-works .bubble-2,
.how-it-works .bubble-3,
.how-it-works .bubble-4 {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    filter: blur(50px);
}

.how-it-works::before {
    width: 300px;
    height: 300px;
    background: #A855F7;
    top: 10%;
    left: -100px;
}

.how-it-works::after {
    width: 250px;
    height: 250px;
    background: #22C55E;
    bottom: 15%;
    right: -80px;
}

.how-it-works .bubble-1 {
    width: 200px;
    height: 200px;
    background: #3B82F6;
    top: 40%;
    right: 15%;
}

.how-it-works .bubble-2 {
    width: 180px;
    height: 180px;
    background: #EC4899;
    bottom: 30%;
    left: 20%;
}


.how-it-works .bubble-3 {
    width: 220px;
    height: 220px;
    background: #6366F1;
    top: 60%;
    left: 5%;
}

.how-it-works .bubble-4 {
    width: 280px;
    height: 280px;
    background: #14B8A6;
    top: 20%;
    right: 10%;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-container h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem; 
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.step-content {
    max-width: 450px;
}


.step-item:nth-child(odd) .step-content {
    margin-left: auto;
    padding-right: 2rem;
}


.step-item:nth-child(even) .step-content {
    grid-column: 2;
    grid-row: 1;
    padding-left: 2rem;
}

.step-content h3 {
    font-size: 34px;
    font-weight: 700;      
    line-height: 40px;     
    color: #111827;
    margin-bottom: 1.5rem;
}

.step-content p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 2rem;  
    line-height: 1.5;
}

.step-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.step-image img {
    width: 450px; 
    height: auto;
    border-radius: 8px;
}

.step-btn {
    display: inline-block;
    background-color: #2A7AF6;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;  
}

.step-btn:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.step-item:nth-child(even) {
    direction: initial;
    grid-template-columns: 1fr 1fr;
}

.step-item:nth-child(even) .step-content {
    grid-column: 2;
    grid-row: 1;
}

.step-item:nth-child(even) .step-image {
    grid-column: 1;
    grid-row: 1;
}

.testimonials {
    background-color: #ffffff;
    padding: 5rem 0; 
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #111827;
}

.carousel-wrapper {
    background-color: #374151;
    border-radius: 12px;
    padding: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    position: relative; 
    width: 100%;
    padding: 2rem;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: none; 
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    display: block; 
}

.quote-icon {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.9); 
    text-align: center;
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 14px;
    color: #9CA3AF;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none; 
    z-index: 10; 
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto; 
    position: relative; 
    z-index: 20; 
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-btn.prev::before {
    content: '←';
}

.carousel-btn.next::before {
    content: '→';
}

.testimonials::before,
.testimonials::after {
    content: none;
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3B82F6, #2563EB);
    opacity: 0.1;
    filter: blur(80px);
    animation: float 8s infinite ease-in-out;
}

.testimonials::before {
    left: -150px;
    top: 20%;
}

.testimonials::after {
    right: -150px;
    bottom: 20%;
    animation-delay: -4s;
}

.cta-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.cta-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-container p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn.primary {
    background-color: #2A7AF6;
    color: white;
}

.cta-btn.primary span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-btn.primary:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.cta-btn.primary:hover span {
    transform: scaleX(1.5);
}

.cta-btn.secondary {
    background-color: #374151;
    color: white;
    border: none;
}

.cta-btn.secondary:hover {
    background-color: #2f3a4d;
    transform: translateY(-2px);
}

.footer {
    background-color: #374151;
    padding: 5rem 2rem 2rem;
    color: white;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    row-gap: 1.5rem;
}

.footer-brand {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

/* hide the footer-brand social icons on desktop (we show footer-bottom social there) */
.footer-brand .footer-social {
    display: none;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-address {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 260px;
}

.footer-brand p {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-links h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(156, 163, 175, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

.social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); 
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-social a:hover .social-icon {
    opacity: 1;
}

.about-hero {
    background-color: white;
    padding: 6rem 2rem 3rem; /* Reduced top padding from 8rem to 6rem */
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.about-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem; /* Reduced from 3rem to 2rem */
    line-height: 1.2;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6; /* Reduced from 1.8 to 1.6 */
    color: #6B7280;
    margin-bottom: 1.5rem; /* Reduced from 2rem to 1.5rem */
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-mission {
    background-color: white;
    padding: 3rem 2rem; /* Reduced top padding from 6rem to 3rem */
}

.mission-container {
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto;
}

.mission-content {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 1rem; /* Reduced from 2rem to 1rem for closer spacing */
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.mission-text {
    background-color: #f8f9fb;
    padding: 4rem;
    border-radius: 16px;
    max-width: none;
    height: 400px; /* Reduced from 550px */
}

.mission-text h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2rem;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.mission-image {
    width: 100%;
    height: 400px; /* Reduced from 550px to match mission-text */
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 16px;
}

.mission-btn {
    display: inline-block;
    background-color: #2A7AF6;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mission-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.mission-btn:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.mission-btn:hover span {
    transform: scaleX(1.5);
}

.achievements {
    background-color: white;
    padding: 5rem 2rem;
}

.achievements-header {
    text-align: center;
    margin-bottom: 2.5rem; /* Reduced from 4rem */
}

.achievements-header h2 {
    font-size: 19.2px;
    line-height: 30.72px;
    font-weight: 400;
    color: #2a7af5;
    text-transform: uppercase;
    text-align: center;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.achievement-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Remove the blue line */
.achievement-card::before {
    display: none;
}

/* Different background colors for each card */
.achievement-card:nth-child(1) {
    background-color: #EEF2FF;
}
.achievement-card:nth-child(1) .achievement-title {
    color: #4F46E5;
}

/* Second card - Green theme */
.achievement-card:nth-child(2) {
    background-color: #F0FDF4;
}
.achievement-card:nth-child(2) .achievement-title {
    color: #16A34A;
}

/* Third card - Blue theme */
.achievement-card:nth-child(3) {
    background-color: #EFF6FF;
}
.achievement-card:nth-child(3) .achievement-title {
    color: #2563EB;
}

/* Fourth card - Purple theme */
.achievement-card:nth-child(4) {
    background-color: #F5F3FF;
}
.achievement-card:nth-child(4) .achievement-title {
    color: #7C3AED;
}

.achievement-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
}

.achievement-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.about-vision {
    background: linear-gradient(
        to bottom,
        white 50%,
        #f8f9fb 50%
    );
    padding: 3rem 2rem;
}

.vision-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vision-box {
    background-color: #374151;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    height: 450px;
}

.vision-image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image img {
    width: 100%;
    height: auto;
}

.vision-text {
    color: white;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Changed to make spacing consistent */
    padding-top: 2rem;
}

.vision-text h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0;
}

.vision-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #E5E7EB;
    margin-bottom: 0;
}

.vision-btn {
    display: inline-block;
    background-color: #2A7AF6;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: fit-content;
}

.vision-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.vision-btn:hover {
    background-color: #2563EB;
    transform: translateY(-2px);
}

.vision-btn:hover span {
    transform: scaleX(1.5);
}