/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: "Poppins", sans-serif;
    color: #000000;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Global Container for Consistent Spacing */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Global Section Container - Use this for all sections */
.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Global Section Padding */
.section-padding {
    padding-bottom: 3rem;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.line-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.line-bg-1 {
    background: repeating-linear-gradient(0deg, transparent 0px, transparent 80px, #4dc3b4 80px, #4dc3b4 83px);
}

.line-bg-2 {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 80px, rgba(77, 195, 180, 0.5) 80px, rgba(77, 195, 180, 0.5) 83px);
}

.line-bg-3 {
    background: repeating-linear-gradient(45deg, transparent 0px, transparent 100px, rgba(145, 158, 171, 0.24) 100px, rgba(145, 158, 171, 0.24) 103px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 100px 0px rgba(127, 207, 197, 0.5);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 26px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(52, 59, 155, 1) 0%, rgba(18, 20, 53, 1) 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1440px;
    margin: 0 auto;
    padding: 175px 80px 0;
    min-height: 80vh;
    width: 100%;
}

.hero-left {
    flex: 1;
    max-width: 684px;
}

.hero-text {
    max-width: 684px;
    width: 100%;
}

.mission-label {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1em;
    letter-spacing: 2.083333333333333%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 50px;
}

.hero-main-title {
    margin-bottom: 40px;
}

.title-line {
    display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 75px;
    line-height: 1.1333333333333333em;
    color: #4dc3b4;
}

.title-line:nth-child(2) {
    line-height: 1.0666666666666667em;
}

.title-line:nth-child(3) {
    line-height: 1.0666666666666667em;
}

.hero-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 3.2em;
    text-transform: uppercase;
    color: #d8dee8;
    margin-bottom: 50px;
}

.hero-description-normal {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 3.2em;
    text-transform: none;
    color: #d8dee8;
    margin-bottom: 50px;
}

.hero-cta-btn {
    background: transparent;
    border: 1px solid #ffffff;
    padding: 11px 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: #ffffff;
    color: #000000;
}

.hero-right {
    flex: 0 0 auto;
    margin-left: 0;
}

.hero-image-container {
    position: relative;
    width: 385.75px;
    height: 502.25px;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(77, 195, 180, 0.5) 0%, rgba(53, 62, 157, 1) 42%, rgba(26, 36, 84, 1) 92%);
    opacity: 0.8;
}

/* Solutions Section */
.solutions-section {
    position: relative;
    z-index: 3;
    background: #011437;
    padding: 100px 0;
    margin-top: -200px;
}

.solutions-background {
    position: absolute;
    top: 0;
    left: 144px;
    width: 1440px;
    height: 100%;
    background: #011437;
}

