/* =========================
   BASE
========================= */
/* RESET */
* { box-sizing: border-box; }
html, body { margin: 0; overflow-x: clip; }  

body
{
    background:#050505;
    font-family:'Glacial Indifference',sans-serif;
}
.main-header
{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:white;
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.navbar
{
    padding:18px 0;
}

.navbar-brand{
    display: flex;
    align-items: center;
    padding: 0;
}

.logo{
    width: auto;
    height: 70px;   /* Increase from 42px to 70px */
    object-fit: contain;
}

.logo:hover{
    transform: scale(1.03);
}
/* Large Desktop */
@media (min-width:1400px){
    .logo{
        height:60px;
    }
}

/* Laptop */
@media (max-width:991px){
    .logo{
        height:48px;
    }
}

/* Mobile */
@media (max-width:576px){
    .logo{
        height:40px;
    }
}

.logo-icon
{
    width:34px;
    height:34px;
    background:#9f0202;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:700;
    border-radius:4px;
}


.navbar-nav
{
    gap:35px;
}

.nav-link
{
    color:black;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    transition:.35s;
}

.nav-link:hover
{
    color:#9f0202;
}

.nav-link.active
{
    color:#fff;
}

.header-buttons
{
    display:flex;
    gap:15px;
}

.track-btn
{
    padding:12px 22px;
    border:1px solid #444;
    border-radius:8px;
    color:black;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.3s;
}

.track-btn:hover
{
    background:#fff;
    color:#000;
}

.apply-btn
{
    padding:12px 24px;
    background:#9f0202;
    border-radius:8px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    transition:.3s;
}

.apply-btn:hover
{
    background:#c30202;
    color:#fff;
}

.navbar-toggler{
    border: none;
    box-shadow: none;
    padding: 0;
    width: 34px;
    background: transparent;
}

.navbar-toggler span{
    display: block;
    width: 28px;
    height: 2.5px;
    background: #000;   /* Change from #fff to #000 */
    margin: 6px 0;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar-toggler:focus{
    box-shadow: none;
}

.navbar-toggler:focus
{
    box-shadow:none;
    color: #000;
}

.offcanvas
{
    background:#0b0b0b;
    width:310px;
}

.offcanvas-header
{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.offcanvas-header h5
{
    color:#fff;
    font-weight:700;
}

.mobile-nav
{
    padding:0;
    margin:30px 0;
    list-style:none;
}

.mobile-nav li
{
    margin-bottom:22px;
}

.mobile-nav a
{
    text-decoration:none;
    color:#fff;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.mobile-nav a:hover
{
    color:#9f0202;
}

.mobile-buttons
{
    margin-top:40px;
}

@media(max-width:991px)
{
.header-buttons
    {
    display:none;
    }
.navbar-collapse
    {
    display:none!important;
    }
.navbar
    {
    padding:16px 0;
    }
}
@media(min-width:992px)
{
.navbar-toggler
    {
    display:none;
    }
}
/* Hero Section */
/*=========================================
 HERO SECTION
=========================================*/

.hero{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
background:#050505;
overflow:hidden;
padding:140px 0 80px;
isolation:isolate;
}

/* Background */

.hero::before{
content:"";
position:absolute;
top:-250px;
right:-250px;
width:700px;
height:700px;
border-radius:50%;
background:radial-gradient(circle,rgba(159,2,2,.35),transparent 70%);
filter:blur(50px);
z-index:-2;
}

.hero::after{
content:"";
position:absolute;
left:-180px;
bottom:-180px;
width:500px;
height:500px;
border-radius:50%;
background:radial-gradient(circle,rgba(159,2,2,.18),transparent 75%);
filter:blur(40px);
z-index:-2;
}

/* dotted grid */

.hero-grid{
position:absolute;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
background-size:60px 60px;
opacity:.35;
z-index:-3;
}

/* extra glow */

.hero-bg-circle{
position:absolute;
width:450px;
height:450px;
background:#9f0202;
border-radius:50%;
right:10%;
top:22%;
opacity:.18;
filter:blur(120px);
z-index:-2;
}

/*=========================================
 LEFT SIDE
=========================================*/

.hero-content{
position:relative;
z-index:5;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 20px;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.03);
backdrop-filter:blur(12px);
border-radius:40px;
margin-bottom:30px;
}

.hero-badge i{
color:#9f0202;
font-size:18px;
}

.hero-badge span{
font-size:13px;
font-weight:600;
letter-spacing:1px;
color:#ddd;
text-transform:uppercase;
}

.hero h1{
font-size:82px;
font-weight:700;
line-height:.95;
color:#fff;
margin-bottom:28px;
}

.hero h1 span{
color:#9f0202;
}

.hero p{
max-width:540px;
font-size:18px;
line-height:1.9;
color:#a7a7a7;
margin-bottom:45px;
}

/*=========================================
 BUTTONS
=========================================*/

.hero-btns{
display:flex;
gap:18px;
align-items:center;
flex-wrap:wrap;
margin-bottom:55px;
}

.apply-btn,
.eligibility-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:16px 32px;
font-weight:600;
font-size:15px;
border-radius:12px;
text-decoration:none;
transition:.35s;
}

.apply-btn{
background:#9f0202;
color:#fff;
box-shadow:0 15px 35px rgba(159,2,2,.35);
}

.apply-btn:hover{
background:#c20303;
color:#fff;
transform:translateY(-5px);
box-shadow:0 20px 45px rgba(159,2,2,.45);
}

.eligibility-btn{
border:1px solid rgba(255,255,255,.12);
background:rgba(255,255,255,.03);
color:#fff;
backdrop-filter:blur(10px);
}

.eligibility-btn:hover{
background:#fff;
color:#111;
transform:translateY(-5px);
}

.eligibility-btn i{
transition:.3s;
}

.eligibility-btn:hover i{
transform:translateX(6px);
}
/*=========================================
RIGHT SIDE
=========================================*/

.hero-right{
position:relative;
display:flex;
align-items:center;
justify-content:center;
min-height:700px;
}

/* Main Image */

.hero-image{
position:relative;
z-index:5;
animation:heroFloat 6s ease-in-out infinite;
}

.cards-img{
width:100%;
max-width:650px;
filter:drop-shadow(0 30px 60px rgba(0,0,0,.45));
transition:.5s;
}

.hero:hover .cards-img{
transform:scale(1.03);
}

/*===============================
Glow Rings
================================*/

.glow-ring{
position:absolute;
border:1px solid rgba(159,2,2,.25);
border-radius:50%;
animation:ringRotate 18s linear infinite;
}

.ring1{
width:520px;
height:520px;
}

.ring2{
width:650px;
height:650px;
animation-duration:26s;
opacity:.5;
}

/*===============================
World Map
================================*/

.hero-map{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
opacity:.15;
z-index:1;
pointer-events:none;
}

.hero-map img{
width:720px;
max-width:100%;
}

/*===============================
Floating Cards
================================*/

.floating-card{
position:absolute;
display:flex;
align-items:center;
gap:15px;
padding:18px 22px;
background:rgba(20,20,20,.75);
backdrop-filter:blur(16px);
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
box-shadow:0 20px 50px rgba(0,0,0,.35);
z-index:20;
transition:.35s;
}

.floating-card:hover{
transform:translateY(-8px);
border-color:#9f0202;
}

.top-card{
top:120px;
left:0;
animation:floatCard 5s ease-in-out infinite;
}

.bottom-card{
bottom:90px;
right:10px;
animation:floatCard 6s ease-in-out infinite;
}

.small-icon{
width:58px;
height:58px;
background:#9f0202;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
flex-shrink:0;
}

.small-icon i{
color:#fff;
font-size:24px;
}

.floating-card h5{
margin:0;
font-size:18px;
font-weight:600;
color:#fff;
}

.floating-card p{
margin:4px 0 0;
font-size:13px;
color:#bbb;
line-height:1.4;
}

/*===============================
Statistics
================================*/

.hero-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:60px;
padding:10px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border-radius:20px;
}

.stat-box{
display:flex;
align-items:center;
gap:14px;
}

.stat-icon{
width:52px;
height:52px;
background:rgba(159,2,2,.18);
border:1px solid rgba(159,2,2,.35);
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
}

.stat-icon i{
color:#9f0202;
font-size:22px;
}

.stat-box h3{
margin:0;
font-size:28px;
font-weight:700;
color:#fff;
}

.stat-box span{
display:block;
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
color:#9d9d9d;
margin-top:4px;
}

/*===============================
Animations
================================*/

@keyframes heroFloat{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-18px);
}

}

