* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8%;
    border-bottom: 1px solid #C4C4C4;
}

.logo {
    display: flex;
    gap: 0.5rem;
    width: 155px;
    height: 40px;
    background: transparent;
    border:none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FB2C36, #ff9800);
    border-radius: 6px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: auto;
}

nav a {
    text-decoration: none;
    color: #4C493D;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FF6900;
}

/* Modal-trigger styled as a nav link (accessible <button>) */
.nav-link-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    color: #4C493D;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link-btn:hover {
    color: #FF6900;
}

/* Mobile menu toggle (hamburger) - hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    color: #4C493D;
    padding: 4px 8px;
}

.menu-toggle:hover {
    color: #FF6900;
}

/* Mobile side menu (drawer) */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #C4C4C4;
    margin-bottom: 1rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: #4C493D;
    padding: 4px 8px;
}

.mobile-nav-close:hover {
    color: #FF6900;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    margin: 0;
}

.mobile-nav-links a,
.mobile-nav-links .nav-link-btn {
    font-size: 17px;
    text-align: left;
}

.mobile-nav-links .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
}

/* Backdrop overlay behind the drawer */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1040;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero eyebrow badge (extracted from inline styles) */
.hero-badge {
    background-color: #FFF7F0;
    border: 1px solid #FFE4D6;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4A4A4A;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.05);
}

.btn-primary {
    background: linear-gradient(to right, #FF6900, #FB2C36);
    color: white;
    padding: 0.65rem 1.8rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 3rem 8% 2rem;
    margin: auto;
    display: block;
    text-align: center;
}

.hero-content {
    margin: 0 auto; 
    align-items: center;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.2;
    color: #2d2d2d;
    font-weight: bold;
}

.hero-text h1 .highlight {
    color: linear-gradient(to right, #FF6900, #FB2C36);
    background: linear-gradient(to right, #FF6900, #FB2C36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    color: #4C493D;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.btn-secondary {
    background: white;
    color: #FB2C36;
    padding: 0.65rem 1.8rem;
    border-radius: 12px;
    border: 2px solid #FB2C36;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
}


.hero-stats {
    width: 100%;
}

.hero-stats img {
    width: 100%;
    border-radius: 35px;
    height: 470px;
    object-fit: cover;
    object-position: center;

}

.stat-item h3 {
    font-size: 28px;
    color: #0A0A0A;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.stat-item p {
    color: #4C493D;
    font-size: 18px;
    font-weight: 500px;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    height: 100%;
}

/* Cards Grid */
.cards-section {
    margin-top: 70px;

}

.cards-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.2rem;
}

.card {
    border-radius: 24px !important;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.card-dark {
    grid-column: span 2;
    grid-row: span 2;
    background: url('https://images.pexels.com/photos/775203/pexels-photo-775203.jpeg?_gl=1*1xz32ww*_ga*MTU3Njg1Mzc0OC4xNzczMDQ5NDc4*_ga_8JE65Q40S6*czE3NzQzMzAxMzUkbzYkZzEkdDE3NzQzMzAxNTIkajQzJGwwJGgw');
    background-size: cover;
    background-position: center;
    color: white;
}

.card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7));
}

.card-dark h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: auto;
}

