/* ------ GLOBAL RESET ------ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
a{text-decoration:none;}
li{list-style:none;}

/* -------- Gold Variables -------- */
:root {
    --bm-black: #0b0b0b;
    --bm-dark: #111111;

    --bm-gold-main: #d4af37;
    --bm-gold-soft: #e6c55a;
    --bm-gold-dark: #b8962e;

    --bm-border-gold: rgba(212, 175, 55, 0.25);

    --bm-text-white: #ffffff;
    --bm-text-muted: #b5b5b5;

    --bm-gold-gradient: linear-gradient(
        180deg,
        #f7e7b2,
        #d4af37,
        #b8962e
    );
}

/* -------- HEADER -------- */
.bm-header {
    background: var(--bm-black);
    padding: 1px 0;
    border-bottom: 1px solid var(--bm-border-gold);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.tv-logo {
    width: 75px;
    height: auto;
    border-radius: 12%;
    filter: drop-shadow(0 0 18px rgba(212,175,55,0.45));
    transition: all 0.35s ease;
}

.tv-logo:hover {
    transform: scale(1.1) rotate(-1deg);
}

/* Navbar Menu */
.tv-menu .nav-link {
    font-size: 17px;
    font-weight: 600;
    padding: 10px 18px !important;
    background: var(--bm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.6px;
    transition: all 0.35s ease;
    position: relative;
}

.tv-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0%;
    height: 2px;
    background: var(--bm-gold-main);
    transition: all 0.35s ease;
    transform: translateX(-50%);
}

.tv-menu .nav-link:hover::after {
    width: 60%;
}


.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: #121212;
    border: 1px solid var(--bm-border-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.tv-dropdown .dropdown-item {
    padding: 12px 22px;
    color: var(--bm-gold-soft);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tv-dropdown .dropdown-item:hover {
    background: rgba(212,175,55,0.15);
    color: #fff;
}

/* ------header end------- */

/* --------banner----------- */
/* ===== BREAKOUT MANTRA BANNER ===== */

.bm-banner .carousel-item img {
    height: 92vh;
    object-fit: cover;
}

/* Dark Gold Overlay */
.bm-banner .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.65)
    );
    z-index: 1;
}

/* Premium Caption */
.bm-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 48%;
    z-index: 2;
}

.bm-caption h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 22px;
    background: var(--bm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bm-caption h1 span {
    color: var(--bm-gold-main);
    text-shadow: 0 0 20px rgba(212,175,55,0.8);
}

.bm-caption p {
    font-size: 18px;
    color: var(--bm-text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

/* Premium Gold Button */
.bm-btn {
    background: linear-gradient(
        135deg,
        #f7e7b2,
        #d4af37,
        #b8962e
    );
    padding: 14px 38px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #0b0b0b;
    box-shadow: 0 0 28px rgba(212,175,55,0.55);
    transition: all 0.35s ease;
}

.bm-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(212,175,55,0.8);
}

@media (max-width: 768px) {
    .bm-caption {
        left: 5%;
        right: 5%;
        max-width: 100%;
        text-align: center;
    }

    .bm-caption h1 {
        font-size: 30px;
    }

    .bm-caption p {
        font-size: 16px;
    }

    .bm-btn {
        width: 100%;
    }
}

/* --------banner end----------- */

/* ===== BREAKOUT MANTRA ABOUT SECTION ===== */

.bm-about {
    position: relative;
    background: var(--bm-black);
    padding-top: 120px;
    padding-bottom: 90px;
    color: var(--bm-text-white);
}

/* Wave Shape */
.custom-shape-divider-top-bm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
    overflow: hidden;
}

.custom-shape-divider-top-bm svg {
    width: 100%;
    height: 120px;
}

.custom-shape-divider-top-bm .shape-fill {
    fill: var(--bm-gold-main);
}

/* Section Title */
.bm-about-title {
    font-size: 34px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    background: var(--bm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight */
.bm-highlight {
    color: var(--bm-gold-main);
    font-weight: 700;
}

/* Paragraph */
.bm-about-text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--bm-text-muted);
    margin-bottom: 22px;
}

/* Founder Section */
.bm-founder-section {
    background: var(--bm-dark);
    border-radius: 14px;
    padding: 40px 0;
    box-shadow: 0 0 35px rgba(212,175,55,0.08);
}

/* Founder Name */
.bm-founder-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--bm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Image */
.bm-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-left: 3px solid var(--bm-gold-main);
    box-shadow: -6px 0 30px rgba(212,175,55,0.3);
}

@media (max-width: 768px) {

    .bm-about-title {
        font-size: 28px;
        text-align: center;
    }

    .bm-founder-name {
        text-align: center;
    }

    .bm-about-text {
        text-align: center;
        font-size: 16px;
    }

    .bm-about-img img {
        border-left: none;
        border-top: 3px solid var(--bm-gold-main);
    }
}

/* -----------about  end------------ */



/* -----------subcription------------ */
/* ===== BREAKOUT MANTRA SUBSCRIPTION ===== */

