:root{
--primary:#ac3124;
--secondary:#3e0960;
--dark:#222;
--light:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{scroll-behavior:smooth;}
body{background:#ffffff;color:#333;overflow-x:hidden;}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER DONE */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,.08);
    z-index:9999;
}

body{
    padding-top:90px;
}

/*=========================================================
                        NAVBAR
=========================================================*/

.navbar{

    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:90px;

    position:relative;

}

/*=========================================================
                        LOGO
=========================================================*/

.logo{

    flex-shrink:0;

}

.logo img{

    display:block;

    height:60px;

}

/*=========================================================
                    NAV WRAPPER
=========================================================*/

.nav-wrapper{

    display:flex;

    align-items:center;

    gap:40px;

}

/*=========================================================
                    NAV LINKS
=========================================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}

.nav-links a{

    text-decoration:none;

    color:#3E0960;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#AC3124;

}

/*=========================================================
                    BUTTONS
=========================================================*/

.nav-buttons{

    display:flex;

    align-items:center;

    gap:16px;

}

.nav-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 24px;

    border-radius:50px;

    text-decoration:none;

    font-size:13px;

    font-weight:600;

    transition:.35s;

}

.login-btn{

    color:#AC3124;

    background:#ffffff;

    border:2px solid #AC3124;

}

.login-btn:hover{

    transform:translateY(-3px);

}

.start-btn{

    color:#ffffff;

    background:#AC3124;

    border:2px solid #AC3124;

}

.start-btn:hover{

    transform:translateY(-3px);

}

/*=========================================================
                    MENU TOGGLE
=========================================================*/

.menu-toggle{

    display:none;

    flex-direction:column;

    justify-content:center;

    gap:6px;

    width:40px;

    height:40px;

    background:none;

    border:none;

    cursor:pointer;

}

.menu-toggle span{

    width:28px;

    height:3px;

    background:#3E0960;

    border-radius:20px;

    transition:.3s;

}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/*=========================================================
                    BLOG HERO
=========================================================*/

.blog-hero{
    padding:140px 0 70px;
    background:#ffffff;
    text-align:center;
}

.blog-hero .container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.blog-hero h1{
    color:#ac3124;
    font-size:40px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:25px;
}

.blog-meta{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.blog-meta span{
    color:#555;
    font-size:15px;
    font-weight:500;
}

.dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#ac3124;
}


/*=========================================================
                    FEATURE IMAGE
=========================================================*/

.blog-image{
    padding:70px 0;
}

.blog-image .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.blog-image img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}


/*=========================================================
                    BLOG CONTENT
=========================================================*/

.blog-content{
    padding-bottom:100px;
}

.blog-content .container{
    width:90%;
    max-width:900px;
    margin:auto;
}

.blog-intro{
    font-size:18px;
    color:#3e0960;
    font-weight:500;
    line-height:1.6;
    margin-bottom:40px;
}

.blog-content h2{
    color:#3e0960;
    font-size:30px;
    margin:70px 0 25px;
    line-height:1.3;
}

.blog-content h3{
    color:#3e0960;
    font-size:20px;
    margin-bottom:20px;
}

.blog-content p{
    color:#111827;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.blog-content ul{
    padding-left:25px;
    margin:25px 0;
}

.blog-content li{
    color:#555;
    font-size:18px;
    line-height:2;
    margin-bottom:15px;
}


/*=========================================================
                HIGHLIGHT BOX
=========================================================*/

.blog-highlight{
    margin:50px 0;
    padding:35px;
    background:#F8F2FC;
    border-left:6px solid #ac3124;
    border-radius:18px;
}

.blog-highlight h3{
    margin-bottom:15px;
}

.blog-highlight p{
    margin:0;
}


/*=========================================================
                PROCESS FLOW
=========================================================*/

.process-flow{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin:50px 0;
}

.flow-box{
    background:#3e0960;
    color:#ffffff;
    padding:18px 24px;
    border-radius:14px;
    font-weight:600;
    text-align:center;
    min-width:180px;
}

.flow-arrow{
    font-size:28px;
    color:#ac3124;
    font-weight:700;
}


/*=========================================================
                SERVICE CARD
=========================================================*/

.service-card{
    margin-top:50px;
    padding:40px;
    background:#ffffff;
    border:1px solid #ececec;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.service-card h3{
    color:#ac3124;
}

.service-card ul{
    margin-top:25px;
}


/*=========================================================
                ACTION PLAN
=========================================================*/

.action-plan{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin:60px 0;
}

.action-card{
    background:#ffffff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    border-top:5px solid #ac3124;
}

.action-card h4{
    font-size:42px;
    color:#ac3124;
    margin-bottom:15px;
}

.action-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.action-card p{
    margin:0;
}


/*=========================================================
                REGULATORY REFERENCE
=========================================================*/

.reference-box{
    margin-top:70px;
    padding:35px;
    border-radius:20px;
    background:#F9F9F9;
    border-left:5px solid #3e0960;
}

.reference-box h3{
    margin-bottom:15px;
}

/*=========================================================
                    BLOG TABLE (blog2.html)
=========================================================*/

.blog-table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.blog-table th{
    background:#3e0960;
    color:#ffffff;
    padding:18px;
    text-align:left;
    font-size:16px;
}

.blog-table td{
    padding:18px;
    border-bottom:1px solid #ececec;
    color:#555;
    line-height:1.7;
    font-size:16px;
}

.blog-table tr:nth-child(even){
    background:#fafafa;
}

/*=============================
         FOOTER
==============================*/

.footer{
background:#111827;
color:#fff;
padding:100px 0 25px;
position:relative;
margin-top:0;
}

.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg, #d43c2d, #6a1b9a);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
}

.footer-logo{
width:220px;
margin-bottom:20px;
background:#ffffff;
padding:8px;
border-radius:10px;
}

.footer-col h3{
margin-bottom:20px;
font-size:22px;
color:#fff;
}

.footer-col p{
color:#cbd5e1;
line-height:1.8;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:8px;
}

.footer-social{
display:flex;
gap:15px;
}

.footer-social a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(35, 31, 31, 0.08);
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-social a:hover{
background:linear-gradient(135deg,#ac3124,#3e0960);
transform:translateY(-5px);
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:25px;
}

.footer-bottom p{
color:#94a3b8;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#430ed3;
}

/* ==================================================
                HYPER LINKS 
====================================================*/

.legal-page{
    padding:120px 0;
    background:#fff;
}

.legal-page .container{
    max-width:1000px;
}

.legal-page h1{
    font-size:48px;
    color:#3e0960;
    margin-bottom:30px;
}

.legal-page h2{
    font-size:24px;
    color:#3e0960;
    margin-top:35px;
    margin-bottom:15px;
}

.legal-page p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}
