/* ------ GLOBAL RESET ------ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
a{text-decoration:none;}
li{list-style:none;}

/* -------- Gold Variables -------- */
:root {
    --gold-1: #f5d68b;
    --gold-2: #d9aa3c;
    --gold-3: #b8860b;
    --dark-bg: #0d0d0d;
    --gold-text: linear-gradient(180deg, #f9e7b3, #d4a43c, #a67c00);
}

/* -------- HEADER -------- */
.tv-header {
    background: #0d0d0d;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.tv-logo {
    width: 55px;
    height: 65px;
    border-radius: 10%;
    filter: drop-shadow(0px 0px 12px rgba(255, 200, 50, 0.4));
    transition: 0.3s;
}
.tv-logo:hover {
    transform: scale(1.08);
}

/* Navbar Menu */
.tv-menu .nav-link {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px !important;
    background: var(--gold-text);
    -webkit-background-clip: text;
    color: transparent;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.tv-menu .nav-link:hover {
    color: #f5d68b;
    text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

/* Active Link */
.tv-menu .nav-link.active {
    color: #ffd86a !important;
    text-shadow: 0px 0px 8px rgba(255, 210, 60, 0.8);
}

/* Dropdown */
.tv-dropdown {
    background: #151515;
    border: 1px solid rgba(255, 215, 0, 0.25);
}
.tv-dropdown .dropdown-item {
    padding: 12px 20px;
    color: #f5d68b;
    font-weight: 600;
}
.tv-dropdown .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.15);
    color: #fff;
}

/* Login Button */
.tv-login-btn {
    background: linear-gradient(135deg, #f7d889, #d9a63d, #a77a08);
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-size: 17px;
    font-weight: 700;
    color: #0d0d0d;
    margin-left: 20px;
    box-shadow: 0px 0px 15px rgba(255, 200, 50, 0.4);
    transition: 0.3s ease-in-out;
}
.tv-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.6);
}
/* ------header end------- */

/* --------banner----------- */
/* -------- TradeVerse Banner -------- */
.tv-banner .carousel-item img {
    height: 90vh;
    object-fit: cover;
}

/* Golden Black Overlay */
.tv-banner .carousel-item::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.65)
    );
}

/* Premium Caption */
.tv-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 45%;
    color: #fff;
    z-index: 10;
}

.tv-caption h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 22px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #f9e7b3, #d4a43c, #a67c00);
    -webkit-background-clip: text;
    color: transparent;
}

.tv-caption h1 span {
    color: #f5d68b;
    text-shadow: 0px 0px 15px rgba(255, 200, 60, 0.8);
}

.tv-caption p {
    font-size: 1.2rem;
    color: #e7e7e7;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Premium Gold Button */
.tv-btn {
    background: linear-gradient(135deg, #f7d889, #d9a63d, #a77a08);
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    color: #0d0d0d;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 0px 15px rgba(255, 200, 50, 0.4);
    transition: 0.3s ease-in-out;
}

.tv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 0px 25px rgba(255, 215, 0, 0.7);
}

/* Animations (same as your existing) */
@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes slideInUp { from {transform: translateY(100%); opacity: 0;} to {transform: translateY(0); opacity: 1;} }
@keyframes zoomIn { from {transform: scale(0.5); opacity:0;} to {transform:scale(1); opacity:1;} }

.animated { animation-duration: 1s; animation-fill-mode: both; }
.slideInUp-delayed { animation-name: slideInUp; animation-delay: 0.8s; }
.zoomIn-delayed { animation-name: zoomIn; animation-delay: 1s; }
.fadeIn-delayed { animation-name: fadeIn; animation-delay: 1.2s; }

/* --------banner end----------- */

/* -----------about ------------ */
/* ------------------------------------
   TradeVerse Premium About Section
-------------------------------------*/
.tv-about {
    position: relative;
    background: #0a0a0a;
    padding-top: 120px;
    padding-bottom: 80px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Wave Shape */
.custom-shape-divider-top-tv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    overflow: hidden;
}

.custom-shape-divider-top-tv svg {
    width: 100%;
    height: 120px;
}

.custom-shape-divider-top-tv .shape-fill {
    fill: #d4a43c;
}

/* Section Title */
.tv-about-title {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #f9e7b3, #d4a43c, #9c6f00);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 12px rgba(255, 215, 100, 0.6);
}

/* Golden Highlight Text */
.highlight {
    background: linear-gradient(180deg, #f9e7b3, #d4a43c, #9c6f00);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Paragraph Styling */
.tv-about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #dcdcdc;
    margin-bottom: 22px;
}

/* Founder Name */
.tv-founder-name {
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;

    background: linear-gradient(180deg, #ffe9b0, #dbaa35, #a17300);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 10px rgba(255, 200, 60, 0.4);
}

/* Right Image */
.about_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-left: 3px solid #d4a43c;
    box-shadow: -5px 0 25px rgba(255, 214, 90, 0.3);
}

/* Founder Section Background */
.tv-founder-section {
    background: #111;
    border-radius: 10px;
    padding: 30px 0;
    box-shadow: 0px 0px 25px rgba(255, 200, 50, 0.06);
}

/* -----------about  end------------ */



/* -----------subcription------------ */
/* ===============================
   TradeVerse Premium Subscription
================================ */
.tv-subscription {
    position: relative;
    background: #0a0a0a;
    padding: 120px 0 80px;
    color: #fff;
}

/* Gold Shape */
.tv-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    overflow: hidden;
}

.tv-shape-top svg {
    width: 100%;
    height: 150px;
}

.tv-shape-top .shape-fill {
    fill: #d4a43c;
}

/* Titles */
.tv-sub-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f9e7b3, #d4a43c, #9c6f00);
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 12px rgba(255,215,100,.5);
}

