/* Apply Montserrat font to all elements */
* {
    font-family: 'Montserrat', sans-serif;
}

body {
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Header Styles */
.header-section {
    background-color: #e7f8ff;
    padding: 1.25rem 0;
    border-bottom: none;
    position: relative;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50 !important;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    margin-left: auto;
}

/* Hamburger Menu Styles */
.navbar-toggler {
    display: none !important;
    border: none;
    padding: 0.5rem;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    width: 40px;
    height: 40px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    margin: 0 auto;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    background-color: #4a90e2;
    height: 3px;
    width: 30px;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.nav-link {
    color: #4a90e2 !important;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
    font-size: 0.95rem;
    background-color: transparent;
    border: none;
}

.nav-link:hover {
    color: #357abd !important;
}

.nav-about {
    color: #4a90e2 !important;
}

.nav-about:hover {
    color: #357abd !important;
}

.btn-signup {
    background-color: transparent !important;
    color: #4a90e2 !important;
    border: 2px solid #4a90e2;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-signup:hover {
    background-color: transparent !important;
    color: #357abd !important;
    border-color: #357abd;
}

/* Hero Section Styles */
.hero-section {
    background-image: linear-gradient(#e7f8ff, rgba(231, 248, 255, 0));
    padding: 2rem 0 0rem;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    margin-top: -6rem;
}

/* Wave Background - Positioned behind the image */
.wave-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.wave-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 80%;
    height: auto;
    animation: rotateWave 20s linear infinite;
    transform-origin: center center;
}

@keyframes rotateWave {
    from {
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
    }
}

/* Decorative Circles */
.decorative-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    filter: blur(40px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    background: rgba(74, 144, 226, 0.15);
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 25%;
    background: rgba(78, 205, 196, 0.1);
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 70%;
    right: 10%;
    background: rgba(74, 144, 226, 0.12);
}

.hero-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.8px;
    padding-right: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 400;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.hero-subtitle strong {
    font-weight: 700;
    color: #1a1a1a;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    width: 50%;
}

.btn-doctor,
.btn-industry {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid;
    border-radius: 12px;
    background-color: #ffffff;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    text-align: center;
}

.btn-doctor {
    border-color: #4a90e2;
    color: #4a90e2;
}

.btn-doctor.active {
    background-color: #ffffff;
    color: #4a90e2;
    border-color: #4a90e2;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.2);
}

.btn-industry {
    border-color: #4ecdc4;
    color: #4ecdc4;
}

.btn-industry.active {
    background-color: #ffffff;
    color: #4ecdc4;
    border-color: #4ecdc4;
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.2);
}

.btn-doctor:hover,
.btn-industry:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    z-index: 2;
    min-height: 600px;
}

/* Hero Content Carousel */
.hero-content-carousel {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.hero-title-item {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.hero-title-item.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Hero Image Carousel */
.hero-image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-item {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
    padding: 0;
}

.hero-image-item.active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    z-index: 2;
    padding: 0;
}

.hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 650px;
    border-radius: 30px;
    box-shadow: inset 0 0 25px 50px rgba(0,0,0,0.15);
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
    display: block;
    position: relative;
    z-index: 3;
    border: 6px solid #ffffff;
    background-color: #ffffff;
    padding: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 0.5rem;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4a90e2;
    opacity: 0.3;
    border: none;
    margin: 0 0.25rem;
    transition: all 0.3s;
    padding: 0;
    text-indent: 0;
    cursor: pointer;
}

.carousel-indicators .carousel-indicator.active {
    opacity: 1;
    width: 24px;
    border-radius: 12px;
    background-color: #4a90e2;
}

/* Features Section */
.features-section {
    background-color: #e7f8ff;
    border-top: none;
}

.feature-item {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #e7f8ff;
    border-radius: 10px;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: -28px;
}

