@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
  font-family: "Poppins", sans-serif;
}

body{
    padding-top: 70px;
}


/* -----------------Navbar----------------- */
/* 🔥 Navbar Base */
.custom-navbar{
    background: white;
    backdrop-filter: blur(12px);
    padding: 15px 0;
    /* transition: all 0.3s ease; */
    border-bottom: 1px solid #090b0d26;
}

/* Scroll Effect */
/* .custom-navbar.scrolled{
    background: rgb(11, 15, 47);
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
} */

/* Logo */
.navbar-brand{
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.navbar-brand span{
    color: #090b0d;
}

/* Menu Links */
.nav-link{
    color: #090b0d;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* Hover Underline Animation */
/* .nav-link::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: rgb(255, 255, 255);
    transition: 0.3s;
} */

/* .nav-link:hover::after{
    width: 100%;
}

.nav-link:hover{
    color: #fff;
} */

/* Active Link */
/* .nav-link.active{
    color: #fff;
}

.nav-link.active::after{
    width: 100%;
} */

/* Button */
.custom-btn{
    background: rgb(0,82,255);
    color:  white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    transition: 0.3s;
}

.custom-btn:hover{
    background: rgb(0,82,255);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Fix */
.navbar-toggler{
    border: none;
}


/* -----------------Navbar----------------- */

/* -----------------top-section----------------- */

.hero-section {
    /* height: 80vh; */
    /* background: linear-gradient(135deg, #0B0F2F 40%, rgb(0,82,255)); */
    background-color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: #090b0d;
}

.hero-content p {
    color: #cfcfcf;
    font-size: 18px;
    margin: 20px 0;
}

.btn-crypto {
    background: rgb(0,82,255);
    border: none;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 10px;
    transition: 0.3s;
}

.btn-crypto:hover {
    background: #005eff;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 25px;
    background-color: white;
    border-color: #090b0d;
    color: #090b0d;
}

.btn-outline-light:hover {
    background-color: #090b0d;
    color: white;
}

.hero-img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
    border-radius: 20px;
}

/* @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
} */

/* Glow effect */
/* .glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgb(0,82,255);
    filter: blur(120px);
    top: 10%;
    left: 60%;
    opacity: 0.4;
} */


@media (max-width: 768px) {

/* .hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #0B0F2F 40%, rgb(0,82,255));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
} */

}


/* -----------------top-section----------------- */

/* -----------------stats-section----------------- */


.stats-section {
            /* background: rgba(11,15,47,0.85); */
            padding: 40px 0;
            text-align: center;
            color: #fff;
        }

        .stats-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            color: rgba(11, 15, 47, 0.85);
        }

        .stats-subtitle {
            color: #ccc;
            margin-bottom: 50px;
        }

        .stat-card {
                background: rgb(255 255 255);
    border-radius: 15px;
    padding: 30px 20px;
    transition: 0.3s;
    border: 1px solid rgb(237 237 237);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            border-color: rgb(0,82,255);
            box-shadow: 0 10px 30px rgba(0,82,255,0.3);
        }

        .stat-icon {
            font-size: 40px;
            color: rgb(0,82,255);
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: #2f334e;
        }

        .stat-label {
            color: #bbb;
            margin-top: 5px;
        }

@media screen and (max-width: 600px) {
    .stats-title {
            font-size: 32px;
        }
}

/* -----------------stats-section----------------- */


/* ----------------Features Section------------ */

/* Section */
.features-section {
    padding: 40px 0;
    /* background: rgba(11,15,47,0.85); */
}

/* Title */
.features-title {
    text-align: center;
    color: rgba(11, 15, 47, 0.85);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.features-title span {
    color: rgb(0,82,255);
}

/* Card */
.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255,255,255,0.1); */
    border: 1px solid rgb(237 237 237);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,82,255,0.3);
}

/* Icon */
.feature-icon {
    font-size: 45px;
    color: rgb(0,82,255);
    margin-bottom: 15px;
}

/* Text */
.feature-title {
    color: #2f334e;
    font-size: 20px;
    font-weight: 600;
}

.feature-desc {
    color: #ccc;
    font-size: 14px;
}

/* ----------------Features Section------------ */


/* --------------How It Works-------------- */
.how-it-a {
    padding: 40px 0;
}

.how-it-b {
    color: rgba(11,15,47,0.85);
    font-weight: 700;
    font-size: 36px;
}

.how-it-c {
    color: #ccc;
    margin-bottom: 50px;
}

