/********** Template CSS - حارس الجوال الذكي **********/
:root {
    --primary: #4AE68A;
    --secondary: #1A2744;
    --accent: #5EE89D;
    --light: #E8F5EE;
    --dark: #0D1520;
}

/* Arabic Fonts */
body {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cairo', sans-serif;
}

p,
span,
a,
li,
label,
input,
textarea,
button {
    font-family: 'Tajawal', 'Cairo', sans-serif;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Gradient Text & BG ***/
.text-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
    position: relative;
    overflow: hidden;
    border: none;
    color: #FFFFFF;
    z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .5s;
    z-index: -1;
    opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
    opacity: 1;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

.back-to-top {
    position: fixed;
    display: none;
    left: 45px;
    right: auto;
    bottom: 45px;
    z-index: 99;
    border: none;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    margin-right: 0;
    padding: 45px 0;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    top: 0;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
    font-family: 'Cairo', sans-serif;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

/* RTL Navbar Button Fix */
.navbar .btn.btn-primary-gradient {
    margin-right: 1rem;
    margin-left: 0;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        z-index: 999;
    }

    .sticky-top.navbar-light .navbar-toggler {
        color: white;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .sticky-top.navbar-light .navbar-toggler .fa-bars {
        color: white;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: white !important;
        -webkit-text-fill-color: #fff !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-right: 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }

    .navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        right: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        border-top-color: var(--primary);
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        background: linear-gradient(to bottom right, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 16rem 0 0 0;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-bottom.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        right 0px top 0px,
        left 0px top 50%,
        center bottom;
    background-repeat: no-repeat;
}

/* Hero RTL Text Alignment */
.hero-header .col-lg-8 {
    text-align: right;
}

.hero-header .col-lg-8.text-center {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-header .col-lg-8 {
        text-align: right !important;
    }
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .hero-header .col-lg-8 {
        text-align: center;
    }
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    text-align: right;
}

.feature-item:hover {
    margin-top: -15px;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

/* Feature icons centered */
.feature-item .d-inline-flex {
    margin-bottom: 1rem;
}


/*** About Section RTL Fix ***/
.about-section .d-flex,
#about .d-flex {
    flex-direction: row;
}

#about .d-flex i {
    order: 1;
}

#about .d-flex>div {
    order: 2;
    margin-right: 1rem;
    margin-left: 0;
}


/*** Pricing ***/
.pricing .nav {
    padding: 2px;
}

.pricing .nav-link {
    padding: 12px 30px;
    font-weight: 500;
    color: var(--dark);
    background: #FFFFFF;
}

.pricing .nav-item:first-child .nav-link {
    border-radius: 0 30px 30px 0;
}

.pricing .nav-item:last-child .nav-link {
    border-radius: 30px 0 0 30px;
}

.pricing .nav-link.active {
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

/* Pricing Cards RTL */
.pricing .bg-light {
    text-align: right;
}

.pricing .d-flex.justify-content-between {
    flex-direction: row-reverse;
}


/*** Screenshot ***/
.screenshot-carousel {
    position: relative;
    width: 253px;
    height: 500px;
    padding: 15px;
    margin-left: 0;
    margin-right: 30px;
    direction: ltr !important;
}

.screenshot-carousel.owl-carousel.owl-loaded.owl-drag {
    direction: ltr !important;
}

.screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: url(../img/screenshotframe.png) center center no-repeat;
    background-size: 253px 500px;
    z-index: 1;
}

.screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    left: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
}


/*** Process Steps - RTL Fix ***/
.process-step .position-relative {
    text-align: center;
}


/*** Download Section RTL ***/
#download .d-flex,
.download-section .d-flex {
    flex-direction: row;
}

#download .d-flex i,
.download-section .d-flex i {
    order: 1;
}

#download .d-flex>div,
.download-section .d-flex>div {
    order: 2;
    margin-right: 1rem;
    margin-left: 0;
    text-align: right;
}

/* Download buttons fix */
.bg-primary-gradient.d-flex,
.bg-secondary-gradient.d-flex {
    flex-direction: row-reverse;
}

.bg-primary-gradient.d-flex i,
.bg-secondary-gradient.d-flex i {
    margin-left: 0;
    margin-right: 0;
}

.bg-primary-gradient.d-flex>div,
.bg-secondary-gradient.d-flex>div {
    margin-right: 1rem;
    margin-left: 0;
    text-align: right;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 60px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(to bottom right, var(--secondary), var(--primary));
}

/* Testimonial Item RTL */
.testimonial-item {
    text-align: right;
}

.testimonial-item .d-flex {
    flex-direction: row-reverse;
}

.testimonial-item .d-flex img {
    margin-left: 1rem;
    margin-right: 0;
}

.testimonial-item .d-flex>div {
    text-align: right;
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-circle.png),
        url(../img/bg-triangle.png),
        url(../img/bg-top.png),
        linear-gradient(to bottom right, var(--primary), var(--secondary));
    background-position:
        right 0px bottom 0px,
        left 0px top 50%,
        right top;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-left: 5px;
    margin-right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: right;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    margin-right: 0;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-left: 15px;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 0;
    border-left: 1px solid rgba(255, 255, 255, .1);
    border-right: none;
}

