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

body {
    font-family: "IBM Plex Sans Arabic", "IBM Plex Sans Arabic Placeholder", sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
}

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

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: rgb(36, 190, 242);
}

/* Underline animation for active/hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: rgb(36, 190, 242);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Download Button */
.nav-btn {
    background: rgb(36, 190, 242);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.nav-btn:hover {
    background: rgb(30, 170, 220);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(36, 190, 242, 0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Hamburger (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0 16px;
    }

    .nav-container {
        height: 64px;
    }

    .nav-toggle {
        display: flex;
        order: 3;
    }

    .nav-logo {
        order: 1;
    }

    .nav-logo img {
        height: 38px;
    }

    .nav-btn {
        order: 2;
        padding: 8px 18px;
        font-size: 15px;
        border-radius: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 24px;
        transition: right 0.4s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        padding: 12px;
    }

    /* Hamburger animation when active */
    .nav-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .nav-btn {
        padding: 7px 14px;
        font-size: 13px;
    }

    .nav-logo img {
        height: 34px;
    }
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 76px 24px 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    position: relative;
    overflow: hidden;
}

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

/* Hero Content (Right side in RTL) */
.hero-content {
    flex: 1;
    max-width: 560px;
    text-align: right;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: rgb(36, 190, 242);
}

.hero-desc {
    font-size: 20px;
    font-weight: 400;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 36px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 14px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.hero-btn:hover {
    background: #333333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero-btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    object-fit: contain;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

.btn-large {
    font-size: 17px;
    font-weight: 600;
}

/* Hero Image (Left side in RTL) */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

/* Decorative Blobs */
.blob {
    display: none;
}

.blob-1 {
    width: 420px;
    height: 420px;
    background: rgba(36, 190, 242, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob-2 {
    width: 280px;
    height: 280px;
    background: rgba(36, 190, 242, 0.05);
    top: 20%;
    right: 10%;
}

.blob-3 {
    width: 180px;
    height: 180px;
    background: rgba(36, 190, 242, 0.03);
    bottom: 15%;
    left: 5%;
}

/* ============================================
   HERO RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .phone-img {
        max-width: 400px;
    }

    .blob-1 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 68px 20px 5px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .phone-img {
        max-width: 340px;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 35px 10px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-btn {
        padding: 12px 22px;
        min-width: 180px;
    }

    .btn-large {
        font-size: 14px;
    }

    .phone-img {
        max-width: 300px;
    }

    .blob-1 {
        width: 250px;
        height: 250px;
    }
}


/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    width: 100%;
    padding: 80px 24px;
    background: #ffffff;
    position: relative;
}

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

/* Header */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-decoration {
    position: relative;
    display: inline-block;
}

.title-bg-logo {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    opacity: 0.12;
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
}

.features-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 20px 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

/* Icon Wrapper */
.feature-icon-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgb(36, 190, 242);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(36, 190, 242, 0.06);
    box-shadow: 0 8px 30px rgba(36, 190, 242, 0.15);
}

.feature-icon {
    width: 44px;
    height: 44px;
}

/* Feature Text */
.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
}

/* ============================================
   FEATURES RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .features-title {
        font-size: 34px;
    }

    .title-bg-logo {
        width: 70px;
        height: 70px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .features-title {
        font-size: 28px;
    }

    .feature-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-title {
        font-size: 19px;
    }

    .feature-desc {
        font-size: 14px;
    }

    .title-bg-logo {
        width: 60px;
        height: 60px;
        right: -40px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 50px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-title {
        font-size: 24px;
    }

    .feature-icon-wrapper {
        width: 85px;
        height: 85px;
    }

    .feature-icon {
        width: 34px;
        height: 34px;
    }

    .feature-title {
        font-size: 18px;
    }

    .title-bg-logo {
        width: 50px;
        height: 50px;
        right: -30px;
        opacity: 0.08;
    }
}


/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    width: 100%;
    padding: 10px 24px 60px;
    background: #ffffff;
    position: relative;
}

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

/* Header */
.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.title-decoration {
    position: relative;
    display: inline-block;
}

.title-bg-logo {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    opacity: 0.1;
    object-fit: contain;
    pointer-events: none;
    z-index: 0;
}

.features-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
    display: inline-block;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 16px 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

/* Icon Wrapper with Gradient */
.feature-icon-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgb(36, 190, 242) 0%, rgb(100, 210, 255) 50%, rgb(36, 190, 242) 100%);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(36, 190, 242, 0.25);
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(36, 190, 242, 0.35);
}

/* Inner white circle */
.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    z-index: 1;
}

.feature-emoji {
    font-size: 48px;
    position: relative;
    z-index: 2;
    line-height: 1;
}

/* Feature Text */
.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
}

