:root {
    --primary-color: #0a192f;
    --secondary-color: #0E3386;
    --dark-color: #0E3386;
    --light-color: #0E3386;
    --jio-red: #0E3386;
    --jio-blue: #0E3386;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand img {
    height: 30px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--jio-red) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--jio-red);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-jio {
    background-color: var(--jio-red);
    color: white;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-jio:hover {
    background-color: #c00909;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 10, 10, 0.3);
}

.btn-jio-outline {
    border: 2px solid var(--jio-red);
    color: var(--jio-red);
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-jio-outline:hover {
    background-color: var(--jio-red);
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, #0a84e1 0%, #0a192f 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.jio.com/Ecpc/images/hero-bg-pattern.png') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-image {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--jio-red);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.feature-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--jio-red);
    margin-bottom: 20px;
}

.work-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    height: 100%;
    margin-bottom: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(10, 132, 225, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: -1;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(10, 132, 225, 0.1);
    color: var(--jio-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(10, 132, 225, 0.25);
}

.price-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-header {
    background: linear-gradient(135deg, #0a84e1 0%, #0a192f 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    opacity: 0.8;
}

.spec-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.spec-item:last-child {
    border-bottom: none;
}

.buy-now-section {
    background: linear-gradient(135deg, #0a84e1 0%, #0a192f 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 20px;
}

.footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--jio-red);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--jio-red);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-image {
        margin-top: 30px;
        max-width: 80%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-title:after {
        width: 30%;
        height: 3px;
        bottom: -8px;
    }

    .price-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-jio,
    .btn-jio-outline {
        padding: 6px 20px;
        font-size: 0.9rem;
    }

    .footer-links {
        margin-bottom: 30px;
    }
}

/* Navbar Brand Hover */
.navbar-brand:hover span {
    color: #e10a0a !important;
}

/* Logo Sizes */
.logo-img.large {
    width: 200px;
    height: auto;
}

.logo-img.medium {
    width: 100px;
    height: auto;
}

.logo-img.exact-size {
    width: 200px;
    height: 100px;
    object-fit: contain;
}







.bg-soft-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #0a192f 0%, #00a4ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.specs-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.specs-card:hover {
    transform: translateY(-5px);
}

.spec-category {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.spec-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.icon-shape {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.spec-list li:hover {
    background: rgba(0, 0, 0, 0.01);
}

.spec-list li i {
    font-size: 6px;
    position: relative;
    top: 4px;
}

.bg-primary-soft {
    background-color: rgba(0, 120, 212, 0.1) !important;
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1) !important;
}

.bg-info-soft {
    background-color: rgba(23, 162, 184, 0.1) !important;
}


.bg-soft-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
}

.text-gradient {
    background: linear-gradient(90deg, #0a192f 0%, #00a4ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.specs-card {
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.specs-card:hover {
    transform: translateY(-5px);
}

.app-category {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.app-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.icon-shape {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.app-list li:hover {
    background: rgba(0, 0, 0, 0.01);
    padding-left: 5px;
}

.app-list li i {
    font-size: 6px;
    position: relative;
    top: -1px;
}

.bg-primary-soft {
    background-color: rgba(0, 120, 212, 0.1) !important;
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1) !important;
}

.bg-info-soft {
    background-color: rgba(23, 162, 184, 0.1) !important;
}

.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-purple-soft {
    background-color: rgba(111, 66, 193, 0.1) !important;
}

.text-purple {
    color: #6f42c1 !important;
}




.price-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.premium-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.bg-education-gradient {
    background: linear-gradient(135deg, #00a4ef 0%, #0a192f 100%);
    padding: 2rem;
}

.price-header {
    position: relative;
    overflow: hidden;
}

.price-header:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.list-unstyled li {
    padding: 0.5rem 0;
}

@media (max-width: 767.98px) {
    .price-card {
        margin-bottom: 2rem;
    }
}


.price-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.premium-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.bg-education-gradient {
    background: linear-gradient(135deg, #00a4ef 0%, #0a192f 100%);
    padding: 2rem;
}

.price-header {
    position: relative;
    overflow: hidden;
}

.price-header:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.list-unstyled li {
    padding: 0.5rem 0;
}

@media (max-width: 767.98px) {
    .price-card {
        margin-bottom: 2rem;
    }
}


/* Updated CSS for full image thumbnail */
.certification-img-container {
    height: 400px;
    position: relative;
    background-color: #f8f9fa;
    /* Light background for contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Add some spacing around the image */
}

.certification-img-container img {
    object-fit: contain;
    /* Show full image without cropping */
    max-height: 100%;
    transition: transform 0.3s ease;
}

.certification-card:hover .certification-img-container img {
    transform: scale(1.03);
    /* Slight zoom on hover */
}

.bg-gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    width: 100%;
}

.certification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.certification-card:hover .certification-overlay {
    opacity: 1;
}

.certification-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* Updated Navbar Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 80px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.navbar-brand span {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0a84e1;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover span {
    color: #e10a0a !important;
}

.nav-link {
    color: #0a84e1 !important;
    font-weight: 510;
    margin: 0 5px;
    position: relative;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-link:hover {
    color: var(--jio-red) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--jio-red);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-jio {
    background-color: var(--jio-red);
    color: white;
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.btn-jio:hover {
    background-color: #c00909;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 10, 10, 0.3);
}

/* Updated Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .nav-link {
        margin: 0 8px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Navbar adjustments for tablet */
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 10px 0;
        margin: 0;
    }

    .btn-jio {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-image {
        margin-top: 30px;
        max-width: 80%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-title:after {
        width: 30%;
        height: 3px;
        bottom: -8px;
    }

    .price-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Navbar adjustments for mobile */
    .navbar-brand img {
        height: 60px;
    }

    .navbar-brand span {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-jio,
    .btn-jio-outline {
        padding: 6px 20px;
        font-size: 0.9rem;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    /* Navbar adjustments for small mobile */
    .navbar-brand img {
        height: 50px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }
}

/* Additional responsive adjustments for menu items */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

/* Prevent navbar from breaking into multiple lines */
@media (min-width: 1200px) {
    .navbar-nav {
        flex-wrap: nowrap;
    }
}






/* Hardware & Software Specifications - Mobile Responsive */
/* No HTML changes needed - works with your existing structure */

/* Base Styles for Specifications Section */
#specifications .container {
    padding: 0 15px;
}

#specifications .specs-card {
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#specifications .card-header {
    padding: 20px;
    background: white;
    border-bottom: 1px solid #eee;
    text-align: center;
}

#specifications .card-body {
    padding: 20px;
}

/* Hardware Specifications Grid */
#specifications .row.g-4 {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

#specifications .row.g-4>[class*="col-"] {
    padding: 10px;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Specification Category Cards */
#specifications .spec-category {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    margin-bottom: 20px;
}

#specifications .d-flex.align-items-center.mb-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

#specifications .me-3 {
    margin-right: 0 !important;
    margin-bottom: 10px;
}

#specifications .spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#specifications .spec-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
}

#specifications .spec-list li:last-child {
    border-bottom: none;
}

#specifications .spec-list li .d-flex {
    display: block !important;
}

#specifications .spec-list li i {
    margin-right: 8px;
    font-size: 10px;
    vertical-align: middle;
}

/* Software Applications Grid */
#specifications .row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

#specifications .col-xxl-10 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
}

#specifications .software-apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* App Category Cards */
#specifications .app-category {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
}