.footer .footer-menu a:last-child {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}

/* Footer Address Icons RTL */
.footer p i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Footer Newsletter RTL */
.footer .position-relative input {
    padding-right: 1rem;
    padding-left: 3rem;
    text-align: right;
}

.footer .position-relative button {
    left: 0;
    right: auto;
}


/*** RTL Specific Adjustments ***/

/* Text Alignment */
.text-lg-start {
    text-align: right !important;
}

.text-lg-end {
    text-align: left !important;
}

.text-md-start {
    text-align: right !important;
}

.text-md-end {
    text-align: left !important;
}

/* Form floating label RTL fix */
.form-floating>label {
    right: 0;
    left: auto;
    padding-right: 0.75rem;
    padding-left: 0;
    transform-origin: 100% 0;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Input and textarea RTL */
.form-control {
    text-align: right;
}

/* Contact Form */
#contact .form-floating {
    text-align: right;
}


/*** Bootstrap RTL Overrides ***/

/* Margins */
.me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

.ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

.me-4 {
    margin-left: 1.5rem !important;
    margin-right: 0 !important;
}

.ms-4 {
    margin-right: 1.5rem !important;
    margin-left: 0 !important;
}

.me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

.ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

/* Paddings */
.pe-4 {
    padding-left: 1.5rem !important;
    padding-right: 0 !important;
}

.ps-4 {
    padding-right: 1.5rem !important;
    padding-left: 0 !important;
}

.pe-5 {
    padding-left: 3rem !important;
    padding-right: 0 !important;
}

.ps-5 {
    padding-right: 3rem !important;
    padding-left: 0 !important;
}

/* Flex adjustments */
.flex-shrink-0 {
    flex-shrink: 0 !important;
}

/* Row reverse for specific sections */
@media (min-width: 992px) {

    #about .row,
    .screenshot-section .row {
        flex-direction: row-reverse;
    }

    .text-lg-start {
        text-align: right !important;
    }

    .text-lg-end {
        text-align: left !important;
    }

    /* Justify content on large screens */
    .justify-content-lg-end {
        justify-content: flex-start !important;
    }

    .justify-content-lg-start {
        justify-content: flex-end !important;
    }
}

@media (min-width: 768px) {
    .text-md-start {
        text-align: right !important;
    }

    .text-md-end {
        text-align: left !important;
    }
}


/*** Icons Check List RTL ***/
p>i.fa-check {
    margin-left: 0.75rem;
    margin-right: 0;
}


/*** Stats Counter RTL ***/
.counter-section .d-flex,
#abou .col-sm-6 .d-flex {
    flex-direction: row-reverse;
    text-align: right;
}

.counter-section .d-flex i,
#about .col-6 .d-flex i {
    margin-left: 1rem;
    margin-right: 0;
}

.counter-section .d-flex>div,
#about .col-sm-6 .d-flex>div {
    text-align: right;
}


/*** General Layout Fixes ***/