/* ============================================
   FEATURES RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

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

    .title-bg-logo {
        width: 75px;
        height: 75px;
        right: -55px;
    }

    .feature-icon-wrapper {
        width: 130px;
        height: 130px;
    }

    .feature-icon-wrapper::before {
        width: 100px;
        height: 100px;
    }

    .feature-emoji {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 5px 20px 50px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-title {
        font-size: 26px;
    }

    .feature-icon-wrapper {
        width: 110px;
        height: 110px;
    }

    .feature-icon-wrapper::before {
        width: 85px;
        height: 85px;
    }

    .feature-emoji {
        font-size: 36px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .title-bg-logo {
        width: 60px;
        height: 60px;
        right: -45px;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 0px 16px 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .features-title {
        font-size: 22px;
    }

    .feature-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .feature-icon-wrapper::before {
        width: 92px;
        height: 92px;
    }

    .feature-emoji {
        font-size: 40px;
    }

    .feature-title {
        font-size: 19px;
    }

    .title-bg-logo {
        width: 50px;
        height: 50px;
        right: -35px;
        opacity: 0.08;
    }
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    width: 100%;
    padding: 50px 24px 70px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    position: relative;
}

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

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.testimonials-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #888888;
}

/* Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: right;
    border: 1px solid rgba(36, 190, 242, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(36, 190, 242, 0.12);
    border-color: rgba(36, 190, 242, 0.2);
}

/* Stars */
.stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: right;
}

/* Text */
.testimonial-text {
    font-size: 15px;
    font-weight: 400;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
    min-height: 60px;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(36, 190, 242), rgb(100, 210, 255));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ============================================
   TESTIMONIALS RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 20px 50px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-card {
        padding: 22px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 30px 16px 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonial-card {
        padding: 20px;
    }
}


/* ============================================
   FOOTER SECTION
   ============================================ */

.footer {
    width: 100%;
    position: relative;
    background: rgb(36, 190, 242);
    color: #ffffff;
}

/* Wave */
.footer-wave {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

/* Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 0;
    position: relative;
    z-index: 1;
}

/* Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-desc {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 260px;
}

/* Social Links */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-link:hover {
    background: #ffffff;
    color: rgb(36, 190, 242);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Column Titles */
.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Links Column */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

/* Contact Column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Download Column */
.footer-downloads {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-download-btn:hover {
    background: #333333;
    transform: translateY(-2px);
}

.footer-download-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-btn-small {
    font-size: 10px;
    opacity: 0.8;
}

.footer-btn-large {
    font-size: 14px;
    font-weight: 600;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
}

/* ============================================
   FOOTER RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .footer-wave {
        top: -79px;
        height: 80px;
    }

    .footer-wave svg {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding-bottom: 30px;
    }

    .footer-wave {
        top: -59px;
        height: 60px;
    }

    .footer-wave svg {
        height: 60px;
    }

    .footer-logo {
        height: 42px;
    }

    .footer-col-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .footer-link,
    .footer-contact-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

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

    .footer-desc {
        max-width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

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

    .footer-wave {
        top: -39px;
        height: 40px;
    }

    .footer-wave svg {
        height: 40px;
    }

    .footer-download-btn {
        width: 100%;
        justify-content: center;
    }
}