* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    width: 100%;
    padding: 24px 120px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 126px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}

.logo-text {
    color: #171717;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: 'Manrope', sans-serif;
}

/* Navigation Styles */
.nav-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding-bottom: 4px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover {
    border-bottom-color: #d1d5db;
}

.nav-item.active {
    border-bottom-color: #00CED1;
}

.nav-link {
    font-size: 16px;
    line-height: 24px;
    color: #868686;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item:hover .nav-link {
    color: #404040;
}

.nav-item.active .nav-link {
    color: #171717;
    font-weight: 700;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #171717;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 256px;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mobile-menu-title {
    font-size: 18px;
    font-weight: 700;
    color: #171717;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #171717;
    cursor: pointer;
    padding: 4px 8px;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile-item {
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #868686;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav-mobile-item:hover {
    background-color: #f3f4f6;
}

.nav-mobile-item.active {
    background-color: rgba(0, 206, 209, 0.1);
    color: #171717;
    font-weight: 700;
}

/* Content Styles */
.content {
    text-align: center;
    padding: 80px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 24px;
}

.content p {
    font-size: 20px;
    color: #868686;
    margin-bottom: 32px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #00CED1;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #00B8BB;
}

.btn-secondary {
    background-color: transparent;
    color: #00CED1;
    border: 1px solid #00CED1;
}

.btn-secondary:hover {
    background-color: #00CED1;
    color: #ffffff;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .header {
        padding: 24px 60px;
    }

    .logo-container {
        padding-right: 60px;
    }

    .nav-desktop {
        gap: 24px;
    }

    .content h1 {
        font-size: 36px;
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .header {
        padding: 16px 20px;
    }

    .logo-container {
        padding-right: 0;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 16px;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: rgba(254, 254, 254, 1);
    min-height: 100vh;
}

.container {
    display: flex;
    align-items: stretch;
    gap: 100px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 80px 104px;
    min-height: 100vh;
    overflow: hidden;
}

.left-column {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: space-between;
    width: 629px;
    flex: 1;
}

.content-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
}

/* Hero Section */
.hero-section {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.hero-title {
    color: #000;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-highlight {
    color: rgba(0, 206, 209, 1);
}

.hero-description {
    color: rgba(134, 134, 134, 1);
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    margin-top: 16px;
}

/* App Download Section */
.app-download {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.download-button {
    display: flex;
    min-height: 60px;
    width: 206px;
    background: linear-gradient(to right, #f3f4f6, #e5e7eb);
    border-radius: 8px;
    border: 2px dashed #d1d5db;
    align-items: center;
    justify-content: center;
}

.download-content {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 0 16px;
}

.download-icon {
    margin-bottom: 4px;
}

.download-platform {
    font-size: 12px;
}

/* Stats Section */
.stats-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 146px;
}

.stats-image {
    aspect-ratio: 4.63;
    object-fit: contain;
    width: 268px;
    min-width: 240px;
}

.stats-content {
    width: 125px;
}

.stats-number {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.stats-label {
    color: rgba(139, 139, 139, 1);
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

/* Product Showcase */
.product-showcase {
    flex-shrink: 0;
}

.showcase-image {
    aspect-ratio: 0.77;
    object-fit: contain;
    width: 452px;
    min-width: 240px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 80px 20px;
        gap: 40px;
    }

    .left-column {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 40px;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .stats-section {
        margin-top: 40px;
    }

    .showcase-image,
    .stats-image {
        max-width: 75%;
    }

    .app-download {
        max-width: 100%;
    }

    .content-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 28px;
    }

    .stats-section {
        flex-direction: column;
        align-items: flex-start;
    }
}






.mobile-app-section {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 100%;
    margin: 0 auto;
    padding: 115px 104px;
    background-color: #1F1F1F;
    min-height: 100vh;
}

.download-cards-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-download-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 231px;
    height: 284px;
    background-color: #444;
    padding: 18px 16px;
    border-radius: 14px;
    position: relative;
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    width: 100%;
}

.card-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.card-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.card-version {
    color: white;
    font-size: 18px;
    font-weight: normal;
}

.download-button-1 {
    display: flex;
    width: 166px;
    height: 43px;
    justify-content: center;
    align-items: center;
    background-color: #00CED1;
    padding: 10px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.download-button:hover {
    background-color: #00B8BB;
}

.download-button:focus {
    outline: 2px solid #00CED1;
    outline-offset: 2px;
}

.button-text {
    color: white;
    font-size: 16px;
    font-weight: normal;
}

.app-preview-image {
    width: 111px;
    height: 111px;
    object-fit: contain;
}

.platform-icon {
    position: absolute;
    right: 4px;
    bottom: 12px;
    width: 90px;
    height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: #323232;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex: 1;
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.main-heading {
    color: white;
    font-size: 56px;
    font-weight: bold;
    line-height: 1.2;
}

.highlight-text {
    color: #00CED1;
}

.description {
    color: white;
    font-size: 20px;
    font-weight: normal;
}

.statistics-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.statistic-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.stat-number {
    color: white;
    font-size: 30px;
    font-weight: bold;
}

.stat-label {
    color: white;
    font-size: 22px;
    font-weight: normal;
}

/* Tablet styles */
@media (max-width: 991px) {
    .mobile-app-section {
        flex-direction: column;
        gap: 60px;
        padding: 60px 40px;
        max-width: 991px;
    }

    .download-cards-container {
        justify-content: center;
        gap: 30px;
    }

    .text-content {
        align-items: center;
    }

    .main-heading {
        font-size: 48px;
        text-align: center;
    }

    .description {
        font-size: 18px;
        text-align: center;
    }

    .statistics-container {
        justify-content: center;
        gap: 40px;
    }

    .statistic-card {
        align-items: center;
        text-align: center;
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .mobile-app-section {
        gap: 40px;
        padding: 40px 20px;
    }

    .download-cards-container {
        flex-direction: column;
        gap: 20px;
    }

    .app-download-card {
        width: 100%;
        max-width: 280px;
    }

    .main-heading {
        font-size: 32px;
    }

    .description {
        font-size: 16px;
    }

    .statistics-container {
        flex-direction: column;
        gap: 30px;
    }

    .statistic-card {
        padding: 20px 0;
        border-bottom: 1px dashed #A0A0A0;
    }

    .statistic-card:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 18px;
    }
}





.benefits-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 56px;
background: white;
padding: 96px 104px;
position: relative;
}

.section-header {
display: flex;
flex-direction: column;
align-items: center;
gap: 18px;
width: 100%;
position: relative;
}

.section-subtitle {
width: 100%;
color: #0a0a0a;
text-align: center;
font-size: 24px;
font-weight: 400;
line-height: 1.5;
}

.section-title {
max-width: 792px;
color: #0a0a0a;
text-align: center;
font-size: 56px;
font-weight: 700;
line-height: 1.2;
position: relative;
}

.highlight {
color: #00CED1;
}

.benefits-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 24px;
width: 100%;
position: relative;
}

.benefit-card {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 24px;
flex: 1 0 0;
padding: 16px;
position: relative;
}

.icon-wrapper {
display: flex;
width: 74px;
height: 74px;
justify-content: center;
align-items: center;
background: #D8FEFF;
padding: 5px;
border-radius: 40px;
position: relative;
}

.card-content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 16px;
width: 100%;
position: relative;
}

.card-title-1 {
width: 100%;
color: black;
text-align: center;
font-size: 24px;
font-weight: 700;
line-height: 1.4;
}

.card-description {
width: 100%;
color: #868686;
text-align: center;
font-size: 18px;
font-weight: 400;
line-height: 1.75;
}

/* .pagination-dots {
display: flex;
align-items: center;
gap: 8px;
position: relative;
} */

.dot {
width: 14px;
height: 14px;
border-radius: 50%;
background: #D9D9D9;
transition: all 0.3s ease;
}

.dot.active {
width: 18px;
height: 18px;
background: #09A2A4;
}

/* Tablet Responsive - max-width: 768px */
@media (max-width: 768px) {
.benefits-section {
gap: 40px;
padding: 64px 48px;
}

.section-title {
width: 100%;
font-size: 48px;
}

.benefits-grid {
flex-direction: column;
gap: 32px;
}

.benefit-card {
flex: none;
width: 100%;
max-width: 500px;
}
}

/* Mobile Responsive - max-width: 640px */
@media (max-width: 640px) {
.benefits-section {
gap: 32px;
padding: 48px 24px;
}

.section-subtitle {
font-size: 20px;
}

.section-title {
font-size: 36px;
line-height: 1.2;
}

.benefits-grid {
gap: 32px;
}

.icon-wrapper {
width: 64px;
height: 64px;
}

.icon-wrapper svg {
width: 64px;
height: 64px;
}

.card-title-1{
font-size: 20px;
}

.card-description {
font-size: 16px;
line-height: 1.5;
}
}




.features-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 64px;
    padding: 96px 104px;
    position: relative;
    background-color: #ffffff;
    min-height: 100vh;
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    background-color: #fafafa;
    padding: 24px;
    border-radius: 24px;
}

.features-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -1.68px;
    width: 100%;
}