/* Ensure proper row display */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Center text on mobile */
@media (max-width: 767.98px) {
    .text-center {
        text-align: center !important;
    }
}

/* Fix animation directions for RTL */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Owl Carousel RTL Fixes */
.owl-carousel {
    direction: ltr;
}

.testimonial-carousel.owl-carousel {
    direction: ltr;
}

.testimonial-item {
    direction: rtl;
}


/*** Social Cards Section ***/
.social-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-card i {
    transition: transform 0.3s ease;
}

.social-card:hover i {
    transform: scale(1.1);
}

.social-card h6 {
    font-family: 'Cairo', sans-serif;
}

.social-card small {
    font-family: 'Tajawal', sans-serif;
    font-size: 12px;
}

#social .row.g-4 {
    row-gap: 1rem !important;
}


/*** Download Section ***/
#download {
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(66, 148, 227, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 148, 227, 0.5);
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(66, 148, 227, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(66, 148, 227, 0.6);
    }
}

.download-phone-wrapper {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

#download .d-flex.align-items-center {
    flex-direction: row-reverse;
}

#download .d-flex.align-items-center i {
    margin-left: 10px;
    margin-right: 0;
}

/* Phone Mockup Design */
.download-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    overflow: hidden;
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 20px;
}

.app-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.app-logo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.app-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.protection-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px;
}

.icon-item {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.icon-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.icon-1 {
    animation: pop-in 0.5s ease 0.1s both;
}

.icon-2 {
    animation: pop-in 0.5s ease 0.2s both;
}

.icon-3 {
    animation: pop-in 0.5s ease 0.3s both;
}

.icon-4 {
    animation: pop-in 0.5s ease 0.4s both;
}

.icon-5 {
    animation: pop-in 0.5s ease 0.5s both;
}

.icon-6 {
    animation: pop-in 0.5s ease 0.6s both;
}

@keyframes pop-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.protection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse-status 2s infinite;
}

.protection-status i {
    font-size: 1.3rem;
    color: #28a745;
}

@keyframes pulse-status {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 230, 138, 0.3);
    }
}

.floating-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-1 {
    top: 20px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    animation: orbit-1 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 40px;
    left: 10px;
    background: linear-gradient(135deg, #3DDC84 0%, #2DA866 100%);
    animation: orbit-2 4s ease-in-out infinite;
}

@keyframes orbit-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(10deg);
    }
}

@keyframes orbit-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -20px) rotate(-10deg);
    }
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 240px;
        height: 420px;
    }

    .icon-item {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .floating-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Download Section Mobile Responsiveness */
@media (max-width: 991px) {
    #download .col-lg-5 {
        display: none;
    }

    #download .col-lg-7 {
        text-align: center;
    }

    #download h1 {
        font-size: 1.8rem;
    }

    #download .row.g-3 {
        justify-content: center;
    }

    #download .col-sm-6 {
        flex: 0 0 auto;
        width: 100%;
    }

    #download .d-flex.align-items-center {
        justify-content: center;
    }

    .download-btn-wrapper {
        text-align: center;
    }

    .download-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    #download .text-muted {
        text-align: center;
    }
}

@media (max-width: 576px) {
    #download h1 {
        font-size: 1.5rem;
    }

    .download-btn {
        padding: 15px 25px !important;
    }

    .download-btn strong {
        font-size: 1rem !important;
    }
}


/*** Mobile Sidebar Menu ***/
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary) 0%, #0d1a2d 100%);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

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

.sidebar-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header img {
    margin-left: 10px;
}

.sidebar-header span {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    flex-grow: 1;
}

.sidebar-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.sidebar-nav {
    flex-grow: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-right: 3px solid transparent;
}

.sidebar-link i {
    margin-left: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--primary);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-right-color: var(--primary);
}

.sidebar-link:hover i,
.sidebar-link.active i {
    color: white;
}

.sidebar-footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sidebar Social Icons */
.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sidebar-social .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sidebar-social .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Hide sidebar on desktop */
@media (min-width: 992px) {

    .sidebar-menu,
    .sidebar-overlay,
    #sidebarToggle {
        display: none !important;
    }
}