.tv-sub-subtitle {
    color: #ccc;
    font-size: 18px;
    margin-top: 10px;
}

/* Plan Wrapper */
.tv-plan-wrapper {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/* Plan Card */
.tv-plan-card {
    background: linear-gradient(180deg, #121212, #0d0d0d);
    border: 1px solid rgba(212,164,60,.3);
    border-radius: 18px;
    padding: 40px 30px 55px;
    width: 320px;
    text-align: center;
    position: relative;
    transition: .4s ease;
    box-shadow: 0 10px 35px rgba(0,0,0,.6);
}

.tv-plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255,215,100,.25);
}

/* Featured Card */
.tv-plan-card.featured {
    border: 2px solid #d4a43c;
    transform: scale(1.05);
}

/* Icons */
.tv-plan-card img {
    width: 70px;
    margin-bottom: 15px;
}

/* Card Text */
.tv-plan-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffe9b0, #dbaa35, #a17300);
    -webkit-background-clip: text;
    color: transparent;
}

.tv-price {
    font-size: 40px;
    font-weight: 800;
    color: #f5d68b;
    margin: 15px 0;
}

.tv-desc {
    font-size: 16px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button */
.tv-plan-btn {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f7d889, #d9a63d, #a77a08);
    color: #0d0d0d;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 0 18px rgba(255,200,50,.4);
}

.tv-plan-btn:hover {
    box-shadow: 0 0 28px rgba(255,215,100,.7);
    transform: translateX(-50%) translateY(-3px);
}

/* -----------subcription end------------ */

/* -----------telegram------------ */
/* Premium Subscribe Section */
.premium-subscribe {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
}

.subscribe-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.subscribe-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.subscribe-content h2 span {
    color: #f4a261;
}

.subscribe-content .subtitle {
    font-size: 16px;
    color: #dcdcdc;
    margin-bottom: 30px;
}

/* Step Cards */
.step-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: #f4a261;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.step-text p {
    font-size: 14px;
    color: #e0e0e0;
}

/* Button */
.premium-btn {
    background: #f4a261;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.premium-btn:hover {
    background: #e76f51;
    color: #ffffff;
}

/* -----------telegram end------------ */

/* ----------why-us------------ */
/* WHY TRADE VERSE */
.why-tradeverse {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    overflow: hidden;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
}

.section-title h2 span {
    color: #f4a261;
}

.section-title p {
    color: #cfcfcf;
    margin-top: 10px;
}

/* Cards */
.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 25px;
    min-height: 260px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.why-card p {
    font-size: 15px;
    color: #e0e0e0;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

/* Button */
.why-btn {
    background: #f4a261;
    color: #000;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.why-btn:hover {
    background: #e76f51;
    color: #fff;
}

/* Top Wave */
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    width: calc(200% + 1.3px);
    height: 160px;
}

.custom-shape-divider-top .shape-fill {
    fill: #000000;
}

/* ----------why-us end------------ */