.how-it-d {
    /* background: rgba(11,15,47,0.85); */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    /* border: 1px solid rgba(255,255,255,0.05); */
     border: 1px solid rgb(237 237 237);
}
.how-it-d:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,82,255,0.3);
}

.how-it-e {
    font-size: 50px;
    color: rgb(0,82,255);
    margin-bottom: 20px;
}

.how-it-f {
    color: rgba(11,15,47,0.85);
    font-size: 20px;
    font-weight: 600;
}

.how-it-g {
    color: #bbb;
    font-size: 14px;
}

.how-it-h {
    background: rgb(0,82,255);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: bold;
}

/* --------------How It Works-------------- */

/* -------------crypto-section------------ */
.crypto-section {
            padding: 40px 0;
            background: #f9fafc;
   }

   .crypto-title {
       color: rgba(11,15,47,0.85);
       font-size: 30px;
       font-weight: 700;
   }

   .crypto-subtitle {
       color: #ccc;
       margin-bottom: 40px;
   }

   .crypto-card {
       background: #090b0d;
       border-radius: 15px;
       padding: 20px;
       transition: 0.3s;
       border: 1px solid rgba(255,255,255,0.05);
   }

   .crypto-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 10px 25px rgba(0,82,255,0.4);
   }

   .crypto-icon {
       font-size: 35px;
       color: rgb(0,82,255);
   }

   .crypto-name {
       color: #fff;
       font-size: 18px;
       font-weight: 600;
   }

   .crypto-price {
       color: #00ff9d;
       font-weight: 600;
   }

   .crypto-change-up {
       color: #00ff9d;
   }

   .crypto-change-down {
       color: #ff4d4d;
   }

   .trade-btn {
       background: rgb(0,82,255);
       border: none;
       border-radius: 8px;
       padding: 6px 15px;
       color: #fff;
       font-size: 14px;
   }

   .trade-btn:hover {
       background: #0056ff;
   }

   /* -------------crypto-section------------ */

/* ------------why-section------------- */

.why-section {
    padding: 40px 0;
    /* background: linear-gradient(135deg, rgba(11,15,47,0.95), rgba(11,15,47,0.85)); */
    color: #fff;
}

.why-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: rgb(0,82,255);
}

.why-title p {
    color: #ccc;
    margin-top: 10px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.4s;
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(255,255,255,0.1); */
    border: 1px solid rgb(237 237 237);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,82,255,0.3);
}

.why-icon {
    font-size: 45px;
    color: rgb(0,82,255);
    margin-bottom: 20px;
}

.why-card h4 {
    color: rgba(11,15,47,0.85);
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #bbb;
}

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* ------------why-section------------- */

/* ----------------security-section------------ */
    .security-section {
        background: #f9fafc;
        padding: 40px 0;
    }
    .sec-title {
        color: rgb(0,82,255);
        font-weight: 700;
        font-size: 40px;
    }
    .sec-subtitle {
        color: #ccc;
        max-width: 600px;
        margin: auto;
    }
    .security-card {
        background: #090b0d;
        border-radius: 15px;
        padding: 30px;
        transition: 0.3s;
        border: 1px solid transparent;
    }
    .security-card:hover {
        transform: translateY(-10px);
        border: 1px solid rgb(0,82,255);
        box-shadow: 0 0 20px rgba(0,82,255,0.3);
    }
    .security-icon {
        font-size: 40px;
        color: rgb(0,82,255);
        margin-bottom: 15px;
    }
    .security-title {
        font-size: 20px;
        font-weight: 600;
        color: white;
    }
    .security-text {
        font-size: 14px;
        color: #aaa;
    }
    .brand-name {
        color: rgb(0,82,255);
        font-weight: bold;
    }

/* ----------------security-section------------ */

/* ---------------What Our Users Say------------ */

.test-main-a{
  background: #f9fafc; /* light white background */
}

/* Heading */
.test-main-d{
  color:#111; /* dark text for light bg */
  font-size:32px;
}

.test-main-e{
  color:#555;
}

/* Cards */
.test-main-g{
  background: #fff;
  border-radius:15px;
  color:#333;
  border:1px solid #e5e7eb; /* light border */
  transition:0.3s;
}

/* Text */
.test-main-h{
  font-size:14px;
  color:#666;
}

/* User Icon */
.test-main-i i{
  font-size:40px;
  color: rgb(0,82,255);
}

/* Name */
.test-main-j{
  color:#111;
}

/* Role */
.test-main-k{
  color:#777;
}

