*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#f4f7fc;

}

.container{
width:90%;
margin:auto;
}

/* TOP BAR */
.top-bar {
    background: #EE3035;
    color: white;
    padding: 12px 0;
    height: 38px;
}

/* layout */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* left static text */
.support {
    white-space: nowrap;
    font-size: 15px;
}

/* middle ticker area */
.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* moving text */
.ticker {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 12s linear infinite;
}

/* animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* right links */
.top-links {
    display: flex;
    gap: 30px;
}

.top-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

/* mobile hide */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}



/* LOGO BAR */

.logo-bar{
background:white;
padding:5px 0;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.logo-bar .container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-section{
display:flex;
align-items:center;
gap:20px;
}

.logo-section img{
width:700px;
height:105px;
}


.text-box h1,
.text-box p{
    overflow:hidden;
}

.slide-up{
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp{
    from{
        transform:translateY(30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}


.logo-section h1{
font-size:32px;
color:#22313f;
}

.logo-section p{
color:#22313f;
}

.header-actions{
display:flex;
align-items:center;
gap:20px;
}

.mall-link{
text-decoration:none;
color:#222;
font-size:18px;
}

.login-btn{
background:#c58a24;
color:white;
border:none;
padding:14px 30px;
border-radius:8px;
cursor:pointer;
font-size:16px;
text-decoration:none;
}

.login-btn:hover{
background:#EE3035;
}

/* SEARCH SECTION */

.search-section{
background:#EE3035;
padding:10px 0;
}

.search-wrapper{
display:flex;
gap:15px;
}

.search-wrapper input{
flex:1;
height:50px;
padding-left:20px;
border:none;
font-size:18px;
}

.search-wrapper select{
width:220px;
border:none;
padding:0 15px;
font-size:17px;
}

.search-wrapper button{
width:90px;
background:#C58A24;
border:none;
color:white;
font-size:22px;
cursor:pointer;
}

/* ===================================
   QUICK NAVIGATION
=================================== */

.quick-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    padding:15px 0 15px;
}

.quick-nav a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.quick-nav a i{
    font-size:20px;
}

.quick-nav a:hover{
    color:#ffc107;
    transform:translateY(-2px);
}

/* ==========================================
   PREMIUM HERO SECTION
========================================== */

.hero-section{

    position:relative;

    overflow:hidden;

    min-height:85vh;

    display:flex;
    align-items:center;

    padding:100px 8%;

    background:
    linear-gradient(
    135deg,
      #ff0000 0%,
    #000000 55%,
    #000000 100%

/*
    #8b0000 0%,
    #c58a24 55%,
    #EE3035 100%*/

    );

    color:white;
}

/* Floating Shapes */

.floating-circle{

    position:absolute;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(5px);

    animation:float 4s infinite ease-in-out;
}

.circle1{

    width:350px;
    height:350px;

    top:-100px;
    right:-80px;
}

.circle2{

    width:180px;
    height:180px;

    left:5%;
    bottom:10%;
}

.circle3{

    width:120px;
    height:120px;

    right:40%;
    top:30%;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-30px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* Hero Layout */

.hero-overlay{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    position:relative;
    z-index:5;
}

.hero-left{

    flex:1;
}

.hero-right{

    flex:1;

    display:flex;
    justify-content:center;
}

/* Badge */

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.2);

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

    letter-spacing:.5px;
}

.badge i{

    color:#FFD700;
}

/* Hero Heading */

.hero-left h1{

    font-size:70px;

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;
}

.hero-left p{

    font-size:20px;

    line-height:1.9;

    max-width:700px;

    opacity:.95;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:35px;
}

.btn-primary{

    background:#EE3035;

    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    font-weight:700;

    transition:.4s;
}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.25);
}

.btn-outline{

    border:2px solid white;

    color:white;

    text-decoration:none;

    padding:18px 35px;

    border-radius:12px;

    transition:.4s;
}

.btn-outline:hover{

    background:white;

    color:#EE3035;
}

/* Trust Bar */

.trust-bar{

    display:flex;

    gap:35px;

    margin-top:40px;

    flex-wrap:wrap;
}

.trust-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;
}

.trust-item i{

    color:#FFD700;
}

/* ==========================================
   GLASS STATISTICS CARD
========================================== */

.glass-card{

    width:420px;

    padding:35px;

    background:
    rgba(255,255,255,.15);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.2);

    border-radius:25px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.2);
}

.card-header{

    margin-bottom:25px;
}

.card-header h3{

    font-size:28px;

    display:flex;

    align-items:center;

    gap:12px;
}

.card-header i{

    color:#FFD700;
}

.glass-stat{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:
    1px solid rgba(255,255,255,.15);
}

.glass-stat:last-child{

    border-bottom:none;
}

.glass-stat span{

    font-size:16px;
}

.glass-stat h2{

    font-size:34px;

    color:#FFD700;
}

/* ==========================================
   ROLE PORTALS
========================================== */

.role-portals{

    padding:100px 8%;

    background:white;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title span{

    color:#EE3035;

    font-weight:700;

    letter-spacing:2px;
}

.section-title h2{

    font-size:48px;

    margin:15px 0;
}

.section-title p{

    color:#666;

    font-size:18px;
}

/* Grid */

.portal-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;
}

/* Cards */

.portal-card{

    background:white;

    border-radius:25px;

    padding:35px;

    text-align:center;

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;
}

.portal-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
    90deg,
    #EE3035,
    #c58a24
    );
}

.portal-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 45px rgba(0,0,0,.12);
}

.portal-icon{

    width:90px;
    height:90px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #EE3035,
    #c58a24
    );

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 20px;
}

.portal-icon i{

    color:white;

    font-size:36px;
}

