@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');
:root{

    /* Brand Colors */

    --primary:#E11B2A;
    --primary-hover:#c41220;

    --secondary:#0A2F7A;

    --heading:#0F172A;

    --text:#64748B;

    --text-light:#94A3B8;

    --white:#ffffff;

    --background:#F8FAFC;

    --border:#E2E8F0;

    /* Radius */

    --radius-sm:8px;

    --radius-md:14px;

    --radius-lg:20px;

    --radius-xl:30px;

    /* Shadow */

    --shadow-sm:0 5px 15px rgba(15,23,42,.05);

    --shadow-md:0 10px 35px rgba(15,23,42,.08);

    --shadow-lg:0 20px 60px rgba(15,23,42,.12);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Manrope",sans-serif;

    background:var(--background);

    color:var(--text);

    font-size:16px;

    line-height:1.7;

    overflow-x:hidden;

}

h1,h2,h3,h4,h5,h6{

    font-family:"Plus Jakarta Sans",sans-serif;

    color:#fff;

    font-weight:700;


}

h1{

    font-size:64px;

    line-height:1.1;

}

h2{

    font-size:48px;

    line-height:1.2;

}

h3{

    font-size:34px;

}

h4{

    font-size:28px;

}

h5{

    font-size:22px;

}

p{

    font-size:17px;

    color:#fff;

    margin-bottom:18px;

}

a{

    text-decoration:none;

    transition:.3s;

}

@media(max-width:992px){

h1{

font-size:48px;

}

h2{

font-size:38px;

}

}

@media(max-width:768px){

h1{

font-size:38px;

}

h2{

font-size:30px;

}

p{

font-size:16px;

}

}

.container{

    width:90%;

    max-width:1320px;

    margin:auto;

    padding:0 16px;

}

section{

    padding:0px 0;

}

@media(max-width:768px){
  
section{

padding:25px 10px !important

}

}

img{

    max-width:100%;

    display:block;

}

/*==================================
Common Utilities
===================================*/

/* Section Padding */

.pt-60{padding-top:60px;}
.pt-80{padding-top:80px;}
.pt-100{padding-top:100px;}

.pb-60{padding-bottom:60px;}
.pb-80{padding-bottom:80px;}
.pb-100{padding-bottom:100px;}

/* Margin Top */

.mt-20{margin-top:20px;}
.mt-30{margin-top:30px;}
.mt-40{margin-top:40px;}
.mt-50{margin-top:50px;}
.mt-60{margin-top:60px;}

/* Margin Bottom */

.mb-20{margin-bottom:20px;}
.mb-30{margin-bottom:30px;}
.mb-40{margin-bottom:40px;}
.mb-50{margin-bottom:50px;}
.mb-60{margin-bottom:60px;}
.mb-70{margin-bottom:70px;}
.mb-80{margin-bottom:80px;}
.mb-100{margin-bottom:100px;}

/* Text Alignment */

.text-center{
    text-align:center;
}

.text-left{
    text-align:left;
}

.text-right{
    text-align:right;
}




/*==========================
Theme Button
==========================*/

.theme-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all .35s ease;
    background: linear-gradient(
        135deg,
        #071F52 0%,
        #0A2F7A 50%,
        #E11B2A 100%
    );
    box-shadow: 0 10px 25px rgba(225,27,42,.25);
}

.theme-btn:hover{
    transform: translateY(-3px);
    background: linear-gradient(
        135deg,
        #0A2F7A 0%,
        #E11B2A 100%
    );
    box-shadow: 0 15px 35px rgba(225,27,42,.35);
    color: #fff;
}

/*==========================
Brand Gradient
==========================*/

.brand-gradient{
    background: linear-gradient(
        135deg,
        #071F52 0%,
        #0A2F7A 50%,
        #E11B2A 100%
    );
}





.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:var(--primary);

    color:var(--white);

    padding:15px 32px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    border:none;

    transition:.35s;

    cursor:pointer;

}

.btn-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-3px);

    box-shadow:var(--shadow-md);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 32px;

    border-radius:50px;

    border:2px solid var(--primary);

    color:var(--primary);

    background:transparent;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

.btn-sm{

    padding:10px 22px;

    font-size:15px;

}

.section-heading{

    max-width:700px;

    margin-bottom:60px;

}

.section-tag{

    display:inline-block;

    margin-bottom:15px;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-title{

    font-size:48px;

    line-height:1.2;

    margin-bottom:18px;

}

.section-subtitle{

    font-size:18px;

    line-height:30px;

    color:var(--text);

}

@media(max-width:768px){

.section-title{

font-size:34px;

}

.section-subtitle{

font-size:16px;

line-height:28px;

}

}

.card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.badge{

    display:inline-block;

    background:#FFF0F1;

    color:var(--primary);

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

a,
button,
img{

    transition:.35s;

}