.container {
    max-width: 1720px;
    padding: 0 20px;
    margin: 0 auto;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

/* terms and condition page */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.header p {
    font-size: 1.1em;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.content {
    padding: 50px 40px;
}

.section {
    margin-bottom: 40px;
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.section:nth-child(1) {
    animation-delay: 0.1s;
}

.section:nth-child(2) {
    animation-delay: 0.2s;
}

.section:nth-child(3) {
    animation-delay: 0.3s;
}

.section:nth-child(4) {
    animation-delay: 0.4s;
}

.section:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
}

.section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.section ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    font-size: 1.05em;
    transition: transform 0.2s ease;
}

.section ul li:hover {
    transform: translateX(5px);
}

.section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2em;
}

.highlight-box {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    border-left: 4px solid #667eea;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.contact-info {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
    border: 2px solid #e0e0e0;
}

.contact-info h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.contact-item {
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item span {
    font-weight: 600;
    color: #333;
    min-width: 60px;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.footer {
    background: #f5f5f5;
    padding: 30px;
    text-align: center;
    color: #777;
    font-size: 0.95em;
}

.footer p {
    margin: 5px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 1em;
    }

    .content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.4em;
    }

    .section p,
    .section ul li {
        font-size: 1em;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .footer {
        padding: 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.2em;
    }

    .section {
        margin-bottom: 30px;
    }
}

/* Footer css Start*/
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: auto;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 25px;
    border: none;
    background: #ff6b6b;
    color: white;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 0;
    }

    footer h5 {
        margin-top: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        border-radius: 25px;
        margin-bottom: 10px;
    }
}

/* Footer css End*/

/* refund banner */
.terms-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.terms-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.terms-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.terms-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.banner-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terms-banner {
        padding: 60px 0;
    }

    .terms-banner h1 {
        font-size: 2rem;
    }

    .terms-banner p {
        font-size: 1rem;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
    }

    .banner-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .terms-banner {
        padding: 40px 0;
    }

    .terms-banner h1 {
        font-size: 1.5rem;
    }

    .terms-banner p {
        font-size: 0.9rem;
    }
}

/* refund banner end */

/* about us page */
.services-section {
    background: #f8f9fb;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f1f1f;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}

.service-card {
    background: #ffffff;
    border-radius: 14px;
    transition: 0.3s;
    border: 1px solid #e8e8e8;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 40px;
    color: #007bff;
}

main {
    margin-top: 50px;
}

/* about us page end */
/* about us radio section start */
.radio-banner {
    background: linear-gradient(135deg, #0f172a 0%, #0b1220 45%, rgba(10, 10, 40, 0.85) 100%);
    color: #fff;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.radio-banner .eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .4px;
    margin-bottom: 1rem;
    color: #e6f0ff;
}

.radio-banner h1 {
    font-size: clamp(1.6rem, 2.6vw, 2.6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.radio-banner p.lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.03rem;
    margin-bottom: 1.25rem;
}

.radio-banner .btn-cta {
    background: linear-gradient(90deg, #ff6b6b, #ffb86b);
    border: none;
    padding: .7rem 1.15rem;
    font-weight: 600;
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(255, 107, 107, 0.18);
}

.radio-banner .btn-ghost {
    color: rgba(255, 255, 255, 0.95);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: .6rem 1rem;
    border-radius: 10px;
    margin-left: .6rem;
}

/* image card */
.banner-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}

.banner-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.6);
    transform: translateY(0);
    transition: transform .4s ease, box-shadow .4s ease;
    width: 100%;
    max-width: 560px;
}

.banner-image img {
    display: block;
    width: 100%;
    height: auto;
}

.banner-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.7);
}

/* subtle decorative circles */
.radio-banner::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -80px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03), transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.02), transparent 40%);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive spacing */
@media (max-width: 767.98px) {
    .radio-banner {
        padding: 2.2rem 0;
    }

    .banner-image {
        max-width: 420px;
    }

    .radio-banner p.lead {
        font-size: .98rem;
    }
}

/* about us radio section end */
/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
}

.slide-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay */
.slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.slide-item .container {
    position: relative;
    z-index: 2;
}

/* Slide Backgrounds */
.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
}

/* Typography */
.ls-2 {
    letter-spacing: 2px;
}

/* Slick Dots */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

footer ul li a.text-muted {
    color: #ffff !important;
}

.text-muted {
    color: #ffff !important;
}

/* about page start */
.about-banner {
    background: linear-gradient(135deg, #0d0f14, #1a1f27);
    color: #fff;
    border-radius: 12px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    margin: 20px 0;
}

.about-btn {
    padding: 10px 28px;
    background: #00d4ff;
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #fff;
    color: #000;
}

.about-img {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 185, 255, 0.2);
}

/* our mission section start */
/* Background Section */
.mission-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Glow Circle Background */
.mission-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent 70%);
    top: -100px;
    left: -100px;
    filter: blur(60px);
}

.mission-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent 70%);
    bottom: -120px;
    right: -120px;
    filter: blur(60px);
}

/* Glass Card */
.mission-card {
    background: linear-gradient(135deg, #0e0f14, #1a1c23);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

/* Icon */
.mission-icon-wrapper {
    background: linear-gradient(145deg, #00d4ff, #007bff);
    width: 150px;
    height: 150px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.mission-icon {
    font-size: 65px;
    color: #fff;
}

/* Text */
.mission-title {
    font-size: 42px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 15px;
}

.mission-text {
    font-size: 18px;
    line-height: 1.7;
    color: #dfefff;
}

/* our mission section end */

.feature-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.feature-icon {
    font-size: 3rem;
    color: #007bff;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 20px;
}

.feature-text {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 10px;
}

.feature-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
}


.offer-item {
    text-align: center;
    padding: 20px 10px;
}

.offer-icon {
    font-size: 48px;
    color: #007bff;
    margin-bottom: 15px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
}

.offer-item h5 {
    font-weight: 600;
}

.offer-item p {
    color: #555;
}

section.py-5.what-offer-section h2.text-center.section-title {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* about page end */