.solutions-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.logo-circle {
    width: 450px;
    height: 450px;
    background: #011437;
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0px 10px 41px 27px rgba(1, 20, 55, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    width: 352px;
    height: 352px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.solutions-buttons {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    gap: 100px;
}

.solutions-outline-buttons,
.solutions-filled-buttons {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.solution-btn {
    padding: 11px 16px;
    border-radius: 100px;
    font-family: "Public Sans", sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.7333333333333334em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-btn.outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.solution-btn.outline:hover {
    background: #ffffff;
    color: #000000;
}

.solution-btn.filled {
    background: linear-gradient(90deg, rgba(180, 238, 236, 1) 0%, rgba(253, 252, 245, 1) 100%);
    border: none;
    color: #000000;
}

.solution-btn.filled:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Vision Section */
.vision-section {
    background: #ffffff;
}

.vision-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 96px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.vision-text {
    flex: 0 0 501px;
}

.section-label {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5em;
    color: #555555;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plus-icon {
    font-size: 20px;
    font-weight: 400;
    color: #475467;
}

.section-label.center {
    text-align: center !important;
    font-size: 24px;
    line-height: 1.1em;
    display: block;
    width: 100%;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.375em;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 32px;
}

.section-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.4em;
    color: #475467;
}

.vision-images {
    position: relative;
    width: 601px;
    height: 437px;
}

.vision-img-1 {
    position: absolute;
    top: 9px;
    right: 0;
    width: 270px;
    height: 360px;
    border: 5px solid #ffffff;
    object-fit: cover;
}

.vision-img-2 {
    position: absolute;
    bottom: 0;
    left: 33px;
    width: 347px;
    height: 262px;
    border: 4px solid #ffffff;
    object-fit: cover;
}

/* Business Section */
.business-section {
    background: #ffffff;
    padding: 80px 0;
}

.business-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    position: relative;
}

.business-images {
    position: relative;
    flex: 1;
    height: 420px;
    flex-shrink: 1;
    display: flex;
    align-items: center;
}

.business-group-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-main-title {
    position: absolute;
    top: 35px;
    left: 35px;
    width: 214px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 1.2857142857142858em;
    text-transform: capitalize;
    color: #ffffff;
}

.business-content {
    flex: 0 0 501px;
    min-width: 0;
    padding: 32px 0;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.business-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(77, 195, 180, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(77, 195, 180, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: 0 0, 0 0;
    opacity: 0.3;
    pointer-events: none;
}

.business-info {
    background: #ffffff;
    padding: 25px 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.business-brand {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    width: auto;
    height: 60.66px;
    justify-content: flex-start;
}

.brand-logo {
    width: 60.67px;
    height: 60.66px;
    margin-right: 14.43px;
}

.brand-name {
    font-family: "ADLaM Display", sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.3046875em;
    color: #343b9b;
}

.business-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4em;
    color: #1c252e;
    margin-bottom: 25px;
    width: 80%;
    max-width: 100%;
    text-align: left;
}

.business-cta-btn {
    background: #343b9b;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.business-cta-btn:hover {
    background: #2a3185;
    transform: translateY(-1px);
}

/* Mission Section */
.mission-section {
    position: relative;
    background: url("assets/images/impact-screenshot-4d3a2f.png") center/cover no-repeat;
    box-shadow: 0px 4px 10px 0px rgba(0, 64, 184, 1);
    margin: 80px 0;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(32, 39, 94, 0.6) 0%, rgba(53, 62, 157, 0.4) 44%, rgba(77, 195, 180, 0.4) 88%);
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background: #ffffff;
    gap: 40px;
    padding: 60px 80px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.mission-text {
    flex: 0 0 50%;
    max-width: 50%;
}

.mission-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #222222;
    margin-top: 24px;
    margin-bottom: 0;
    word-break: keep-all;
    white-space: nowrap;
}

.mission-description {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 40px 60px 40px 20px;
}

.mission-description p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    color: #666666;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
    padding: 0;
}

/* Impact Section */
.impact-section {
    background: #ffffff;
}

.impact-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 80px;
}

.impact-content .section-label.center {
    text-align: center !important;
    display: block;
    width: 100%;
}

.impact-description {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1rem;
    text-align: center;
    color: #21272a;
    max-width: 1194px;
    margin: 12px 0 0 0;
}

.impact-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.impact-feature {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.impact-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(77, 195, 180, 0.3) 0%, rgba(53, 62, 157, 0.5) 42%, rgba(26, 36, 84, 0.7) 92%);
    z-index: 1;
    pointer-events: none;
}

.impact-feature:hover {
    transform: translateY(-5px);
}

.impact-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.impact-full-width {
    grid-column: 1 / -1;
    height: 500px;
}

.impact-feature-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 0;
    max-width: 300px;
    min-height: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
}

.impact-feature-content h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5em;
    color: #000000;
    margin-bottom: 16px;
}

.impact-feature-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
}

/* Mobile Carousel Styles */
.impact-carousel-mobile {
    display: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin: 0;
    padding: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4dc3b4;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(77, 195, 180, 0.7);
}