.title-black {
    color: #0a0a0a;
}

.title-highlight {
    color: #00CED1;
}

.features-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    width: 100%;
}

.feature-description {
    font-size: 18px;
    font-weight: 400;
    color: #868686;
    width: 100%;
}

.learn-more-btn {
    display: flex;
    width: 150px;
    height: 52px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #DFE1E6;
    border-radius: 16px;
    padding: 16px 12px 16px 16px;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(13, 13, 18, 0.06);
    transition: background-color 0.2s;
}

.learn-more-btn:hover {
    background-color: #f9fafb;
}

.learn-more-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #00CED1;
}

.btn-text {
    color: #0D0D12;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.32px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-image {
    width: 603px;
    height: 603px;
    aspect-ratio: 1/1;
}

/* Tablet styles */
@media (max-width: 768px) {
    .features-section {
        padding: 64px 48px;
    }

    .features-container {
        flex-direction: column;
        gap: 32px;
    }

    .main-title {
        font-size: 48px;
        letter-spacing: -1.44px;
    }

    .feature-title {
        font-size: 22px;
    }

    .feature-description {
        font-size: 16px;
    }

    .feature-image {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .features-section {
        padding: 48px 24px;
    }

    .features-container {
        gap: 24px;
        padding: 20px;
    }

    .features-header {
        gap: 24px;
    }

    .main-title {
        font-size: 32px;
        letter-spacing: -0.96px;
    }

    .features-list {
        gap: 20px;
    }

    .feature-item {
        gap: 8px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    .learn-more-btn {
        width: 100%;
        height: 48px;
        padding: 12px 16px;
    }

    .btn-text {
        font-size: 14px;
    }

    .feature-image {
        max-width: 300px;
    }
}















.main-container-3 {
max-width: none;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 56px;
position: relative;
background-color: white;
margin: 0 auto;
padding: 96px 104px; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero-section-3 {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
align-self: stretch;
position: relative;
}

.hero-title-3 {
align-self: stretch;
text-align: center;
font-size: 56px;
font-weight: 600;
position: relative;
}

.title-main-3 {
font-weight: 700;
font-size: 56px;
color: #0a0a0a;
}

.title-highlight-3 {
font-weight: 700;
font-size: 56px;
color: rgba(0, 206, 209, 1);
}

.hero-description-3 {
width: 964px;
color: #868686;
text-align: center;
font-size: 18px;
font-weight: 400;
line-height: 25.2px;
position: relative;
}

/* Product Showcase */
.product-showcase-3 {
display: flex;
align-items: center;
gap: 23px;
position: relative;
}

/* Product Card */
.product-card-3 {
width: 626px;
height: 348px;
position: relative;
}

.card-content-3 {
display: inline-flex;
height: 299px;
align-items: center;
flex-shrink: 0;
border: 1px solid rgba(0, 0, 0, 0.20);
position: absolute;
width: 605px;
background-color: white;
padding: 28px 220px 28px 26px;
border-radius: 14px;
left: 0;
top: 49px;
}

.card-text-3 {
display: flex;
width: 359px;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
position: absolute;
height: 243px;
left: 26px;
top: 28px;
}

.text-wrapper-3 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 16px;
align-self: stretch;
position: relative;
}

.card-title-3 {
align-self: stretch;
color: black;
font-size: 24px;
font-weight: 600;
line-height: 33.6px;
position: relative;
}

.card-description-3 {
align-self: stretch;
color: #868686;
font-size: 16px;
font-weight: 400;
position: relative;
}

.details-button-3 {
display: flex;
width: 113px;
height: 36px;
justify-content: center;
align-items: center;
gap: 8px;
position: relative;
border-radius: 18px;
border: 0.6px solid #09A2A4;
background-color: transparent;
cursor: pointer;
transition: all 0.2s ease;
}

.details-button-3:hover {
background-color: rgba(9, 162, 164, 0.1);
transform: scale(1.05);
}

.details-button-3:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(9, 162, 164, 0.5);
}

.button-text-3 {
color: #09A2A4;
font-size: 14px;
font-weight: 600;
position: relative;
}

.arrow-icon-3 {
width: 24px;
height: 24px;
flex-shrink: 0;
aspect-ratio: 1/1;
position: relative;
}

.card-image-3 {
width: 370px;
height: 348px;
flex-shrink: 0;
aspect-ratio: 185/174;
position: absolute;
left: 256px;
top: 0;
}

/* Tablet Styles (max-width: 991px) */
@media (max-width: 991px) {
.main-container-3 {
max-width: 991px;
gap: 40px;
padding: 64px 48px;
}

.hero-title-3,
.title-main-3,
.title-highlight-3 {
font-size: 42px;
}

.hero-description-3 {
width: 100%;
max-width: 800px;
font-size: 16px;
}

.product-showcase-3 {
flex-direction: column;
gap: 32px;
}

.product-card-3 {
width: 100%;
max-width: 500px;
height: auto;
}

.card-content-3 {
position: relative;
width: 100%;
height: auto;
padding: 24px;
left: 0;
top: 0;
}

.card-text-3 {
position: relative;
width: 100%;
height: auto;
left: 0;
top: 0;
}

.card-image-3 {
position: relative;
width: 100%;
height: auto;
max-width: 300px;
display: block;
margin: 16px auto 0;
left: 0;
}
}

/* Mobile Styles (max-width: 640px) */
@media (max-width: 640px) {
.main-container-3 {
max-width: 640px;
gap: 32px;
padding: 32px 16px;
}

.hero-title-3,
.title-main-3,
.title-highlight-3 {
font-size: 32px;
}

.hero-description-3 {
font-size: 14px;
line-height: 18.2px;
}

.product-showcase-3 {
gap: 24px;
}

.card-content-3 {
padding: 20px;
}

.card-title-3 {
font-size: 20px;
line-height: 26px;
}

.card-description-3 {
font-size: 14px;
}

.details-button-3 {
width: 100px;
height: 32px;
}

.button-text-3 {
font-size: 12px;
}

.card-image-3 {
max-width: 250px;
}
}











.services-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    background-color: #ffffff;
    padding: 96px 104px;
    background-color: #ffffff;
    color: #000000;
}

