:root {
  --bg-color: #212121;
  --theme-color: #0e0f11; }

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999; }
  .navbar.nav-scroll {
    padding: 0;
    position: fixed;
    top: -80px;
    padding: 15px 0;
    -webkit-transition: -webkit-transform .8s;
    transition: -webkit-transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); }
  .navbar .logo {
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px; }
  .navbar .navbar-nav {
    padding: 2px 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    margin-left: 15px; }
    .navbar .navbar-nav .nav-link {
      padding: 5px 20px;
      border-radius: 30px;
      font-size: 14px;
      color: #fff; }
      .navbar .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.1); }
  .navbar .topnav .butn {
    padding: 7px 20px;
    background: #fff;
    color: #1d1d1d;
    margin-right: 15px; }
/* Omkar css */

.navbar {
    background: rgba(15, 15, 15, 0.45) !important;  /* Semi-transparent black */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 1rem 0 !important;
    transition: all 0.4s;
    font-family: 'Inter', sans-serif;
    
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #39ff14 !important;
}

.nav-link::after 
    {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    background: #39ff14;
    transition: all 0.4s;
    box-shadow: 0 0 10px #39ff14;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Dropdowns */
/* Hamburger/More Menu Hover Fix - Updated for No-White Issue */
/* Universal Dropdown Setup - For All Menus (Main + Hamburger) */
.dropdown, .nav-item.dropdown, .nav-item.mega-dropdown {
    position: relative;
}

/* Base Dropdown Menu Styles - Apply to All */
.dropdown-menu, .mega-menu {
    background: #0f0f0f !important;  /* Deep black */
    border: 1px solid #39ff14 !important;  /* Green border */
    border-radius: 12px !important;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3) !important;  /* Green glow */
    
    /* Close the gap for all */
    top: 100% !important;
    margin-top: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    
    /* Animation - Same for all */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, visibility 0s linear 0.25s, transform 0.25s ease;
    pointer-events: none;
    display: block !important;
    min-width: 220px;  /* Default; mega-menu already has this */
}

.dropdown-menu.mega-menu {
    min-width: 220px !important;  /* For mega ones */
}

/* Hover Show - For Main Nav Dropdowns */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.mega-dropdown:hover .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
    pointer-events: auto !important;
}

/* Hover Show - For Hamburger */
.dropdown.me-3:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
    pointer-events: auto !important;
}

/* Extra for Hamburger Button Hover */
.dropdown.me-3 .btn.menu-icon:hover ~ .dropdown-menu,
.dropdown.me-3 .btn.menu-icon:focus ~ .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
    pointer-events: auto !important;
}

/* Items Styling - Global for All Dropdowns (Gray text, green hover) */
.dropdown-menu .dropdown-item,
.mega-menu .dropdown-item,
.more-menu .dropdown-item {
    color: #ccc !important;  /* Light gray, no white */
    padding: 10px 20px;
    transition: all 0.3s;
    text-shadow: none;
}

.dropdown-menu .dropdown-item:hover,
.mega-menu .dropdown-item:hover,
.more-menu .dropdown-item:hover {
    background: rgba(57, 255, 20, 0.1) !important;  /* Subtle green bg */
    color: #39ff14 !important;  /* Green text */
    padding-left: 28px;
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.2);  /* Premium inner glow */
}

.dropdown.me-3{
  margin-left:-150px;
}
/* Radium Buttons */
.btn-rad {
    background: linear-gradient(45deg, #39ff14, #00ff88);
    color: #000 !important;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
    transition: all 0.3s;
}

.btn-rad:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.9);
    color: #000 !important;
}

.btn-rad.glow {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    }
    to {
        box-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
    }
}

.btn-outline-rad {
    border: 2px solid #39ff14;
    color: #39ff14;
    background: transparent;
}

.btn-outline-rad:hover {
    background: #39ff14;
    color: #000;
}

/* Live Ticker */
.live-ticker {
    font-size: 14px;
    font-weight: 600;
    color: #39ff14;
    text-shadow: 0 0 10px #39ff14;
}

.change.up { color: #39ff14; animation: glow 2s infinite; }

/* Mega Dropdown Glow */
.mega-menu {
    min-width: 220px;
}

/* ---------------main Navbar start --------------- */
.nav-link.dropdown-toggle::after {
    display: none !important;        /* Arrow gayab */
}

.nav-link.dropdown-toggle {
    background-image: none !important;   /* Extra safety agar koi image arrow laga ho */
    border: none !important;
}

/* Optional: agar arrow ki jagah kuch space bachta hai toh ye bhi daal do */
.dropdown-toggle::after {
    content: none !important;
}


/* Omkar css */

.navbar {
    background: rgba(15, 15, 15, 0.45) !important;  /* Semi-transparent black */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 1rem 0 !important;
    transition: all 0.4s;
    top:40px;
    
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #d0fe1d !important;
}

.nav-link::after 
    {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 50%;
    background: #d0fe1d;
    transition: all 0.4s;
    box-shadow: 0 0 10px #d0fe1d;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Dropdowns */
/* Hamburger/More Menu Hover Fix - Updated for No-White Issue */
/* Universal Dropdown Setup - For All Menus (Main + Hamburger) */
.dropdown, .nav-item.dropdown, .nav-item.mega-dropdown {
    position: relative;
}

/* Base Dropdown Menu Styles - Apply to All */
.dropdown-menu, .mega-menu {
    background: #0f0f0f !important;  /* Deep black */
    border: none !important;  /* Green border */
    border-radius: 12px !important;
    box-shadow: none !important;  /* Green glow */
    
    /* Close the gap for all */
    top: 100% !important;
    margin-top: 0 !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    
    /* Animation - Same for all */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.25s ease, visibility 0s linear 0.25s, transform 0.25s ease;
    pointer-events: none;
    display: block !important;
    min-width: 150px;  /* Default; mega-menu already has this */
}

.dropdown-menu.mega-menu {
    min-width: 150px !important;  /* For mega ones */
}

/* Hover Show - For Main Nav Dropdowns */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.mega-dropdown:hover .mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY();
    transition-delay: 0s, 0s, 0s;
    pointer-events: auto !important;
    
}

/* Hover Show - For Hamburger */
.dropdown.me-3:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
    pointer-events: auto !important;
}

/* Extra for Hamburger Button Hover */
.dropdown.me-3 .btn.menu-icon:hover ~ .dropdown-menu,
.dropdown.me-3 .btn.menu-icon:focus ~ .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    transition-delay: 0s, 0s, 0s;
    pointer-events: auto !important;
}


/* Items Styling - Global for All Dropdowns (Gray text, green hover) */
.dropdown-menu .dropdown-item,
.mega-menu .dropdown-item,
.more-menu .dropdown-item {
    color: #ccc !important;  /* Light gray, no white */
    padding: 10px 20px;
    transition: all 0.3s;
    text-shadow: none;
}

.dropdown-menu .dropdown-item:hover,
.mega-menu .dropdown-item:hover,
.more-menu .dropdown-item:hover {
    background: rgba(57, 255, 20, 0.1) !important;  /* Subtle green bg */
    color: #d0fe1d !important;  /* Green text */
    padding-left: 28px;
    box-shadow: inset 0 0 10px rgba(57, 255, 20, 0.2);  /* Premium inner glow */
}

.dropdown.me-3{
  margin-left:-150px;
}


/* Radium Buttons */
.btn-rad {
    background: #d0fe1d;
    color: #000 !important;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    width: 230px !important;
    transition: all 0.35s ease;
}

.btn-rad:hover {
    transform: translateY(-3px);
    background: #d0fe1d;
    color: #000 !important;
}


.btn-rad.glow {
    animation: glow 2s infinite alternate;
}
.btn.glow {
    animation: none !important;
    box-shadow: none !important;
    background-image: none !important;
}


.btn-outline-rad {
    border: 2px solid #d0fe1d;
    color: #d0fe1d;
    background: transparent;
}

.btn-outline-rad:hover {
    background: #d0fe1d;
    color: #000;
}

/* Live Ticker */
.live-ticker {
    font-size: 14px;
    font-weight: 600;
    color: #d0fe1d;
    text-shadow: 0 0 10px #d0fe1d;
}