/* Top Right Navigation */
.carousel-nav{
  position:absolute;
  top:-60px;
  right:0;
}

.nav-btn-test{
  background: #fff;
  color:#333;
  border-radius:50%;
  width:40px;
  height:40px;
  border:1px solid #ddd;
  transition:0.3s;
}

.nav-btn-test:hover{
  background: rgb(0,82,255);
  color:#fff;
}

/* Mobile: show only 1 card */
@media (max-width: 768px) {

  .carousel-item .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .carousel-item .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-item .col-md-4:nth-child(2),
  .carousel-item .col-md-4:nth-child(3) {
    display: none;
  }

}

/* ---------------What Our Users Say------------ */



/* -------------- Start Trading---------------- */

/* CTA Section */
.Coinbase-cta-section{
    /* background: linear-gradient(45deg, rgb(0, 82, 255), #001a66); */
    background-color: #090b0d;
    padding: 40px 0px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* Glow effect */


/* Heading */
.Coinbase-cta-title{
    font-size:42px;
    font-weight:700;
    color:#fff;
}

/* Text */
.Coinbase-cta-text{
    color:#e0e0e0;
    font-size:18px;
    margin-top:15px;
}

/* Button */
.Coinbase-cta-btn{
    background:#fff;
    color:rgb(0,82,255);
    padding:14px 30px;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    transition:0.3s;
    border:none;
}

.Coinbase-cta-btn:hover{
    background:rgb(0,82,255);
    color:#fff;
    transform:translateY(-3px);
}

/* Icon */
.Coinbase-cta-btn i{
    margin-left:8px;
}

@media (max-width: 768px) {
 
    .Coinbase-cta-title{
    font-size:30px;
    font-weight:700;
    color:#fff;
}
  
}

/* -------------- Start Trading---------------- */


/* ------------------footer----------------- */
    .footer {
        /* background: rgba(11,15,47,0.85); */
        backdrop-filter: blur(10px);
        color: #fff;
        padding: 70px 0 20px;
        position: relative;
    }

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgb(0,82,255), transparent);
    }

    .footer h5 {
        color: rgb(0,82,255);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .footer p {
        color: #aaa;
        font-size: 14px;
        line-height: 1.6;
    }

    .footer a {
        color: #aaa;
        text-decoration: none;
        display: block;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .footer a:hover {
        color: rgb(0,82,255);
        transform: translateX(5px);
    }

    .footer .icon {
        color: rgb(0,82,255);
        margin-right: 10px;
        font-size: 16px;
    }

    /* SOCIAL */
    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-right: 10px;
        border-radius: 50%;
        background: #090b0d;
        color: #fff;
        transition: 0.3s;
    }

    .social-icons a:hover {
        background: rgb(0,82,255);
        transform: translateY(-3px);
        color: white;
    }

    /* CONTACT HIGHLIGHT */
    .highlight-link {
        color: #aaa !important;
        font-weight: 500;
    }

    .highlight-link:hover {
        color: rgb(0,82,255) !important;
    }



    /* FOOTER BOTTOM */
    .footer-bottom {
        border-top: 1px solid rgb(227 227 227);
        margin-top: 40px;
        padding-top: 20px;
        font-size: 13px;
        color: #888;
    }

    .footer-bottom a {
        color: rgb(0,82,255);
    }
/* ------------------footer----------------- */


/* ----------------about----------------- */


/* ================= COMMON ================= */

.about-main-title{
    font-size:36px;
    font-weight:700;
    color:rgb(0,82,255);
    margin-bottom:20px;
}

.about-main-text{
    color:#ccc;
    font-size:16px;
    line-height:1.7;
}

/* ================= CARDS ================= */
.about-main-card{
    background-color: white;
    border: 1px solid rgb(237 237 237);
    border-radius:15px;
    padding:30px;
    transition:0.3s;
    height:100%;
}

.about-main-card:hover{
    transform: translateY(-10px);
    border-color: rgb(0, 82, 255);
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
}

.about-main-icon{
    font-size:40px;
    color:rgb(0,82,255);
    margin-bottom:15px;
}

/* ================= CTA ================= */
.about-main-cta{
    /* background:linear-gradient(45deg, rgb(0,82,255), #001a66); */
    background-color: #090b0d;
    padding:60px 20px;
    border-radius:15px;
    text-align:center;
}

.about-main-btn{
    background:#fff;
    color:rgb(0,82,255);
    font-weight:600;
    padding:12px 30px;
    border-radius:30px;
    border:none;
    transition:0.3s;
}

.about-main-btn:hover{
    background:rgb(0, 82, 255);
    color:#fff;
}

/* ----------------about----------------- */




/* -----------------contact------------- */

/* ===== MAIN WRAPPER ===== */

/* ===== TITLE ===== */
.contact-main-b{text-align:center;margin-bottom:50px}
.contact-main-b h2{color:rgb(0,82,255);font-weight:700}
.contact-main-b p{color:#bbb}

/* ===== CARD ===== */
.contact-main-c{
    border: 1px solid rgb(237 237 237);
    padding:30px;
    border-radius:12px;
    height:100%;
    transition:0.3s;
}
.contact-main-c:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,82,255,0.25);
}