.services-container {
    display: flex;
    width: 1232px;
    max-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
}

.services-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.services-title {
    width: 100%;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.title-primary {
    color: #0a0a0a;
}

.title-accent {
    color: #00CED1;
}

.services-description {
    width: 906px;
    max-width: 100%;
    color: #868686;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
}

.services-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex: 1;
    padding: 12px;
}

.service-icon {
    display: flex;
    width: 74px;
    height: 74px;
    justify-content: center;
    align-items: center;
    background-color: #D8FEFF;
    padding: 5px;
    border-radius: 40px;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.service-title {
    width: 100%;
    color: #000000;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.service-text {
    width: 100%;
    color: #868686;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.cta-button {
    display: flex;
    width: 222px;
    height: 58px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background-color: #09A2A4;
    padding: 10px;
    border-radius: 32px;
    border: none;
    transition: all 0.2s ease;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #078a8c;
}

.cta-button:focus {
    outline: 2px solid #09A2A4;
    outline-offset: 2px;
}

.arrow-icon {
    width: 29px;
    height: 29px;
}

/* Tablet styles */
@media (max-width: 768px) {
    .services-section {
        gap: 40px;
        padding: 64px 40px;
    }

    .services-container {
        gap: 40px;
        /* max-width: 800px; */
    }

    .services-header {
        gap: 16px;
       
    }

    .services-title {
        font-size: 42px;
       
    }

    .services-description {
        font-size: 16px;
    }

    .services-grid {
        flex-direction: column;
        gap: 32px;
    }

    .service-card {
        gap: 20px;
        padding: 20px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-text {
        font-size: 16px;
        line-height: 26px;
    }

    .cta-button {
        width: 200px;
        height: 54px;
    }
   
}

/* Mobile styles */
@media (max-width: 640px) {
    .services-section {
        gap: 32px;
        padding: 48px 20px;
    }

    .services-container {
        gap: 32px;
    }

    .services-header {
        gap: 12px;
    }

    .services-title {
        font-size: 32px;
    }

    .services-description {
        font-size: 14px;
        line-height: 20px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        gap: 16px;
        padding: 16px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-text {
        font-size: 14px;
        line-height: 22px;
    }

    .cta-button {
        width: 180px;
        height: 50px;
        font-size: 16px;
    }
}






























.how-it-works {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    background-color: #323232;
    padding: 96px 104px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 549px;
    max-width: 549px;
}

.section-header-4 {
    display: flex;
    /* flex-direction: column; */
    gap: 16px;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subtitle {
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}

.title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.title-white {
    color: white;
}

.title-cyan {
    color: #00CED1;
}

.description {
    color: white;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 56px;
}

.download-btn {
    display: flex;
    width: 249px;
    height: 58px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: #09A2A4;
    border: none;
    border-radius: 32px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #0a8a8c;
}

.download-btn:active {
    transform: scale(0.95);
}

.download-btn span {
    color: white;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.steps-container {
    display: flex;
    flex-direction: column;
    width: 484px;
    max-width: 484px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48px;
    flex-shrink: 0;
}

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 40px;
    padding: 10px;
}

.step-number.active {
    background-color: #09A2A4;
}

.step-number.inactive {
    background-color: white;
}

.step-number span {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
}

.step-number.active span {
    color: white;
}

.step-number.inactive span {
    color: #676767;
}

.connector {
    width: 2.5px;
    height: 39px;
    background-color: white;
}

.connector.active {
    background-color: transparent;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.step-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-description {
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

/* Tablet */
@media (max-width: 768px) {
    .how-it-works {
        flex-direction: column;
        gap: 48px;
        align-items: flex-start;
        padding: 64px 52px;
    }

    .content-left {
        width: 100%;
        max-width: none;
    }

    .title {
        font-size: 48px;
    }

    .subtitle, .description {
        font-size: 16px;
    }

    .download-btn {
        width: auto;
    }

    .steps-container {
        width: 100%;
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .how-it-works {
        gap: 32px;
        padding: 32px 24px;
    }

    .content-left {
        gap: 32px;
    }

    .header {
        gap: 12px;
    }

    .header-text {
        gap: 8px;
    }

    .subtitle {
        font-size: 14px;
    }

    .title {
        font-size: 32px;
    }

    .description {
        font-size: 14px;
    }

    .download-btn {
        width: 100%;
        max-width: 300px;
    }

    .step {
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .step-number-container {
        flex-direction: row;
        width: auto;
        gap: 12px;
    }

    .connector {
        width: 39px;
        height: 2.5px;
    }

    .step-content {
        width: 100%;
    }

    .steps-container {
        gap: 24px;
    }
}












.testimonial-section {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 96px 104px;
     background-color: #ffffff;
    min-height: 100vh;
}

.section-header-4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.header-title {
    max-width: 799px;
}

.header-title h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -1.68px;
    color: #0a0a0a;
    margin: 0;
}

.header-title h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 70px;
    letter-spacing: -1.68px;
    color: #00CED1;
    margin: 0;
}

.header-description {
    max-width: 638px;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: -0.36px;
    color: #868686;
}

.cta-button {
    display: flex;
    height: 52px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 12px 16px 16px;
    background: #ffffff;
    border: 1px solid #DFE1E6;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(13, 13, 18, 0.06);
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    color: #0D0D12;
}

.cta-button:hover {
    background-color: #f9fafb;
}

.cta-button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cta-button span {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.32px;
}

.testimonials-grid {
    display: flex;
    gap: 24px;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    background-color: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
}

.testimonial-card.large {
    width: 750px;
    height: 500px;
    padding: 32px;
}

.testimonial-card.small {
    flex: 1;
    height: 238px;
    padding: 24px;
}

.testimonial-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(7.5px);
    background: rgba(10, 10, 10, 0.20);
    border-radius: 24px;
}

.testimonial-quote {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    line-height: 41.6px;
    letter-spacing: -0.96px;
}

.testimonial-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.32px;
}

.testimonial-role {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: -0.28px;
}

.play-button {
    position: absolute;
    z-index: 3;
    display: flex;
    height: 32px;
    align-items: center;
    gap: 4px;
    padding: 4px 12px 4px 8px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.35);
}

.play-button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
}

.play-button span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 22.4px;
    letter-spacing: -0.28px;
}

.large .play-button {
    top: 32px;
    left: 32px;
}

.small .play-button {
    top: 24px;
    left: 24px;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-section {
        gap: 40px;
        padding: 64px 32px;
    }

    .section-header-4 {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .header-title h1,
    .header-title h2 {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .header-description {
        font-size: 16px;
    }

    .testimonials-grid {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card.large {
        width: 100%;
        height: 400px;
    }

    .testimonial-card.small {
        height: 200px;
    }

    .testimonial-quote {
        font-size: 24px;
        letter-spacing: -0.72px;
    }
}

@media (max-width: 480px) {
    .testimonial-section {
        gap: 32px;
        padding: 32px 16px;
    }

    .header-title h1,
    .header-title h2 {
        font-size: 28px;
        letter-spacing: -0.84px;
    }

    .header-description {
        font-size: 14px;
    }

    .cta-button {
        width: 100%;
        height: 48px;
        padding: 12px 16px;
    }

    .testimonial-card.large {
        height: 300px;
        padding: 24px;
    }

    .testimonial-card.small {
        height: 160px;
        padding: 16px;
    }

    .testimonial-quote {
        font-size: 20px;
        letter-spacing: -0.6px;
    }

    .large .play-button {
        top: 24px;
        left: 24px;
    }

    .small .play-button {
        top: 16px;
        left: 16px;
    }
}







.hero-section-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    /* min-height: 1105px; */
    padding: 120px;
    background-color: #ffffff;
    position: relative;
}

.decorative-pattern-5 {
    width: 100px;
    height: 100px;
    border: 1px solid #e5e5e5;
    border-radius: 1000px;
    position: relative;
}

.decorative-pattern-5 img {
    width: 72px;
    height: 72px;
    position: absolute;
    left: 14px;
    top: 14px;
}

.decorative-circle-1 {
    width: 180px;
    height: 180px;
    border: 1px solid #e5e5e5;
    border-radius: 1000px;
    position: absolute;
    left: -40px;
    top: -40px;
}

.decorative-circle-2 {
    width: 250px;
    height: 250px;
    border: 1px solid #e5e5e5;
    border-radius: 1000px;
    position: absolute;
    left: -75px;
    top: -75px;
}

.hero-content-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.hero-header-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.hero-title-5 {
    max-width: 767px;
    width: 100%;
    text-align: center;
}

.hero-title-line-1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -1.56px;
    color: #0d0d12;
}

.hero-title-line-2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -1.56px;
    color: #00CED1;
}

.hero-description-5 {
    max-width: 736px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: -0.36px;
    color: #868686;
}

.action-buttons-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.btn-5 {
    display: flex;
    width: 140px;
    height: 52px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    outline: none;
}

.btn-primary-5 {
    background-color: #09A2A4;
    color: #ffffff;
}

.btn-primary-5:hover {
    background-color: #078a8c;
}

.btn-primary-5:focus {
    outline: 2px solid #09A2A4;
    outline-offset: 2px;
}

.btn-secondary-5 {
    background-color: #ffffff;
    color: #0d0d12;
    border: 1px solid #DFE1E6;
    box-shadow: 0 1px 2px 0 rgba(13, 13, 18, 0.06);
}

.btn-secondary-5:hover {
    background-color: #f9fafb;
}

.btn-secondary-5:focus {
    outline: 2px solid #DFE1E6;
    outline-offset: 2px;
}

/* Tablet responsive styles */
@media (max-width: 768px) {
    .hero-section-5 {
        padding: 80px 40px;
        min-height: auto;
    }

    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 42px;
        letter-spacing: -1.26px;
    }

    .hero-description-5 {
        font-size: 16px;
    }

    .action-buttons-5 {
        flex-direction: column;
        gap: 12px;
    }

    .btn-5 {
        width: 200px;
    }
}