#specifications .app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#specifications .app-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

#specifications .app-list li i {
    margin-right: 8px;
    font-size: 10px;
}

/* Color Variants */
#specifications .bg-primary-soft {
    background-color: rgba(0, 120, 212, 0.1) !important;
    color: #0a192f;
}

#specifications .text-primary {
    color: #0a192f !important;
}

/* Responsive Adjustments */
@media (min-width: 576px) {
    #specifications .row.g-4>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #specifications .software-apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #specifications .row.g-4>[class*="col-"] {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    #specifications .d-flex.align-items-center.mb-3 {
        flex-direction: row;
        align-items: center;
    }

    #specifications .me-3 {
        margin-right: 1rem !important;
        margin-bottom: 0;
    }

    #specifications .spec-list li {
        flex-direction: row;
    }

    #specifications .software-apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    #specifications .row.g-4>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #specifications .software-apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    #specifications .row.g-4>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #specifications .col-xxl-10 {
        flex: 0 0 83.333%;
        max-width: 83.333%;
    }

    #specifications .software-apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}




/* Mobile Toggle Menu Sticky on Scroll */
@media (max-width: 991.98px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1020;
        background-color: white !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 70px;
        /* Adjust based on your navbar height */
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1010;
    }

    .navbar-collapse.collapsing {
        transition: none;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    /* Adjust navbar brand on mobile */
    .navbar-brand img {
        height: 50px;
        transition: all 0.3s ease;
    }

    .navbar-brand span {
        font-size: 1.2rem;
    }

    /* Ensure proper spacing for mobile menu items */
    .navbar-nav {
        padding-top: 10px;
    }

    .nav-item {
        margin-bottom: 5px;
    }

    .nav-link {
        padding: 10px 0 !important;
        margin: 0 !important;
    }

    .btn-jio {
        width: 100%;
        margin-top: 10px;
    }
}

/* Smooth transition for desktop menu */
@media (min-width: 992px) {
    .navbar {
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}



/* Mobile Toggle Menu Sticky on Scroll */
@media (max-width: 991.98px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1020;
        background-color: white !important;
    }

    .navbar-collapse {
        position: fixed;
        top: 80px;
        /* Adjust based on your navbar height */
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1010;
    }

    /* Adjust navbar brand on mobile */
    .navbar-brand img {
        height: 50px;
        transition: all 0.3s ease;
    }

    .navbar-brand span {
        font-size: 1.2rem;
    }

    /* Ensure proper spacing for mobile menu items */
    .navbar-nav {
        padding-top: 10px;
    }

    .nav-item {
        margin-bottom: 5px;
    }

    .nav-link {
        padding: 10px 0 !important;
        margin: 0 !important;
    }

    .btn-jio {
        width: 100%;
        margin-top: 10px;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .navbar {
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

.brand-accent {
    color: #4a6bff;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(45deg, #4a6bff, #00c8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    background: linear-gradient(120deg, #4a6bff 0%, #00c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.tagline {
    display: block;
    font-size: 0.6em;
    font-weight: 400;
    margin-top: 12px;
    color: #6c757d;
}