.bm-subscription {
    position: relative;
    background: var(--bm-black);
    padding: 130px 0 90px;
}

.bm-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotate(180deg);
}

.bm-shape-top svg {
    width: 100%;
    height: 150px;
}

.bm-shape-top .shape-fill {
    fill: var(--bm-gold-main);
}

/* Titles */
.bm-sub-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--bm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bm-sub-subtitle {
    color: var(--bm-text-muted);
    font-size: 18px;
    margin-top: 10px;
}

/* Cards */
.bm-plan-wrapper {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.bm-plan-card {
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid var(--bm-border-gold);
    border-radius: 20px;
    padding: 45px 30px 65px;
    width: 330px;
    text-align: center;
    position: relative;
    transition: .4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,.7);
}

.bm-plan-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 60px rgba(212,175,55,.25);
}

/* Featured */
.bm-plan-card.featured {
    border: 2px solid var(--bm-gold-main);
    transform: scale(1.06);
}

.bm-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bm-gold-gradient);
    color: #0b0b0b;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

/* Text */
.bm-plan-card h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--bm-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bm-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--bm-gold-soft);
    margin: 15px 0;
}

.bm-desc {
    font-size: 16px;
    color: var(--bm-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Button */
.bm-plan-btn {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 13px 36px;
    border-radius: 50px;
    background: var(--bm-gold-gradient);
    color: #0b0b0b;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 22px rgba(212,175,55,.45);
    transition: .3s ease;
}

.bm-plan-btn:hover {
    transform: translateX(-50%) translateY(-4px);
    box-shadow: 0 0 40px rgba(212,175,55,.75);
}


/* ----------why-us------------ */
/* WHY TRADE VERSE */
.why-tradeverse {
    position: relative;
    background: radial-gradient(circle at top, #1a1a1a, #050505);
    color: #fff;
    overflow: hidden;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #f9e7b3, #d4a43c, #9c6f00);
    -webkit-background-clip: text;
    color: transparent;
}

.section-title h2 span {
    color: #f4a261;
}

.section-title p {
    color: #cfcfcf;
    margin-top: 10px;
    font-size: 17px;
    opacity: 0.85;
}

/* Cards */
.why-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(212,164,60,.35);
    backdrop-filter: blur(10px);
    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;
    background: linear-gradient(180deg, #ffe9b0, #dbaa35, #a17300);
    -webkit-background-clip: text;
    color: transparent;
}

.why-card p {
    font-size: 15px;
    color: #e0e0e0;
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255,215,100,.25);
}

/* Button */
.why-btn {
    background: linear-gradient(135deg, #f7d889, #d9a63d, #a77a08);
    color: #0d0d0d;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255,200,50,.45);
    text-transform: uppercase;
    transition: 0.3s ease;
}

.why-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,215,100,.7);
}

/* 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;
}

@media(max-width:768px) {
    .tv-plan-card,
    .why-card {
        width: 100%;
    }

    .section-title h2 {
        font-size: 30px;
    }
}


/* ----------why-us end------------ */

/* ------------mission & vision------------  */
/* MISSION & VISION */
.mv-tradeverse {
    background: radial-gradient(circle at top, #1a1a1a, #050505);
    color: #fff;
    position: relative;
}

/* LEFT IMAGE */
.mv-image {
    background:
        linear-gradient(
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.85)
        ),
        url('../images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 520px;
    border-radius: 30px;
    box-shadow: 0 25px 55px rgba(0,0,0,.75);
}

.mv-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.mv-overlay h2 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
     background: linear-gradient(
        180deg,
        #f9e7b3,
        #d4a43c,
        #9c6f00
    );
    -webkit-background-clip: text;
    color: transparent;

    text-shadow: 0 0 18px rgba(255,215,100,.45);
}

.mv-overlay p {
    margin-top: 6px;
    font-size: 15px;
    letter-spacing: 1px;
    color: #d6d6d6;
}

/* RIGHT CONTENT */
.mv-content {
    padding-left: 20px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
}

.section-title span {
    .section-title span {
    background: linear-gradient(
        180deg,
        #ffe9b0,
        #dbaa35,
        #a17300
    );
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

}

/* CARDS */
.mv-card {
    display: flex;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.08),
        rgba(255,255,255,0.03)
    );
    border: 1px solid rgba(212,164,60,.35);
    backdrop-filter: blur(12px);
    transition: .4s ease;
    gap: 20px;
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(255,215,100,.25);
}