/* Mobile responsive styles */
@media (max-width: 640px) {
    .hero-section-5 {
        padding: 60px 20px;
    }

    .decorative-pattern-5 {
        width: 80px;
        height: 80px;
    }

    .decorative-pattern-5 img {
        width: 56px;
        height: 56px;
        left: 12px;
        top: 12px;
    }

    .decorative-circle-1 {
        width: 140px;
        height: 140px;
        left: -30px;
        top: -30px;
    }

    .decorative-circle-2 {
        width: 200px;
        height: 200px;
        left: -60px;
        top: -60px;
    }

    .hero-title-line-1,
    .hero-title-line-2 {
        font-size: 32px;
        letter-spacing: -0.96px;
    }

    .hero-description-5 {
        font-size: 14px;
        line-height: 18.2px;
    }

    .btn-5 {
        width: 100%;
        max-width: 280px;
    }
}


















.sr-only-6 {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}

/* Main Container */
.main-container-6 {
min-height: 100vh;
font-family:
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
background-color: #f9fafb;
color: #1f2937;
line-height: 1.5;
}

.cont-6 {
max-width: 1280px;
margin: 0 auto;
padding: 0 1rem;
}

/* Hero Section */
.hero-wrapper-6 {
padding-top: 109px;
}

.hero-section-6 {
background-color: rgba(9, 162, 164, 1);
position: relative;
min-height: 510px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
/* margin-top: 109px; */
padding: 62px 1.5rem;
border-radius: 1.5rem;
/* overflow: hidden; */
}