@keyframes floatCard{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

}

@keyframes ringRotate{

from{
transform:rotate(0deg);
}

to{
transform:rotate(360deg);
}

}
/*=========================================
RESPONSIVE - LARGE DESKTOP
=========================================*/

@media(min-width:1600px){

.hero{
padding:170px 0 100px;
}

.hero h1{
font-size:96px;
}

.cards-img{
max-width:760px;
}

.hero-right{
min-height:800px;
}

.ring1{
width:600px;
height:600px;
}

.ring2{
width:760px;
height:760px;
}

}

/*=========================================
LAPTOP
=========================================*/

@media(max-width:1400px){

.hero h1{
font-size:72px;
}

.cards-img{
max-width:560px;
}

.hero-right{
min-height:620px;
}

.ring1{
width:460px;
height:460px;
}

.ring2{
width:580px;
height:580px;
}

}

/*=========================================
TABLET
=========================================*/

@media(max-width:991px){

.hero{
padding:120px 0 80px;
text-align:center;
}

.hero-content{
margin-top:40px;
}

.hero h1{
font-size:56px;
}

.hero p{
margin:0 auto 40px;
}

.hero-btns{
justify-content:center;
}

.hero-right{
min-height:auto;
margin-bottom:50px;
}

.cards-img{
max-width:420px;
}

.hero-map{
display:none;
}

.ring1{
width:380px;
height:380px;
}

.ring2{
width:470px;
height:470px;
}

.top-card{
top:20px;
left:10px;
}

.bottom-card{
right:10px;
bottom:20px;
}

.hero-stats{
grid-template-columns:repeat(2,1fr);
margin-top:45px;
}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:767px){

.hero{
padding:95px 0 60px;
min-height:auto;
}

.hero h1{
font-size:42px;
line-height:1.05;
}

.hero p{
font-size:16px;
}

.hero-btns{
flex-direction:column;
gap:15px;
}

.apply-btn,
.eligibility-btn{
width:100%;
}

.hero-right{
margin-bottom:30px;
}

.cards-img{
max-width:300px;
}

.ring1{
width:270px;
height:270px;
}

.ring2{
width:340px;
height:340px;
}

.hero-stats{
grid-template-columns:1fr;
padding:20px;
gap:18px;
}

.stat-box{
justify-content:center;
text-align:left;
}

.floating-card{
padding:14px 16px;
gap:10px;
}

.floating-card h5{
font-size:15px;
}

.floating-card p{
font-size:12px;
}

.small-icon{
width:44px;
height:44px;
}

.small-icon i{
font-size:18px;
}

.top-card{
top:-10px;
left:0;
}

.bottom-card{
right:0;
bottom:-10px;
}

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

.hero{
padding-top:85px;
}

.hero h1{
font-size:34px;
}

.hero-badge{
padding:8px 14px;
}

.hero-badge span{
font-size:11px;
}

.hero p{
font-size:15px;
line-height:1.7;
}

.cards-img{
max-width:250px;
}

.ring1{
width:230px;
height:230px;
}

.ring2{
width:290px;
height:290px;
}

.hero-stats{
padding:16px;
}

.stat-box{
gap:10px;
}

.stat-box h3{
font-size:22px;
}

.stat-box span{
font-size:11px;
}

.top-card,
.bottom-card{
position:relative;
margin-top:15px;
top:auto;
left:auto;
right:auto;
bottom:auto;
}

.hero-right{
display:flex;
flex-direction:column;
align-items:center;
}

}

/*=========================================
SMOOTH TRANSITIONS
=========================================*/

.hero *,
.hero *::before,
.hero *::after{
transition:.35s ease;
}

/*=========================================
IMAGE HOVER
=========================================*/

.hero-image:hover .cards-img{
transform:scale(1.05) rotate(-2deg);
}

/*=========================================
GLOW ANIMATION
=========================================*/