.change.up { color: #d0fe1d; animation: glow 2s infinite; }

/* Mega Dropdown Glow */
.mega-menu {
    min-width: 150px;
}

/* Add bottom border to nav-link on hover to act as the "top line" of the rectangle */
.nav-item.dropdown:hover .nav-link,
.nav-item.mega-dropdown:hover .nav-link {
    border-bottom: 1px solid #d0fe1d !important;  /* Visible top connector line */
    transition: border-bottom 0.25s ease;
}

.dropdown.me-3 .dropdown-menu {
    border-top: none !important;
    border-left: 1px solid #d0fe1d !important;
    border-right: 1px solid #d0fe1d !important;
    border-bottom: 1px solid #d0fe1d !important;
    border-radius: 0 0 12px 12px !important;
}


.btn.menu-icon {
    font-size: 20px !important;
    padding: 8px 12px !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;

    /* UPDATED COLORS */
    background: none !important;
    border: none !important;
    color: #d0fe1d !important;

    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    
}

.menu-icon:focus,
.menu-icon:active,
.menu-icon:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.menu-icon i {
    color: #fff;   /* white hamburger */
    font-size: 25px;
}

/* Hover state */
.btn.menu-icon:hover {
    
    
    transform: scale(1.05);
}
     .navbar .navbar-nav {
        padding: 6px 18px;
        margin-left: 160px !important;
    }

/* Existing CSS remains the same, but add these media queries at the end */

/* Tablet to Medium Desktop: Fix overlaps, reduce paddings, ensure separation */
@media (min-width: 997px) and (max-width: 1500px) {
    /* Container adjustments for better spacing */
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Navbar padding reduction */
    .navbar {
        padding: 0.75rem 0 !important; /* Slightly less vertical padding */
    }

    /* Logo size control to prevent push */
    .nav-logo {
        max-height: 40px; /* Ensure logo doesn't grow too big */
        width: auto;
    }

    /* Main nav list: Reduce padding, tighten margins for separation without overlap */
    .navbar .navbar-nav {
        padding: 0 !important; /* Remove padding from ul */
        margin-left: 6rem !important; /* Reduced from 50px, tighter to logo */
        gap: 0.5rem; /* Add gap between li items for separation */
    }

    .navbar-nav {
        display: flex !important;
        flex-wrap: nowrap; /* Prevent wrapping to avoid overlaps */
    }

    /* Nav links: Smaller horizontal padding, smaller font for fit */
    .navbar-nav .nav-link {
        padding: 8px 12px !important; /* Reduced from 20px horizontal */
        font-size: 13px !important; /* Slightly smaller font */
        margin-right: 0.25rem; /* Small margin for separation between links */
        white-space: nowrap; /* Prevent text wrap */
    }

    .navbar-nav .nav-link:last-child {
        margin-right: 0;
    }

    /* Dropdown toggles: Ensure no extra space */
    .nav-link.dropdown-toggle {
        padding-right: 12px !important; /* Match regular links */
    }

    /* Dropdown menus: Smaller min-width, tighter positioning to avoid overlap */
    .dropdown-menu, .mega-menu {
        min-width: 140px !important; /* Reduced for medium screens */
        max-width: 200px; /* Cap width to prevent sprawl */
        left: 0 !important; /* Align properly under parent */
        margin-top: 0 !important;
    }

    /* Mega menu specific: Column layout if needed, but keep horizontal for now */
    .mega-menu {
        min-width: 180px !important; /* Slightly wider for more items, but controlled */
        display: grid !important;
        grid-template-columns: 1fr; /* Single column to avoid horizontal overlap */
        gap: 0.25rem; /* Tight gaps between items */
    }

    /* Dropdown items: Tighter padding */
    .dropdown-item {
        padding: 8px 15px !important; /* Reduced vertical/horizontal */
        font-size: 13px;
    }

    /* Hamburger menu: Fix position to not overlap right side */
    .dropdown.me-3 {
        margin-left: 0 !important; /* Remove the -150px hack; let it flow naturally */
        margin-right: 1rem; /* Space before button */
    }

    /* Button adjustments: Smaller for fit */
    .btn-rad {
        padding: 8px 18px !important; /* Slightly smaller */
        font-size: 13px;
    }

    /* Right side flex: Ensure even distribution */
    .d-flex.align-items-center {
        gap: 0.5rem; /* Add gap between ticker (if present), hamburger, and button */
    }

    /* Hover underline: Shorter to fit reduced padding */
    .nav-link::after {
        bottom: -4px !important; /* Adjust position */
    }

    /* Prevent mobile toggler visibility */
    .navbar-toggler {
        display: none !important; /* Ensure desktop behavior */
    }
}

/* Optional: Fine-tune for exactly 1500px edge (if overlaps persist there) */
@media (max-width: 1500px) {
    .navbar-nav .nav-link {
        letter-spacing: 0.2px !important; /* Tighter letter spacing if needed */
    }
    
    .mega-menu {
        grid-template-columns: 1fr !important; /* Force single column near max width */
    }
}

/*navbarend*/

.accounts-mega {
    width: 900px;
    background: rgba(10,10,10,0.95);
    border-radius: 16px;
    padding: 20px;

}

.mega-divider {
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05)
    );
    transform: translateY(-8px);
    
    
}

.mega-divider1 {
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.55),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.05)
    );
    transform: translateY(0px);
    
    
}

.nav-item.accounts-dropdown {
    position: relative;
}

.accounts-mega {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    transform: translate(-50%, 8px) !important; 
}

.accounts-mega-inner {
    display: flex;
    gap: 20px;
}

/* LEFT */
.accounts-left {
    width: 35%;
}

.accounts-title {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
    margin-top:-1px;
}

.accounts-title.green {
    color: #d0fe1d;
}

.account-card {
    display: flex;
    align-items: center;   /* 👈 height stable */
    gap: 12px;
    padding: 10px 14px;    /* compact padding */
    min-height: 66px;
    border-radius: 12px;
    background: #141414;
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.account-card:hover {
    background: #1d1d1d;
    transform: translateX(4px);
}

.account-card h5 {
    font-size: 14px;
    margin: 0;
}

.account-card p {
    font-size: 12px;
    opacity: 0.7;
    margin: 0;
}
.account-card.standard h5 {
    color: #CFDCF8;
}
.account-card.prime h5 {
    color: #FAFFAD;
}

.account-card.vip h5 {
    color: #EDC547;
}

.account-card.islamic h5 {
    color: #2ECC71;
}

/* MIDDLE */
.accounts-middle {
    width: 25%;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 20px;
}

.accounts-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accounts-links li {
    margin-bottom: 18px;
    
}

.accounts-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    
}

.accounts-links a:hover {
    color: #d0fe1d;
}

/* RIGHT */
.accounts-right {
    width: 40%;
    position: relative;
}

.accounts-right img {
    width: 100%;
    border-radius: 12px;
}

.accounts-cta {
    display: flex;
    gap: 30px;
    margin-top: 17px;
}

.accounts-cta a {
    min-width: 160px;      /* 👈 width control */
    text-align: center;
}

/* Optional: slightly more premium spacing */
.btn-live,
.btn-demo {
    padding: 10px 26px; 
    font-size: 16px !important;    /* 👈 width increase without height issue */
}

.btn-demo{
    margin-right:-30px !important;
}

.btn-live {
    background: #d0fe1d;
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    padding-right: 36px;
    display: inline-flex;
    position: relative;
    align-items: center;
}

.btn-live::after {
    content: "›";              /* arrow symbol */
    font-size: 18px;
    font-weight: 700;
    color: #000 !important;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* Hover animation */
.btn-live:hover::after {
    transform: translateY(-50%) translateX(4px);
}
.btn-demo {
    color: #96CDED;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    
}
.btn-demo:hover {
    color: #96CDED;
}
.nav-item.accounts-dropdown {
    position: relative;
}

.nav-item.accounts-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}


.account-card {
    display: flex;
    align-items: stretch; /* 👈 key point */
    gap: 12px;
}

/* Image styling */
.account-img {
    width: 28px;
    height: 60px;          /* 👈 image height control */
    object-fit: contain;
    flex-shrink: 0;
}

/* Text wrapper */
.account-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.account-text h5 {
    font-size: 15px;
    line-height: 1.2;      /* 👈 compact */
    margin: 0;
    letter-spacing: 0.2px; /* 👈 premium feel */
}

.account-text p {
    font-size: 12px;
    line-height: 1.3;
    margin: 2px 0 0 0;     /* 👈 controlled spacing */
    opacity: 0.7;
}

/* Middle links base */
.accounts-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 6px;
    position: relative;
    color: #ccc;
    transition: all 0.35s ease;
    overflow: hidden;
}

/* Logo hidden by default */
.accounts-links .mid-logo {
    width: 18px;
    height: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

/* Text wrapper */
.accounts-links span {
    transition: transform 0.35s ease;
}

/* Hover effect */
.accounts-links a:hover {
    color: #d0fe1d;
}

/* On hover → text moves right */
.accounts-links a:hover span {
    transform: translateX(6px);
}

/* On hover → logo appears */
.accounts-links a:hover .mid-logo {
    opacity: 1;
    transform: translateX(0);
}

.accounts-links a span {
    font-size: 14px;   /* +3px */
}


/* =========================
   ACCOUNTS MEGA MENU FIX
   FOR 997px – 1500px
========================= */

@media (min-width: 997px) and (max-width: 1500px) {

    /* Keep accounts mega menu full layout */
    .accounts-mega {
        width: 900px !important;
        max-width: 900px !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, 8px) !important;
        display: block !important;
    }

    /* Restore flex layout */
    .accounts-mega-inner {
        display: flex !important;
        gap: 20px !important;
    }

    /* Column widths */
    .accounts-left {
        width: 35% !important;
    }

    .accounts-middle {
        width: 25% !important;
        padding-left: 20px !important;
    }

    .accounts-right {
        width: 40% !important;
    }

    /* Prevent grid override */
    .accounts-mega {
        grid-template-columns: unset !important;
    }

    /* Middle links readable */
    .accounts-links a span {
        font-size: 16px !important;
    }

    /* Logo size control */
    .accounts-links .mid-logo {
        height: 16px !important;
    }
}