.hero-content-6 {
z-index: 10;
display: flex;
flex-direction: column;
max-width: 567px;
}

.hero-header-6 {
display: flex;
flex-direction: column;
color: white;
letter-spacing: -0.36px;
}

.hero-subtitle-6 {
font-size: 1.125rem;
font-weight: 500;
}

.hero-title-6 {
font-size: 56px;
font-weight: 600;
line-height: 84px;
letter-spacing: -1.12px;
margin-top: 1rem;
}

.hero-description-6 {
font-size: 1.125rem;
font-weight: 400;
line-height: 27px;
margin-top: 1rem;
}

.hero-image-6 {
aspect-ratio: 0.77;
object-fit: contain;
width: 452px;
position: absolute;
z-index: 0;
max-width: 100%;
top: -109px;
height: 588px;
right: 30px;
}

/* App Store Buttons */
.app-buttons-6 {
display: flex;
align-items: center;
gap: 1.25rem;
margin-top: 46px;
}

.app-store-button-6 {
display: flex;
align-items: center;
justify-content: center;
min-height: 60px;
width: 206px;
background-color: #000;
color: white;
border-radius: 0.5rem;
border: none;
cursor: pointer;
transition: background-color 0.2s;
}

.app-store-button-6:hover {
background-color: #1f2937;
}