.portal-card h3{

    margin-bottom:15px;

    font-size:24px;
}

.portal-card p{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;
}

.portal-card a{

    text-decoration:none;

    color:#EE3035;

    font-weight:700;
}

/* ==========================================
   ANNOUNCEMENT BAR
========================================== */

.announcement-bar{

    background:#ff0000;

    color:white;

    padding:15px 0;

    overflow:hidden;
}

.announcement-track{

    white-space:nowrap;

    animation:
    ticker 25s linear infinite;
}

.announcement-track span{

    font-size:17px;

    font-weight:600;
}

@keyframes ticker{

    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }

}

/* ==========================================
   PREMIUM STAT BOXES
========================================== */

.stat-box{

    transition:.4s;
}

.stat-box:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 25px 45px rgba(0,0,0,.12);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.portal-grid{

grid-template-columns:
repeat(3,1fr);

}

.hero-left h1{

font-size:55px;

}

}

@media(max-width:900px){

.hero-overlay{

flex-direction:column;
text-align:center;

}

.hero-left h1{

font-size:45px;
}

.portal-grid{

grid-template-columns:
repeat(2,1fr);

}

.hero-buttons{

justify-content:center;
}

.trust-bar{

justify-content:center;
}

}

@media(max-width:600px){

.portal-grid{

grid-template-columns:1fr;

}

.hero-left h1{

font-size:36px;
}

.hero-buttons{

flex-direction:column;
}

.glass-card{

width:100%;
}

}

/* STATS */

.statistics{
padding:80px 8%;
background:#f5f7fa;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-box i{
font-size:45px;
color:#EE3035;
margin-bottom:15px;
}

.stat-box h2{
font-size:40px;
}

/* SERVICES */

.services-section{
padding:100px 8%;
background:white;
}

.section-heading{
text-align:center;
margin-bottom:60px;
}

.section-heading h2{
font-size:42px;
margin-bottom:15px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
padding:40px;
background:#fff;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.service-card:hover{
transform:translateY(-10px);
}

.service-card i{
font-size:50px;
color:#EE3035;
margin-bottom:20px;
}

/* TIMELINE */

.timeline-section{
padding:100px 8%;
background:#f5f7fa;
text-align:center;
}

.timeline{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
margin-top:40px;
}

.step{
background:#EE3035;
color:white;
padding:20px 30px;
border-radius:50px;
font-weight:bold;
}

/* CTA */

.cta-section{
padding:100px 8%;
background:#C58A24;
color:white;
text-align:center;
}

.cta-section h2{
font-size:48px;
margin-bottom:20px;
}

.cta-btn{
display:inline-block;
margin-top:25px;
background:#EE3035;
color:rgb(255, 255, 255);
padding:16px 40px;
border-radius:10px;
font-weight:bold;
text-decoration:none;
}


/* FOOTER */

.footer{
width:100%;
}

/* MAIN FOOTER */

.footer-main{
background:#EE3035;
padding:60px 0;
color:white;
}

.footer-main .container{
width:90%;
margin:auto;

display:grid;
grid-template-columns:
repeat(4,1fr);

gap:50px;
}

.footer-column h3{
margin-bottom:20px;
font-size:28px;
}

.footer-column p{
line-height:1.8;
font-size:16px;
}

.footer-logo{
width:180px;
margin-bottom:15px;
}

.footer-image{
width:100%;
max-width:280px;
}

.footer-phone{
width:140px;
margin-bottom:20px;
}

.footer-report{
width:100%;
border-radius:10px;
}

/* APP STORES */

.store-buttons{
display:flex;
flex-direction:column;
gap:10px;
}

.store-buttons img{
width:180px;
cursor:pointer;
}

/* SOCIAL */

.social-icons{
margin-top:20px;
display:flex;
gap:20px;
}

.social-icons a{
color:white;
font-size:28px;
transition:.3s;
}

.social-icons a:hover{
color:#FFD700;
}

/* PARTNERS */

.partners{
background:#ececec;
padding:15px 0;
}

.partner-container{
width:90%;
margin:auto;

display:flex;
justify-content:center;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.partner-container img{
height:45px;
opacity:.8;
}

/* COPYRIGHT */

.copyright{
background:#c58a24;
color:white;
text-align:center;
padding:20px;
font-size:16px;
}

.copyright a{
color:#EE3035;
text-decoration:none;
}

/* BACK TO TOP */

#backToTop{
position:fixed;
right:30px;
bottom:30px;

width:70px;
height:70px;

border:none;
border-radius:50%;

background:#EE3035;
color:white;

font-size:28px;
cursor:pointer;

box-shadow:0 5px 20px rgba(0,0,0,.3);

display:none;

z-index:999;
}

#backToTop:hover{
background:#00784e;
}


/* Scroll Animation */

.fade-up{

opacity:0;

transform:
translateY(40px);

transition:
all .8s ease;
}

.fade-up.show{

opacity:1;

transform:
translateY(0);
}

/* Sticky Header */

.sticky{

position:fixed;

top:0;
left:0;

width:100%;

z-index:9999;

animation:
slideDown .4s ease;

box-shadow:
0 8px 25px rgba(0,0,0,.15);
}

@keyframes slideDown{

from{

transform:
translateY(-100%);
}

to{

transform:
translateY(0);
}

}

/* Hero Entrance */

body.loaded .hero-left{

animation:
slideLeft 1s ease;
}

body.loaded .hero-right{

animation:
slideRight 1s ease;
}

@keyframes slideLeft{

from{
opacity:0;
transform:
translateX(-80px);
}

to{
opacity:1;
transform:
translateX(0);
}
}

@keyframes slideRight{

from{
opacity:0;
transform:
translateX(80px);
}

to{
opacity:1;
transform:
translateX(0);
}
}