/* ------------mission & vision------------  */
/* MISSION & VISION */
.mv-tradeverse {
    background: linear-gradient(135deg, #0b1f2a, #000000);
    color: #fff;
    position: relative;
}

/* LEFT IMAGE */
.mv-image {
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ), url('../images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 520px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.mv-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.mv-overlay h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f4a261;
}

.mv-overlay p {
    color: #ddd;
}

/* RIGHT CONTENT */
.mv-content {
    padding-left: 20px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.section-title span {
    color: #f4a261;
}

/* CARDS */
.mv-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
}

.mv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.mv-icon.vision {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: #000;
}

.mv-icon.mission {
    background: linear-gradient(135deg, #2a9d8f, #1f776d);
    color: #fff;
}

.mv-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.mv-text p {
    color: #e0e0e0;
    font-size: 15px;
}

.small-text {
    font-size: 13px;
    opacity: 0.85;
}

/* BUTTON */
.mv-btn {
    background: #f4a261;
    color: #000;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.mv-btn:hover {
    background: #e76f51;
    color: #fff;
}

/* ------------mission & vision end------------  */

/* ---------contact---------- */
/* CONTACT SECTION */
.contact-tradeverse {
    background: linear-gradient(135deg, #0b1f2a, #000000);
    position: relative;
    color: #fff;
}

/* Headings */
.section-title {
    font-size: 42px;
    font-weight: 700;
}

.section-title span {
    color: #f4a261;
}

.section-sub {
    color: #ccc;
    font-size: 15px;
}

/* Cards */
.contact-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
}

/* Map */
.map-card {
    position: relative;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 20px;
    filter: grayscale(1) brightness(0.8);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    padding: 15px 20px;
    border-radius: 15px;
}

.map-overlay h4 {
    color: #f4a261;
    margin-bottom: 5px;
}

/* Form */
.form-card h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.form-card input,
.form-card textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding: 12px 5px;
    margin-bottom: 25px;
    color: #fff;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
    color: #aaa;
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: #f4a261;
}

/* Button */
.contact-btn {
    width: 100%;
    background: #f4a261;
    color: #000;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #e76f51;
    color: #fff;
}

/* Small text */
.small-text {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
}

/* ---------contact end---------- */


/* --------news----------- */
.faq-premium {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #fff;
}

.faq-badge {
    display: inline-block;
    background: rgba(240,128,128,0.15);
    color: lightcoral;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-title span {
    color: lightcoral;
}

.faq-subtitle {
    color: #cbd5f5;
    margin-bottom: 30px;
    max-width: 480px;
}

.faq-premium .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 15px;
}

.faq-premium .accordion-button {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 14px;
    font-weight: 500;
    padding: 18px;
}

.faq-premium .accordion-button:not(.collapsed) {
    background: rgba(240,128,128,0.2);
    color: lightcoral;
    box-shadow: none;
}

.faq-premium .accordion-body {
    background: rgba(255,255,255,0.04);
    border-radius: 0 0 14px 14px;
    color: #e5e7eb;
    padding: 20px;
}

.faq-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: linear-gradient(135deg, lightcoral, #ff6b6b);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.faq-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240,128,128,0.4);
}

.faq-img {
    max-width: 90%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* --------news end----------- */

/* -----------footer------- */
.tv-footer {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #e5e7eb;
    position: relative;
}

.tv-footer-wave svg {
    width: 100%;
    height: 120px;
}

.tv-footer-wave .shape-fill {
    fill: #020617;
}

.tv-logo {
    width: 80px;
}

.tv-desc {
    color: #cbd5f5;
    max-width: 320px;
}

.tv-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.tv-social li {
    width: 42px;
    height: 42px;
    border: 1px solid lightcoral;
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
}

.tv-social li i {
    color: lightcoral;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tv-social li:hover {
    background: lightcoral;
}

.tv-social li:hover i {
    color: #020617;
}

.tv-footer-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: lightcoral;
}

.tv-links li,
.tv-contact li {
    margin-bottom: 14px;
    font-size: 15px;
}

.tv-links a {
    color: #e5e7eb;
    transition: 0.3s;
}

.tv-links a:hover {
    color: lightcoral;
    padding-left: 5px;
}

.tv-contact i {
    color: lightcoral;
    margin-right: 10px;
}

.tv-footer-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, lightcoral, #ff6b6b);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.tv-footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240,128,128,0.4);
}

.tv-footer-bottom {
    text-align: center;
    padding: 18px;
    background: rgba(255,255,255,0.05);
    font-size: 14px;
}

.tv-footer-bottom span {
    color: lightcoral;
}

.tv-disclaimer {
    background: #020617;
    color: #cbd5f5;
    font-size: 13px;
    padding: 8px 0;
}

/* -----------footer end----------- */

/* ==========================================================================
======================================================media querry================================
=========================================================================== */
@media(max-width:1200px) {
    header nav .nav-link {
        padding: 10px !important;
    }

    .why-us .left a {
        display: inline-block;
        margin-bottom: 20px;
    }

    .service h2 {
        color: #fff;
        font-size: 36px;
        padding-bottom: 10px;
    }
}


@media(max-width:991px) {
    .navbar-brand {
        width: 12%;
    }

    .about img {
        margin-top: 40px;
    }

    .about .para {
        width: 100%;
        margin: 0 auto;
        display: none;
    }

    .about h2 {
        display: none;
    }

    .about .row1 {
        padding-bottom: 30px !important;
    }

    .about p {
        padding-top: 30px;
    }

    .custom-shape-divider-top-1734431522 svg {
        position: relative;
        display: block;
        width: calc(285% + 1.3px);
        height: 500px;
    }

    .service h2 {
        color: #fff;
        font-size: 24px;
        padding-bottom: 10px;
    }

    .custom-shape-divider-top-1734418427 svg {
        position: relative;
        display: block;
        width: calc(129% + 1.3px);
        height: 100px;
    }

    .telegram h2 {
        margin-top: 20px;
    }

    .mission_row {
        flex-direction: column-reverse;
    }

    .plan-catch {
        display: block;
        padding: 50px 20px;
    }

    .box {
        margin-bottom: 30px;
    }

    .mission-vision .text_box {
        position: inherit;
        left: 0;
    }

    .mission-vision .bg_img {
        background-size: calc(80%);
    }

    .mission-vision .box2 .redd {
        display: none;
    }

    .mission-vision .box2 .w_full {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
}


@media(max-width:767px) {
    .about h2 {
        font-size: 30px;
    }

    .banner img {
        object-fit: cover;

    }

    .banner .banner_text h1 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .banner .banner_text p {
        font-size: 14px;
        width: 100%;
        color: #ddd;
    }

    .banner .banner_text a {
        display: inline-block;
        margin-bottom: 10px;
    }

    .banner .banner_text .t_button {
        display: none;
    }

    .banner .banner_text .f_button {
        padding: 10px 20px;
    }

    .banner .b_icon {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
        margin-bottom: 20px;
    }

    .banner .b_icon a {
        color: #fff;
        font-size: 16px;
        box-shadow: none;
        margin: 0;
    }

    .banner h1::after {
        width: 120px;
    }

    .custom-shape-divider-bottom-1734095465 {
        position: absolute;
        bottom: 47px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }

    .custom-shape-divider-bottom-1734095465 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 80px;
    }

    .subcription .custom-shape-divider-top-1734331034 svg {
        position: relative;
        display: block;
        width: calc(126% + 1.3px);
        height: 65px;
    }

    .about .para {
        width: 100%;
        margin: 0 auto;
    }

    .subcription p br {
        display: none;
    }

    footer .navi {
        padding-left: 60px;
    }

	.fContact{
        padding-left: 0px !important;
    }

    .mission-vision .bg_img {
        background-size: cover;
    }

    .carousel-caption {
        max-width: 100%;
    }
}

@media(max-width:576px) {
    .about h2 {
        font-size: 24px;
    }

    .faq .accordion-item button {
        font-size: 16px;
        padding: 40px;
        font-weight: 500;
    }

    .faq h2 {
        font-size: 30px;
    }

    footer .navi li a {
        font-size: 16px;
        text-transform: capitalize;
        color: #fff;
        font-weight: 400;
    }

    footer .fContact li {
        font-size: 16px;
        text-transform: capitalize;
        color: #fff;
        font-weight: 400;
    }

    p {
        font-size: 14px !important;
    }

    .subcription .box li {
        font-size: 14px;
    }

    .custom-shape-divider-bottom-1734095465 {
        position: absolute;
        bottom: 47px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }

    .custom-shape-divider-bottom-1734095465 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 50px;
    }

    .custom-shape-divider-top-1734431522 svg {
        position: relative;
        display: block;
        width: calc(333% + 1.3px);
        height: 500px;
    }

    .plan-price p {
        font-size: 38px !important;
        font-weight: 600;
    }

    .telegram .ul2 li {
        font-size: 12px;
    }

    .telegram .ul2 li i {
        font-size: 12px;
    }

    .telegram .ul2 {
        gap: 5px;
        flex-wrap: wrap;
    }

    .telegram .ul1 h5 {
        font-size: 16px;
    }

    .telegram h2 {
        font-size: 20px;
    }
}

@media (max-width: 465px) {
    .carousel-caption {
        top: 48%;
    }

    .carousel-caption h1 {
        font-size: 24px;
    }

    .carousel-item img {
        height: 60vh;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 333px) {
    .carousel-caption h1 {
        font-size: 18px;
    }
}

@media(max-width:400px) {
    .mission-vision .box2 {
        gap: 15px;
    }
}




/* ===============media querry============ */