/* Accounts End */
/* Markets start */
.mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-menu {
    width: 1100px;
    background: #000;
    border-radius: 16px;
    padding: 24px;
    margin-top: 15px;
    border: none;
}

/* Layout */
.mega-container {
    display: flex;
    gap: 30px;
}

.mega-container {
    position: relative; /* already present */
    display: flex;
    gap: 30px;
}

/* Add a vertical gradient line as a pseudo-element */
.mega-container::before {
    content: "";
    position: absolute;
top: 60px;    /* moves the top down */
bottom: 60px; /* moves the bottom up */

    left: calc(35% + 5px); /* position between left (35%) and gap (30px/2) */
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.25),
        rgba(255, 255, 255, 0.05)
    );
    pointer-events: none;
    transform: translateY(0);
}



/* LEFT */
.mega-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mega-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: background 0.3s ease;
}

/* Green hover patch */
.mega-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(167,255,0,0.06);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-link:hover::before {
    opacity: 1;
}

/* T logo */
.mega-link .icon {
    position: absolute;
    left: 20px;
    width: 14px;          /* 🔥 small like reference */
    height: 14px;

    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;

    pointer-events: none;
}



/* Text shift */
.mega-link div {
    margin-left: 0;          /* no reserved space */
    transition: transform 0.25s ease;
}

.mega-link:hover div {
    transform: translateX(22px);   /* icon ke liye jagah */
}

.mega-link h6 {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    transition: transform 0.25s ease;
}

.mega-link:hover h6 {
    color: #d0fe1d;
    transform: translateX(16px);
}

.mega-link p {
    margin: 0;
    font-size: 12px;
    color: #aaa;
    transform: none !important;  
}

.arrow {
    margin-left: auto;
    width: 20px;       /* adjust size as needed */
    height: auto;
    opacity: 0.6;
    transition: opacity 0.25s ease, filter 0.25s ease;
    object-fit: contain;
    display: block;    /* inline img behaves better with block here */
}

/* On hover - same as before but for image */
.mega-link:hover .arrow {
    opacity: 1;
     transform: translateX(6px) scale(1.2);    filter: brightness(1.5) drop-shadow(0 0 5px #d0fe1d);
}

/* RIGHT IMAGES */
.mega-right {
    width: 65%;
    display: flex;
    gap: 20px;
}

.mega-right .card {
    position: relative;
    flex: 1;
    height: 360px; /* image jaisi height */
    border-radius: 14px;
    overflow: hidden;
}

.mega-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-right span {
    position: absolute;
    left: 50%;
    bottom: 20px;                 /* ⬅️ bottom se 20px */
    transform: translateX(-50%);  /* ⬅️ horizontal center */

    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.mega-right .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.mega-link .icon {
    position: absolute;
    left: 36px;
    top: 12px;                 /* 🔥 h6 ke baseline ke paas */

    width: 12px;               /* 🔥 chota size */
    height: 12px;

    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;

    pointer-events: none;
}

.mega-link .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    left:40px !important;
}

.mega-link:hover .icon {
    transform: translateX(0);
    opacity: 1;
}

/* ===============================
   MARKETS MEGA MENU – CENTER FIX
=============================== */

.markets-mega {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-30%) !important;
    top: 100% !important;
    width: 1100px;
    margin-top: 8px !important;
}
@media (min-width: 997px) and (max-width: 1500px) {
    .markets-mega {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
}

.mega-link .arrow {
    color: #777;          /* normal state */
    transition: color 0.25s ease;
}

/* On hover of menu item */
.mega-link:hover .arrow {
    color: #d0fe1d;   
    font-weight: 700; /* green hover */
}

/* Base styling for markets-mega *

/* Media query for screen widths 997px to 1500px */
@media (min-width: 997px) and (max-width: 1500px) {
    .markets-mega {
        width: 90vw;          /* width adapts to viewport width */
        max-width: 1100px;    /* max width limit */
        left: 50% !important;
        right: auto !important;
        transform: translateX(-30%) !important;
        margin-top: 8px !important;
    }
}

/* For smaller widths under 997px, reduce width further */
@media (max-width: 996px) {
    .markets-mega {
        width: 95vw; /* almost full width with padding */
        max-width: none;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin-top: 8px !important;
    }
}
.market-card {
    position: relative;
    flex: 1;
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
}

.market-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay */
.market-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15)
    );
}

/* bottom text */
.market-card span {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 2;

    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

/* hover effect */
.market-card:hover span {
    color: #d0fe1d;
    transform: translateX(-50%) translateY(-4px);
}

.mega-right {
    position: relative; /* important for absolute footer */
}

/* footer wrapper */
.mega-right-footer {
    position: absolute;
    right: 0px; 
    bottom: 5px; /* reference jaisa thoda bahar */
    
}

/* anchor text */
.see-more-markets {
    display: inline-flex;
    align-items: center;     /* 🔥 vertical alignment fix */
    line-height: 1;          /* 🔥 arrow upar jaane ka issue fix */
    gap: 8px;                /* arrow ke liye proper space */

    font-size: 14px;
    font-weight: 500;
    color: #d0fe1d;
    text-decoration: none;
    transition: color 0.25s ease;
}




/* hover */
.see-more-markets:hover {
    color: #d0fe1d;
}

.see-more-markets:hover span {
    transform: translateX(4px);
}


.open-live-account {
    display: inline-flex;
    align-items: center;     /* 🔥 vertical alignment fix */
    line-height: 1;          /* 🔥 arrow upar jaane ka issue fix */
    gap: 8px;                /* arrow ke liye proper space */
    margin-left:-665px !important;
    font-size: 14px;
    font-weight: 500;
    color: #d0fe1d;
    text-decoration: none;
    transition: color 0.25s ease;
}




/* hover */
.open-live-account:hover {
    color: #d0fe1d;
}


.open-live-account:hover span {
    transform: translateX(4px);
}


.open-demo-account {
    display: inline-flex;
    align-items: center;     /* 🔥 vertical alignment fix */
    line-height: 1;          /* 🔥 arrow upar jaane ka issue fix */
    gap: 8px;                /* arrow ke liye proper space */
    margin-left:-500px !important;
    font-size: 14px;
    font-weight: 500;
    color: #96CDED;
    text-decoration: none;
    transition: color 0.25s ease;
}




/* hover */
.open-demo-account:hover {
    color: #96CDED;
}


.open-demo-account:hover span {
    transform: translateX(4px);
}
/*markets End*/
/*hamburger start*/

/* Parent already positioned by your layout */
.dropdown {
    position: relative;
}

/* Custom Menu */
.hamburger-menu {
    position: absolute;
    top: 52px;        /* icon ke niche */
    right: 50%;                 /* anchor center */
    transform: translateX(50%);       /* icon ke alignment me */
    width: 260px;
    background: #050505;
    border-radius: 18px;
    padding: 14px;
    list-style: none;
    display: none;
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
    z-index: 9999;
}

/* Show on hover (icon ki position same) */
.dropdown:hover .hamburger-menu {
    display: block;
}

/* Normal state */
.menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

/* Hover par green patch */
.menu-item:hover {
    background: #262e01;
    color: #b6ff00;
}

/* Icon hover */
.menu-item:hover .icon {
    background: #262e01;
    color: #b6ff00;
}

/* Arrow sirf hover par dikhe */
.menu-item .arrow {
    margin-left: auto;
    color: #b6ff00;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.menu-item:hover .arrow {
    opacity: 1;
}
/* Active state same as hover */
.menu-item.active {
    background: #262e01;
    color: #b6ff00;
}

.menu-item.active .icon {
    background: #262e01;
    color: #b6ff00;
}

.menu-item.active .arrow {
    opacity: 1;
}

.custom-hamburger {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end !important; /* 👈 RIGHT ALIGN */
}

.custom-hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Unequal widths (right aligned) */
.custom-hamburger span:nth-child(1) {
    width: 32px;
}
.custom-hamburger span:nth-child(2) {
    width: 24px;
}
.custom-hamburger span:nth-child(3) {
    width: 32px;
}
.custom-hamburger span:nth-child(4) {
    width: 16px;
}
/*hamburger End*/
/*platform dropdown start*/
.platform-dropdown {
        position: static;
}

.platform-dropdown .platform-mega {
    left: auto !important;
    right: auto !important;
    margin-left: -260px; 
    top: 43px !important;
}

/* Remove default dropdown arrow gap */
.platform-dropdown .dropdown-menu {
    border: none;
}

/* Mega Dropdown */
.platform-mega {
    width: 720px;
    background: #0b0b0b;
    border-radius: 16px;
    padding: 24px;
    margin-top: 14px;
}

/* Title */
.platform-title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.8;
}