.app-store-button-6:focus {
outline: 2px solid white;
outline-offset: 2px;
}

.button-content-6 {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0 1rem;
}

.icon-wrapper-6 {
width: 32px;
height: 32px;
background-color: white;
border-radius: 0.25rem;
display: flex;
align-items: center;
justify-content: center;
}

.store-icon-6 {
width: 24px;
height: 24px;
}

.button-text-6 {
text-align: left;
}

.button-label-6 {
font-size: 0.75rem;
opacity: 0.8;
}

.button-store-6 {
font-size: 0.875rem;
font-weight: 600;
}

/* Responsive Design */


@media (max-width: 768px) {
.hero-wrapper-6 {
padding-top: 100px;
}

.hero-section-6 {
margin-top: 2.5rem;
padding: 1.25rem;
}

.hero-title-6 {
font-size: 40px;
line-height: 67px;
}

.hero-image-6 {
width: 300px;
height: 390px;
right: 10px;
}

.app-buttons-6 {
margin-top: 2.5rem;
flex-direction: column;
align-items: stretch;
}

.apple-button-6 {
/* display: none; */
}

.app-store-button-6 {
width: 100%;
}
}

@media (max-width: 480px) {
.hero-title-6 {
font-size: 32px;
line-height: 48px;
}

.hero-subtitle-6,
.hero-description-6 {
font-size: 1rem;

}
.hero-sub-6{
width: 54%;
}
.hero-image-6 {
width: 170px;
height: 260px;
right: 5px;
}
}