.mv-icon {
    background: linear-gradient(135deg, #f7d889, #d9a63d, #a77a08);
    color: #0d0d0d;
    box-shadow: 0 0 18px rgba(255,200,50,.4);
    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: 23px;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(180deg, #ffe9b0, #dbaa35);
    -webkit-background-clip: text;
    color: transparent;
}

.mv-text p {
    color: #e0e0e0;
    font-size: 15px;
}

.small-text {
    font-size: 13px;
    opacity: 0.85;
}

/* BUTTON */
.mv-btn {
    background: linear-gradient(135deg, #f7d889, #d9a63d, #a77a08);
    color: #0d0d0d;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 22px rgba(255,200,50,.45);
    transition: 0.3s ease;
}

.mv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 32px rgba(255,215,100,.7);
}

@media(max-width:768px) {
    .mv-image {
        height: 360px;
    }

    .section-title {
        font-size: 30px;
    }

    .mv-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .mv-overlay h2 {
        font-size: 28px;
    }
}


/* ------------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 {
    background: linear-gradient(
        180deg,
        #f9e7b3,
        #d4a43c,
        #9c6f00
    );
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

.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 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(
        180deg,
        #ffe9b0,
        #dbaa35,
        #a17300
    );
    -webkit-background-clip: text;
    color: transparent;
}

/* 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: linear-gradient(
        135deg,
        #f7d889,
        #d9a63d,
        #a77a08
    );
    color: #0d0d0d;
    padding: 14px;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 0 18px rgba(255,200,50,.4);
}

.contact-btn:hover {
    box-shadow: 0 0 28px rgba(255,215,100,.7);
    transform: translateY(-2px);
}

/* Small text */
.small-text {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
}

@media(max-width:768px) {
    .section-title {
        font-size: 30px;
    }
}

/* ---------contact end---------- */


/* --------news----------- */
.faq-premium {
  background: linear-gradient(135deg, #0b0f19, #121a2f);
  color: #fff;
}

.faq-badge {
  display: inline-block;
  background: rgba(212, 164, 60, 0.18);
  color: #f5d68b;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 15px;
  border: 1px solid rgba(212,164,60,.35);
}

.faq-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

.faq-title span {
 background: linear-gradient(
    180deg,
    #f9e7b3,
    #d4a43c,
    #9c6f00
     );
  -webkit-background-clip: text;
  color: transparent;
}

.faq-subtitle {
  color: #b5b8c5;
  margin-top: 10px;
  max-width: 500px;
}

.faq-premium .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 15px;
}

.faq-premium .accordion-button {
  background: #141414;
  color: #ffffff;
  font-weight: 500;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 0 18px rgba(0,0,0,.6);
}

.faq-premium .accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    #f7d889,
    #d9a63d,
    #a77a08
  );
  color: #0d0d0d;
  font-weight: 700;
}

.faq-premium .accordion-button::after {
  filter: invert(1);
}

.faq-premium .accordion-body {
  background: #101010;
  border-radius: 0 0 14px 14px;
  color: #d0d0d0;
  padding: 18px 22px;
  line-height: 1.7;
}

.faq-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #f7d889,
    #d9a63d,
    #a77a08
  );
  color: #0d0d0d;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 18px rgba(255,200,50,.4);
}

.faq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255,215,100,.7);
}

.faq-image-box {
  background: radial-gradient(
    circle,
    rgba(212,164,60,0.25),
    transparent 70%
  );
  padding: 30px;
  border-radius: 30px;
}

/* --------news end----------- */

/* -----------footer------- */
.tv-footer {
  background: linear-gradient(135deg, #0b0f19, #121a2f);
  color: #cfd3ff;
  position: relative;
}

.tv-footer-shape {
  position: absolute;
  top: -1px;
  width: 100%;
  overflow: hidden;
}

.tv-footer-shape svg {
  height: 120px;
  width: 100%;
}

.tv-footer-shape .shape-fill {
  fill: #0b0f19;
}

.tv-footer-logo {
  width: 90px;
  height: 100px;
  border-radius: 10%;
  margin-top: 25px;
}

.tv-footer-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tv-footer-brand {
  position: relative;
}

.tv-footer-brand-name {
  font-size: 26px;
  font-weight: 700;
  color: #ffc107;
  margin: 10px 0 12px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.tv-social {
  display: flex;
  gap: 12px;
}

.tv-social li {
  width: 42px;
  height: 42px;
  border: 1px solid #ffc107;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.tv-social li a {
  color: #ffc107;
}

.tv-social li:hover {
  background: #ffc107;
}

.tv-social li:hover a {
  color: #000;
}

.tv-footer-title {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 22px;
  margin-top: 30px;
}

.tv-footer-links li,
.tv-footer-contact li {
  margin-bottom: 14px;
  font-size: 15px;
}

.tv-footer-links a {
  color: #cfd3ff;
  text-decoration: none;
  transition: 0.3s;
}

.tv-footer-links a:hover {
  color: #ffc107;
  padding-left: 6px;
}

.tv-footer-contact i {
  color: #ffc107;
  margin-right: 10px;
}

.tv-footer-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffc107, #ff9800);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.tv-footer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,193,7,0.4);
}

.tv-footer-bottom {
  text-align: center;
  padding: 18px;
  background: #0b0f19;
  color: #fff;
  font-size: 14px;
}

.tv-disclaimer {
  font-size: 13px;
  color: #b5b8c5;
  text-align: center;
  padding: 12px 30px;
  background: #121a2f;
}

/* -----------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============ */