/* Cards Layout */
.platform-cards {
    display: flex;
    gap: 20px;
}

/* Card */
.platform-card {
    flex: 1;
    background: #111;
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

/* Highlight Card (Green Glow) */
.platform-card.highlight {
    background: rgba(167, 255, 0, 0.02);
    border: 1px solid rgba(167, 255, 0, 0.06);
    box-shadow: inset 0 0 0 1px rgba(208, 254, 29, 0.25);
}

/* Hover */
.platform-card:hover {
    transform: translateY(-4px);
}

/* Icon */
.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #1b1b1b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 18px;
}

/* Text */
.platform-card h5 {
    font-size: 16px;
    margin-bottom: 6px;
}

.platform-card p {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 12px;
}

/* List */
.platform-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.platform-card ul li {
    font-size: 13px;
    margin-bottom: 6px;
    color: #fff;
}

/* Button */
.platform-btn {
    font-size: 13px;
    color: #d0fe1d;
    text-decoration: none;
    font-weight: 500;
}

.platform-btn:hover {
    text-decoration: underline;
}


/* List icon (tick replacement) */
.platform-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
}

.platform-card ul li .list-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
}
@media (min-width: 997px) and (max-width: 1500px) {

    /* Anchor Platforms item */
    .platform-dropdown {
        position: static;
    }

    /* Center dropdown exactly under Platforms */
    .platform-dropdown .platform-mega {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 720px;
        max-width: calc(100vw - 48px);
        margin-top: 14px;
    }

    /* Keep cards stable */
    .platform-cards {
        display: flex;
        gap: 20px;
        align-items: stretch;
    }

    /* Card consistency */
    .platform-card {
        flex: 1;
        min-width: 0;
        padding: 20px;
    }

    /* Icon alignment safety */
    .platform-card .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

}

.navbar-nav.main-nav > .nav-item {
    margin: 0 18px; /* adjust value as needed */
}
/*platform dropdown End*/
/* --------------- Navbar End --------------- */



@media (max-width: 991.98px) {
    .navbar {
        display: none !important;
    }
}


/* MOBILE NAVBAR */
.mobile-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #000;
    z-index: 9999;
    padding: 16px 18px;
}

/* Mobile Navbar - Proper Sticky Fix (Only for Mobile) */
@media (max-width: 991.98px) {
    /* Smooth scroll containers - allow overflow for sticky navbar */
    #smooth-wrapper,
    #smooth-content {
        overflow: visible !important;
    }
    
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    
    .mobile-navbar {
        position: -webkit-sticky;
        position: sticky;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
}

.mobile-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    height: 20px !important;
    width: 80%;
}

.mobile-menu-btn {
    font-size: 35px;
    color: #fff;
    background: none;
    border: none;
    padding-right:5px;
}

/* FULL SCREEN MENU */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: none;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
}

.mobile-menu-header img {
        height: 20px !important;
    width: 70%;
}

.close-menu {
    font-size: 35px;
    color: #fff;
    background: none;
    border: none;
    padding-right:5px;
}

/* MENU LINKS */
.mobile-menu-links {
    list-style: none;
    padding: 40px 24px;
}

.mobile-menu-links li {
    margin-bottom: 22px;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .custom-captcha {
        transform: scale(0.66);
        transform-origin: left top;
    }
}


/* MOBILE CTA BUTTONS */
.mobile-cta-wrapper {
    margin-top: 80px;          /* Others ke niche gap */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.mobile-cta-btn {
    width: 80%;
    max-width: 300px;
    text-align: center;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* Live Button */
.mobile-cta-btn.live {
    background: #d0fe1d;      /* adjust if needed */
    color: #000;
}

/* Demo Button */
.mobile-cta-btn.demo {
    background: #96CDED;
    color: #000;
   
}

/* Hover effect */
.mobile-cta-btn:hover {
    opacity: 0.9;
}

/* Arrow */
.menu-arrow {
    float: right;
    font-size: 22px;
    opacity: 0.8;
    margin-right: -20px;
}

/* SUB MENU PAGE */
.mobile-submenu {
    display: none;
    flex-direction: column;
    height: 100%;
}

.mobile-submenu.active {
    display: flex;
}

.back-menu {
    color: #fff;
    background: none;
    border: none;
    font-size: 25px;
    padding-right: 20px;
    margin-bottom: -8px;
}

.submenu-title {
    color: #d0fe1d; 
    font-size: 30px;
    padding: 20px 24px 10px;
    margin-left:-15px;
    
}

.mobile-submenu-links {
    list-style: none;
    padding: 20px 24px;
}

.mobile-submenu-links li {
    margin-bottom: 18px;
}

.mobile-submenu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
}

/* SUBMENU CTA */
.mobile-submenu-cta {
    margin-top: 30px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.mobile-submenu {
    overflow-y: auto;
    padding-bottom: 40px;
}

.mobile-submenu-cta {
    margin-top: 30px;
    padding: 0 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* MOBILE BOTTOM SPLIT CTA */
.mobile-bottom-split-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 10002;
}

/* Mobile Bottom Buttons - Proper Fixed Position (Only for Mobile) */
@media (max-width: 991.98px) {
    .mobile-bottom-split-cta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        z-index: 10002 !important;
    }
    .mobile-bottom-split-cta .split-cta {
      border-top: 3px solid #000;
  }
    /* Footer Extension Image - Visible above sticky buttons */
    .footer-extension {
        position: relative !important;
        z-index: 1 !important;
        padding-bottom: 48px !important; /* Space for sticky buttons (increased) */
        margin-bottom: 0 !important;
        background: #000 !important;
        overflow: visible !important; /* Allow image to be visible */
    }
    
    .footer-extension img {
        position: relative !important;
        z-index: 1 !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
        max-height: 450px !important; /* Control image height on mobile */
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Footer main section - ensure proper spacing */
    .footer-adss {
        position: relative !important;
        z-index: 1 !important;
        padding-bottom: 20px !important;
    }
}

/* COMMON */
.split-cta {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}

/* LEFT */
.split-cta.live {
    background: #d0fe1d;
    color: #000;
    border-right: 1px solid rgba(0,0,0,0.15);
}

/* RIGHT */
.split-cta.demo {
    background: #96CDED;
    color: #000;
}


/* Extra small devices (very narrow phones) */
@media (max-width: 360px) {
  .mobile-bottom-split-cta .split-cta {
    font-size: 14px;
    padding: 12px 8px;
  }
}

.risk-more {
    display: block;
}
.risk-toggle {
    display: none;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 767px) {

    .footer-risk-text {
        text-align: left;
    }

    .risk-more {
        display: none;
    }

    .risk-toggle {
        display: inline-block;
        margin-top: 10px;
        font-size: 13px;
        color: #c8ff00 !important;
        text-decoration: underline;
       
    }

    .risk-toggle,
.risk-toggle:visited,
.risk-toggle:active,
.risk-toggle:focus,
.risk-toggle:hover {
    color: #c8ff00 !important;
    text-decoration: underline;
    outline: none;
}
}


/*Testimonial start*/
.testimonials-ds .qoute-icon {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; }
  .testimonials-ds .qoute-icon .text {
    width: 240px; }
  .testimonials-ds .qoute-icon .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 100px; }

.testimonials-ds .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden; }

.testimonials-ds .item .info .info-text {
  padding-left: -20px; }
  .testimonials-ds .item .info .info-text p {
    font-size: 14px;
    color: #BBBBBB;
    margin-top: 5px; }