.feature-item h5 {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.app-store-badges {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: flex-end;
    justify-content: center;
}

.app-badge {
    display: inline-block;
}

.app-badge img {
    height: 35px;
    width: auto;
    transition: transform 0.3s;
    filter: none;
}

.app-badge:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
/* Tablet Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0 0rem;
        padding-top: 80px;
        margin-top: -5rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
    }
    
    .btn-doctor,
    .btn-industry {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features-section {
        padding: 2.5rem 0;
    }
    
    .feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-item h5 {
        font-size: 0.95rem;
    }
    
    .app-store-badges {
        margin-top: 2rem;
        justify-content: center;
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        background-color: #e7f8ff;
        padding: 1rem;
        border-radius: 5px;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: left;
    }
    
    .btn-signup {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem;
        width: auto;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        padding-right: 0;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding: 1.5rem 0 0rem;
        padding-top: 60px;
        margin-top: -4rem;
        min-height: auto;
    }
    
    .hero-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .container {
        order: 1;
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .row {
        flex-direction: column;
        order: 1;
    }
    
    .hero-section .col-lg-7 {
        order: 1;
        display: contents;
    }
    
    .hero-section .col-lg-5 {
        order: 2;
    }
    
    .hero-content-carousel {
        order: 1;
        margin-bottom: 1rem;
        padding: 2rem 2rem 0rem 2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 1.5rem;
        min-height: 400px;
        margin-bottom: 1.5rem;
        order: 2;
    }
    
    .hero-buttons {
        order: 3;
        flex-direction: row;
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 2rem;
        width: 100%;
    }
    
    .btn-doctor,
    .btn-industry {
        width: 100%;
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-height: 500px;
    }
    
    .wave-svg {
        width: 70%;
        opacity: 0.3;
    }
    
    .hero-section {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .container {
        order: 1;
    }
    
    .carousel-indicators {
        bottom: auto;
        position: relative;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
        transform: none;
        left: auto;
        order: 2;
    }
    
    .features-section {
        padding: 1.5rem 0;
    }
    
    .features-section .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .features-section .row {
        margin: 0;
        display: flex;
        flex-wrap: nowrap;
    }
    
    .features-section .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .features-section .col-lg-3 {
        display: none;
    }
    
    .features-section .col-md-4 {
        flex: 1 1 33.333%;
        max-width: 33.333%;
        padding: 0.25rem;
    }
    
    .feature-item {
        text-align: left;
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.5rem 0.25rem;
        margin-bottom: 0;
        justify-content: flex-start;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .feature-item h5 {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .app-store-badges {
        display: none !important;
    }
    
    .app-store-badges {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .app-badge img {
        height: 40px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        background-color: #e7f8ff;
        padding: 1rem;
        border-radius: 5px;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: left;
    }
    
    .btn-signup {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.95rem;
        width: auto;
        text-align: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .header-section {
        padding: 1rem 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding-top: 50px;
        margin-top: -3rem;
    }
    
    .navbar-nav {
        gap: 0.75rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem !important;
    }
    
    .btn-signup {
        padding: 0.3rem 0.9rem !important;
        font-size: 0.8rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .features-section .col-md-4 {
        padding: 0.15rem;
    }
    
    .feature-item {
        padding: 0.4rem 0.15rem;
        gap: 0.4rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
    }
    
    .feature-item h5 {
        font-size: 0.75rem;
    }
    
    .app-badge img {
        height: 35px;
    }
}

/* How it Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
}

.how-it-works-section.doctors-section {
    background-color: #0f172a;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(''); /* Placeholder for background image */
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
    z-index: 2;
}

.step-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-connector {
    flex: 1;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    max-width: 80px;
    min-width: 40px;
    position: relative;
    z-index: 1;
}

.how-it-works-section.industry-section .step-connector {
    border-top-color: rgba(74, 144, 226, 0.3);
}

.step-number {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.5;
}