.hero-bg-circle{
animation:pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow{

0%,100%{
transform:scale(1);
opacity:.18;
}

50%{
transform:scale(1.15);
opacity:.28;
}

}

/* Trust Section */
.trust-strip{
background:#9f0202;
padding:14px 0;
overflow:hidden;
}

.marquee{
display:flex;
overflow:hidden;
white-space:nowrap;
}

.marquee-content{
display:flex;
align-items:center;
gap:60px;
min-width:200%;
animation:marquee 25s linear infinite;
}

.marquee-content span{
display:flex;
align-items:center;
gap:8px;
color:#fff;
font-size:14px;
font-weight:600;
text-transform:uppercase;
letter-spacing:.5px;
}

.marquee-content i{
font-size:16px;
}

@keyframes marquee{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

.trust-strip:hover .marquee-content{
animation-play-state:paused;
}

@media(max-width:768px){
.marquee-content{
gap:35px;
}
.marquee-content span{
font-size:12px;
}
}
/* Why Us? */
.why-us{
padding:110px 0;
background:#050505;
}

.section-tag{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(159,2,2,.4);
border-radius:30px;
color:#9f0202;
font-size:13px;
font-weight:600;
margin-bottom:20px;
}

.why-us h2{
font-size:48px;
font-weight:700;
color:#fff;
margin-bottom:20px;
line-height:1.2;
}

.why-us>div>div>div p,
.why-us p{
color:#a8a8a8;
line-height:1.8;
margin-bottom:35px;
}

.why-img{
text-align:center;
position:relative;
}

.why-img img{
max-width:520px;
width:100%;
animation:float 5s ease-in-out infinite;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:35px;
}

.feature-box{
display:flex;
align-items:flex-start;
gap:15px;
background:#111;
border:1px solid #222;
border-radius:15px;
padding:22px;
transition:.3s;
}

.feature-box:hover{
border-color:#9f0202;
transform:translateY(-6px);
}

.feature-box i{
font-size:28px;
color:#9f0202;
}

.feature-box h5{
color:#fff;
margin-bottom:6px;
font-size:18px;
}

.feature-box p{
margin:0;
font-size:14px;
color:#999;
line-height:1.6;
}

@media(max-width:991px){
.why-us{
text-align:center;
padding:80px 0;
}
.why-img{
margin-bottom:50px;
}
.feature-grid{
grid-template-columns:1fr;
}
.feature-box{
text-align:left;
}
}

@media(max-width:576px){
.why-us h2{
font-size:34px;
}
.feature-box{
padding:18px;
}
}
/* About Us */
.about-section{
padding:120px 0;
background:#050505;
overflow:hidden;
position:relative;
border-top: 1px solid grey;
}

.about-section::before{
content:"";
position:absolute;
right:-220px;
top:-220px;
width:550px;
height:550px;
background:radial-gradient(circle,rgba(159,2,2,.15),transparent 70%);
}

.about-section h2{
font-size:50px;
font-weight:700;
color:#fff;
margin:20px 0;
line-height:1.2;
}

.about-section p{
color:#9c9c9c;
line-height:1.9;
}

.about-list{
margin:35px 0;
}

.about-item{
display:flex;
align-items:center;
gap:15px;
margin-bottom:18px;
font-size:17px;
color:#fff;
}

.about-item i{
color:#9f0202;
font-size:22px;
}

.about-counter{
display:flex;
gap:45px;
margin-top:40px;
padding-top:30px;
border-top:1px solid #222;
flex-wrap:wrap;
}

.about-counter h3{
font-size:38px;
font-weight:700;
color:#9f0202;
margin-bottom:5px;
}

.about-counter p{
margin:0;
color:#888;
font-size:14px;
text-transform:uppercase;
}

.about-image-wrapper{
position:relative;
padding-left:60px;
}

.about-main{
border-radius:28px;
width:100%;
box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.floating-card{
position:absolute;
background:#111;
border:1px solid rgba(255,255,255,.08);
padding:18px 22px;
border-radius:18px;
display:flex;
align-items:center;
gap:15px;
box-shadow:0 15px 35px rgba(0,0,0,.3);
}

.floating-card i{
width:55px;
height:55px;
background:#9f0202;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
}

.floating-card h5{
color:#fff;
margin:0;
font-size:18px;
}

.floating-card p{
margin:3px 0 0;
font-size:13px;
color:#aaa;
}

.top-card{
top:40px;
left:0;
}

.bottom-card{
right:-20px;
bottom:40px;
}

@media(max-width:991px){

.about-section{
padding:80px 0;
text-align:center;
}

.about-section h2{
font-size:38px;
}

.about-counter{
justify-content:center;
}

.about-image-wrapper{
padding-left:0;
margin-top:50px;
}

.top-card{
left:15px;
top:15px;
}

.bottom-card{
right:15px;
bottom:15px;
}

}

@media(max-width:576px){

.about-section h2{
font-size:30px;
}

.about-item{
font-size:15px;
}

.about-counter{
gap:25px;
justify-content:space-between;
}

.floating-card{
position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
margin-top:20px;
}

}

/* Journey*/
.process-section{
padding:110px 0;
background:#0b0b0b;
}

.process-section h2{
color:#fff;
font-size:48px;
font-weight:700;
margin:15px 0;
}

.process-section p{
color:#999;
max-width:700px;
margin:auto;
line-height:1.8;
}

.process-card{
position:relative;
background:#111;
border:1px solid #222;
border-radius:20px;
padding:40px 30px;
height:100%;
text-align:center;
transition:.35s;
overflow:hidden;
}

.process-card::before{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:4px;
background:#9f0202;
transform:scaleX(0);
transition:.35s;
}

.process-card:hover::before{
transform:scaleX(1);
}

.process-card:hover{
transform:translateY(-10px);
border-color:#9f0202;
box-shadow:0 20px 40px rgba(159,2,2,.18);
}

.process-number{
position:absolute;
top:20px;
right:20px;
font-size:50px;
font-weight:700;
color:rgba(255,255,255,.05);
}

.process-icon{
width:85px;
height:85px;
margin:0 auto 25px;
background:#9f0202;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.process-icon i{
font-size:36px;
color:#fff;
}

.process-card h4{
color:#fff;
font-size:24px;
margin-bottom:15px;
}

.process-card p{
color:#999;
font-size:15px;
line-height:1.8;
margin:0;
}

@media(max-width:991px){

.process-section{
padding:80px 0;
}

.process-section h2{
font-size:38px;
}

}

@media(max-width:576px){

.process-section h2{
font-size:30px;
}

.process-card{
padding:30px 22px;
}

.process-icon{
width:70px;
height:70px;
}

.process-icon i{
font-size:28px;
}

}
/* Loan & Credit Card Products */
.products-section{
padding:120px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.products-section::before{
content:"";
position:absolute;
width:700px;
height:700px;
background:radial-gradient(circle,rgba(159,2,2,.18),transparent 70%);
top:-250px;
right:-250px;
filter:blur(40px);
}

.section-heading{
margin-bottom:90px;
}

.section-heading span{
color:#9f0202;
font-size:14px;
font-weight:700;
letter-spacing:2px;
}

.section-heading h2{
font-size:52px;
font-weight:700;
color:#fff;
margin:15px 0;
}

.section-heading p{
max-width:700px;
margin:auto;
color:#9f9f9f;
line-height:1.8;
}

.product-box{
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:30px;
padding:70px;
margin-bottom:45px;
position:relative;
overflow:hidden;
transition:.4s;
}

.product-box:hover{
border-color:#9f0202;
transform:translateY(-8px);
box-shadow:0 20px 60px rgba(159,2,2,.15);
}

.product-box::after{
content:"";
position:absolute;
width:350px;
height:350px;
background:radial-gradient(circle,rgba(159,2,2,.18),transparent 70%);
right:-100px;
bottom:-100px;
}

.product-tag{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(159,2,2,.4);
border-radius:30px;
color:#9f0202;
font-size:13px;
margin-bottom:20px;
}

.product-content h3{
font-size:42px;
font-weight:700;
color:#fff;
margin-bottom:20px;
line-height:1.2;
}

.product-content p{
color:#a9a9a9;
line-height:1.9;
margin-bottom:30px;
}

.feature-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:35px;
}

.feature-list div{
color:#fff;
font-size:15px;
}

.feature-list i{
color:#9f0202;
margin-right:10px;
}

.product-btn{
display:inline-block;
padding:15px 34px;
background:#9f0202;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:.3s;
}

.product-btn:hover{
background:#c50303;
color:#fff;
transform:translateY(-3px);
}
.product-img{
display:block;
width:100%;
max-width:470px;
height:auto;
border-radius:48px;
object-fit:cover;
margin:0 auto;
transition:.5s ease;
}

.product-box:hover .product-img{
transform:scale(1.03);
}
/* Large Desktop */
@media(min-width:1400px){
.product-img{
max-width:540px;
}
}

/* Laptop */
@media(max-width:1200px){
.product-img{
max-width:420px;
border-radius:36px;
}
}

/* Tablet */
@media(max-width:991px){
.product-img{
max-width:380px;
border-radius:30px;
margin-top:30px;
}
}

/* Large Mobile */
@media(max-width:768px){
.product-img{
max-width:320px;
border-radius:24px;
}
}

/* Mobile */
@media(max-width:576px){
.product-img{
width:100%;
max-width:280px;
border-radius:20px;
}
}

/* Small Mobile */
@media(max-width:400px){
.product-img{
max-width:240px;
border-radius:16px;
}
}


/* EMI Calculator */
.emi-section{
padding:120px 0;
background:linear-gradient(180deg,#fafafa 0%,#f2f2f2 100%);
position:relative;
overflow:hidden;
}

.emi-section::before{
content:"";
position:absolute;
width:500px;
height:500px;
left:-180px;
top:-180px;
background:rgba(159,2,2,.08);
border-radius:50%;
filter:blur(80px);
}

.emi-section::after{
content:"";
position:absolute;
width:350px;
height:350px;
right:-120px;
bottom:-120px;
background:rgba(159,2,2,.06);
border-radius:50%;
filter:blur(70px);
}

.emi-section .section-heading{
position:relative;
z-index:2;
margin-bottom:70px;
}

.emi-section .section-heading span{
display:inline-block;
padding:8px 18px;
border-radius:30px;
background:rgba(159,2,2,.1);
color:#9f0202;
font-size:13px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:18px;
}

.emi-section .section-heading h2{
font-size:48px;
font-weight:700;
color:#111;
margin-bottom:18px;
}

.emi-section .section-heading p{
max-width:650px;
margin:auto;
font-size:17px;
color:#666;
line-height:1.8;
}

/* Left Card */

.emi-card{
background:#fff;
padding:45px;
border-radius:24px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
position:relative;
z-index:2;
}

.emi-card label{
display:block;
font-size:15px;
font-weight:600;
color:#222;
margin-bottom:12px;
}

.emi-card span{
font-weight:600;
color:#555;
}

.emi-card input[type=range]{
width:100%;
height:6px;
appearance:none;
background:#ddd;
border-radius:20px;
outline:none;
}

.emi-card input[type=range]::-webkit-slider-thumb{
appearance:none;
width:22px;
height:22px;
background:#9f0202;
border:4px solid #fff;
border-radius:50%;
cursor:pointer;
box-shadow:0 5px 15px rgba(159,2,2,.35);
transition:.3s;
}

.emi-card input[type=range]::-webkit-slider-thumb:hover{
transform:scale(1.15);
}

/* Right Result Card */

.result-card{
background:linear-gradient(135deg,#9f0202,#7b0101);
padding:45px;
border-radius:24px;
color:#fff;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
box-shadow:0 25px 70px rgba(159,2,2,.3);
position:relative;
overflow:hidden;
z-index:2;
}

.result-card::before{
content:"";
position:absolute;
width:250px;
height:250px;
border:1px solid rgba(255,255,255,.12);
border-radius:50%;
right:-100px;
top:-100px;
}

.result-card::after{
content:"";
position:absolute;
width:140px;
height:140px;
background:rgba(255,255,255,.08);
border-radius:50%;
left:-50px;
bottom:-50px;
}

.result-card h5{
font-size:17px;
font-weight:500;
color:#f7dcdc;
margin-bottom:12px;
position:relative;
z-index:2;
}

.result-card h2{
font-size:54px;
font-weight:700;
margin-bottom:35px;
position:relative;
z-index:2;
}

.result-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
border-top:1px solid rgba(255,255,255,.15);
position:relative;
z-index:2;
}

.result-item span{
font-size:15px;
color:#f5dada;
}

.result-item strong{
font-size:17px;
font-weight:600;
color:#fff;
}

/* Button */

.result-card .apply-btn{
display:block;
width:100%;
margin-top:35px;
padding:15px;
background:#fff;
color:#9f0202;
text-decoration:none;
font-weight:700;
text-align:center;
border-radius:10px;
transition:.35s;
position:relative;
z-index:2;
}

.result-card .apply-btn:hover{
background:#111;
color:#fff;
transform:translateY(-3px);
}

/* Responsive */

@media(max-width:1199px){

.emi-section .section-heading h2{
font-size:42px;
}

.result-card h2{
font-size:46px;
}

}

@media(max-width:991px){

.emi-section{
padding:90px 0;
}

.emi-card{
margin-bottom:30px;
}

.emi-card,
.result-card{
padding:35px;
}

.emi-section .section-heading{
margin-bottom:50px;
}

.emi-section .section-heading h2{
font-size:36px;
}

}

@media(max-width:767px){

.emi-section{
padding:70px 0;
}

.emi-card,
.result-card{
padding:28px;
border-radius:18px;
}

.emi-section .section-heading h2{
font-size:30px;
}

.result-card h2{
font-size:38px;
}

.result-item{
padding:15px 0;
}

}

@media(max-width:576px){

.emi-section .section-heading span{
font-size:11px;
}

.emi-section .section-heading p{
font-size:15px;
}

.result-card h2{
font-size:34px;
}

}
/* Testimonials  */
/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{
padding:100px 0;
background:#0b0b0b;
position:relative;
overflow:hidden;
}

.testimonial-section::before{
content:"";
position:absolute;
top:-220px;
left:-220px;
width:500px;
height:500px;
background:radial-gradient(circle,rgba(159,2,2,.15),transparent 70%);
filter:blur(60px);
}

.testimonial-section::after{
content:"";
position:absolute;
right:-180px;
bottom:-180px;
width:400px;
height:400px;
background:radial-gradient(circle,rgba(159,2,2,.12),transparent 70%);
filter:blur(60px);
}

/*=========================
Heading
=========================*/

.section-heading{
max-width:760px;
margin:0 auto 60px;
text-align:center;
padding:0 15px;
position:relative;
z-index:2;
}

.section-heading span{
display:inline-block;
font-size:13px;
font-weight:700;
letter-spacing:3px;
color:#9f0202;
margin-bottom:18px;
text-transform:uppercase;
}

.section-heading h2{
font-size:52px;
font-weight:700;
line-height:1.15;
color:#fff;
margin-bottom:18px;
}

.section-heading p{
max-width:650px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#9d9d9d;
}

/*=========================
Card
=========================*/

.testimonial-card{
height:100%;
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:22px;
padding:35px;
display:flex;
flex-direction:column;
justify-content:space-between;
transition:.35s;
position:relative;
z-index:2;
}

.testimonial-card:hover{
transform:translateY(-8px);
border-color:#9f0202;
box-shadow:0 20px 45px rgba(159,2,2,.18);
}

.active-card{
background:linear-gradient(135deg,#9f0202,#720101);
border:none;
}

.quote-icon{
width:58px;
height:58px;
border-radius:15px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(159,2,2,.12);
margin-bottom:20px;
}

.active-card .quote-icon{
background:rgba(255,255,255,.15);
}

.quote-icon i{
font-size:24px;
color:#9f0202;
}

.active-card .quote-icon i{
color:#fff;
}

.stars{
margin-bottom:20px;
}

.stars i{
color:#ffc107;
font-size:15px;
margin-right:2px;
}

.testimonial-text{
color:#b5b5b5;
font-size:15px;
line-height:1.9;
margin-bottom:35px;
}

.active-card .testimonial-text{
color:#fff;
}

/*=========================
Customer
=========================*/

.client-info{
display:flex;
align-items:center;
gap:15px;
margin-top:auto;
}

.client-avatar{
width:58px;
height:58px;
border-radius:50%;
background:linear-gradient(135deg,#9f0202,#d10404);
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
font-weight:700;
color:#fff;
flex-shrink:0;
}

.client-info h5{
margin:0;
font-size:18px;
font-weight:600;
color:#fff;
}

.client-info span{
display:block;
margin-top:4px;
font-size:13px;
color:#999;
}

.active-card .client-info span{
color:#f2d7d7;
}

/*=========================================
Responsive
=========================================*/

@media(max-width:1200px){

.section-heading h2{
font-size:44px;
}

.testimonial-card{
padding:30px;
}

}

@media(max-width:991px){

.testimonial-section{
padding:80px 0;
}

.section-heading{
margin-bottom:45px;
}

.section-heading h2{
font-size:36px;
}

.section-heading p{
font-size:16px;
}

.testimonial-card{
padding:28px;
}

}

@media(max-width:767px){

.testimonial-section{
padding:70px 0;
}

.section-heading{
margin-bottom:35px;
}

.section-heading span{
font-size:12px;
letter-spacing:2px;
}

.section-heading h2{
font-size:30px;
line-height:1.3;
}

.section-heading p{
font-size:15px;
line-height:1.7;
}

.testimonial-card{
padding:24px;
}

.quote-icon{
width:48px;
height:48px;
}

.quote-icon i{
font-size:20px;
}

.testimonial-text{
font-size:14px;
line-height:1.8;
margin-bottom:28px;
}

.client-avatar{
width:48px;
height:48px;
font-size:18px;
}

.client-info h5{
font-size:15px;
}

.client-info span{
font-size:12px;
}

}

@media(max-width:480px){

.testimonial-section{
padding:60px 0;
}

.section-heading{
padding:0 20px;
}

.section-heading h2{
font-size:26px;
}

.section-heading p{
font-size:14px;
}

.testimonial-card{
padding:20px;
border-radius:18px;
}

.client-info{
gap:12px;
}

.client-avatar{
width:44px;
height:44px;
font-size:16px;
}

.client-info h5{
font-size:14px;
}

.client-info span{
font-size:11px;
}

}

@media(max-width:360px){

.section-heading h2{
font-size:22px;
}

.section-heading p{
font-size:13px;
}

.testimonial-card{
padding:18px;
}

}
/* FAQ Section */
/*=========================
FAQ
=========================*/

.faq-section{
padding:120px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.faq-section::before{
content:"";
position:absolute;
right:-180px;
top:-180px;
width:500px;
height:500px;
background:radial-gradient(circle,rgba(159,2,2,.16),transparent 70%);
filter:blur(60px);
}

.faq-content h2{
font-size:50px;
font-weight:700;
color:#fff;
margin:20px 0;
line-height:1.2;
}

.faq-content p{
color:#aaa;
line-height:1.9;
margin-bottom:35px;
}

.faq-info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-box{
display:flex;
gap:18px;
align-items:flex-start;
padding:22px;
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
transition:.3s;
}

.info-box:hover{
border-color:#9f0202;
transform:translateX(8px);
}

.info-box i{
font-size:26px;
color:#9f0202;
}

.info-box h5{
color:#fff;
margin-bottom:5px;
}

.info-box p{
margin:0;
color:#999;
font-size:14px;
}

.custom-accordion .accordion-item{
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
margin-bottom:18px;
overflow:hidden;
}

.custom-accordion .accordion-button{
background:#111;
color:#fff;
font-size:18px;
font-weight:600;
padding:22px;
box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
background:#9f0202;
color:#fff;
}

.custom-accordion .accordion-button::after{
filter:brightness(0) invert(1);
}

.custom-accordion .accordion-body{
background:#181818;
color:#bbb;
line-height:1.9;
padding:22px;
}

.custom-accordion .accordion-button:focus{
box-shadow:none;
}

@media(max-width:991px){

.faq-section{
padding:80px 0;
}

.faq-content{
text-align:center;
margin-bottom:50px;
}

.faq-content h2{
font-size:38px;
}

.info-box{
text-align:left;
}

}

@media(max-width:767px){

.faq-section{
padding:70px 0;
}

.faq-content h2{
font-size:30px;
}

.custom-accordion .accordion-button{
font-size:16px;
padding:18px;
}

.custom-accordion .accordion-body{
padding:18px;
font-size:14px;
}

.info-box{
padding:18px;
}

}
/* CTA Section */
/*==================================
CTA SECTION
==================================*/

.cta-section{
padding:120px 0;
background:#050505;
position:relative;
overflow:hidden;
}

.cta-box{
position:relative;
padding:70px;
border-radius:32px;
background:linear-gradient(135deg,#7d0101,#b50202);
overflow:hidden;
box-shadow:0 30px 80px rgba(159,2,2,.35);
}

.cta-box::before{
content:"";
position:absolute;
width:450px;
height:450px;
right:-150px;
top:-150px;
border-radius:50%;
background:rgba(255,255,255,.08);
}

.cta-box::after{
content:"";
position:absolute;
width:220px;
height:220px;
left:-70px;
bottom:-70px;
border-radius:50%;
background:rgba(255,255,255,.08);
}

.cta-tag{
display:inline-block;
padding:10px 20px;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.18);
border-radius:40px;
color:#fff;
font-size:13px;
font-weight:600;
letter-spacing:2px;
margin-bottom:25px;
}

.cta-box h2{
font-size:56px;
font-weight:700;
line-height:1.15;
color:#fff;
margin-bottom:20px;
position:relative;
z-index:2;
}

.cta-box h2 span{
color:#ffd9d9;
}

.cta-box p{
max-width:700px;
color:#f3dede;
font-size:17px;
line-height:1.8;
margin-bottom:35px;
position:relative;
z-index:2;
}

.cta-features{
display:flex;
flex-wrap:wrap;
gap:25px;
position:relative;
z-index:2;
}

.cta-features div{
display:flex;
align-items:center;
gap:10px;
color:#fff;
font-weight:500;
}

.cta-features i{
color:#fff;
font-size:18px;
}

.cta-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:18px 36px;
background:#fff;
color:#9f0202;
text-decoration:none;
font-weight:700;
border-radius:12px;
transition:.35s;
margin-bottom:18px;
}

.cta-btn:hover{
background:#111;
color:#fff;
transform:translateY(-5px);
}

.cta-outline{
display:inline-block;
padding:18px 36px;
border:1px solid rgba(255,255,255,.25);
border-radius:12px;
text-decoration:none;
color:#fff;
font-weight:600;
transition:.35s;
}

.cta-outline:hover{
background:#fff;
color:#9f0202;
}

@media(max-width:991px){

.cta-section{
padding:80px 0;
}

.cta-box{
padding:45px;
text-align:center;
}

.cta-box h2{
font-size:42px;
}

.cta-features{
justify-content:center;
margin-bottom:35px;
}

}

@media(max-width:767px){

.cta-box{
padding:30px;
border-radius:24px;
}

.cta-box h2{
font-size:32px;
}

.cta-box p{
font-size:15px;
}

.cta-features{
flex-direction:column;
gap:15px;
align-items:center;
}

.cta-btn,
.cta-outline{
width:100%;
justify-content:center;
}

}

/* Footer */
/*==================================
FOOTER
==================================*/

.footer{
background:#050505;
padding:90px 0 30px;
position:relative;
overflow:hidden;
border-top: 1px solid grey;
}

.footer::before{
content:"";
position:absolute;
width:550px;
height:550px;
right:-220px;
top:-220px;
background:radial-gradient(circle,rgba(159,2,2,.12),transparent 70%);
filter:blur(80px);
}

/*=========================
Footer Text Logo
=========================*/

.footer-logo{
display:inline-flex;
flex-direction:column;
text-decoration:none;
margin-bottom:25px;
}

.footer-logo .logo-main{
font-size:34px;
font-weight:700;
color:#fff;
letter-spacing:2px;
line-height:1;
}

.footer-logo .logo-sub{
font-size:14px;
font-weight:600;
color:#9f0202;
letter-spacing:4px;
margin-top:8px;
text-transform:uppercase;
}

.footer-logo:hover{
text-decoration:none;
}

.footer-logo:hover .logo-main{
color:#9f0202;
transition:.3s;
}

.footer-logo:hover .logo-sub{
color:#fff;
transition:.3s;
}

@media(max-width:576px){

.footer-logo .logo-main{
font-size:28px;
}

.footer-logo .logo-sub{
font-size:12px;
letter-spacing:3px;
}

}

.footer-about{
color:#9d9d9d;
line-height:1.9;
margin-bottom:30px;
max-width:360px;
}

.footer h4{
font-size:24px;
color:#fff;
margin-bottom:25px;
position:relative;
}

.footer h4::after{
content:"";
position:absolute;
left:0;
bottom:-10px;
width:45px;
height:3px;
background:#9f0202;
border-radius:20px;
}

.footer-links{
padding:0;
margin:0;
list-style:none;
}

.footer-links li{
margin-bottom:16px;
}

.footer-links a{
text-decoration:none;
color:#a7a7a7;
transition:.3s;
}

.footer-links a:hover{
color:#fff;
padding-left:8px;
}

.social-links{
display:flex;
gap:15px;
}

.social-links a{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#111;
border:1px solid rgba(255,255,255,.08);
color:#fff;
font-size:18px;
transition:.35s;
}

.social-links a:hover{
background:#9f0202;
transform:translateY(-5px);
}

.footer-news-text{
color:#aaa;
line-height:1.8;
margin-bottom:25px;
}

.newsletter-box{
display:flex;
background:#111;
border:1px solid rgba(255,255,255,.08);
border-radius:50px;
overflow:hidden;
transition:.3s;
}

.newsletter-box:focus-within{
border-color:#9f0202;
}

.newsletter-box input{
flex:1;
height:58px;
padding:0 20px;
border:none;
background:none;
color:#fff;
outline:none;
}

.newsletter-box input::placeholder{
color:#777;
}

.newsletter-box button{
width:58px;
border:none;
background:#9f0202;
color:#fff;
font-size:18px;
transition:.3s;
}

.newsletter-box button:hover{
background:#c30303;
}

.newsletter-note{
display:flex;
align-items:center;
gap:10px;
margin-top:15px;
color:#999;
font-size:13px;
}

.newsletter-note i{
color:#9f0202;
}

.footer-contact{
display:flex;
flex-direction:column;
gap:18px;
}

.footer-contact div{
display:flex;
align-items:center;
gap:15px;
}

.footer-contact i{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#9f0202;
color:#fff;
flex-shrink:0;
}

.footer-contact span{
color:#aaa;
}

.footer-trust{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
padding:20px 0;
}

.footer-trust div{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
color:#ddd;
font-size:15px;
}

.footer-trust i{
color:#9f0202;
font-size:20px;
}

.footer hr{
border-color:#222;
margin:40px 0;
}

.footer-bottom p{
margin:0;
color:#888;
}

.footer-bottom a{
margin-left:20px;
text-decoration:none;
color:#888;
transition:.3s;
}

.footer-bottom a:hover{
color:#fff;
}

/*==========================
Responsive
==========================*/

@media(max-width:991px){

.footer{
padding:70px 0 30px;
}

.footer-trust{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.footer{
text-align:center;
}

.footer-about{
margin:auto auto 30px;
}

.footer h4::after{
left:50%;
transform:translateX(-50%);
}

.social-links{
justify-content:center;
}

.newsletter-note{
justify-content:center;
}

.footer-contact div{
justify-content:center;
text-align:left;
}

.footer-trust{
grid-template-columns:1fr;
gap:15px;
}

.footer-bottom{
text-align:center;
}

.footer-bottom a{
display:inline-block;
margin:12px 10px 0;
}

}

@media(max-width:576px){

.newsletter-box input{
font-size:14px;
}

.footer-logo img{
height:50px;
}

.footer h4{
font-size:22px;
}

}
/* Privacy page start  */
/* Content  */
/*==================================
PRIVACY POLICY PAGE
==================================*/

.policy-banner{
padding:170px 0 100px;
background:#050505;
position:relative;
overflow:hidden;
text-align:center;
}

.policy-banner::before{
content:"";
position:absolute;
top:-220px;
right:-220px;
width:600px;
height:600px;
background:radial-gradient(circle,rgba(159,2,2,.28),transparent 70%);
filter:blur(60px);
}

.policy-banner::after{
content:"";
position:absolute;
left:-180px;
bottom:-180px;
width:420px;
height:420px;
background:radial-gradient(circle,rgba(159,2,2,.15),transparent 70%);
filter:blur(50px);
}

.banner-content{
position:relative;
z-index:2;
max-width:850px;
margin:auto;
}

.banner-tag{
display:inline-block;
padding:10px 22px;
background:rgba(159,2,2,.15);
border:1px solid rgba(159,2,2,.3);
border-radius:40px;
font-size:13px;
font-weight:600;
letter-spacing:2px;
color:#fff;
margin-bottom:25px;
}

.policy-banner h1{
font-size:68px;
font-weight:700;
color:#fff;
margin-bottom:20px;
}

.policy-banner p{
font-size:18px;
line-height:1.9;
color:#b8b8b8;
max-width:650px;
margin:auto auto 35px;
}

.breadcrumb{
background:none;
margin:0;
}

.breadcrumb-item,
.breadcrumb-item a{
color:#d8d8d8;
text-decoration:none;
}

.breadcrumb-item.active{
color:#9f0202;
}

.breadcrumb-item+.breadcrumb-item::before{
color:#777;
}

/*==================================
MAIN SECTION
==================================*/

.policy-section{
padding:100px 0;
background:#f6f6f6;
}

.policy-sidebar{
position:sticky;
top:120px;
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.policy-sidebar h4{
font-size:24px;
font-weight:700;
margin-bottom:25px;
color:#111;
}

.policy-sidebar ul{
margin:0;
padding:0;
list-style:none;
}

.policy-sidebar li{
margin-bottom:15px;
}

.policy-sidebar a{
display:block;
text-decoration:none;
color:#555;
font-weight:500;
transition:.3s;
}

.policy-sidebar a:hover{
color:#9f0202;
padding-left:8px;
}

.policy-card{
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.policy-card section{
margin-bottom:45px;
}

.policy-card h2{
font-size:36px;
font-weight:700;
margin-bottom:20px;
color:#111;
position:relative;
padding-left:18px;
}

.policy-card h2::before{
content:"";
position:absolute;
left:0;
top:8px;
width:5px;
height:34px;
background:#9f0202;
border-radius:20px;
}

.policy-card h5{
font-size:22px;
margin-top:25px;
margin-bottom:15px;
color:#222;
font-weight:600;
}

.policy-card p{
font-size:17px;
line-height:1.9;
color:#666;
margin-bottom:20px;
}

.policy-card ul{
padding-left:22px;
}

.policy-card ul li{
margin-bottom:12px;
color:#666;
line-height:1.8;
}

.policy-card hr{
margin:45px 0;
border-color:#e7e7e7;
}

/*==================================
CONTACT BOX
==================================*/

.contact-box{
margin-top:35px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.contact-box div{
display:flex;
align-items:center;
gap:15px;
background:#fafafa;
border:1px solid #ececec;
padding:22px;
border-radius:16px;
transition:.3s;
}

.contact-box div:hover{
border-color:#9f0202;
transform:translateY(-5px);
}

.contact-box i{
width:50px;
height:50px;
background:#9f0202;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
flex-shrink:0;
}

.contact-box span{
font-size:15px;
font-weight:500;
color:#444;
}

/*==================================
BOTTOM NOTE
==================================*/

.policy-note{
margin-top:50px;
padding:30px;
background:#fff6f6;
border-left:5px solid #9f0202;
border-radius:15px;
display:flex;
align-items:flex-start;
gap:20px;
}

.policy-note i{
font-size:34px;
color:#9f0202;
flex-shrink:0;
}

.policy-note p{
margin:0;
color:#555;
line-height:1.8;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1199px){

.policy-banner h1{
font-size:56px;
}

.contact-box{
grid-template-columns:1fr;
}

}

@media(max-width:991px){

.policy-banner{
padding:140px 0 80px;
}

.policy-banner h1{
font-size:48px;
}

.policy-banner p{
font-size:16px;
}

.policy-sidebar{
position:relative;
top:auto;
margin-bottom:40px;
}

.policy-card{
padding:40px;
}

.policy-card h2{
font-size:30px;
}

}

@media(max-width:767px){

.policy-banner{
padding:120px 0 70px;
}

.policy-banner h1{
font-size:38px;
}

.policy-banner p{
font-size:15px;
}

.policy-card{
padding:30px;
}

.policy-card h2{
font-size:26px;
}

.policy-card h5{
font-size:20px;
}

.policy-card p,
.policy-card li{
font-size:15px;
}

.policy-note{
flex-direction:column;
text-align:center;
}

}

@media(max-width:576px){

.policy-banner{
padding:110px 0 60px;
}

.banner-tag{
font-size:11px;
padding:8px 18px;
}

.policy-banner h1{
font-size:32px;
}

.policy-banner p{
font-size:14px;
line-height:1.8;
}

.policy-sidebar{
padding:22px;
}

.policy-sidebar h4{
font-size:22px;
}

.policy-card{
padding:22px;
border-radius:15px;
}

.policy-card h2{
font-size:22px;
padding-left:15px;
}

.policy-card h2::before{
height:28px;
}

.policy-card h5{
font-size:18px;
}

.policy-card p,
.policy-card li{
font-size:14px;
line-height:1.8;
}

.contact-box div{
padding:18px;
}

.contact-box i{
width:42px;
height:42px;
font-size:18px;
}

.contact-box span{
font-size:14px;
}

.policy-note{
padding:20px;
}

.policy-note i{
font-size:28px;
}

}

/* Terms and Condition Page same as privacy policy*/
/*==========================
CONTACT PAGE
==========================*/

.contact-page{
padding:100px 0;
background:#f7f7f7;
}

.contact-card{
background:#fff;
padding:35px 25px;
border-radius:20px;
text-align:center;
height:100%;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
}

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(159,2,2,.15);
}

.contact-icon{
width:70px;
height:70px;
margin:0 auto 20px;
border-radius:50%;
background:#9f0202;
display:flex;
align-items:center;
justify-content:center;
}

.contact-icon i{
font-size:28px;
color:#fff;
}

.contact-card h4{
font-size:22px;
font-weight:700;
margin-bottom:12px;
color:#111;
}

.contact-card p{
margin:0;
color:#666;
line-height:1.7;
}

.contact-content h2{
font-size:50px;
font-weight:700;
margin:20px 0;
color:#111;
}

.contact-content p{
color:#666;
line-height:1.9;
margin-bottom:35px;
}

.contact-list{
display:flex;
flex-direction:column;
gap:18px;
}

.contact-list div{
display:flex;
align-items:center;
gap:15px;
font-size:17px;
font-weight:500;
color:#333;
}

.contact-list i{
font-size:20px;
color:#9f0202;
}

.contact-form-box{
background:#fff;
padding:45px;
border-radius:25px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.contact-form-box h3{
font-size:32px;
font-weight:700;
margin-bottom:35px;
color:#111;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
height:58px;
border-radius:12px;
border:1px solid #ddd;
padding:0 18px;
box-shadow:none;
}

.contact-form-box textarea.form-control{
height:auto;
padding:18px;
resize:none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus{
border-color:#9f0202;
box-shadow:0 0 0 .2rem rgba(159,2,2,.12);
}

.contact-form-box button{
border:none;
}

.map-section{
padding:100px 0;
background:#050505;
}

.map-box{
border-radius:24px;
overflow:hidden;
box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.map-box iframe{
width:100%;
height:500px;
border:0;
display:block;
}

.contact-cta{
padding:100px 0;
background:#050505;
}

.contact-cta .cta-box{
padding:70px;
background:linear-gradient(135deg,#7f0101,#b80303);
border-radius:28px;
text-align:center;
position:relative;
overflow:hidden;
}

.contact-cta .cta-box::before{
content:"";
position:absolute;
width:350px;
height:350px;
background:rgba(255,255,255,.08);
border-radius:50%;
right:-120px;
top:-120px;
}

.contact-cta h2{
font-size:52px;
font-weight:700;
color:#fff;
margin-bottom:20px;
position:relative;
z-index:2;
}

.contact-cta p{
font-size:18px;
color:#f5dede;
max-width:700px;
margin:0 auto 35px;
position:relative;
z-index:2;
}

.contact-cta .hero-btns{
position:relative;
z-index:2;
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1199px){

.contact-content h2{
font-size:42px;
}

.contact-cta h2{
font-size:44px;
}

}

@media(max-width:991px){

.contact-page,
.map-section,
.contact-cta{
padding:80px 0;
}

.contact-content{
margin-bottom:40px;
text-align:center;
}

.contact-list{
align-items:center;
}

.contact-form-box{
padding:35px;
}

.contact-cta .cta-box{
padding:50px 35px;
}

.contact-cta h2{
font-size:38px;
}

.map-box iframe{
height:420px;
}

}

@media(max-width:767px){

.contact-page,
.map-section,
.contact-cta{
padding:70px 0;
}

.contact-card{
padding:30px 20px;
}

.contact-content h2{
font-size:32px;
}

.contact-content p{
font-size:15px;
}

.contact-list div{
font-size:15px;
}

.contact-form-box{
padding:28px;
}

.contact-form-box h3{
font-size:26px;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
height:54px;
font-size:14px;
}

.contact-form-box textarea.form-control{
padding:15px;
}

.map-box iframe{
height:350px;
}

.contact-cta .cta-box{
padding:35px 25px;
}

.contact-cta h2{
font-size:30px;
}

.contact-cta p{
font-size:15px;
}

}

@media(max-width:576px){

.contact-card{
padding:25px 18px;
}

.contact-icon{
width:60px;
height:60px;
}

.contact-icon i{
font-size:24px;
}

.contact-card h4{
font-size:20px;
}

.contact-content h2{
font-size:28px;
}

.contact-form-box{
padding:22px;
border-radius:18px;
}

.contact-form-box h3{
font-size:22px;
}

.map-box{
border-radius:18px;
}

.map-box iframe{
height:300px;
}

.contact-cta h2{
font-size:26px;
}

.contact-cta p{
font-size:14px;
}

}
/*=========================
Form Checkbox
=========================*/

.custom-check{
display:flex;
align-items:flex-start;
gap:12px;
margin-bottom:5px;
}

.custom-check .form-check-input{
width:18px;
height:18px;
margin-top:3px;
border:2px solid #9f0202;
cursor:pointer;
box-shadow:none;
}

.custom-check .form-check-input:checked{
background-color:#9f0202;
border-color:#9f0202;
}

.custom-check .form-check-label{
font-size:14px;
line-height:1.7;
color:#666;
cursor:pointer;
}

.custom-check .form-check-label a{
color:#9f0202;
font-weight:600;
text-decoration:none;
}

.custom-check .form-check-label a:hover{
text-decoration:underline;
}

@media(max-width:576px){

.custom-check .form-check-label{
font-size:13px;
}

}