.testimonials-ds .swiper {
  position: relative; }
  .testimonials-ds .swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto !important;
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1); }
    .testimonials-ds .swiper .swiper-pagination .swiper-pagination-bullet {
      margin: 0 7px;
      background: #BBBBBB; }
      .testimonials-ds .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #d0ff71; }



/* Testimonial End*/

/*news and blogs pagination */

.pagination {
  display: flex;
  gap: 15px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid #545454;
  border-radius: 30px;
  width: fit-content;
  margin: auto;
}

/* Hide text & arrows */
.pagination .page-link {
  font-size: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Dot style */
.pagination .page-item {
  width: 10px;
  height: 10px;
}

.pagination .page-item .page-link {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2a;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.pagination .page-item .page-link:hover {
  background: #555;
}

/* Active dot */
.pagination .page-item.active .page-link {
  background: #d0fe1d;
  box-shadow: 0 0 8px rgba(208, 254, 29, 0.9);
  transform: scale(1.3);
}

/* Hide prev / next arrows */
.pagination .page-item:first-child,
.pagination .page-item:last-child {
  display: none;
}

/* newsand blogs pagination end */

/* --------------- header --------------- */
.header-sa {
  min-height: 100vh;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden !important;
  z-index: 3; }
  .header-sa .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    background-image: url(../imgs/header/g-back.png);
    background-size: cover;
    z-index: -1; }
    .header-sa .background:before {
      content: '';
      position: absolute;
      top: 0;
      left: -20vw;
      width: 70vw;
      bottom: 0;
      background: #010105;
      pointer-events: none;
      border-radius: 50%;
      -webkit-filter: blur(200px);
      filter: blur(200px);
      opacity: .7; }
    .header-sa .background:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(../imgs/header/Grid.png);
      background-size: contain;
      background-repeat: repeat;
      z-index: -1;
      pointer-events: none;
      opacity: .15; }
  .header-sa .caption h1 {
    font-size: 96px;
    line-height: 96px;
    letter-spacing: -4px; }
  .header-sa .caption .text {
    margin-top: 120px; }
  .header-sa .imgs {
    position: relative; }
    .header-sa .imgs .cube img {
      position: relative;
      width: 120%;
      right: -100px;
      bottom: -100px; }
    .header-sa .imgs .circle {
      position: absolute;
      top: 50%;
      left: 0;
      z-index: 2; }
      .header-sa .imgs .circle:after {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        background: rgba(255, 255, 255, 0.01);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        z-index: -1; }

  /* --------------- header forex--------------- */
.header-dm .caption {
  position: relative;
  z-index: 3; }

.header-dm .imgs-cube {
  position: relative; }
  .header-dm .imgs-cube .imgs {
    position: absolute;
    top: 50px;
    right: -100px; }
    .header-dm .imgs-cube .imgs .circle {
      width: 200px;
      position: relative;
      z-index: 4; }
      .header-dm .imgs-cube .imgs .circle:after {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        background: rgba(255, 255, 255, 0.01);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        z-index: -1; }

.header-dm .mimg {
  position: absolute;
  top: -30px;
  bottom: 0;
  right: 0;
  width: 50%; }
  .header-dm .mimg img {
    border-radius: 0 30px 30px 0; }
  .header-dm .mimg .shaps.top {
    background: var(--theme-color);
    border-radius: 0 0 30px 0;
    width: 45%;
    height: 150px;
    position: absolute;
    top: -1px;
    left: -1px; }
    .header-dm .mimg .shaps.top .shap-right-top {
      position: absolute;
      top: 0;
      right: -2.05rem; }
      .header-dm .mimg .shaps.top .shap-right-top svg {
        width: 2.1rem;
        height: 2.1rem; }
    .header-dm .mimg .shaps.top .shap-left-bottom {
      position: absolute;
      bottom: -2.05rem;
      left: -1px; }
      .header-dm .mimg .shaps.top .shap-left-bottom svg {
        width: 2.1rem;
        height: 2.1rem; }
  .header-dm .mimg .text {
    background: var(--theme-color);
    border-radius: 0 30px 0 0;
    padding: 30px 30px 0 0;
    position: absolute;
    bottom: -1px;
    left: -1px;
    text-align: right; }
    .header-dm .mimg .text .shap-left-top {
      position: absolute;
      left: 0;
      top: -2.05rem;
      -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
      transform: rotate(270deg); }
      .header-dm .mimg .text .shap-left-top svg {
        width: 2.1rem;
        height: 2.1rem; }
    .header-dm .mimg .text .shap-right-bottom {
      position: absolute;
      right: -2.05rem;
      bottom: -1px;
      -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
      transform: rotate(270deg); }
      .header-dm .mimg .text .shap-right-bottom svg {
        width: 2.1rem;
        height: 2.1rem; }


        

/* --------------- Services --------------- */
.services-sa .item {
  background: var(--bg-color);
  padding: 15px;
  border-radius: 20px; }
  .services-sa .item .cont {
    padding: 15px; }
    .services-sa .item .cont .icon {
      width: 52px;
      height: 52px;
      line-height: 50px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%; }
      .services-sa .item .cont .icon img {
        width: 25px; }
      .services-sa .item .cont .icon.invert img {
        -webkit-filter: invert(1);
        filter: invert(1); }
    .services-sa .item .cont .text {
      margin-top: 100px;
      margin-bottom: 20px; }
      .services-sa .item .cont .text p {
        font-size: 14px;
        font-weight: 300;
        line-height: 22px; }

.marq-sa {
  overflow: hidden !important; }
  .marq-sa .item {
    padding: 0 80px !important;
    position: relative; }
    .marq-sa .item:after {
      content: '';
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); }
    .marq-sa .item h2 {
      white-space: nowrap;
      font-size: 96px;
      line-height: 120px;
      letter-spacing: -4px;
      background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
      background: -webkit-linear-gradient(left, #fff, transparent);
      background: -o-linear-gradient(left, #fff, transparent);
      background: linear-gradient(to right, #fff, transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }

/* --------------- Works --------------- */
.work-card .card-item {
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: var(--bg-color); }
  .work-card .card-item .cont {
    height: 100%;
    padding: 40px 80px 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .work-card .card-item .cont .tag {
      font-size: 12px;
      line-height: 1;
      padding: 7px 12px;
      margin-right: 2px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 30px; }
    .work-card .card-item .cont p {
      font-size: 14px;
      line-height: 20px; }
  .work-card .card-item .img {
    padding: 20px; }
    .work-card .card-item .img img {
      border-radius: 15px; }

/* --------------- Clients --------------- */
.clients-sa .item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center; }
  .clients-sa .item .img {
    width: 100px; }
  .clients-sa .item .cont .icon {
    width: 40px;
    margin: 0 auto 10px; }
  .clients-sa .item .cont span {
    font-size: 14px;
    line-height: 20px; }

/* --------------- Testimonials --------------- */
.testimonials-sa {
  position: relative;
  overflow: hidden; }
  .testimonials-sa:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../imgs/testim/mesh-gradient.png);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: .5;
    z-index: 2; }
  .testimonials-sa .gl-rate {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 10px 20px; }
    .testimonials-sa .gl-rate .icon {
      width: 35px; }
    .testimonials-sa .gl-rate .cont {
      padding-left: 30px; }
      .testimonials-sa .gl-rate .cont h6 {
        line-height: 1;
        font-weight: 600;
        font-size: 18px; }
      .testimonials-sa .gl-rate .cont .stars {
        font-size: 13px;
        color: #EF2B10;
        margin-left: 10px; }
      .testimonials-sa .gl-rate .cont p {
        font-size: 12px;
        opacity: .7;
        margin-top: 2px; }
  .testimonials-sa .swiper-slide {
    height: auto; }
  .testimonials-sa .item {
    background: var(--bg-color);
    padding: 40px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%; }
    .testimonials-sa .item .rate h5 {
      font-size: 16px; }
    .testimonials-sa .item .rate .stars {
      font-size: 13px;
      color: #EF2B10;
      margin-left: 10px; }
    .testimonials-sa .item .info .img-author {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden; }
    .testimonials-sa .item .info .info-text {
      padding-left: 15px; }
      .testimonials-sa .item .info .info-text p {
        font-size: 14px;
        opacity: .7; }

/* --------------- Awards --------------- */
.awards-sa .item-title {
  padding: 0 15px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
  .awards-sa .item-title > div {
    padding: 0; }
  .awards-sa .item-title h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .7; }

.awards-sa .item-line {
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  z-index: 3; }
  .awards-sa .item-line > div {
    padding: 0; }
    .awards-sa .item-line > div:last-of-type {
      text-align: right; }
  .awards-sa .item-line:hover:after {
    height: 100%; }
  .awards-sa .item-line:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.05);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -1; }
  .awards-sa .item-line .honors h6 {
    font-size: 14px; }
  .awards-sa .item-line .project-date span {
    font-size: 14px;
    opacity: .7; }

/* --------------- Blogs --------------- */
.blog-sa .item {
    background: linear-gradient(180deg, #0a0a0a, #050505);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(208, 254, 29, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    height: 100%;
}

.blog-sa .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(208, 254, 29, 0.1);
    border-color: rgba(208, 254, 29, 0.45);
}


.blog-sa .item .img {
    height: 300px; /* 470 too tall for finance UI */
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.blog-sa .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.85) contrast(1.1);
}

.blog-sa .item:hover .img img {
    transform: scale(1.08);
}
.blog-sa .item .cont h6 a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-sa .item:hover .cont h6 a {
    color: #d0fe1d;
}
.blog-sa .item .cont .info .tag span {
    background: rgba(208, 254, 29, 0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(208, 254, 29, 0.35);
}

.blog-sa .item .cont .info .date span {
    color: #999;
    font-size: 13px;
    margin-left: 12px;
}
.blog-sa .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d0fe1d, transparent);
    opacity: 0.4;
}