.cta-button-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-cta {
    background: linear-gradient(135deg, #4a90e2 0%, #4ecdc4 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #357abd 0%, #3db8ad 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.how-it-works-section.industry-section {
    background-color: #ffffff;
}

.how-it-works-section.industry-section .section-title {
    background: radial-gradient(49.12% 12413.08% at 50% 50%, #296aab 0, #0d1b57 45.83%, #000813 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.how-it-works-section.industry-section .step-number {
    color: #6c757d;
    font-weight: 500;
}

.how-it-works-section.industry-section .step-content {
    color: #4a90e2;
    font-weight: 500;
}

.how-it-works-section.industry-section .step-connector {
    border-top-color: rgba(74, 144, 226, 0.3);
}

/* Smartest Way Section */
.smartest-way-section {
    padding: 4rem 0;
    background-color: #0f172a;
    position: relative;
}

.smartest-way-section .section-title {
    color: #00d4ff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0;
}

.benefit-icon {
    display: none;
}

.benefit-text {
    font-weight: 400;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.6;
}

.smartest-way-image-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.smartest-way-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 2rem;
}

.smartest-way-app-badges {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.smartest-way-app-badges .app-badge {
    display: inline-block;
}

.smartest-way-app-badges .app-badge img {
    height: 45px;
    width: auto;
}

/* Footer Section */
.footer-section {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content .footer-brand {
    flex: 0 0 auto;
}

.footer-content .footer-links {
    flex: 1 1 auto;
    justify-content: flex-end;
}

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

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #4a90e2;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #b8d4e3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #4a90e2;
    transform: translateY(-2px);
    color: #ffffff;
}

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

.footer-copyright {
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: lowercase;
}

/* About Us Page Styles */
.about-section {
    padding: 4rem 0;
}

/* Tablet Styles for About Us */
@media (max-width: 992px) {
    .about-section {
        padding: 3rem 0;
    }
    
    .about-section-title {
        font-size: 2.2rem;
    }
    
    .problem-section .about-section-text,
    .solution-section .about-section-text {
        font-size: 1.5rem;
        line-height: 1.8;
        padding: 25px 2rem 10px;
    }
    
    .inspiration-intro,
    .inspiration-intro-second {
        font-size: 1.3rem;
        line-height: 1.8;
        padding: 0 2rem;
    }
    
    .key-attributes-container {
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .key-attribute-item {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .why-list li {
        font-size: 1.5rem;
        line-height: 1.8;
        padding: 25px 2rem 10px;
    }
    
    .app-store-gradient-top,
    .app-store-gradient-bottom {
        height: 100px;
    }
}

.problem-section {
    background: linear-gradient(90.22deg, #278791 0.12%, #3e6190 99.75%);
    color: #ffffff;
}

.solution-section {
    background: linear-gradient(90.22deg, #278791 0.12%, #3e6190 99.75%);
    color: #ffffff;
}

.why-section {
    background: linear-gradient(90.22deg, #278791 0.12%, #3e6190 99.75%);
    color: #ffffff;
}

.inspiration-section {
    background-color: #ffffff;
    color: #1a1a1a;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: inherit;
    letter-spacing: -0.5px;
}

.problem-section .about-section-title,
.solution-section .about-section-title,
.why-section .about-section-title {
    color: #ffffff;
}

.inspiration-section .about-section-title {
    color: #278791;
}

.about-section-text {
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-weight: 400;
}

.problem-section .about-section-text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    padding: 30px 180px 10px;
    max-width: none;
    margin: 0;
}

.solution-section .about-section-text {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    padding: 30px 0px 10px;
    max-width: none;
    margin: 0;
}

.solution-section .about-section-text strong {
    font-weight: 700;
}

.inspiration-intro {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #3e6290;
    /* max-width: 900px; */
    margin: 0 auto 1.5rem;
}

.inspiration-intro-second {
    padding-top: 28px;
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #3e6290;
}

.inspiration-intro strong {
    font-weight: 600;
    color: #3e6290;
}

.key-attributes-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.key-attributes-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.key-attribute-item {
    flex: 0 0 calc(20% - 2.4rem);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.key-attribute-icon-card {
    background: #f0fff9;
    box-shadow: inset -3px -8px 22px rgba(62, 98, 144, 0.2);
    border-radius: 10px;
    height: 190px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.key-attribute-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.key-attribute-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.key-attribute-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

.about-app-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-app-badges .app-badge img {
    height: 50px;
    width: auto;
    filter: brightness(0);
}

/* App Store Section */
.app-store-section {
    position: relative;
    width: 100%;
}

.app-store-gradient-top {
    background: linear-gradient(90.22deg, #278791 0.12%, #3e6190 99.75%);
    width: 100%;
}

.app-store-content {
    background-color: #ffffff;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.app-store-content .about-app-badges {
    margin-top: 0;
}

.app-store-content .about-app-badges .app-badge img {
    height: 60px;
    width: auto;
    filter: none;
}

.app-store-gradient-bottom {
    background: linear-gradient(90.22deg, #278791 0.12%, #3e6190 99.75%);
    width: 100%;
}

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

.why-list li {
    font-family: Montserrat;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 30px 0px 10px;
    position: relative;
    color: #ffffff;
}

@media (max-width: 992px) {
    .problem-section .about-section-text {
        padding: 25px 2rem 10px;
    }
    
    .solution-section .about-section-text {
        padding: 25px 2rem 10px;
    }
    
    .why-list li {
        padding: 25px 2rem 10px;
    }
}

.why-list li::before {
    display: none;
}

.why-list li strong {
    font-weight: 700;
}

/* Responsive adjustments for new sections */
/* Tablet Styles for How it Works */
@media (max-width: 992px) {
    .how-it-works-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .steps-container {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .step-item {
        flex: 0 0 calc(33.333% - 1rem);
        max-width: calc(33.333% - 1rem);
    }
    
    .step-connector {
        display: none;
    }
    
    .btn-cta {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .how-it-works-section {
        padding: 2.5rem 0;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 0;
        padding: 0rem;
        align-items: flex-start;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .step-item {
        max-width: 100%;
        flex: 1 1 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
        width: 100%;
        position: relative;
        padding-bottom: 1.5rem;
    }
    
    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 40px;
        top: 80px;
        width: 2px;
        height: calc(100% - 40px);
        border-left: 2px dashed rgba(255, 255, 255, 0.3);
    }
    
    .how-it-works-section.industry-section .step-item:not(:last-child)::after {
        border-left-color: rgba(74, 144, 226, 0.3);
    }
    
    .step-connector {
        display: none;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-item-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .step-number {
        font-size: 0.85rem;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .how-it-works-section.industry-section .step-number {
        color: #6c757d;
    }
    
    .step-content {
        font-size: 1rem;
        margin: 0;
        color: #ffffff;
    }
    
    .how-it-works-section.industry-section .step-content {
        color: #4a90e2;
    }
    
    .btn-cta {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 300px;
    }
    
    .smartest-way-section {
        padding: 2.5rem 0;
    }
    
    .smartest-way-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .benefits-list {
        margin-bottom: 2rem;
        padding: 0rem 3rem;
    }
    
    .benefit-item {
        font-size: 1rem;
    }
    
    .benefit-text {
        font-size: 1.2rem;
    }
    
    .smartest-way-image-wrapper {
        margin-top: 2rem;
    }
    
    .smartest-way-app-badges {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .smartest-way-app-badges .app-badge img {
        height: 35px;
    }
    
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        margin-bottom: 0.5rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-links {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }

    .feature-icon-img {
        margin-top: 0px;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
    
    .footer-social {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-copyright {
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    /* About Us Page Mobile Styles */
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .problem-section .about-section-text,
    .solution-section .about-section-text {
        font-size: 1.2rem;
        line-height: 1.6;
        padding: 20px 1rem 10px;
    }
    
    .problem-section .about-section-text {
        padding: 20px 1rem 10px;
    }
    
    .inspiration-intro {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .inspiration-intro-second {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 20px 1rem 10px;
    }
    
    .key-attributes-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .key-attributes-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .key-attribute-item {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .key-attribute-icon-card {
        height: 150px;
    }
    
    .key-attribute-icon {
        width: 60px;
        height: 60px;
    }
    
    .key-attribute-text {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .about-app-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-app-badges .app-badge img {
        height: 40px;
    }
    
    .why-list {
        padding: 0 1rem;
    }
    
    .why-list li {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 20px 0 10px;
    }
    
    .app-store-gradient-top,
    .app-store-gradient-bottom {
        height: 80px;
    }
    
    .app-store-content {
        padding: 2rem 0;
        min-height: 150px;
    }
    
    .app-store-content .about-app-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .app-store-content .about-app-badges .app-badge img {
        height: 45px;
    }
}