.card-orange {
    background: linear-gradient(135deg, #FF9933, #E57403);
}

.card-orange h3 {
    color: #FFFFFF;
}

.card-orange p{
    color: #FFFFFF;
}

.card-purple {
    background: linear-gradient(135deg, #10182E, #3A0664);
    color: white;
}

.card-yellow {
    background: url("../assets/YellowCard.png");
    color: #2d2d2d;
    border: 1px solid #FFE6C4;
    object-fit: cover;
    background-size: contain;
}

.card-pink {
    background: url("../assets/pinkCard.png");
    border: 1px solid #FFE2E2;
    object-fit: cover;
    background-size: contain;
}

.card-white {
    background: white;
    box-shadow: 0px 4px 34px 0px rgba(110, 110, 110, 0.25);
    border-top: 6px solid #FF9933;

}

.card-orange-2 {
    grid-column: span 2;
     background: linear-gradient(220deg, #E75B00 0%, #F43270 100% , #FF6900 0%, #FB2C36 100%);
    color: white;
}



.card-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 4;
}

.card-2 {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
}

.card-3 {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
}

.card-4 {
    grid-column: 5 / 6;
    grid-row: 2 / 3;
}

.card-5 {
    grid-column: 6 / 8;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-6 {
    grid-column: 3 / 6;
    grid-row: 3 / 4;
}

.card-7 {
    grid-column: 6 / 8;
    grid-row: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.card-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card p {
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1.5;
}

/* Digital Solutions */
.solutions {
    padding: 4rem 8%;
    background: #FFFBEE;
}

.solutions-content {
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 64px;
    margin-bottom: 0.8rem;
    font-weight: bold;
    color: #2d2d2d;
}

.section-title .highlight {
    color: #FB2C36;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #4C493D;
    margin-bottom: 3rem;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.solution-item {
    background: white;
    padding: 2rem;
    border: 1px solid #FFE6C4;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.div-icon {
    height: 64px;
    width: 64px;
    background: #FEF3F1;
    border: 1px solid #FFE6C4;
    border-radius: 18px;
    display: flex;
    margin-bottom: 15px;
}

.div-icon img {
    width: 24px;
    height: 24px;
    margin: auto;
}

.solution-item h3 {
    font-size: 24px;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #0A0A0A;
}

.solution-item p {
    color: #4C493D;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 15px;
}

.solution-item button i {
    margin-left: 5px;
}

/* Stats Banner */
.stats-banner {
    padding: 3rem 8%;
    background: linear-gradient(220deg, #E75B00 0%, #F43270 100% , #FF6900 0%, #FB2C36 100%);
}

.stats-banner-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 24px;
    color: white;
    text-align: left;
}

.stat-card h3 {
    font-size: 50px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: linear-gradient(to right, #FF6900, #FB2C36);
    background: linear-gradient(to right, #FF6900, #FB2C36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 20px;
    color: #101828;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-card span {
    font-size: 16px;
    font-weight: 400;
    color: #4C493D;
}

/* Platform Section */
.platform {
    padding: 4rem 8%;
    background: url("../assets/background2.png");
    background-size: cover;
    background-position: center;
}

.platform-content {
    max-width: 1200px;
    margin: 0 auto;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-item {
    background: white;
    border-radius: 24px;
    border: 1px solid #FFE6C4;
    border: 1px solid #FF6900;
    padding: 20px;
}

.platform-item1 {
    border: 1px solid #FF6900 !important;
}

.platform-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #101828;
}

.platform-div {
    display: flex;
    gap: 15px;
}

.platform-badge {
    background: #FFF7ED;

    height: 30px;
    border-radius: 25px;
    padding-left: 15px;
    padding-right: 15px;
}

.platform-badge1 {
    background: linear-gradient(to right, #FF6900, #FB2C36);
    height: 30px;
    border-radius: 25px;
    padding-left: 15px;
    padding-right: 15px;
}

.platform-badge1 span {
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.platform-badge span {
    font-weight: 500;
    color: white;
    color: linear-gradient(to right, #FF6900, #FB2C36);
    background: linear-gradient(to right, #FF6900, #FB2C36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-item p {
    color: #4C493D;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.secondary-button {
    cursor: pointer;

    border: none;
    font-size: 16px;
    font-weight: 700;
    color: linear-gradient(to right, #FF6900, #FB2C36);
    background: linear-gradient(to right, #FF6900, #FB2C36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.platform-phone {
    margin: auto;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: url("../assets/iPhone\ 13\ Pro.png");
    background-size: cover;
    background-position: center;
}

/* Ecosystem */
.ecosystem {
    padding: 4rem 8%;
    background: #fafafa;
}

.ecosystem-content {
    margin: 0 auto;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ecosystem-card {
    padding: 1rem;
    border-radius: 24px;
    color: white;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.eco-system-bgImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* like background-size: cover */
    z-index: 1;
}

/* Overlay */
.ecosystem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 105, 0, 0.4), rgba(251, 44, 54, 0.4), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.ecosystem-overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(251, 44, 54, 0.4), rgba(246, 51, 154, 0.4), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.ecosystem-card h3 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    margin-top: 6.5rem;
}

.ecosystem-card p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.eco-system-userdiv {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.eco-system-div {
    background: rgba(255, 255, 255, 0.2);
    z-index: 2;
    border-radius: 16px;
    padding: 10px;
    width: 100%;
}

.eco-system-div h4 {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.eco-system-div span {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 500;
}

/* Updates Section */
.updates {
    padding: 4rem 8%;
    background: white;
}

.updates-content {
    margin: 0 auto;
}

.upadtes-div {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-update {
    background: linear-gradient(to right, #FF6900, #FB2C36);
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 92px;
    cursor: pointer;
}

.btn-update1 {
    background: #F3F4F6;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    border-radius: 92px;
    cursor: pointer;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.update-card {
    border: 1px solid #FF6900;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.update-image {
    width: 100%;
    height: 240px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background: linear-gradient(135deg, #ddd, #eee);
    object-fit: cover;
}

.update-content {
    padding: 1.5rem;
}

.update-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.update-category {
    background: #FB2C36;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.update-date {
    color: #999;
    font-size: 0.8rem;
}

.update-content h3 {
    font-size: 24px;
    margin-bottom: 0.5rem;
    color: #0A0A0A;
    font-weight: 700;
    line-height: 1.4;
}

.update-content p {
    color: #4C493D;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.events-border {
    border: 1px dotted #EBEBEB;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.event-date {
    color: #4C493D;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.event-date i {
    font-size: 18px;
    color: #4C493D;
    margin-right: 10px;
}

.view-all-btn {
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
}

/* Testimonials */
.testimonials {
    padding: 4rem 8%;
    background: url("../assets/background2.png");
    background-size: cover;
    background-position: center;
}

.testimonials-content {
    margin: 0 auto;
}

.testimonals-rating-section {
    display: flex;
    justify-content: center;
    margin-bottom: 60px
}

.testimonals-rating-grid {
    display: flex;
    background: white;
    border-radius: 16px;
    box-shadow: 0px 4px 34px 0px rgba(148, 148, 148, 0.25);
    padding: 25px 50px;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonals-rating {
    text-align: center;

}

.testimonals-rating h6 {
    color: linear-gradient(to right, #FF6900, #FB2C36);
    background: linear-gradient(to right, #FF6900, #FB2C36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: Bold;
}

.testimonals-rating span {
    color: #4C493D;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.testimonal-rating-border {
    border: 1px solid black;
    opacity: 0.1;
    height: 45px;
}



.testimonials-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center
}

.testimonial-main {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

.testimonial-play-btn {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    z-index: 3;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.4);
    transition: 0.3s ease;
}

.testimonial-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-play-btn i {
    color: white;
    font-size: 34px;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 25, 45, 0.95) 0%, rgba(10, 25, 45, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    z-index: 2;
}

/* HIDE OVERLAY WHEN PLAYING */
.testimonial-main.playing .testimonial-overlay {
    opacity: 0;
    transition: 0.3s ease;
}
.testimonial-overlay p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700
}

.testimonial-overlay span {
    color: white;
    font-size: 18px;
    text-align: center;
    font-weight: 500
}

.testimonials-list {
    flex: 1.5;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 65px 40px;
    align-content: center;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(to right, #FF6900, #FB2C36);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0px 10px 15px -3px rgba(0, 0, 0, 0.1),
        0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar i {
    font-size: 30px;
    transform: rotate(180deg);
    color: #FFFFFF;
}

.testimonal-stars i {
    font-size: 16px;
    color: #FF8904;
    margin-right: 3px;
}

.testimonial-item p {
    color: #4C493D;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 10px;
}

.testimonial-author img {
    height: 54px;
    width: 54px;
    border-radius: 60px;
    object-fit: cover;
    border:1px solid #FF8904;
}

.testimonial-authorDetails h6 {
    font-weight: 600;
    font-size: 16px;
    color: #0A0A0A;
}

.testimonial-authorDetails span {
    font-size: 14px;
    color: #4C493D;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 3.5rem 8%;
    background: linear-gradient(to top, #180203, #2d1810);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
}

.cta p {
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.cta div {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.contact-input {
    height: 50px;
    width: 300px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 12px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta .btn-primary {
    background: linear-gradient(135deg, #FB2C36, #ff9800);
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    padding: 0.8rem 2.5rem;
}

/* Footer */
footer {
    padding: 3rem 8% 2rem;
    background: #1E2939;
    color: white;
}

.footer-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 700;
    color:#FFFFFF ;
}

.footer-section ul {
    list-style: none;
    text-align: justify;
    display: contents;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF6900;
}

/* Modal-trigger styled as a footer link (accessible <button>) */
.footer-section .link-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-section .link-btn:hover {
    color: #FF6900;
}

.footer-logo {
    margin-bottom: 1rem;
    height: 60px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
    max-width: 220px;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    cursor: pointer;
    display: flex;
}

.social-icon:hover {
    background: #FF6900;
    opacity: 0.4;
}

.social-icon i {
    color: #D1D5DC;
    font-size: 18px;
    margin: auto;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* Responsive queries removed and appended to the bottom */
.header-bg {
    background: url("../assets/Gradient-pastel-1.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    height: auto;
    width: auto;
    padding: 0.65rem 1rem;
    display: flex;
    gap: 15px;

}

.overlay-left {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    background: linear-gradient(to right, #FF6900, #FB2C36);
}

.overlay-left img {
    width: 24px;
    height: 24px;
    margin: auto;
}

.overlay-templename {
    font-size: 18px;
    font-weight: 700;
    color: #101828;
}

.overlay-templedeta {
    font-size: 14px;
    color: #4C493D;
}

.overlay-card {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            /* transparent at top */
            rgba(0, 0, 0, 1) 100%
            /* full black at bottom */
        );
    z-index: 1;
}

.overlay-card span {
    font-size: 18px;
    font-weight: 500;
    bottom: 10%;
    position: absolute;
    left: 35%;
    color: #FFFFFF;
}

.card-span {
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
}

.card-orange-img {
    height: 58px;
    width: 58px;
}

.card-span2 {
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
}

.orange-card-bottom {
    margin-top: 150px;
}

.sunrise-img {
    height: 42px;
    width: 42px;
    margin: auto;
}

.card-span-dark {
    font-weight: 500;
    font-size: 16px;
    color: #0A0A0A;
    text-align: center;
    display: block;
}

.rise-time {
    color: #0A0A0A;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.purple-card-span1 {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.6;
}

.purple-card-span2 {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.purple-card-img {
    height: 46px;
    width: 46px;
}

.purple-card-border {
    border-bottom: 0.5px solid #FFFFFF;
    opacity: 0.2;
}

.purple-display {
    display: flex;
    gap: 15px;
    align-items: center;
}

.Purple-card-button {
    background: rgba(255, 255, 255, 0.2);
    border: 0.5px solid rgba(255, 255, 255, 3);
    border-radius: 24px;
    padding: 10px;
    width: fit-content;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 10px;
}

.Purple-card-button span {
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
}

.purple-display h4{
    color: #FFFFFF;
}

.stars-img {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 90px;
    height: 150px;
    opacity: 0.8;
    pointer-events: none;
}

.card-white-display {
    display: flex;
    gap: 15px;
}

.card-white-img {
    height: 152px;
    width: 152px;
    border-radius: 16px;
}

.card-white-span {
    color: #4C493D;
    font-size: 16px;
    font-weight: 500;
}

.card-orange-2span {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

.card-orange-2header {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 700;
}

/* =========================================
   COMPREHENSIVE RESPONSIVE STYLES
   ========================================= */

/* Tablet Landscape and Smaller Laptops */
@media (max-width: 1024px) {

    header,
    .hero,
    .solutions,
    .stats-banner,
    .platform,
    .ecosystem,
    .updates,
    .testimonials,
    .cta,
    footer,
    .orbit-section, .advisroy,.built-community {
        padding: 2rem 5% !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .card-1 {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 350px;
    }

    .card-2 {
        grid-column: 1 / 2;
        grid-row: span 2;
    }

    .card-3 {
        grid-column: 2 / 3;
        grid-row: auto;
    }

    .card-4 {
        grid-column: 2 / 3;
        grid-row: auto;
    }

    .card-5 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .card-6 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .card-7 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .solutions-grid,
    .stats-banner-grid,
    .ecosystem-grid,
    .updates-grid,
    .testimonals-rating-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonials-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}


.modal_title{
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
}
.modal_title .highlight{
     color: linear-gradient(to right, #FF6900, #FB2C36);
    background: linear-gradient(to right, #FF6900, #FB2C36);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact-us-modal p{
    margin-bottom: 30px;
    text-align: center; 
    color: #101828;
    font-weight: 500;
    font-size: 16px;
}


.contact-form div {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    font-size: 14px; 
    font-weight: 500; 
    color: #4C493D; 
    margin-bottom: 5px;
}

.contact-form input{
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    font-size: 14px; 
    font-family: 'Inter', sans-serif; 
    box-sizing: border-box; 
    outline: none; 
    transition: border-color 0.3s;
}
.contact-form label span{
    color: red;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
}

input:focus, textarea:focus {
  border-color: #FF5722;
}

/* Orbit Section Layout */
.orbit-section {
    padding: 4rem 8%;
    background: url("../assets/background2.png");
    background-size: cover;
    background-position: center;
}

.orbit-container {
    max-width: 1200px;
    margin: 70px auto;
    height: 640px;
    position: relative;
}

/* Elliptical Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(255, 105, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 650px;
    height: 280px;
}

.ring-2 {
    width: 950px;
    height: 420px;
}

.ring-3 {
    width: 115%;
    height: 550px;
}

/* Center Laptop Mockup */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 480px;
    width: 435px;
}

.laptop-mockup {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.laptop-screen {
    background: #111;
    border-radius: 20px 20px 0 0;
    padding: 12px 12px 20px 12px;
    position: relative;
    border: 2px solid #333;
    border-bottom: none;
}

.laptop-screen img {
    width: 100%;
    height: 280px;
    border-radius: 4px;
    background: #fff;
    object-fit: cover;
    object-position: left
}

.laptop-base {
    width: calc(100% + 60px);
    height: 16px;
    background: linear-gradient(to right,#0D1012 0%,#CAD4DB 3%,#242729 6%,#A3ACB1 13%, #A3ACB1 87%,#242729 94%,#CAD4DB 97%, #0D1012 100%);
    border-radius: 2px 2px 15px 15px;
    margin-left: -30px;
    position: relative;
    box-shadow: inset 0 -4px 10px rgba(0,0,0,0.2);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #9ea2a8;
    border-radius: 0 0 10px 10px;
}

/* Orbit Badges */
.orbit-badge {
    position: absolute;
    background: white;
    padding: 12px 22px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 20px;
    color: #101828;
    white-space: nowrap;
    z-index: 10;
    border: 1.5px solid #FFE6C4;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
}

.orbit-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 105, 0, 0.15);
    border-color: rgba(255, 105, 0, 0.3);
}

.orbit-badge img {
    width: 20px;
    height: 20px;
}


/* Badge Positions */
.badge-1 { top: -4%; left: 35%; transform: translateX(-50%); }
.badge-2 { top: -3%; left: 52%; }
.badge-3 { top: 11%; left: 9%; }
.badge-4 { top: 28%; left: 8%; transform: translateX(-50%); }
.badge-5 { top: 48%; left: 8%; transform: translateY(-50%); }
.badge-6 { top: 65%; left: 3%; }
.badge-7 { top: 82%; left: 15%; }
.badge-8 { top: 90%; left: 28%; }
.badge-9 { top: 90%; left: 55%; }
.badge-10 { top: 82%; left: 80%; }
.badge-11 { top: 68%; left: 85%; }
.badge-12 { top: 52%; right: 12%; }
.badge-13 { top: 37%; right: -5%; }
.badge-14 { top: 22%; right: 0%; }
.badge-15 { top: 8%; right: 5%; }

@media (max-width: 1024px) {
    .orbit-container {
        height: 550px;
    }
    .orbit-ring {
        display: none;
    }
    .orbit-center {
        width: 350px;
    }
    .orbit-badge {
        font-size: 13px;
        padding: 10px 16px;
    }
    .badge-1 { top: -2%; left: 30%; }
    .badge-4 { left: 15%; }
    .badge-6 { left: 10%; }
    .badge-7 { left: 10%; }
    .badge-10 { left: 70%; }
    .badge-11 { left: 75%; }
    .badge-14 { right: 5%; }
    .badge-15 { top: 5%; right: -2%; }
}

.about-section {
    padding: 4rem 8%;
    background: url(../assets/background2.png);
    background-size: cover;
    background-position: center;

}

.about-container {
    margin: 0 auto;
}
.about-div{
    background: radial-gradient(circle, #FFF8E0 0%, #FFEEB2 100%);
    border-radius: 32px;
    padding: 64px;
    box-shadow: 0px 4px 44px 0px rgba(135, 135, 135, 0.25);
}
.about-row{
    display: flex;
    flex-wrap: wrap;
}

.mission-div,
.vision-div {
    height: 100%;
}


.about-div h5{
    color: #4C493D;
    font-weight: bold;
    font-size: 32px;
}
 
.about-div p{
    font-weight: 500;
    font-size: 18px;
    color: #4C493D;

}
.mission-div{
    background: linear-gradient(to right, #FF9933 0%, #E57403 100%);
    box-shadow: 0px 4px 34px 0px rgba(135, 135, 135, 0.25);
    border-radius: 24px;
    padding: 32px;
}

.mission-div img{
    width: 52px;
    height: 52px;
}
.mission-div h5{
    color: #FFFFFF;
    font-weight: 700;
    font-size: 32px;
    margin-top: 15px;
}
.mission-div p{
    margin-top: 15px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: inherit;
}
.vision-div{
    background: linear-gradient(to right, #E75B00 0%, #F43270 100%);
    box-shadow: 0px 4px 34px 0px rgba(135, 135, 135, 0.25);
    border-radius: 24px;
    padding: 32px;
}

.vision-div img{
    width: 52px;
    height: 52px;
}

.vision-div h5{
    color: #FFFFFF;
    font-weight: 700;
    font-size: 32px;
    margin-top: 15px;
}

.vision-div p{
    margin-top: 15px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    line-height: inherit;
}

/* Built for the Jain Community */
.built-community {
    padding: 4rem 8%;
    background: #fafafa;
}

.built-community-content {
    margin: 0 auto;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.community-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    background-color: #fff;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.card-digisanstha {
    background-image: url('../assets/digisansthbg.png');
}

.card-deshna {
    background-image: url('../assets/deshnabg.png');
}

.community-card-content {
    padding: 40px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.community-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 52px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    background: transparent;
}

.badge-orange {
    background-color: #FEF5E9;
    border: 1.5px solid #C1732B;
    color:#C1732B;
}

.badge-purple {
    background-color: #F1EAFF;
    border: 1.5px solid #8D61EB;
    color:#8D61EB;
}

.community-card h3 {
    font-size: 42px;
    font-weight: bold;
    color: #0A0A0A;
    margin-bottom: 20px;
}

.community-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    opacity: 0.8;
    margin-bottom: 20px;
}

.community-card p {
    font-size: 16px;
    font-weight: 500;
    color: #4C493D;
    line-height: 1.5;
    margin-bottom: 30px;
}

.community-btn {
    padding: 5px 16px;
    border-radius: 12px;
    height: 50px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.community-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.community-btn-orange {
    background-color: #C1732B;   
}

.community-btn-purple {
    background: linear-gradient(to right, #8157E3 0%, #DF5EA5 100%);
}

.community-card-img{
    width: 100% !important;
    height: 100% !important;
    justify-content: end;
    display: flex;
}
.community-card-img img{
    width: 500px;
    height: 350px;
}

/* Advisroy board */
.advisroy {
    padding: 4rem 8%;
    background: white;
}

.advisory-board-content {
    margin: 0 auto;
}

.advisory-grid {
    /* margin-top: 3rem; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.advisory-card {
    position: relative;
    overflow: hidden;
    height: 430px;
    cursor: pointer;
}

.advisory-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.advisory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 40%, transparent 100%);
    color: white;
}

.advisory-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.advisory-overlay span {
    font-size: 18px;
    font-weight: 500;
    color: #e0e0e0;
}
#managementTeam {
  display: grid;
  grid-template-columns: repeat(3, auto); /* or adjust based on cards */
  justify-content: center; 
}
/* Responsive overrides for appended sections */
@media (max-width: 1024px) {
    .advisory-grid,
    #managementTeam {
        grid-template-columns: repeat(2, 1fr);
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
    .community-card {
        min-height: auto;
    }
    .community-card-img img {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .community-card-img img {
        width: 100%;
    }
    .orbit-center{
        display: none;
    }
     nav {
        display: none;
        /* Keep hidden as original */
    }

    /* Show hamburger, hide the desktop Login button on mobile */
    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    .header-login-btn {
        display: none;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 48px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .card-1 {
        min-height: 250px;
    }

    .solutions-grid,
    .stats-banner-grid,
    .ecosystem-grid,
    .updates-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Stats banner adjustment */
    .stat-card h3 {
        font-size: 40px;
    }

    /* Hide the phone mockup on small screens gracefully */
    .platform-phone {
        display: none;
    }

    /* Layout fix for spacing in testimonials rating grid */
    .testimonals-rating-grid {
        gap: 20px;
        padding: 20px;
    }

    /* Reset fixed min-width on testimonials video that breaks mobile view */
    .testimonial-main {
        min-width: 100%;
        max-width: 100%;
    }

    /* Make CTA inputs vertical on small screens */
    .cta div {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-input {
        width: 100%;
        max-width: 350px;
    }

    .orbit-section {
        min-height: auto;
        background-position: unset;
    }
    .orbit-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: static;
        height: auto;
        gap: 15px;
    }
    .orbit-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        order: -1;
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
    .orbit-badge {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .advisory-card {
        height: auto !important;
    }
    .community-card-img img {
        width: 100%;
    }
    .community-card-content {
        padding: 24px;
    }

     header,
    .hero,
    .solutions,
    .stats-banner,
    .platform,
    .ecosystem,
    .updates,
    .testimonials,
    .cta,
    footer,  .orbit-section, .advisroy, .built-community, .about-section {
        padding: 1rem 5% !important;
    }

    .logo img {
        height: auto;
        object-fit: contain;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 16px;
        padding: 0.6rem 1.2rem;
        font-weight: 700;
        text-align: center;
        display: block;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px !important;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* Testimonials inner spacing adjustments */
    .testimonals-rating h6 {
        font-size: 24px;
    }

    .testimonals-rating span {
        font-size: 12px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-card h3 {
        font-size: 36px;
    }

    /* Group buttons clearly on mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .upadtes-div {
        flex-direction: column;
        gap: 10px;
        padding: 0 1rem;
        margin-top: 15px;
    }

    .events-border {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    /* Prevent hero background overlay from overflowing */
    .overlay {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    /* Ensure the video poster looks right */
    .testimonial-main video {
        height: 450px;
    }

    /* White card row layout */
    .card-white-display {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-white-img {
        width: 100%;
        height: auto;
    }

    .card h3 {
        font-size: 20px;
    }

    /* Move background stars so they don't break flex layout or clip text */
    .stars-img {
        width: 60px;
        height: 100px;
        top: 10px;
        right: 10px;
    }

    /* Cards with horizontal internal content should stack cleanly */
    .eco-system-userdiv,
    .purple-display {
        flex-direction: column;
    }

    .hero-text div, .eco-system-div span, .community-badge{
        font-size: 12px !important;
    }

    .hero-stats img{
        height: 350px !important;
    }
    .stat-card{
        padding: 1rem !important ;
    }
    .stats-banner-grid{
      grid-template-columns: repeat(2, 1fr) !important; 
    }
    .solutions-grid, .stats-banner-grid, .ecosystem-grid, .updates-grid, .community-grid{
        gap: 1rem !important;
    }
    .section-subtitle{
        font-size: 16px;
        margin-bottom: 0.5rem !important;
    }
    .solution-item h3 .stat-card h3, .ecosystem-card h3, .community-card h3{
        font-size: 20px !important;
    }
    .about-div, .mission-div, .vision-div{
        padding: 20px !important;
    }
    .about-div h5, .mission-div h5, .vision-div h5{
        font-size: 18px !important;
        margin-top: 10px;
    }
    .about-div p, .mission-div p, .vision-div p, .ecosystem-card p, .community-card p{
        font-size: 16px;
    }
    .stat-card p,.community-card h4{ 
        font-size: 18px !important;
        margin-bottom: 5px;
    }
    .orbit-container{
      margin: 20px auto !important  
    }
    .advisory-overlay h3,.footer-section h4, .footer-section a{
        font-size: 14px !important;
    }
    .advisory-overlay{
       padding: 1rem 0.5rem 0.5rem; 
    }
    .ecosystem-grid, .community-grid{
        margin-top: 1rem !important;
    }
    .community-card p{
        margin-bottom: 3% !important;
    }
    .testimonals-rating-grid {
        gap: 6px !important;
        padding: 10px !important;
    }
    .testimonals-rating-section{
        margin-bottom: 10px;
    }
    .testimonial-main{
        display: none;
    }
  
    .testimonials-list {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px;
        background: white;
        border-radius: 16px;
        box-shadow: 0px 4px 34px 0px rgba(148, 148, 148, 0.25);
    }

    .testimonials-list::-webkit-scrollbar {
        display: none;
    }
    .testimonial-item {
        min-width: 100%;
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    .footer-description{
        max-width: 100% !important;
    }
    .cta .btn-primary{
        width: 100% !important;
    }   
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
    }
    .footer-section a{
        text-align: left;
    }

    /* First section full width + centered */
    .footer-section:first-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Keep remaining 3 sections in one row */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===================== Scroll Navigator (liquid glass) ===================== */
.scroll-nav {
    position: fixed;
    right: 22px;
    bottom: 26px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.scroll-nav-btn {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0.38) 100%
    );
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    color: #FF6900;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(76, 73, 61, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.75),
        inset 0 -1px 1px rgba(255, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.85);
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        visibility 0.35s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

/* glass sheen highlight */
.scroll-nav-btn::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 25%,
        rgba(255, 255, 255, 0.65),
        rgba(255, 255, 255, 0) 55%
    );
    pointer-events: none;
}

.scroll-nav-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.scroll-nav-btn:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 245, 238, 0.7) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 240, 230, 0.5) 100%
    );
    box-shadow:
        0 12px 30px rgba(255, 105, 0, 0.22),
        inset 0 1px 1px rgba(255, 255, 255, 0.85),
        inset 0 -1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.04);
}

.scroll-nav-btn:active {
    transform: translateY(0) scale(0.96);
}

.scroll-nav-btn:focus-visible {
    outline: 2px solid #FF6900;
    outline-offset: 3px;
}

/* fallback when backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .scroll-nav-btn {
        background: rgba(255, 255, 255, 0.92);
    }
}

@media (max-width: 768px) {
    .scroll-nav {
        right: 14px;
        bottom: 18px;
        gap: 8px;
    }
    .scroll-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}