/* --------------- Contact --------------- */
.contact-sa .box {
  padding: 120px 60px;
  background-image: url(../imgs/gr-back.png);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  overflow: hidden; }

.contact-sa .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%; }

.contact-sa .contact-form label {
  font-size: 14px;
  margin-bottom: 5px; }
  .contact-sa .contact-form label .star {
    color: red;
    padding-left: 5px; }

.contact-sa .contact-form input,
.contact-sa .contact-form textarea {
  color: #fff;
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px; }

.contact-sa .contact-form button {
  background: transparent;
  color: #fff; }




  .footer-ds {
  border-color: rgba(255, 255, 255, 0.3); }
  .footer-ds .subscribe .form-group {
    margin: 60px 0 15px;
    position: relative; }
    .footer-ds .subscribe .form-group label {
      font-size: 14px;
      margin-bottom: 10px; }
    .footer-ds .subscribe .form-group input {
      padding: 20px 50px 20px 20px;
      background: #212121;
      border: 0;
      border-radius: 5px;
      width: 100%;
      color: #fff; }
    .footer-ds .subscribe .form-group button {
      background: transparent;
      border: 0;
      position: absolute;
      bottom: 20px;
      right: 15px;
      width: 25px; }
  .footer-ds .subscribe span {
    color: #808080;
    font-size: 13px; }
    .footer-ds .subscribe span a {
      color: #fff;
      text-decoration: underline; }
  .footer-ds .contact-info .item h6 {
    margin-bottom: 15px; }
  .footer-ds .contact-info .item p {
    font-size: 14px;
    margin-top: 5px; }
  .footer-ds .sub-footer .copy .logo {
    width: 25px; }
  .footer-ds .sub-footer .copy p {
    font-size: 14px; }
    .footer-ds .sub-footer .copy p a {
      color: #fff; }
  .footer-ds .sub-footer .links {
    width: 100%; }
    .footer-ds .sub-footer .links a {
      font-size: 14px; }
    .footer-ds .sub-footer .links .active {
      color: #fff; }

.tp-footer-area,
.footer-ds,
.tp-footer-area * {
    background: #000 !important;
    background-color: #000 !important;
    color: #cccccc;
}

/* Force black background on every child */
.tp-footer-area .tp-footer-main,
.tp-footer-area .container,
.tp-footer-area .row,
.tp-footer-top,
.tp-footer-main,
.tp-footer-bottom {
    background: #000 !important;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  background-color: var(--theme-color); }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin: 0; }

h1 {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px; }

h2 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -3px; }

h3 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2px; }

h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px; }

h5 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px; }

h6 {
  font-size: 24px;
  line-height: 32px; }

.sub-head {
  font-size: 20px;
  line-height: 28px; }

p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  margin: 0; }

.sec-head h2 {
  font-size: 65px;
  line-height: 65px; }
  .sec-head h2 span {
    color: var(--main-color);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 400; }

.loader-wrap svg {
  fill: #1d1d1d; }

  .butn.butn-bord {
    border: 1px solid #ccc;
  background-color:#d0fe1d;
color:#000; }
    .butn.butn-bord:hover {
      background: #d0fe1d;
      color: #000; }

.butn.butn-bg {
        background: #d0fe1d;
      color: #000; 
  border: 1px solid transparent;
  }
  .butn.butn-bg:hover {
          background: #d0fe1d;
      color: #000; 
    border-color: var(--main-color);
    }

.icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1); }

.butn .icon {
  width: 18px; }

.butn:hover .icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0); }

.box-light {
  background-color: #fff;
  color: #000; }

.box-dark .box {
  background: #000;
  border-radius: 15px;
  padding: 100px 80px;
  position: relative; }
  .box-dark .box .layers {
    position: absolute;
    top: 5px;
    left: 30px;
    right: 30px;
    bottom: -10px;
    background: #000;
    border-radius: 15px;
    opacity: .7;
    z-index: -1; }
    .box-dark .box .layers:after {
      content: '';
      position: absolute;
      top: 5px;
      left: 20px;
      right: 20px;
      bottom: -10px;
      background: #000;
      border-radius: 15px;
      opacity: .7;
      z-index: -1; }

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .sec-head .sub-head {
    margin-bottom: 30px !important; }
  .header-sa {
    padding: 180px 0 320px;
    min-height: auto;
    position: relative; }
    .header-sa .caption {
      position: relative;
      z-index: 4; }
      .header-sa .caption .text {
        margin-top: 40px;
        width: 80%; }
    .header-sa .imgs {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
      transform: translateY(50%); }
      .header-sa .imgs .circle {
        width: 250px;
        top: 60%; }
  .marq-sa .item h2 {
    font-size: 70px;
    line-height: 1.4;
    -webkit-text-fill-color: #fff;
    background: transparent; } }

@media screen and (max-width: 768px) {
  .header-sa .caption h1 {
    font-size: 50px;
    line-height: 1.4; }
  .header-sa .imgs {
    width: 60%;
    -webkit-transform: translateY(70%);
    -ms-transform: translateY(70%);
    transform: translateY(70%); }
  .header-sa .imgs .cube img {
    right: -30px; }
  .header-sa .imgs .circle {
    width: 200px; }
  .contact-sa .box {
    padding: 120px 40px; } }


 /*----------------------------------------*/
/*  4.1 faq css
/*----------------------------------------*/
.al-faq-wrapper .accordion-items {
  position: relative;
  padding: 0;
}
.al-faq-wrapper .accordion-items:not(:last-child) {
  box-shadow: 0 1px 0 0 rgba(1, 17, 22, 0.14);
}
.al-faq-wrapper .accordion-header {
  position: relative;
}
.al-faq-wrapper .accordion-header .accordion-buttons {
  width: 100%;
  padding: 25px 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  text-align: left;
  position: relative;
  padding-right: 30px;
  color: var(--tp-common-black-1);
  font-family: var(--tp-ff-inter);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .al-faq-wrapper .accordion-header .accordion-buttons {
    font-size: 18px;
  }
}
.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) {
  color: #d0fe1d;
}
.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::after {
  background-color: #d0fe1d;
}
.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 35px;
  right: 10px;
}
.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  transition: 0.4s;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black-3);
}
.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  left: 50%;
  top: 50%;
  border-radius: 30px;
  transform: translate(-50%, -50%);
  background-color: var(--tp-common-black-3);
}
.al-faq-wrapper .accordion-body {
  padding: 0;
  padding-right: 110px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .al-faq-wrapper .accordion-body {
    padding-right: 65px;
  }
}
.al-faq-wrapper .accordion-body p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57;
  color: #4d5051;
  margin-bottom: 0;
  font-family: var(--tp-ff-inter);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-wrapper .accordion-body p br {
    display: none;
  }
}