/* Footer Styles */
.footer {
background: white;
width: 100%;
margin-top: -120px;
}

.footer-container {
background: rgba(50, 50, 50, 1);
width: 100%;
display: flex;
flex-direction: column;
padding: 120px 80px 20px 80px;
}

@media (max-width: 768px) {
.footer-container {
padding: 100px 20px 20px 20px;
}
}

/* Footer Header */
.footer-header {
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
gap: 100px;
flex-wrap: wrap;
}

.footer-logo {
display: flex;
align-items: center;
gap: 20px;
font-size: 24px;
color: white;
font-weight: 600;
white-space: nowrap;
line-height: 1.4;
}

.logo-icon {
width: 40px;
height: 40px;
object-fit: contain;
}
.logo-text-1{
color: #fffff;
}

/* Social Buttons */
.social-buttons {
display: flex;
align-items: center;
gap: 8px;
}

.social-btn {
display: flex;
justify-content: center;
align-items: center;
width: 40px;
height: 40px;
background: #00CED1;
border: 1px solid #262626;
border-radius: 10px;
padding: 11px;
cursor: pointer;
transition: background-color 0.3s;
}

.social-btn:hover {
background: #00B8BB;
}

.social-btn:focus {
outline: 2px solid #00CED1;
outline-offset: 2px;
}

.social-btn img {
width: 18px;
height: 18px;
object-fit: contain;
}

/* Divider */
.divider {
width: 100%;
margin-top: 40px;
object-fit: contain;
}

/* Footer Content */
.footer-content {
display: flex;
flex-wrap: wrap;
max-width: 1026px;
width: 100%;
margin-top: 40px;
}

.menu-sections {
display: flex;
flex-wrap: wrap;
flex: 1;
min-width: 240px;
font-size: 18px;
color: rgba(131, 131, 131, 1);
font-weight: 400;
letter-spacing: -0.36px;
}

.menu-section {
min-width: 240px;
flex: 1;
}

.menu-section:first-child {
width: 310px;
}

.menu-section h3 {
color: white;
font-weight: 600;
margin-bottom: 16px;
}

.menu-section ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
}

.menu-section a {
color: rgba(131, 131, 131, 1);
text-decoration: none;
transition: color 0.3s;
}

.menu-section a:hover,
.menu-section a:focus {
color: white;
outline: none;
}

/* Newsletter */
.newsletter {
min-width: 240px;
width: 251px;
color: white;
}

.newsletter h3 {
font-size: 18px;
font-weight: 600;
letter-spacing: -0.36px;
margin-bottom: 14px;
}

.newsletter-input-wrapper {
background: rgba(106, 106, 106, 1);
display: flex;
align-items: center;
justify-content: space-between;
min-height: 37px;
border-radius: 10px;
position: relative;
padding-right: 8px;
}