/* Additional carousel improvements */
.carousel-track {
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

/* Ensure carousel is only visible on mobile */
@media (min-width: 769px) {
    .impact-carousel-mobile {
        display: none !important;
    }
    
    .impact-features {
        display: grid !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-slide .impact-feature {
        height: 350px;
    }
    
    .carousel-slide .impact-img {
        height: 350px;
    }
    
    .carousel-slide .impact-feature-content {
        padding: 12px;
        max-width: 240px;
        min-height: 200px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .carousel-slide .impact-feature-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .carousel-slide .impact-feature-content p {
        font-size: 14px;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background: linear-gradient(90deg, rgba(52, 59, 155, 1) 0%, rgba(58, 125, 201, 1) 53%, rgba(77, 195, 180, 1) 100%);
    padding: 80px 0;
}


.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 96px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.contact-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.2em;
    letter-spacing: -2%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 32px;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-label {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 10%;
    color: #f2f5f9;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-row {
    display: flex;
    gap: 22px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
    margin-bottom: 25px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4285714285714286em;
    color: #ffffff;
}

.form-input,
.form-textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 15px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.form-input {
    height: 50px;
}

.form-textarea {
    height: 131px;
    resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4dc3b4;
    background: rgba(255, 255, 255, 0.15);
}

.form-submit-btn {
    background: #343b9b;
    border: none;
    border-radius: 8px;
    padding: 16px 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5em;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 147px;
    margin-top: 15px;
}

.form-submit-btn:hover {
    background: #2a3185;
    transform: translateY(-1px);
}

/* Footer */
.site-footer {
    background: #ffffff;
    padding: 60px 0 0 0;
}

.site-footer--light {
    background: #ffffff;
}

.footer-top-line {
    height: 3px;
    background: #4dc3b4;
    width: 100%;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 80px;
    width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 0;
}

.col-lg-4,
.col-6,
.col-12,
.col-lg-2,
.col-lg-3 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.offset-lg-1 {
    margin-left: 8.333333%;
}

.gy-4 {
    gap: 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

/* Group legal and contact columns together */
.footer-right-group {
    flex: 0 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left side - Company Information */
.footer-left {
    flex: 0 0 400px;
    text-align: left;
}

/* Middle - Legal */
.footer-legal {
    flex: 0 0 150px;
    text-align: left;
}

/* Right side - Contact */
.footer-contact {
    flex: 0 0 350px;
    text-align: left;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 1rem;
}

.navbar-brand {
    text-decoration: none;
    color: inherit;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.gap-2 {
    gap: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

/* Footer Description */
.footer-description {
    margin: 20px 0;
}

.footer-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bullet-list li {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #1c252e;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.footer-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

/* Social Icons */
.socials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 3rem;
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Footer Head */
.footer-head {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #1c252e;
    margin-bottom: 16px;
}

/* Footer List */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list li a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #1c252e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #4dc3b4;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

/* Left side - Company Information */
.footer-left {
    flex: 0 0 400px;
    text-align: left;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 250px;
    height: 70px;
    margin-bottom: 10px;
}

.footer-description {
    margin: 20px 0;
}

.description-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.description-list li {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #1c252e;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.description-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Middle - Legal */
.footer-legal {
    flex: 0 0 150px;
    text-align: left;
}

.footer-legal h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #1c252e;
    margin-bottom: 16px;
    text-align: left;
}

.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0;
    margin: 0;
}

.footer-legal ul li {
    margin-bottom: -2px;
}

.footer-legal ul li a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #1c252e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal ul li a:hover {
    color: #4dc3b4;
}

/* Right side - Contact */
.footer-contact {
    flex: 0 0 350px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #1c252e;
    margin-bottom: 16px;
    text-align: left;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    max-width: 300px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 0;
}

.contact-icon {
    color: #637381;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

.contact-text {
    flex: 1;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.contact-text .label {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4em;
    color: #637381;
    margin-bottom: 2px;
}

.contact-text .value {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    color: #1c252e;
}

.whatsapp-contact-link {
    text-decoration: none;
    color: inherit;
}

.contact-item p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    color: #1c252e;
    margin: 0;
    text-align: left;
}

.contact-subtitle {
    color: #637381 !important;
    margin-bottom: 2px !important;
    font-size: 12px !important;
}

.info-icon {
    color: #637381;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.footer-bottom {
    text-align: left;
    padding: 20px 0;
    border-top: 1px solid rgba(145, 158, 171, 0.2);
}

.footer-bottom .footer-content {
    padding-top: 0;
    padding-bottom: 0;
}

.footer-bottom p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: #1c252e;
    margin: 0;
}


/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    
    .header-container {
        justify-content: center;
        padding: 15px 20px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    /* Mobile Global Styles */
    .section-padding {
        padding: 20px 0;
    }
    
    .section-container {
        padding: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Mobile Typography */
    .section-label {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Mobile Hero Section */
    .hero {
        min-height: 60vh;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .hero-content {
        padding: 60px 20px 30px;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: auto;
        width: 100%;
        margin: 0;
    }
    
    .hero-text {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-main-title {
        margin-bottom: 20px;
    }
    
    .title-line {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 4px;
        display: block;
        color: #4dc3b4;
        font-weight: 500;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 25px;
        text-transform: none;
        color: #ffffff;
        font-weight: 400;
    }
    
    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 16px;
        width: auto;
        max-width: none;
        border: 1px solid #ffffff;
        background: transparent;
        color: #ffffff;
        border-radius: 0;
        font-weight: 500;
    }
    
    /* Mobile Vision Section */
    .vision-section {
        padding: 20px 0 40px 0;
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        width: 100%;
        margin: 0;
    }
    
    .section-container {
        padding: 0 20px;
        width: 100%;
        margin: 0;
    }
    
    .business-section .section-container {
        padding: 0;
        width: 100%;
        margin: 0;
    }
    
    .vision-content {
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 30px;
        align-items: flex-start;
    }
    
    .vision-text {
        flex: 1;
        max-width: 50%;
        order: 1;
        margin-bottom: 0;
        display: block;
        width: 100%;
    }
    
    .vision-images {
        order: 2;
        flex: 1;
        max-width: 50%;
        height: auto;
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 0;
        clear: both;
    }
    
    .vision-group-img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border: 4px solid #ffffff;
        border-radius: 8px;
        object-fit: cover;
        object-position: center;
    }
    
    .section-label {
        font-size: 14px;
        margin: 0 0 20px 0;
        color: #64748b;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: left;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 24px;
        color: #000000;
        font-weight: 700;
        text-align: left;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.6;
        color: #475467;
        font-weight: 400;
        text-align: left;
        margin-bottom: 0;
    }
    
    /* Mobile Business Section */
    .business-section {
        padding: 20px 0;
        width: 100%;
        margin: 0;
    }
    
    .business-content-wrapper {
        flex-direction: column;
        padding: 0;
        gap: 30px;
        align-items: flex-start;
        width: 100%;
        margin: 0;
    }
    
    .business-images {
        width: 100%;
        height: 200px;
        position: relative;
        order: 1;
        margin-bottom: 20px;
        flex: none;
        margin-left: 0;
        margin-right: 0;
    }
    
    .business-group-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    
    .business-main-title {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        width: 100%;
        font-size: 18px;
        line-height: 1.3;
        text-align: left;
        z-index: 2;
        padding: 0 20px;
    }
    
    .business-content {
        order: 2;
        width: 100%;
        padding: 0;
        flex: none;
    }
    
    .business-info {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .business-brand {
        justify-content: flex-start;
        width: auto;
        margin-bottom: 20px;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    .brand-name {
        font-size: 32px;
    }
    
    .business-description {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        margin-bottom: 20px;
    }
    
    .business-cta-btn {
        width: 100%;
        max-width: 200px;
        margin: 0;
        display: block;
    }
    
    /* Mobile Mission Section */
    .mission-section {
        margin: 20px 0;
        min-height: 250px;
        background-size: cover;
        background-position: center;
        width: 100%;
    }
    
    .mission-content {
        flex-direction: column !important;
        gap: 15px;
        padding: 15px 15px;
        text-align: left;
        margin: 0;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 95%;
    }
    
    .mission-text {
        flex: none;
        max-width: 100%;
    }
    
    .mission-description {
        flex: none;
        max-width: 100%;
        padding: 20px 0;
    }
    
    .mission-title {
        font-size: 18px;
        line-height: 1.3;
        margin-top: 0;
        margin-bottom: 20px;
        text-align: left;
        word-break: keep-all;
        white-space: normal;
    }
    
    .mission-description p {
        font-size: 12px;
        line-height: 1.5;
        text-align: left;
    }
    
    /* Mobile Impact Section */
    .impact-section {
        padding: 20px 0;
        width: 100%;
        margin: 0;
    }
    
    .impact-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .impact-description {
        font-size: 16px;
        line-height: 1.2;
        margin: 15px 0 0 0;
        text-align: center;
    }
    
    /* Hide desktop grid on mobile */
    .impact-features {
        display: none;
    }
    
    /* Show mobile carousel */
    .impact-carousel-mobile {
        display: block;
    }
    
    .carousel-slide .impact-feature {
        position: relative;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0;
        overflow: hidden;
        transition: transform 0.3s ease;
        height: 400px;
    }
    
    .carousel-slide .impact-feature::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(77, 195, 180, 0.3) 0%, rgba(53, 62, 157, 0.5) 42%, rgba(26, 36, 84, 0.7) 92%);
        z-index: 1;
        pointer-events: none;
    }
    
    .carousel-slide .impact-feature:hover {
        transform: translateY(-5px);
    }
    
    .carousel-slide .impact-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }
    
    .carousel-slide .impact-feature-content {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 0;
        max-width: 280px;
        min-height: 200px;
        height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: 2;
    }
    
    .carousel-slide .impact-feature-content h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 1.5em;
        color: #000000;
        margin-bottom: 16px;
    }
    
    .carousel-slide .impact-feature-content p {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5em;
        color: #000000;
    }
    
    /* Mobile Contact Section */
    .contact-section {
        padding: 20px 0;
        width: 100%;
        margin: 0;
    }
    
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        text-align: left;
        align-items: flex-start;
        max-width: 100%;
    }
    
    .contact-info {
        flex: none;
        max-width: 100%;
        text-align: center;
    }
    
    .contact-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .contact-details {
        gap: 10px;
    }
    
    .contact-label {
        font-size: 14px;
    }
    
    .contact-items {
        align-items: flex-start;
        max-width: 100%;
    }
    
    .contact-item {
        font-size: 18px;
        line-height: 1.4;
        justify-content: flex-start;
        text-align: left;
    }
    
    .contact-form {
        max-width: 100%;
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-group:last-of-type {
        margin-bottom: 0;
    }
    
    .form-group.math-challenge {
        margin-bottom: 25px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        border: 2px solid rgba(77, 195, 180, 0.3);
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 12px;
    }
    
    .checkbox-label {
        margin-bottom: 15px;
    }
    
    .form-submit-btn {
        width: 100%;
        max-width: 280px;
        margin: 15px auto 0;
        display: block;
        padding: 14px 20px;
        font-size: 16px;
        font-weight: 700;
        min-height: 48px;
    }
    
    /* Mobile Footer */
    .container {
        padding: 0 20px;
        width: 100%;
        margin: 0;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-left,
    .footer-right-group,
    .footer-legal,
    .footer-contact {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .footer-right-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        width: 200px;
        height: 60px;
    }
    
    .footer-bullet-list li {
        font-size: 13px;
        line-height: 1.4;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .socials {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-head {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-list {
        text-align: center;
    }
    
    .contact-item {
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .contact-text {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-text .label {
        font-size: 11px;
    }
    
    .contact-text .value {
        font-size: 13px;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    /* Mobile Touch Improvements */
    .hero-cta-btn,
    .business-cta-btn,
    .form-submit-btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Enhanced Mobile Form Interactions */
    .form-input:focus,
    .form-textarea:focus {
        transform: scale(1.02);
        box-shadow: 0 0 0 3px rgba(77, 195, 180, 0.2);
    }
    
    .math-challenge:focus-within {
        border-color: rgba(77, 195, 180, 0.6);
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
    }
    
    .checkbox-label:active {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(0.98);
    }
    
    .privacy-checkbox {
        min-width: 20px;
        min-height: 20px;
        margin-top: 2px;
        accent-color: #4dc3b4;
        transform: scale(1.2);
    }
    
    .checkbox-label {
        cursor: pointer;
        user-select: none;
        padding: 16px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
    }
    
    .math-challenge .form-input {
        text-align: center;
        font-weight: 600;
    }
    
    /* Mobile Form Improvements */
    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    /* Mobile User Agreement Text */
    .checkbox-label {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        line-height: 1.5;
        font-size: 14px;
    }
    
    .agreement-text {
        flex: 1;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .checkbox-label a {
        display: inline;
        margin: 0 2px;
        word-break: break-word;
        color: #4dc3b4;
        text-decoration: underline;
    }
    
    .checkbox-label a:hover {
        color: #ffffff;
    }
    
    /* Mobile Math Challenge */
    .math-challenge label {
        font-size: 16px;
        line-height: 1.5;
        word-wrap: break-word;
        white-space: normal;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        text-align: left;
    }
    
    .challenge-text {
        color: #f2f5f9;
        font-size: 16px;
        font-weight: 600;
        text-align: left;
        width: 100%;
    }
    
    .math-question {
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        text-align: left;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }
    
    #mathQuestion {
        font-size: 22px;
        font-weight: 700;
        color: #4dc3b4;
        text-shadow: 0 0 10px rgba(77, 195, 180, 0.3);
        display: inline-block;
    }
    
    .math-challenge .form-input {
        width: 100%;
        margin: 12px 0 0;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 16px;
        min-height: 48px;
        border-radius: 8px;
    }
    
    /* Mobile Image Optimizations */
    .vision-img-1,
    .vision-img-2,
    .impact-img {
        border-radius: 8px;
    }
    
    /* Mobile Spacing Adjustments */
    .business-content-wrapper,
    .mission-content,
    .contact-content {
        gap: 20px;
    }
    
    /* Mobile Button Hover States */
    .hero-cta-btn:active,
    .business-cta-btn:active,
    .form-submit-btn:active {
        transform: scale(0.98);
    }
    
    /* Mobile Scroll Behavior */
    .hero {
        scroll-snap-align: start;
    }
    
    .vision-section,
    .business-section,
    .mission-section,
    .impact-section,
    .contact-section {
        scroll-snap-align: start;
    }
    
    /* Mobile Focus States */
    .form-input:focus,
    .form-textarea:focus {
        outline: 2px solid #4dc3b4;
        outline-offset: 2px;
    }
    
    
    /* Mobile Performance Optimizations */
    .hero-bg-image {
        will-change: transform;
    }
    
    .impact-feature {
        will-change: transform;
    }
    
    /* Mobile Full-Width Business Images */
    .business-images-mobile-full {
        position: relative;
        width: 100%;
        height: 200px;
        order: 1;
        margin-bottom: 20px;
        flex: none;
    }
    
    .business-images-mobile-full .business-group-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .business-images-mobile-full .business-main-title {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        width: calc(100% - 40px);
        font-size: 18px;
        line-height: 1.3;
        text-align: left;
        z-index: 2;
        padding: 0;
    }
    
    .business-content-mobile-padded {
        order: 2;
        width: 100%;
        padding: 0 20px;
        flex: none;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content {
        padding: 50px 15px 30px;
        text-align: left;
        align-items: flex-start;
        width: 100%;
        margin: 0;
    }
    
    .title-line {
        font-size: 32px;
        line-height: 1.1;
        color: #4dc3b4;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 35px;
        color: #ffffff;
    }
    
    .section-container {
        padding: 0 15px;
        width: 100%;
        margin: 0;
    }
    
    .section-title {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .vision-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .vision-text {
        max-width: 100%;
        flex: none;
    }
    
    .vision-images {
        max-width: 100%;
        flex: none;
    }
    
    .vision-group-img {
        max-width: 350px;
    }
    
    .business-main-title {
        font-size: 16px;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .business-description {
        font-size: 14px;
    }
    
    .mission-title {
        font-size: 16px;
        text-align: left;
        word-break: keep-all;
        white-space: normal;
    }
    
    .mission-description p {
        font-size: 11px;
        text-align: left;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-item {
        font-size: 16px;
    }
    
    .footer-logo {
        width: 180px;
        height: 50px;
    }
    
    .footer-bullet-list li {
        font-size: 12px;
    }
    
    .contact-text .value {
        font-size: 12px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 10px;
    }
    
    .hero-cta-btn,
    .business-cta-btn,
    .form-submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Extra Small Mobile - User Agreement */
    .checkbox-label {
        font-size: 13px;
        line-height: 1.4;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .agreement-text {
        width: 100%;
        line-height: 1.3;
    }
    
    .checkbox-label a {
        font-size: 13px;
        margin: 0 2px;
        display: inline;
    }
    
    /* Extra Small Mobile - Math Challenge */
    .math-challenge label {
        font-size: 15px;
        line-height: 1.4;
        gap: 10px;
        align-items: flex-start;
        text-align: left;
    }
    
    .challenge-text {
        font-size: 15px;
        font-weight: 600;
        text-align: left;
        width: 100%;
    }
    
    .math-question {
        font-size: 18px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 6px;
    }
    
    #mathQuestion {
        font-size: 20px;
        font-weight: 700;
    }
    
    .math-challenge .form-input {
        width: 100%;
        font-size: 16px;
        padding: 12px 14px;
        min-height: 44px;
        margin: 12px 0 0;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .container,
    .section-container,
    .header-container,
    .hero-content,
    .business-content-wrapper,
    .mission-content {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .hero-content {
        padding-top: 120px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .title-line {
        font-size: 50px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .vision-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .vision-text {
        max-width: 100%;
        order: 1;
    }
    
    .vision-images {
        order: 2;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .vision-img-1,
    .vision-img-2 {
        position: static;
        width: 60%;
        height: auto;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        font-size: 20px;
    }
    
    .business-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0;
    }
    
    .business-images {
        width: 100%;
        height: 300px;
        order: 1;
        position: relative;
        flex: none;
    }
    
    .business-group-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .business-content {
        order: 2;
        width: 100%;
        padding: 0 20px;
        flex: none;
    }
    
    .business-info {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .business-brand {
        justify-content: center;
    }
    
    .business-description {
        width: 100%;
        max-width: 100%;
    }
    
    .mission-content {
        flex-direction: column !important;
        gap: 20px;
        padding: 40px 20px;
        text-align: left;
        margin: 0;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        width: 95%;
    }
    
    .mission-text {
        max-width: 100%;
    }
    
    .mission-description {
        max-width: 100%;
        padding: 20px 0;
    }
    
    .mission-title {
        font-size: 36px;
    }
    
    .impact-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
        text-align: left;
        max-width: 100%;
    }
    
    .contact-info {
        max-width: 100%;
        text-align: left;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-left,
    .footer-right-group,
    .footer-legal,
    .footer-contact {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .footer-right-group {
        flex-direction: column;
        gap: 20px;
    }
}

/* Desktop Responsive Design */
@media (max-width: 1200px) {
    .container,
    .section-container,
    .header-container,
    .hero-content,
    .business-content-wrapper,
    .mission-content,
    .footer-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-content {
        padding-top: 120px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-main-title {
        font-size: 55px;
    }

    .hero-description {
        font-size: 20px;
    }

    .hero-right {
        margin-left: 0;
    }

    .vision-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        max-height: 60rem;
        width: 100%;
    }

    .vision-text {
        max-width: 100%;
        order: 1;
    }

    .vision-images {
        order: 2;
        width: 100%;
        height: auto;
        min-height: auto;
        margin: 0 auto;
        padding-top: 40px;
    }

    .vision-img-1,
    .vision-img-2 {
        position: static;
        width: 80%;
        height: auto;
        margin: 0 auto 20px;
        display: block;
    }

    .vision-img-2 {
        width: 70%;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 18px;
    }

    .business-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 20px;
        width: 100%;
    }

    .business-images {
        width: 100%;
        height: auto;
        min-height: 250px;
        order: 1;
        position: relative;
        margin-bottom: 20px;
        flex: none;
    }
    
    .business-group-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .business-main-title {
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        color: #ffffff;
        text-align: left;
        margin-top: 0;
        z-index: 2;
        padding: 0 20px;
    }

    .business-content {
        order: 2;
        width: 100%;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: none;
    }

    .business-info {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .business-brand {
        justify-content: center;
        width: auto;
        margin-bottom: 15px;
    }

    .business-description {
        width: 100%;
        max-width: 100%;
    }

    .mission-section {
        /* Adjusted for smaller screens */
        margin: 40px 0;
        background-size: cover;
        background-position: center;
        min-height: 600px;
    }

    .mission-content {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        text-align: left;
        width: 95%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .mission-text {
        max-width: 100%;
        height: auto;
        flex: 0 0 auto;
    }

    .mission-description {
        max-width: 100%;
        height: auto;
        flex: 0 0 auto;
        padding: 20px 0;
    }

    .mission-title {
        font-size: 32px;
        margin-top: 0;
    }

    .mission-description p {
        font-size: 14px;
        line-height: 1.3em;
    }

    .impact-section {
        padding: 80px 0;
    }

    .impact-features {
        grid-template-columns: 1fr;
    }

    .impact-feature-content {
        position: static;
        padding: 15px;
        background: none;
    }

    .impact-img {
        height: 200px;
    }

    .impact-full-width {
        grid-column: auto;
        height: auto;
    }

    
    .contact-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .contact-info {
        max-width: 100%;
        flex: 1;
        min-width: 200px;
        text-align: left;
    }

    .contact-title {
        font-size: 40px;
        text-align: left;
    }

    .contact-items {
        align-items: flex-start;
    }

    .contact-item {
        font-size: 24px;
    }

    .contact-form {
        max-width: 100%;
        min-width: 200px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .form-submit-btn {
        width: 100%;
    }

    .container {
        padding: 0 40px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left,
    .footer-right-group,
    .footer-legal,
    .footer-contact {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .footer-right-group {
        flex-direction: column;
        gap: 20px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-description {
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .footer-head {
        text-align: left;
    }

    .footer-list {
        text-align: left;
    }

    .contact-item {
        justify-content: flex-start;
    }

    .contact-text {
        text-align: left;
    }

    .footer-bottom {
        text-align: center;
    }
}

/* Medium/Small Desktop Screens */
@media (max-width: 1440px) {
    .container,
    .section-container,
    .header-container,
    .hero-content,
    .solutions-buttons,
    .business-content-wrapper,
    .mission-content,
    .footer-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .hero-main-title {
        font-size: 60px;
    }

    .hero-description {
        font-size: 22px;
    }

    .solutions-buttons {
        gap: 50px;
    }

    .solutions-outline-buttons,
    .solutions-filled-buttons {
        gap: 12px;
    }

    .business-content-wrapper {
        padding: 0;
    }

    .mission-content {
        padding: 5rem;
    }

    
    .contact-content {
        padding: 0;
        gap: 40px;
        text-align: left;
        max-width: 100%;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .contact-info {
        /* flex: auto; */
        text-align: left;
    }

    .footer-content {
        padding: 0 40px;
    }

    /* Privacy Consent Checkbox Styling */
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        color: #ffffff;
        cursor: pointer;
        line-height: 1.4;
    }

    .privacy-checkbox {
        margin: 0;
        margin-top: 2px;
    }

    .checkbox-label a {
        color: #4dc3b4;
        text-decoration: underline;
    }

    .checkbox-label a:hover {
        color: #ffffff;
    }

    /* Enhanced Form Validation Styles - Add to your existing styles.css */

/* Required field indicator */
.form-group label.required::after {
    content: ' *';
    color: #ff6b6b;
}

/* Math challenge specific required indicator */
.math-challenge label.required::after {
    content: '';
}

.math-challenge .math-question::after {
    content: ' *';
    color: #ff6b6b;
    font-weight: 700;
}

/* Validation States */
.form-input.error,
.form-textarea.error {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.form-input.valid,
.form-textarea.valid {
    border-color: #4dc3b4;
    background: rgba(77, 195, 180, 0.1);
}

/* Error Messages */
.error-message {
    color: #ff6b6b;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    margin-top: 4px;
    display: none;
    line-height: 1.4;
}

/* Success and Error Summary Messages */
.success-message {
    background: rgba(77, 195, 180, 0.2);
    border: 1px solid #4dc3b4;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-family: "Poppins", sans-serif;
}

.error-summary {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    font-family: "Poppins", sans-serif;
}

/* Disabled Submit Button */
.form-submit-btn:disabled {
    background: #6b7280;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn:hover:not(:disabled) {
    background: #2a3185;
    transform: translateY(-1px);
}

/* Math Challenge Styling */
.math-challenge {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(77, 195, 180, 0.3);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.math-challenge:hover {
    border-color: rgba(77, 195, 180, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.math-challenge label {
    color: #f2f5f9;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
}

.challenge-text {
    color: #f2f5f9;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    width: 100%;
}

.math-question {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

#mathQuestion {
    font-weight: 700;
    color: #4dc3b4;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(77, 195, 180, 0.3);
    display: inline-block;
}

.math-challenge .form-input {
    margin: 16px 0 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .math-challenge {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .math-challenge label {
        font-size: 14px;
        gap: 10px;
        align-items: flex-start;
        text-align: left;
    }
    
    .challenge-text {
        font-size: 14px;
        text-align: left;
    }
    
    .math-question {
        font-size: 16px;
        justify-content: flex-start;
    }
    
    #mathQuestion {
        font-size: 18px;
    }
    
    .math-challenge .form-input {
        width: 100%;
        text-align: left;
    }
    
    .success-message,
    .error-summary {
        padding: 12px;
        font-size: 14px;
    }
}
}