/* ===== FORM ===== */
.contact-main-d input,
.contact-main-d textarea{
    padding:12px;
    border-radius:8px;
    font-size:14px;
}

.contact-main-d input::placeholder,
.contact-main-d textarea::placeholder{
    color:#aaa;
}

/* Focus Glow Effect */
.contact-main-d input:focus,
.contact-main-d textarea:focus{
    border-color:rgb(0,82,255);
    box-shadow:0 0 10px rgba(0,82,255,0.3);
}


/* ===== BUTTON ===== */
.contact-main-e{
    background:rgb(0,82,255);
    color: white;
    border:none;
    padding:12px;
    width:100%;
    font-weight:600;
}
.contact-main-e:hover{background:#0041cc; color: white;}

/* ===== ICON BOX ===== */
.contact-main-f{
    font-size:30px;
    color:rgb(0,82,255);
    margin-bottom:10px;
}

/* ===== INFO TEXT ===== */
.contact-main-g h6{margin-bottom:5px}
.contact-main-g p{color:#ccc;margin:0}

/* ===== MAP ===== */
.contact-main-h{
    margin-top:60px;
    border-radius:12px;
    overflow:hidden;
}


/* -----------------contact------------- */

/* -----------------blog------------- */
/* ===== MAIN ===== */
.blog-main-a{
    color:#fff;
    font-family: 'Poppins', sans-serif;
}

/* ===== HEADER ===== */
.blog-main-b-header{
    text-align:center;
    margin-bottom:50px;
}
.blog-main-b-header h1{
    font-size:40px;
    font-weight:700;
    color: rgb(11 15 47);
}
.blog-main-b-header span{
    color:rgb(0,82,255);
}
.blog-main-b-header p{
    color:#aaa;
}

/* ===== SEARCH ===== */
.blog-main-c-search{
    max-width:500px;
    margin:0 auto 30px;
    position:relative;
}
.blog-main-c-search input{
    width:100%;
    padding:12px 40px;
    border-radius:30px;
    border:none;
    background:rgba(255,255,255,0.08);
    color:#fff;
}
.blog-main-c-search i{
    position:absolute;
    top:12px;
    left:15px;
    color:#aaa;
}

/* ===== CATEGORY ===== */
.blog-main-d-category{
    text-align:center;
    margin-bottom:40px;
}
.blog-main-d-category button{
    margin:5px;
    padding:8px 20px;
    border-radius:30px;
    background:transparent;
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    transition:0.3s;
}
.blog-main-d-category button:hover,
.blog-main-d-category .active{
    background:rgb(0,82,255);
    border:none;
}

/* ===== CARD ===== */
.blog-main-f-card{
    border-radius:20px;
    overflow:hidden;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    transition:0.4s;
    margin-bottom:25px;
        border: 1px solid rgb(237 237 237);
}
.blog-main-f-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,82,255,0.3);
}

/* ===== IMAGE ===== */
.blog-main-f-img{
    position:relative;
}
.blog-main-f-img img{
    width:100%;
    height:220px;
    object-fit:cover;
}
.blog-main-f-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:rgb(0,82,255);
    padding:5px 12px;
    font-size:12px;
    border-radius:20px;
}

/* ===== BODY ===== */
.blog-main-f-body{
    padding:20px;
}
.blog-main-f-body h5{
    font-weight:600;
    color: rgb(0,82,255);
}
.blog-main-f-body p{
    color:#bbb;
    font-size:14px;
}

/* ===== META ===== */
.blog-main-f-meta{
    display:flex;
    justify-content:space-between;
    margin-top:15px;
    font-size:13px;
    color:#aaa;
}

/* ===== READ ===== */
.blog-main-i-read{
    color:rgb(0,82,255);
    cursor:pointer;
}
.blog-main-i-read:hover{
    text-decoration:underline;
}

