/* =========================================
   EMPOWERFMG Main Stylesheet
   Owned by Infowin Digicare Pvt Ltd
========================================= */

:root{
    --navy: #061a40;
    --gold: #d4af37;
    --white: #ffffff;
    --light: #f5f7fb;
    --dark: #111111;
    --gray: #6c757d;
    --soft: #eef2f7;
}

/* =========================================
   Global
========================================= */

body{
    margin:0;
    padding:0;
    font-family:'Inter', sans-serif;
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Montserrat', sans-serif;
    font-weight:700;
}

a{
    text-decoration:none;
    transition:0.3s;
}

img{
    max-width:100%;
}

/* =========================================
   Navbar
========================================= */

.custom-navbar{
    background:var(--navy);
    padding:15px 0;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.navbar-brand{
    color:var(--white) !important;
    font-size:30px;
    font-weight:800;
    letter-spacing:1px;
}

.navbar-brand span{
    color:var(--gold);
}

.navbar-nav .nav-link{
    color:var(--white) !important;
    margin-left:20px;
    font-weight:500;
    font-size:15px;
}

.navbar-nav .nav-link:hover{
    color:var(--gold) !important;
}

/* =========================================
   Hero Section
========================================= */

.hero-section{
    background:
        linear-gradient(rgba(6,26,64,0.92), rgba(6,26,64,0.92)),
        url('/assets/images/hero-bg.jpg');

    background-size:cover;
    background-position:center;
    color:var(--white);
    padding:120px 0;
}

.hero-title{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
}

.hero-title span{
    color:var(--gold);
}

.hero-subtitle{
    color:var(--gold);
    margin-top:15px;
    font-weight:600;
}

.hero-text{
    margin-top:25px;
    font-size:18px;
    line-height:1.9;
    max-width:700px;
    color:#e5e5e5;
}

/* =========================================
   Buttons
========================================= */

.btn-gold{
    background:var(--gold);
    color:var(--navy);
    padding:13px 30px;
    border-radius:50px;
    border:none;
    font-weight:700;
    display:inline-block;
}

.btn-gold:hover{
    background:#ebc850;
    color:var(--navy);
    transform:translateY(-2px);
}

.btn-outline-custom{
    border:2px solid var(--white);
    color:var(--white);
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;
    display:inline-block;
}

.btn-outline-custom:hover{
    background:var(--white);
    color:var(--navy);
}

/* =========================================
   Sections
========================================= */

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:var(--navy);
}

.section-title p{
    color:var(--gray);
    margin-top:10px;
}

/* =========================================
   Issue Card
========================================= */

.issue-card{
    background:var(--white);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.issue-card:hover{
    transform:translateY(-6px);
}

.issue-content{
    padding:30px;
}

.issue-content h3{
    color:var(--navy);
}

.issue-content p{
    color:var(--gray);
    line-height:1.8;
}

/* =========================================
   Category Cards
========================================= */

.category-card{
    background:var(--white);
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    transition:0.3s;
    height:100%;
}

.category-card:hover{
    background:var(--navy);
    transform:translateY(-5px);
}

.category-card:hover h5{
    color:var(--gold);
}

.category-card h5{
    color:var(--navy);
    margin-top:10px;
}

/* =========================================
   Advertisement Box
========================================= */

.advertise-box{
    background:var(--navy);
    color:var(--white);
    border-radius:24px;
    padding:60px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,0.12);
}

.advertise-box h2{
    color:var(--gold);
}

.advertise-box p{
    color:#dddddd;
    max-width:800px;
    margin:auto;
    line-height:1.8;
}

/* =========================================
   Footer
========================================= */

.main-footer{
    background:var(--navy);
    color:var(--white);
    padding:70px 0 20px;
}

.main-footer h5{
    color:var(--gold);
    margin-bottom:20px;
}

.main-footer p{
    color:#d7d7d7;
    line-height:1.8;
}

.main-footer a{
    color:#d7d7d7;
    display:block;
    margin-bottom:10px;
}

.main-footer a:hover{
    color:var(--gold);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
    color:#cccccc;
    font-size:14px;
}

/* =========================================
   Responsive
========================================= */

@media(max-width:992px){

    .hero-title{
        font-size:48px;
    }

}

@media(max-width:768px){

    .hero-section{
        padding:90px 0;
        text-align:center;
    }

    .hero-title{
        font-size:40px;
    }

    .hero-text{
        font-size:16px;
    }

    .navbar-nav{
        margin-top:15px;
    }

    .navbar-nav .nav-link{
        margin-left:0;
        margin-bottom:10px;
    }

    .section-title h2{
        font-size:32px;
    }

    .advertise-box{
        padding:40px 25px;
    }

}