.newsletter input {
background: transparent;
border: none;
outline: none;
color: white;
font-size: 14px;
letter-spacing: -0.28px;
padding: 8px 12px;
width: 110px;
}

.newsletter input::placeholder {
color: white;
}

.newsletter button[type="submit"] {
background: transparent;
border: none;
cursor: pointer;
padding: 4px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: opacity 0.3s;
}

.newsletter button[type="submit"]:hover {
opacity: 0.8;
}

.newsletter button[type="submit"]:focus {
outline: 2px solid white;
outline-offset: 2px;
}

.newsletter button[type="submit"] img {
width: 24px;
height: 24px;
object-fit: contain;
}

.newsletter-message {
margin-top: 8px;
font-size: 14px;
}

.newsletter-message.success {
color: #4ade80;
}

.newsletter-message.error {
color: #f87171;
}

/* Footer Bottom */
.footer-bottom {
width: 100%;
font-size: 16px;
font-weight: 500;
letter-spacing: -0.32px;
margin-top: 40px;
}

.footer-bottom-content {
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 40px;
margin-top: 18px;
}

.copyright {
color: rgba(131, 131, 131, 1);
}

/* Country Selector */
.country-selector {
position: relative;
}

.country-btn {
display: flex;
align-items: center;
gap: 12px;
padding: 8px 10px;
background: white;
border: 1px solid #e5e5e5;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 1px 3px rgba(13, 13, 18, 0.05), 0 1px 2px rgba(13, 13, 18, 0.04);
transition: background-color 0.3s;
}

.country-btn:hover {
background: #f9fafb;
}

.country-btn:focus {
outline: 2px solid #3b82f6;
}

.country-display {
display: flex;
align-items: center;
gap: 8px;
}

.country-flag {
width: 20px;
height: 20px;
object-fit: contain;
}

.country-btn span {
color: #0d0d12;
}

.dropdown-arrow {
width: 16px;
height: 16px;
object-fit: contain;
transition: transform 0.3s;
}

.country-btn.open .dropdown-arrow {
transform: rotate(180deg);
}

.country-dropdown {
display: none;
position: absolute;
bottom: 100%;
right: 0;
margin-bottom: 8px;
background: white;
border: 1px solid #e5e5e5;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
min-width: 200px;
z-index: 10;
}

.country-dropdown.open {
display: block;
}

.country-dropdown button {
width: 100%;
text-align: left;
padding: 8px 12px;
border: none;
background: white;
cursor: pointer;
transition: background-color 0.3s;
color: #0d0d12;
}

.country-dropdown button:first-child {
border-radius: 10px 10px 0 0;
}

.country-dropdown button:last-child {
border-radius: 0 0 10px 10px;
}

.country-dropdown button:hover {
background: #f9fafb;
}

.country-dropdown button.selected {
background: #eff6ff;
color: #2563eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.footer-header {
gap: 40px;
}

.menu-sections {
flex-direction: column;
gap: 32px;
}

.menu-section {
width: 100%;
}

.newsletter {
width: 100%;
margin-top: 32px;
}

.footer-content {
flex-direction: column;
}
.footer{
margin-top: -50px;
}
}





/* video */
/* Video Player Container */
.video-container {
    width: 80%;
    max-width: 80rem;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-overlay.hidden {
    opacity: 0;
}

/* Play/Pause Button - Center */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.9);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    z-index: 10;
}

.play-button:hover {
    background: #3b82f6;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.play-button svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    fill: white;
}

.play-button .pause-icon {
    display: none;
}

.play-button.playing .play-icon {
    display: none;
}

.play-button.playing .pause-icon {
    display: block;
}

/* Mute/Unmute Button - Corner */
.mute-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.9);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
    z-index: 10;
}

.mute-button:hover {
    background: rgba(59, 130, 246, 0.9);
    transform: scale(1.1);
}

.mute-button:active {
    transform: scale(0.95);
}

.mute-button svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.mute-button .volume-icon {
    display: block;
}

.mute-button .mute-icon {
    display: none;
}

.mute-button.muted .volume-icon {
    display: none;
}

.mute-button.muted .mute-icon {
    display: block;
}


 /* Responsive Design */
 @media (max-width: 768px) {
    

    .play-button {
        width: 4rem;
        height: 4rem;
    }

    .play-button svg {
        width: 2rem;
        height: 2rem;
    }

    .mute-button {
        width: 2.5rem;
        height: 2.5rem;
        bottom: 1rem;
        right: 1rem;
    }

    .mute-button svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}




.nav-mobile-item a{
text-decoration: none;
color: #000;
}