/* ===== MODAL ===== */
.blog-main-j-modal .modal-content{
    background:#0b0f2f;
    border-radius:20px;
}
/* -----------------blog------------- */


/* ---------------faq------------------ */

/* --------------- FAQ PROFESSIONAL ------------------ */


/* TITLE */
.faq-main-title{
  color:rgb(0,82,255);
  font-size:38px;
  font-weight:700;
}

.faq-main-sub{
  color:#a0a0a0;
  font-size:16px;
}

/* CARD STYLE */
.faq-main-e-item{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  margin-bottom:18px;
  border-radius:14px;
  overflow:hidden;
  transition:all 0.35s ease;
  backdrop-filter:blur(10px);
}

.faq-main-e-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 35px rgba(0,82,255,0.25);
  border-color:rgba(0,82,255,0.5);
}

/* BUTTON */
.faq-main-f-btn{
  background-color: #0b0f2f0a;
  color:#0b0f2f;
  font-weight:600;
  padding:20px;
  font-size:16px;
  display:flex;
  align-items:center;
  gap:12px;
  border:none;
  box-shadow:none;
  transition:all 0.3s ease;
}

/* ICON */
.faq-main-f-btn i{
  font-size:18px;
  color:#0052ff;
  transition:0.3s;
}

/* ACTIVE */
.faq-main-f-btn:not(.collapsed){
  background:linear-gradient(90deg,#0052ff,#3a7bff);
  color:#fff;
}

.faq-main-f-btn:not(.collapsed) i{
  color:#fff;
}

/* HOVER */


/* BODY */
.faq-main-g-body{
  color:#d6d6d6;
  padding:22px;
  font-size:15px;
  line-height:1.7;
  border-top:1px solid rgba(255,255,255,0.05);
  animation:fadeIn 0.4s ease;
}

/* ANIMATION */
@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(-5px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ARROW FIX */
.accordion-button::after{
  filter:invert(1);
}

/* RESPONSIVE */
@media(max-width:600px){
  .faq-main-title{
    font-size:26px;
  }

  .faq-main-f-btn{
    font-size:14px;
    padding:16px;
  }

  .faq-main-g-body{
    font-size:14px;
  }
}

/* ---------------faq------------------ */


/* -----------privacy-policy------------- */

    .pri-vacy-b{
          background-color: white;
    border: 1px solid rgb(237 237 237);
      padding: 25px;
      border-radius: 12px;
      margin-bottom: 20px;
      transition: 0.3s;
    }

    .pri-vacy-b:hover{
      transform: translateY(-10px);
    border-color: rgb(0, 82, 255);
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
    }

    .pri-vacy-c{
      color: rgb(0,82,255);
      margin-bottom: 15px;
      font-weight: 600;
      font-size: 20px;
    }

    .pri-vacy-d{
      color: #ccc;
      font-size: 15px;
      line-height: 1.6;
    }


/* -----------privacy-policy------------- */
    

/* -----------term-and-conditions------------- */

        .term-con-b {
            text-align: center;
            margin-bottom: 40px;
        }

        .term-con-b h2 {
            color: rgb(0,82,255);
            font-weight: 700;
        }

        .term-con-c {
                background-color: white;
    border: 1px solid rgb(237 237 237);
            border-radius: 14px;
            padding: 25px;
            margin-bottom: 20px;
            transition: 0.3s ease;
        }

        .term-con-c:hover {
            transform: translateY(-10px);
    border-color: rgb(0, 82, 255);
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.3);
        }

        .term-con-d {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .term-con-d i {
            font-size: 22px;
            color: rgb(0,82,255);
            margin-right: 10px;
        }

        .term-con-e {
            font-size: 14.5px;
            line-height: 1.6;
            color: #d6d6d6;
        }


/* -----------term-and-conditions------------- */


/* ----------------model------------ */

/* Modal Styling */
.contact-modal {
    /* background: rgba(11,15,47,0.95); */
    border: 1px solid rgba(0,82,255,0.3);
    border-radius: 12px;
}

/* Header */
.modal-header {
    border-bottom: 1px solid rgba(0,82,255,0.3);
}

/* Inputs */
.contact-main-d .form-control {
    /* background: #0b0f2f; */
    border: 1px solid rgba(0,82,255,0.4);
    border-radius: 8px;
}


/* Button */
.contact-main-e {
    background: rgb(0,82,255);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.contact-main-e:hover {
    background: #0047d4;
}

/* Placeholder */
::placeholder {
    color: #aaa !important;
}

/* ----------------model------------ */