.al-faq-form-box {
  padding: 80px;
  margin-left: 75px;
  border-radius: 20px;
  background-color: #eff1f2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .al-faq-form-box {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .al-faq-form-box {
    padding: 40px;
    margin-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-form-box {
    padding: 20px;
    margin-left: 0px;
  }
}
.al-faq-form-wrap {
  padding: 40px 50px;
  border-radius: 10px;
  background: url('../imgs/contact_bg.webp') no-repeat center center;
  background-size: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-form-wrap {
    padding: 30px 20px;
  }
}
.al-faq-form-content p {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--tp-common-black-1);
  font-family: var(--tp-ff-inter);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-form-content p {
    font-size: 14px;
  }
}
.al-faq-form-title {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.23;
  letter-spacing: -0.02em;
  color: var(--tp-common-black-1);
  font-family: var(--tp-ff-inter);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .al-faq-form-title {
    font-size: 23px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-form-title {
    font-size: 20px;
  }
}
.al-faq-input input {
  height: 46px;
  width:100%;
  border-radius: 30px;
  color: #fff;
  border: 1px solid rgba(1, 17, 22, 0.16);
  font-family: var(--tp-ff-inter);
}
.al-faq-input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.al-faq-input input::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.al-faq-input input:-moz-placeholder {
  /* Firefox 4-18 */
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.al-faq-input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.al-faq-input input::placeholder {
  /* MODERN BROWSER */
  font-weight: 500;
  font-size: 14px;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.al-faq-input input:focus {
  border-color: var(--tp-common-blue);
  box-shadow: 0 0 0 3px rgba(39, 125, 255, 0.1);
}
.al-faq-remeber input {
  display: none;
}
.al-faq-remeber input:checked ~ label::after {
  background-color: var(--tp-common-blue);
  border-color: var(--tp-common-blue);
}
.al-faq-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}
.al-faq-remeber label {
  position: relative;
  padding-left: 26px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  z-index: 1;
  color: #4d5051;
  letter-spacing: -0.02em;
  font-family: var(--tp-ff-inter);
}
.al-faq-remeber label::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  z-index: -1;
  transition: 0.3s;
  line-height: 16px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #a1a5a7;
}
.al-faq-remeber label::before {
  position: absolute;
  content: url(../img/login/check.svg);
  top: -1px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--tp-common-black-1);
  transition: all 0.3s ease;
}
.al-faq-remeber label:hover {
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-title-box {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 574.98px) {
  .al-faq-wrapper {
    margin-bottom: 40px;
  }
}


/* ============================================= */
/*  FAQ SECTION – BLACK + RADIUM GREEN THEME     */
/*  Sab --tp- variables replace kar diye gaye    */
/* ============================================= */

.al-faq-area {
  padding: 130px 0 140px;
  background: #000;
}

.al-faq-title-box span.al-section-subtitle {
  color: #d0fe1d;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}

.al-faq-title-box h4.al-section-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .al-faq-title-box h4.al-section-title { font-size: 36px; }
}

/* Accordion Styling */
.al-faq-wrapper .accordion-items {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(57, 255, 20, 0.15);
}

.al-faq-wrapper .accordion-header .accordion-buttons {
  width: 100%;
  padding: 28px 40px 28px 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
  position: relative;
  color: #e0e0e0;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .al-faq-wrapper .accordion-header .accordion-buttons { font-size: 18px; }
}

.al-faq-wrapper .accordion-header .accordion-buttons:hover,
.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) {
  color: #d0fe1d;
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before,
.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after {
  position: absolute;
  content: "";
  background: #d0fe1d;
  border-radius: 1px solid #d0fe1d;
  transition: all 0.4s;
  border-radius: 2px;
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before {
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.al-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after {
  width: 16px;
  height: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.al-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Accordion Body */
.al-faq-wrapper .accordion-body {
  padding: 0 0 35px 0;
  padding-right: 40px;
}

.al-faq-wrapper .accordion-body p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  color: #aaaaaa;
  margin-bottom: 0;
}

/* Right Side Form Box */
.al-faq-form-box {
  padding: 60px 50px;
  margin-left: 80px;
  border-radius: 24px;
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.2);
  backdrop-filter: blur(10px);
}

.al-faq-form-wrap {
  padding: 50px 45px;
  border-radius: 20px;
  background: url('../imgs/contact_bg.webp') no-repeat center center;
  background-size: cover;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

@media (max-width: 1199px) { .al-faq-form-box { margin-left: 30px; } }
@media (max-width: 991px) { .al-faq-form-box { margin-left: 0; margin-top: 60px; padding: 40px 30px; } }

.al-faq-form-wrap {
  padding: 50px 45px;
  border-radius: 20px;
    background: url('../imgs/contact_bg.webp') no-repeat center center;
  background-size: cover;
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.al-faq-form-title {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.al-faq-form-content p {
  color: #d0fe1d;
  font-size: 16px;
  margin-bottom: 0;
}

.al-faq-input input {
  height: 56px;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(57, 255, 20, 0.3);
  color: #fff;
  padding: 0 24px;
  font-size: 15px;
  transition: all 0.3s;
}

.al-faq-input input::placeholder {
  color: #666;
  font-weight: 500;
}

.al-faq-input input:focus {
  border-color: #d0fe1d;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.2);
  background: rgba(57, 255, 20, 0.08);
  outline: none;
}
.al-faq-btn {
  width: 100%;
}
.al-faq-btn button {
  height: 56px;
  width: 100%;
  background: linear-gradient(90deg, #d0fe1d, #a8d60f); /* gradient with #d0fe1d */
  color: #000;
  font-weight: 700 !important; /* font-weight max 900 valid hota hai, 1700 invalid hoga */
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;

  box-shadow: 
    0 8px 20px rgba(208, 254, 29, 0.35),
    0 4px 10px rgba(168, 214, 15, 0.25);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.al-faq-btn button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 30px rgba(208, 254, 29, 0.6),
    0 6px 18px rgba(168, 214, 15, 0.45);
  color: #000;
}


.al-faq-btn1 {
  width: 100%;
}
/* Submit Button – Radium Style */
.al-faq-btn1 button {
  height: 56px;
  width: 100%;
  background: linear-gradient(90deg, #0047FF, #3B6BFF);
  color: #fff;
  font-weight:400 !important;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  /*box-shadow: 0 0 30px rgba(0, 71, 255, 0.45);*/
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}


.al-faq-btn1 button:hover {
  transform: translateY(-4px);
  background: linear-gradient(90deg, #0036CC, #0047FF);
  /*box-shadow: 0 0 50px rgba(0, 71, 255, 0.9);*/
  color: #fff;
}

/* Checkbox */
.al-faq-remeber input:checked ~ label::after {
  background-color: #d0fe1d;
  border-color: #d0fe1d;
}

.al-faq-remeber input:checked ~ label::before {
  visibility: visible;
  opacity: 1;
}

.al-faq-remeber label {
  color: #aaa;
  font-size: 14px;
  padding-left: 28px;
  position: relative;
  cursor: pointer;
}

.al-faq-remeber label::after {
  width: 18px;
  height: 18px;
  border: 2px solid #555;
  background: transparent;
  border-radius: 4px;
}

.al-faq-remeber label::before {
  content: "✓";
  position: absolute;
  left: 3px;
  top: -1px;
  color: #000;
  font-weight: bold;
  font-size: 12px;
}


/* --------------- Blogs --------------- */
.blog-mp .bord {
  position: relative; }
  .blog-mp .bord:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.1); }

.blog-mp .item .info .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%; }

.blog-mp .item .info .author-info,
.blog-mp .item .info .date {
  font-size: 13px;
  text-transform: uppercase; }
  .blog-mp .item .info .author-info span,
  .blog-mp .item .info .date span {
    display: block;
    line-height: 22px; }

.blog-mp .item .info .author-info .sub-color {
  text-transform: capitalize !important; }

.blog-mp .item .img {
  border-radius: 15px;
  height: 255px;
  overflow: hidden; }


.blog-mp .cont h6 a {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .amount h2 {
    font-size: 42px !important;          /* 10,000 ka size kam */
    gap: 4px !important;
  }
}


.country-selection {
  width: 100%;
  height: 42px;
  border-radius: 22px;
  border: 1px solid #d0fe1d;
  background-color: #000;
  color: #fff;
  padding: 0 14px;
  font-size: 13px;
  margin-bottom: 10px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* WHITE DROPDOWN ARROW (FIXED SVG) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;

  padding-right: 45px;
}


.country-selection option {
  background: #000;
  color: #fff;
  font-size: 13px;
}


/* HIDE BY DEFAULT */
.mobile-form-popup {
  display: none;
}




/* MOBILE ONLY */


  .mobile-form-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }

  .mobile-form-popup.active {
    display: flex !important;
  }

.mobile-form-box {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  padding: 18px;
  position: relative;
  margin-top:60px;
  background: url('../imgs/contact_bg.webp') no-repeat center center;
  background-size: cover;

  border: 1px solid #9cff00;
}

  .popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    color: #fff;
    font-size: 30px;
    border: none;
  }

  .mobile-form-head h4 {
    color: #9cff00;
    font-size: 25px;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .mobile-input {
    width: 100%;
    height: 42px;
    border-radius: 22px;
    border: 1px solid #9cff00;
    background: #000;
    color: #fff;
    padding: 0 14px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .mobile-input::placeholder {
    color: #bbb;
  }

  .mobile-terms {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #ccc;
    margin: 10px 0;
    /*justify-content: center;
    align-items:center;*/

  }


  .mobile-btn {
    width: 100%;
    height: 44px;
    border-radius: 24px;
    font-weight: 600;
    border: none;
    margin-top: 10px;
    font-size: 14px;
  }

  .mobile-btn.live {
    background: #9cff00;
    color: #000;
  }

  .mobile-btn.demo {
    background: #bfe8ff;
    color: #000;
  }

    select.mobile-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%239cff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px 22px; /* Increase the height here */
    padding-right: 40px; /* Make room for the bigger arrow */
  }

@media (max-width: 767px){

  .mobile-form-box {
    max-width: 320px;
    padding: 14px;
    border-radius: 14px;
  }

  .mobile-form-head h4 {
    font-size: 20px;
    line-height: 1.3;
  }

  .mobile-input {
    height: 38px;
    font-size: 13px;
  }

  .mobile-btn {
    height: 40px;
    font-size: 13px;
  }

  .popup-close {
    font-size: 26px;
    top: 8px;
    right: 10px;
  }
      select.mobile-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%239cff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px 22px; /* Increase the height here */
    padding-right: 40px; /* Make room for the bigger arrow */
  }
}

@media (max-width: 360px) {

  .mobile-form-box {
    padding: 14px;
    border-radius: 14px;
  }

  .mobile-form-head h4 {
    font-size: 20px;
    line-height: 1.3;
  }

  .mobile-input {
    height: 38px;
    font-size: 13px;
  }

  .mobile-btn {
    height: 40px;
    font-size: 13px;
  }

  .popup-close {
    font-size: 26px;
    top: 8px;
    right: 10px;
  }
      select.mobile-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%239cff00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px 22px; /* Increase the height here */
    padding-right: 40px; /* Make room for the bigger arrow */
  }
}
/* For 360 x 640 */
@media (width: 360px) and (height: 640px) {

  .mobile-form-box {
  max-height: 78vh;          /* screen ke andar rahe */
  overflow-y: auto;          /* content scroll */
  -webkit-overflow-scrolling: touch;
}
  .mobile-form-box {
    max-width: 300px; /* slightly smaller */
    padding: 14px;
    border-radius: 12px;
    
  }

/* Desktop tweaks: slightly wider and shifted down from center */
@media (min-width: 992px) {
  .mobile-form-popup {
    padding: 32px; /* more outer spacing on larger screens */
  }

  .mobile-form-box {
    max-width: 720px; /* wider on desktop */
    width: 100% !important;
    padding: 24px;
    border-radius: 18px;
    /* nudge down from exact center so it appears lower on desktop */
    transform: translateY(8vh) !important;
  }

  @media (min-width: 1400px) {
    .mobile-form-box {
      max-width: 640px; /* extra width on very large screens */
      transform: translateY(8vh);
    }
  }
}
}

/* For 375 x 667 */
@media (width: 375px) and (height: 667px) {
  .mobile-form-box {
  max-height: 78vh;          /* screen ke andar rahe */
  overflow-y: auto;          /* content scroll */
  -webkit-overflow-scrolling: touch;
}
  .mobile-form-box {
    max-width: 290px; /* slightly smaller */
    padding: 14px;
    border-radius: 12px;
    margin-top: -20px;
  }
  .mobile-form-head h4{
    font-size:20px;
  }
}

/* For 414 x 736 */
@media (width: 414px) and (height: 736px) {
  .mobile-form-box {
  max-height: 85vh;          /* screen ke andar rahe */
  overflow-y: auto;          /* content scroll */
  -webkit-overflow-scrolling: touch;
}
  .mobile-form-box {
    max-width: 290px; /* slightly smaller */
    padding: 14px;
    border-radius: 12px;
    margin-top: 20px;
  }
  .mobile-form-head h4{
    font-size:20px;
  }
}



/* ===== DESKTOP RESPONSIVE FIX ===== */
@media (min-width: 768px) {

  .mobile-form-box {
    max-width: 450px !important;
    padding: 18px 20px !important;
    margin-top: 0 !important;
  }

  .mobile-form-head h4 {
    font-size: 20px !important;
  }

  .mobile-input,
  select.mobile-input {
    height: 38px !important;
    font-size: 13px !important;
    padding: 0 12px !important;
  }

  .mobile-btn {
    height: 38px !important;
    font-size: 13px !important;
  }

  .mobile-terms {
    font-size: 11px !important;
  }

  .popup-close {
    font-size: 24px !important;
  }
}


/* ===== LARGE DESKTOP ===== */
@media (min-width: 1200px) {

  .mobile-form-box {
    max-width: 400px !important;
    padding: 20px 24px !important;
    margin-top: 120px !important;
  }

  .mobile-form-head h4 {
    font-size: 22px !important;
  }

  .mobile-input,
  select.mobile-input {
    height: 36px !important;
    font-size: 12px !important;
  }

  .mobile-btn {
    height: 36px !important;
    font-size: 15px !important;
  }
}


/* ===== LARGE SCREENS (2K / 1440p) ===== */
@media (min-width: 1800px) {
  .mobile-form-box {
    max-width: 520px !important;
    padding: 28px 32px !important;
  }

  .mobile-form-head h4 {
    font-size: 24px !important;
  }

  .mobile-input,
  select.mobile-input {
    height: 46px !important;
    font-size: 15px !important;
  }

  .mobile-btn {
    height: 48px !important;
    font-size: 15px !important;
  }
}


/* ===== ULTRAWIDE / 4K SCREENS ===== */
@media (min-width: 2500px) {
  .mobile-form-box {
    max-width: 620px !important;
    padding: 36px 40px !important;
  }

  .mobile-form-head h4 {
    font-size: 28px !important;
  }

  .mobile-input,
  select.mobile-input {
    height: 52px !important;
    font-size: 17px !important;
  }

  .mobile-btn {
    height: 54px !important;
    font-size: 17px !important;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .navbar.navbar-expand-lg.fixed-top {
    display: none !important;
  }
}


/* Tablet view: show mobile navbar */
@media (min-width: 768px) and (max-width: 1024px) {

  .mobile-navbar,
  .mobile-bottom-split-cta {
    display: block !important;
  }

  /* Proper spacing & alignment */
  .mobile-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .mobile-logo img {
    height: 35px !important;        /* pehle chhota hoga */
    width: 80% !important;         /* aspect ratio safe */
  }

  .custom-hamburger {
    transform: scale(1.5);
  }
    .mobile-menu-header img {
    height: 30px !important;   /* size kam */
    width: auto !important; 
    margin-top:40px !important;   /* ratio safe */
    padding-left:30px !important;
  }
  .mobile-menu-links{
    margin-top:40px !important;
  }

    .mobile-menu-overlay {
    width: 70% !important;
  }
    .mobile-menu-links li a {
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    padding-left:30px !important;
  }

  .mobile-menu-links .menu-arrow {
    font-size: 32px !important;
    font-weight: 600 !important;
  }

  .submenu-title{
        font-size: 40px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-top:40px !important;
    padding-left:40px !important;
  }

  .mobile-submenu-links a{
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    padding-left:25px !important;
  }

  .close-menu{
    font-size:45px !important;
    margin-top:40px !important;
    padding-right:20px !important;
  }
  .back-menu{
    font-size:35px !important;
    margin-top:30px !important;
  }
  .mobile-cta-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 70px !important;
  }

  .mobile-cta-wrapper .mobile-cta-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 20px 0 !important;
    font-size: 18px !important;
    border-radius: 30px !important;
  }
    .mobile-cta-wrapper .mobile-cta-btn {
    font-size: 25px !important;
    line-height: 1.3 !important;


  }

  /* Submenu CTA buttons text */
  .mobile-submenu-cta .mobile-cta-btn {
    font-size: 25px !important;
    width: 100% !important;
    text-align: center !important;
    padding: 20px 0 !important;
    border-radius: 30px !important;
  }
  .mobile-bottom-split-cta{
    display:none !important;
  }


}

@media (min-width: 768px) and (max-width: 1024px){
.social-icons a{
  font-size:15px !important;
}
  .footer-risk-text {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
    footer.footer-adss .col-lg-8 .col-md-3 {
    padding-left: 30px !important;
    padding-right: 20px !important;
  }
    footer.footer-adss .col-lg-4 {
    padding-left: 30px !important;
    padding-right: 20px !important;
  }
    .social-icons {
    text-align: left !important;
    padding-left: 30px !important;
  }

  .social-icons {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    margin-top:20px !important;
  }

  /* License text */
  .social-icons > a:first-child {
    margin-bottom: 14px !important; /* 👈 yahi break hai */
    padding-bottom: 10px;
    font-size: 14px !important;
  }

  /* Social icons group */
  .social-icons > a:not(:first-child) {
    display: inline-block;
    margin-right: 14px;
    font-size: 16px;
  }
  .blog-mp{
    padding-left:20px !important;
    padding-right:20px !important;
  }
    .blog-sa{
    padding-left:20px !important;
    padding-right:20px !important;
  }

}


@media (min-width: 768px) and (max-width: 1024px){
  .al-faq-area .row.align-items-end {
      flex-direction: column;
  }

  .al-faq-area .col-xl-5,
  .al-faq-area .col-lg-5,
  .al-faq-area .col-xl-7,
  .al-faq-area .col-lg-7 {
      width: 100%;
      max-width: 100%;
  }

  /* spacing between FAQ & Form */
  .al-faq-area .col-xl-5 {
      margin-bottom: 40px;
  }

  .al-faq-form-box{
    padding-right:50px !important;
    margin-left:-20px !important;
  }
  .al-faq-title-box h4.al-section-title{
    padding-left:20px !important;
    font-size:60px !important;
  }
  
.al-faq-title-box span.al-section-subtitle{
    padding-left:20px !important;
    font-size:20px !important;
  }
    .al-faq-wrapper .accordion-items {
    padding-left: 20px !important;
    padding-right:20px !important;
   
  }
  .al-faq-wrapper{
    margin-top:-50px !important;
  }
.accordion-buttons {
  font-size: 18px; /* Aap apne hisaab se size badha sakte hain */
}

/* Answer ka font size (jo accordion-body mein hai) */
.accordion-body {
  font-size: 16px; /* Aap yeh bhi adjust kar sakte hain */
}
.al-faq-wrapper .accordion-body p{
  font-size:22px !important;
}

.accordion-buttons {
  font-size: 25px !important;
}

.al-faq-form-content p{
  font-size:25px !important
}
.country-select{
  font-size:20px !important;
}
}




