:root {
    --primary-gradient: linear-gradient(75deg, #46A0FA 0%, #23D2A0 49.52%, #B387FF 100%);
    --secondary-gradient: linear-gradient(45deg, #667eea, #764ba2);
    --dark-bg: #0B0B0B;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #a7ccff, #4291ff, #45b7d1, #1678fe, #16aab5, #16c78b);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.85); */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(100px);
    z-index: -1;
}

/* Glass morphism navbar */
.navbar {
    position: sticky;
    top: 4px;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    width: 100%;
    /* max-width: 1320px; */
    padding: 15px 30px;
    /* background: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(20px);
    /* border: 1px solid var(--glass-border); */
    /* border-radius: 20px; */
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Ensure navbar-collapse is visible on desktop */
.navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    align-items: center;
}

/* Hide on mobile when not expanded */
@media (max-width: 991px) {
    .navbar .navbar-collapse:not(.show) {
        display: none !important;
    }
}

.navbar:hover {
    /* background: rgba(255, 255, 255, 0.15); */
    transform: translateX(0%) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    position: relative;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

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

/* Gradient buttons */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgb(42 131 255 / 45%);
    color: white;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    z-index: -1;
    border-radius: inherit;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.bg-transprent {
    border-radius: 6px;
    border: 1px solid #33384C;
    background: #1F2122;
    color: #fff;
}


/* Hero section */
.hero {
    min-height: 130vh;
    display: flex;
    /* align-items: center; */
    position: relative;
    overflow: hidden;
    padding: 150px 0;
}
.hero .container{
    position: relative;
    z-index: 9;
}
.hero-content {
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #1677ff, #16ff3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.1)); }
    to { filter: drop-shadow(0 0 40px rgba(107, 122, 255, 0.2)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.feature-pill {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-pill .hero-feature-icon {
    border: 1px solid #ffffff57;
    width: 45px;
    height: 40px;
    display: inline-flex
;
    margin-right: 15px;
    border-radius: 30px;
    background: #1677ff;
    justify-content: center;
    align-items: center;
}

/* Floating 3D elements */
.floating-element {
    position: absolute;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-cta .btn{
    padding: 15px 30px !important;
}

/* Marketplace section */
.marketplace {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    /* background: #000; */
}
.marketplace h2{
    color: #8B8B8B;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 32px;
}
.marketplace h2 span{
    color: #fff;
}
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: center;
    /* display: inline-flex; */
    /* justify-content: center; */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 20%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.marketplace-item {
    /* background: var(--glass-bg); */
    backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.6);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Ensure swiper slides have proper width */
.swiperbrand {
    width: 100%;
    overflow: hidden;
}

.swiperbrand .swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiperbrand .swiper-slide {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketplace-item p {
    font-size: 17px;
    margin-bottom: 0;
}
.marketplace-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.marketplace-item:hover::before {
    transform: translateX(100%);
}

.marketplace-item:hover {
    /* transform: scale(.95); */
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.marketplace-item img {
    filter: grayscale(1);
    filter: brightness(0) invert(1);
}
.flag {
    width: 120px;
    height: 40px;
    border-radius: 6px;
    margin-bottom: 0px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease;
    object-fit: contain;
}

.marketplace-item:hover .flag {
    transform: scale(1.1) rotate(5deg);
}


.cus-h2{
    color: #8B8B8B;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.cus-h2 span{
    color: #fff;
}

/* Features section */
.features {
    padding: 100px 0;
    position: relative;
}

.feature-card {
    background: transparent;
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 0px;
    border: 1px solid #29292A;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(255 255 255 / 10%), rgb(0 0 0 / 10%));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    /* transform: translateY(-10px) scale(1.02); */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.16px;
}

.feature-card p {
   color: #8E8D91;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
letter-spacing: -0.14px;
margin-bottom: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #d0d0d0;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

/* Why choose us section */
.why-choose {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    position: relative;
}

.why-choose-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 270px;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-choose-icon1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.why-choose-icon {
    font-size: 2.3rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: #ffffff; */
    /* background-clip: text; */
    transition: all 0.3s ease;
    /* border: 1px solid; */
    width: 80px;
    border-radius: 50%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    /* background: #2283f5; */
    /* color: #fff !important; */
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.2);
     display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #ffffff;
}

.why-choose-item p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: #d0d0d0;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.author-info h5 {
    margin-bottom: 0;
    color: white;
}

.author-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing section */
.pricing {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 2px solid #1e7ff873;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 27px;
    right: -37px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 35px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    color: #d0d0d0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

/* Contact section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-card p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.contact-card a {
    color: #3c8dff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.contact-card a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.contact .sub {
    color: #b0b0b0;
    margin-bottom: 10px;
}
.contact .item-box {
    /* background: #1b84ff1a; */
        background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #1b84ff;
    border-radius: 20px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
    margin-bottom: 2rem;

    
}
.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}
.support-section h5 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.contact .item-box p {
    opacity: 0.8;
    /* margin-bottom: 2rem; */
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
}
/* Contact form */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #1b84ffad;
    box-shadow: 0 0 0 0.25rem rgba(78, 154, 205, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}


.main-cta{

    background: url(../img/bottom-shape.svg);
    background-repeat: no-repeat;
    min-height: 500px;
    text-align: center;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    background-size: 100%;
}

.main-cta h2{
    color: #FFF;
    font-family: "DM Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 125% */
}
.main-cta p{
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}

/* Footer */
.footer {
     padding: 50px 0;
    text-align: center;
    background: var(--dark-bg);
    backdrop-filter: blur(20px);
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    position: relative;
    padding-bottom: 20px;
}
.sub-footer-abt{
    color: #FFF;
    font-family: "DM Sans";
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    margin-top: 20px;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

/* .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
} */
.footer-links ul li{
    text-align: start;
}
.footer-links ul li a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgba(255, 255, 255, 0.70);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
}
.footer-links ul li a:hover {
    color: #1b84ff;
}
.footer-links h6{
    text-align: start;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}
.footer .seprator{
    border-top: 1px dashed #3B3B3B;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer p {
    color: #b0b0b0;
    margin-bottom: 10px;
    margin-top: 30px;
}

/* Floating shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-gradient);
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Responsive adjustments */
/* Tablet breakpoint for hero section */
@media (max-width: 991px) {
    .hero .col-lg-7,
    .hero .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero .col-lg-7 {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero .col-lg-7 .hero-description p,
    .hero .col-lg-7 .hero-textarea {
        max-width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero .col-lg-7 .powerd-by p {
        justify-content: center;
    }
    
    .hero .col-lg-7 .hero-description h1 {
        text-align: center;
    }
    
    .hero .col-lg-7 .hero-description p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero .col-lg-7 .hero-textarea {
        max-width: 500px !important;
    }
    
    .hero .col-lg-7 .btn-grp {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .hero {
        margin-top: 0px;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }
    
    .hero .col-lg-7 {
        margin-bottom: 30px;
    }
    
    .hero-description h1 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    
    .hero-description p {
        font-size: 0.9rem !important;
    }
    
    .hero-textarea textarea {
        min-height: 56px !important;
        padding-right: 60px !important;
    }
    
    .btn-grp {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .btn-grp .btn {
        margin-bottom: 8px !important;
        width: 100% !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card, .contact-card, .pricing-card {
        padding: 30px;
    }

    .future-title {
        font-size: 29px !important;
        line-height: 44px !important;
    }
    
    .testimonial-text {
        font-size: 17px !important;
        line-height: 28px !important;
        max-width: 75%;
    }
    .marketplace {
        padding: 0px 0 !important;
    }
    
    .main-cta h2 {
        font-size: 26px !important;
        line-height: 40px !important;
    }
    
    .sub-footer-abt {
        font-size: 22px !important;
        line-height: 32px !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Animation classes */
.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}

/* Tooltip styles */
.tooltip-inner {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, 
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: rgba(0, 0, 0, 0.8);
}

/* Custom cursor - disabled */
.cursor {
    display: none !important;
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    display: none !important;
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Hover effects for cursor */
.btn-gradient:hover ~ .cursor,
.feature-card:hover ~ .cursor,
.marketplace-item:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(255, 255, 255, 0.8);
}

.btn-gradient:hover ~ .cursor-follower,
.feature-card:hover ~ .cursor-follower,
.marketplace-item:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(255, 255, 255, 0.1);
}


.bdr{
    border:1px solid red;
}

.btn {
    font-size: 13px;
    padding: 8px 12px;
    font-weight: 600;
}







 /* Privacy Policy Content */
.privacy-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-top: 150px;
    margin-bottom: 100px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #b0b0b0;
    font-size: 1rem;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #1677ff;
}
.privacy-section  a{
    color: rgb(98 161 255);
    text-decoration: none;
}

.privacy-section p, 
.privacy-section ul {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 500;
}


    /* Responsive adjustments */
@media (max-width: 768px) {
    
    .privacy-container {
        padding: 30px 20px;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .privacy-title {
        font-size: 2.2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }
}


.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.2s ease;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler i {
    color: #fff;
    font-size: 20px;
    display: block;
}


@media (max-width: 1199px) and (min-width: 992px){

    .nav-link {
        color: #ffffff !important;
        font-weight: 500;
        position: relative;
        margin: 0 2px;
        transition: all 0.3s ease;
        font-size: 13px;
    }
    .hero {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card, .contact-card, .pricing-card {
        padding: 30px;
    }
    
.btn-grp{
    bottom: 0 !important;
}
.hero-textarea textarea {
    min-height: 170px !important;
}
.btn-grp .btn{
    margin-bottom: 10px !important;
}
.main-cta{
    background-size: 100%;
}
}


/* Scroll reveal animation */
/* .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} */



.navbar-nav .nav-link.active {
    color: #46A0FA !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #46A0FA 0%, #23D2A0 100%);
    border-radius: 1px;
}

/* .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, rgb(78, 205, 196), rgb(22 119 255));
    border-radius: 2px;
} */

.growth {
    background: url(../img/bg-growth.svg);
    min-height: 500px;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: center;
}
.growth .growth-card {
    transition: all 0.3s ease;
}
.growth .growth-card .feature-icon{
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: #535353;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.growth .growth-card:hover .feature-icon{
    /* background: var(--primary-gradient); */
        transform: scale(1.2);
    transition: all 0.3s ease;
}

.growth .growth-card h5{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.16px;
}
.growth .growth-card:hover h5{
    color: #46A0FA ;
    background: linear-gradient(90deg, #46A0FA 0%, #23D2A0 49.52%, #B387FF 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.growth .growth-card p{
    color: #8E8D91;
    text-align: center;
    font-family: "DM Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.14px;
}

.cus-p{
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  opacity: 0.4; 
      mix-blend-mode: lighten;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(#00000000, #00000000, #0B0B0B, #0B0B0B);
}


.powerd-by p {
    background: linear-gradient(90deg, #46A0FA 0%, #23D2A0 49.52%, #B387FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-style: normal;
    font-weight: 550;
    line-height: 34px;
    position: relative;
    z-index: 99999999;
    display: inline-flex;
}

.hero-description h3 {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: -0.576px;
}
.hero-description p {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
}
.hero-textarea textarea{
    border-radius: 28px;
    background: rgba(22, 22, 22, 0.16);
    min-height: 140px;
    backdrop-filter: blur(10px); /* Apply a blur effect to the background behind */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 15px 20px;
}

.hero-textarea textarea:focus,
.hero-input-container input:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: white;
    outline: none;
}
.hero-textarea textarea::placeholder,
.hero-input-container input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.hero-input-container:focus-within {
    border-color: rgba(70, 160, 250, 0.4);
    box-shadow: 0 0 0 3px rgba(70, 160, 250, 0.1);
}

.btn-grp .btn{
    border-radius: 46px;
    border: 1px solid #626262;
    box-shadow: 0 0.75px 1.575px 0 rgba(0, 0, 0, 0.04);
    color: #FFF;
    text-align: center;
    font-size: 12.6px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 183.333% */
    padding: 4px 12px;
}
.hero-textarea{
    position: relative;
}
.hero-textarea-wrapper .btn-grp{
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.btn-grp{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-textarea .btn-icon{
    position: absolute !important;
    top: 20px;
    right: 20px;
    border-radius: 8px;
    border: 1px solid #222;
    background: #ffffff3b;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 0;

}



.bg-dark-box {
    background: var(--dark-bg);
    min-height: 500px;
    /* transform: translateY(-410px); */
    border-radius: 20px;
    padding-top: 70px;
}
.services{
    /* height: 100px; */
    margin-top: 0;
    padding-top: 60px;
}


.shadow-bottom {
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.00) 0%, #0B0B0B 100%);
    height: 150px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 9;
}





.future-title {
    background: linear-gradient(92deg, #D7D7D7 0.86%, #373737 47.55%, #D7D7D7 94.25%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    letter-spacing: -0.46px;
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}



.testimonial-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 70px 20px;
      border-top: 1px solid #29292A;
      border-bottom: 1px solid #29292A;
      position: relative;
      /* background: url(../img/tst.png); */
    }

.bg-img {
    opacity: 0.6;
    background: url(../img/tst.png) no-repeat;
    filter: blur(6.300000190734863px);
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    aspect-ratio: 153 / 88;
    position: absolute;
    bottom: 0;
    /* border: 1px solid red; */
}

    .testimonial-logo {
      font-weight: bold;
      margin-bottom: 30px;
      margin-top: 10px;
    }

    .testimonial-text {
      color: #8B8B8B;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 33px; /* 150% */
        letter-spacing: -0.2px;
        max-width: 75%;
        margin-bottom: 50px;
    }

    .testimonial-text strong {
      font-weight: bold;
      color: white;
    }

    .testimonial-text span {
      color: #fff;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-author img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .author-info {
      font-size: 14px;
    }

    .author-name {
      font-weight: bold;
    }

    .author-role {
      color: #8c8c8c;
    }

    /* Swiper navigation buttons */
    .swiper-button-next, .swiper-button-prev {
      background: rgba(255,255,255,0.1);
      width: 35px;
      height: 35px;
      border-radius: 6px;
    }

    .swiper-button-next::after, .swiper-button-prev::after {
      font-size: 14px;
      font-weight: bold;
      color: white;
    }
    .swiper-button-next{
     position: absolute;
     top: 22px;
     right: 0;
     z-index: 99;
    }
    .swiper-button-prev {
        position: absolute;
        top: 22px;
        right: 40px;
        z-index: 99;
        left: auto;
    }


    .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
    pointer-events: none;
}


.modal-backdrop {
    background-color: #0000009c;
    backdrop-filter: blur(5px);
    opacity: 1 !important;
}
.cus-btn .btn-dark{

    border-radius: 6px;
    border: 1px solid #33384C;
    background: #1F2122;
}
.cus-btn .btn{
    padding: 8px 10px;
}

.modal-content{
    background-color: transparent;
    border: 0;
}

.cus-par{
    color: rgba(255, 255, 255, 0.80);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.cus-head{
    color: #FFF;
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}
.cus-head span{
    color: #8B8B8B;
}

.cus-margin{
    margin-top: 8rem;
}

div#staticBackdrop {
    overflow: hidden;
}

/* ================================
   MOBILE RESPONSIVE STYLES
   ================================ */

/* Large devices and up - desktop navigation */
@media (min-width: 992px) {
    .navbar-collapse,
    .navbar-collapse.collapse {
        display: flex !important;
        flex-basis: auto;
        flex-grow: 1;
        align-items: center;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse .navbar-nav {
        flex-direction: row;
    }
    
    .navbar-collapse .nav-link {
        padding: 8px 16px !important;
        border-bottom: none;
    }
    
    .navbar-collapse .btn {
        width: auto;
        margin: 0 !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) {
    /* Navigation mobile menu improvements */
    .navbar {
        position: sticky !important;
        top: 0;
        z-index: 1050;
        background: #0B0B0B !important;
    }
    
    .navbar > .container {
        flex-wrap: wrap;
    }
    
    /* Show toggler on mobile */
    .navbar-toggler {
        display: flex !important;
    }
    
    /* Mobile menu - collapsed state */
    .navbar-collapse.collapse {
        display: none !important;
    }
    
    /* Mobile menu - open state */
    .navbar-collapse.show {
        display: block !important;
        flex-basis: 100%;
        flex-grow: 1;
        background: #0B0B0B !important;
        border-radius: 0 0 12px 12px;
        padding: 15px 0 20px !important;
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-collapse .navbar-nav {
        text-align: center;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    
    .navbar-collapse .nav-item {
        width: 100%;
    }
    
    .navbar-collapse .nav-link {
        padding: 14px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block;
        width: 100%;
        text-align: center;
        font-size: 15px;
        transition: background 0.2s ease;
    }
    
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:active {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .navbar-collapse .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .navbar-collapse .btn {
        width: calc(100% - 40px);
        margin: 10px 20px !important;
        justify-content: center;
        display: flex;
        min-height: 44px;
    }
    
    .navbar-collapse .ms-lg-3 {
        margin-left: 20px !important;
    }
    
    .navbar-collapse .me-auto {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    
    .navbar-collapse .mb-2 {
        margin-bottom: 0 !important;
    }
    
    .navbar-collapse .mb-lg-0 {
        margin-bottom: 15px !important;
    }
    
    /* Toggle button styling when open */
    .navbar-toggler:not(.collapsed) {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Hero section responsive */
    .hero .col-lg-7,
    .hero .col-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Growth section cards */
    .growth .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 25px;
    }
    
    /* Services section */
    .bg-dark-box {
        padding: 40px 20px;
    }
}

/* Small devices (landscape phones, 576px to 768px) */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero section */
    .hero {
        min-height: auto !important;
        padding: 80px 0 50px !important;
    }
    
    .hero .col-lg-7 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero .col-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .hero-description h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        line-height: 1.3 !important;
    }
    
    .hero-description p {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }
    
    .powerd-by p {
        font-size: 18px !important;
        line-height: 28px !important;
        justify-content: center;
    }
    
    /* Hero input container */
    .hero-input-container {
        flex-direction: row !important;
    }
    
    .hero-textarea-wrapper {
        max-width: 100% !important;
    }
    
    /* Button groups */
    .btn-grp {
        justify-content: center !important;
    }
    
    .btn-grp .btn {
        min-height: 44px;
        padding: 8px 16px !important;
        font-size: 11px !important;
    }
    
    /* Growth section */
    .growth {
        padding: 60px 0 !important;
        background-size: cover !important;
        min-height: auto !important;
    }
    
    .growth .col-lg-3,
    .growth .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    
    .growth .growth-card h5 {
        font-size: 14px;
    }
    
    .growth .growth-card p {
        font-size: 12px;
        line-height: 18px;
    }
    
    .growth .growth-card .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Services section */
    .services {
        padding-top: 40px !important;
    }
    
    .bg-dark-box {
        padding: 30px 15px !important;
        border-radius: 15px;
    }
    
    .cus-h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    .cus-p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    /* Feature cards in services */
    .feature-card {
        padding: 20px !important;
        margin-bottom: 0;
    }
    
    .feature-title {
        font-size: 15px !important;
    }
    
    .feature-description {
        font-size: 13px !important;
    }
    
    /* Testimonials */
    .testimonial-section {
        padding: 40px 15px !important;
    }
    
    .testimonial-text {
        font-size: 16px !important;
        line-height: 26px !important;
        max-width: 100% !important;
    }
    
    .testimonial-logo img {
        max-width: 120px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 12px;
    }
    
    /* Main CTA section */
    .main-cta {
        min-height: 350px !important;
        background-size: cover !important;
        padding: 40px 20px;
    }
    
    .main-cta h2 {
        font-size: 24px !important;
        line-height: 34px !important;
    }
    
    .main-cta p {
        font-size: 14px !important;
        line-height: 22px !important;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px !important;
    }
    
    .sub-footer-abt {
        font-size: 20px !important;
        line-height: 30px !important;
    }
    
    .footer-links h6 {
        margin-top: 25px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
    }
    
    /* Modal */
    .cus-margin {
        margin-top: 2rem !important;
    }
    
    .cus-head {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    
    .cus-par {
        font-size: 14px !important;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    /* Navbar */
    .navbar {
        padding: 10px 15px !important;
    }
    
    .navbar-brand img {
        width: 100px !important;
    }
    
    .navbar-toggler {
        padding: 8px 10px;
    }
    
    /* Hero section */
    .hero {
        padding: 70px 0 40px !important;
    }
    
    .hero-description h1 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-description p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    .powerd-by p {
        font-size: 16px !important;
    }
    
    .powerd-by img {
        width: 18px !important;
    }
    
    /* Hero input */
    .hero-input-container {
        padding: 6px 6px 6px 12px !important;
        border-radius: 12px !important;
    }
    
    .hero-input-container input {
        font-size: 0.85rem !important;
        padding: 8px 0 !important;
    }
    
    .hero-input-container .btn-icon {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }
    
    /* Button groups - stack on mobile */
    .btn-grp {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 6px !important;
    }
    
    .btn-grp .btn {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    
    /* Video container in hero */
    .hero .col-lg-5 > div {
        border-radius: 15px !important;
    }
    
    .video-play-overlay > div {
        width: 50px !important;
        height: 50px !important;
    }
    
    .video-play-overlay svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    /* Growth section - single column */
    .growth .col-lg-3,
    .growth .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .growth .growth-card {
        padding: 15px;
    }
    
    /* Services feature cards - single column */
    .bg-dark-box .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .feature-card {
        padding: 20px 15px !important;
    }
    
    .feature-card img {
        width: 35px;
        height: 35px;
    }
    
    /* Testimonials */
    .future-title {
        font-size: 22px !important;
        line-height: 32px !important;
    }
    
    .testimonial-section {
        padding: 30px 10px !important;
    }
    
    .testimonial-text {
        font-size: 14px !important;
        line-height: 22px !important;
        margin-bottom: 30px !important;
    }
    
    .testimonial-author img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .author-info {
        font-size: 12px !important;
    }
    
    /* Main CTA */
    .main-cta {
        min-height: 280px !important;
        padding: 30px 15px !important;
    }
    
    .main-cta h2 {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .main-cta p {
        font-size: 13px !important;
        line-height: 20px !important;
    }
    
    .main-cta .btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
    
    /* Footer */
    .footer .col-lg-4,
    .footer .col-lg-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .footer .text-start {
        text-align: center !important;
    }
    
    .sub-footer-abt {
        font-size: 18px !important;
        line-height: 26px !important;
    }
    
    .footer-links {
        margin-top: 30px;
    }
    
    .footer-links .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px;
    }
    
    .footer-links h6 {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .footer-links ul li {
        text-align: center !important;
    }
    
    .footer .seprator {
        margin: 20px 0;
    }
    
    .footer > .container > div:last-child {
        flex-direction: column !important;
        text-align: center;
        gap: 10px;
    }
    
    /* Modal adjustments */
    .modal-dialog {
        margin: 15px !important;
        width: calc(100% - 30px) !important;
        max-width: 100% !important;
    }
    
    .modal-body {
        padding: 20px !important;
    }
    
    .cus-head {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    
    .cus-par {
        font-size: 13px !important;
        line-height: 20px !important;
    }
    
    /* Privacy/Terms pages */
    .privacy-container {
        margin-top: 80px !important;
        padding: 20px 15px !important;
        border-radius: 15px;
    }
    
    .privacy-title {
        font-size: 1.8rem !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .navbar-toggler {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Remove hover effects that don't work on touch */
    .feature-card:hover,
    .growth-card:hover,
    .marketplace-item:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .btn:active {
        transform: scale(0.98);
    }
    
    .feature-card:active,
    .growth-card:active {
        background: rgba(255, 255, 255, 0.05);
    }
}