/* =================================
   GLOBAL SETTINGS
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{

    font-family:'Poppins', sans-serif;

    color:#333;

    overflow-x:hidden;

}


a{

    text-decoration:none;

}


p{

    line-height:1.7;

}



/* =================================
   COLOR VARIABLES
================================= */

:root{

    --primary:#0D6EFD;

    --orange:#ff7b00;

    --green:#16a34a;

    --light:#f8f9fa;

    --dark:#111827;

}





/* =================================
   TOP BAR
================================= */


.top-bar{

    font-size:14px;

}


.top-bar a{

    transition:.3s;

}


.top-bar a:hover{

    color:#ff7b00 !important;

}





/* =================================
   NAVBAR
================================= */

/* Navbar Logo */
.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 55px;      /* Logo बड़ा होगा */
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all .3s ease;
}

/* Desktop */
@media (min-width: 992px) {
    .navbar-logo {
        height: 60px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-logo {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-logo {
        height: 45px;
    }
}
/* =================================
   PROFESSIONAL NAVBAR
================================= */


.navbar{

    padding:12px 0;

    transition:.3s;

}



.navbar-brand{

    font-size:23px;

    font-weight:700;

    letter-spacing:.3px;

}



.navbar-brand i{

    margin-right:8px;

    color:var(--primary);

}



.nav-link{

    font-size:15px;

    font-weight:600;

    margin:0 8px;

    color:#333 !important;

    position:relative;

}



.nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--primary);

    left:0;

    bottom:0;

    transition:.3s;

}



.nav-link:hover::after{

    width:100%;

}



.nav-link:hover{

    color:var(--primary) !important;

}




/* Dropdown */


.dropdown-menu{

     max-height: 70vh;

    overflow-y: auto;
    
    overscroll-behavior: contain;

    border:none;

    border-radius:12px;

    padding:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}



.dropdown-item{

    padding:10px 18px;

    border-radius:8px;

    font-weight:500;

}



.dropdown-item:hover{

    background:var(--primary);

    color:white;

}





/* Navbar Buttons */


.navbar .btn{

    padding:9px 22px;

    font-weight:600;

}



.navbar .btn-outline-primary:hover{

    color:white;

}





/* Mobile Navbar */


@media(max-width:991px){


.navbar-nav{

    padding-top:15px;

}


.nav-link{

    padding:10px 5px;

}


.navbar .btn{

    width:100%;

    margin-top:8px;

}


}



/* =================================
   HERO SECTION
================================= */


.hero-section{

    padding:90px 0;

    background:

    linear-gradient(

    120deg,

    #eef5ff,

    #ffffff

    );

}



.hero-section h1{

    font-weight:800;

    line-height:1.2;

}


.hero-section p{

    color:#666;

}



.hero-section img{

    animation:float 4s infinite ease-in-out;

}



@keyframes float{

    0%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-15px);

    }


    100%{

        transform:translateY(0);

    }

}






/* =================================
   BUTTONS
================================= */


.btn{

    border-radius:30px;

    padding:10px 25px;

    font-weight:500;

}



.btn-primary{

    background:var(--primary);

    border:none;

}


.btn-primary:hover{

    background:#084298;

}







/* =================================
   SERVICE CARDS
================================= */


.service-card{


    background:white;

    transition:.4s;

    height:100%;


}



.service-card:hover{


    transform:translateY(-10px);


    box-shadow:0 15px 35px rgba(0,0,0,.15)!important;


}




.service-icon{


    font-size:40px;

    color:var(--primary);

}



.service-card h5{

    font-weight:600;

}


.service-card p{

    font-size:14px;

    color:#666;

}





/* =================================
   WHY CHOOSE
================================= */


.choose-card{


    background:white;

    transition:.4s;

}


.choose-card i{


    font-size:40px;

    color:var(--primary);


}



.choose-card:hover{


    transform:translateY(-10px);


}





/* =================================
 STATISTICS
================================= */


.statistics-section{


    background:

    linear-gradient(

    90deg,

    #0D6EFD,

    #0056d6

    );


}



.statistics-section h2{


    font-size:45px;

}





/* =================================
 UPDATE CARDS
================================= */


.card{


    border-radius:15px;

}



.card:hover{


    transform:translateY(-5px);

    transition:.3s;


}






/* =================================
 TESTIMONIAL
================================= */


.testimonial{


    background:white;

}



.testimonial:hover{


    box-shadow:0 10px 30px rgba(0,0,0,.1);

}







/* =================================
 CTA SECTION
================================= */


.cta-section{


    background:

    linear-gradient(

    90deg,

    #0D6EFD,

    #16a34a

    );


}







/* =================================
 FOOTER
================================= */


.footer-section{


    background:#111827;

    color:white;

    padding:60px 0 20px;

}



.footer-title{


    color:white;

    margin-bottom:20px;

    font-weight:600;


}



.footer-section p{

    color:#cbd5e1;

}



.footer-links{


    list-style:none;

    padding:0;

}



.footer-links li{


    margin-bottom:10px;


}



.footer-links a{


    color:#cbd5e1;

}



.footer-links a:hover{


    color:white;


}



.footer-contact{


    list-style:none;

    padding:0;

}



.footer-contact li{


    margin-bottom:15px;

    color:#cbd5e1;


}



.footer-contact i{


    color:#ff7b00;

    margin-right:10px;

}




.social-links a{


    display:inline-flex;

    width:40px;

    height:40px;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#0D6EFD;

    color:white;

    margin-right:8px;


}



.social-links a:hover{


    background:#ff7b00;


}





.copyright{


    color:#cbd5e1;

}





/* =================================
   RESPONSIVE BASIC
================================= */


@media(max-width:768px){


.hero-section{

    padding:50px 0;

}


.hero-section h1{

    font-size:35px;

}


.statistics-section h2{

    font-size:35px;

}


.navbar-brand{

    font-size:18px;

}


}


/* ===============================
   3D HERO DESIGN
================================*/


.hero-section{

position:relative;

overflow:hidden;

}




.hero-3d-wrapper{

position:relative;

height:500px;

display:flex;

align-items:center;

justify-content:center;

}



.hero-image-box{


width:380px;

height:380px;

background:white;

border-radius:40px;

padding:30px;

box-shadow:

0 30px 60px rgba(0,0,0,.15);


animation:

floating 5s infinite ease-in-out;


}



.hero-image-box img{


width:100%;

height:100%;

object-fit:contain;

}




.floating-card{


position:absolute;

background:white;

padding:20px;

border-radius:20px;

box-shadow:

0 20px 40px rgba(0,0,0,.15);

z-index:5;

animation:floating 4s infinite ease-in-out;


}



.floating-card i{


font-size:35px;

color:#0D6EFD;


}



.floating-card h5{

margin-top:10px;

font-weight:700;

}



.card-1{


left:0;

top:80px;


}



.card-2{


right:0;

bottom:80px;


}



@keyframes floating{


0%{

transform:translateY(0px);

}


50%{

transform:translateY(-20px);

}


100%{

transform:translateY(0px);

}


}




/* 3D Service Cards */


.service-card{


transform-style:preserve-3d;

transition:.4s;


}



.service-card:hover{


transform:

translateY(-15px)

rotateX(5deg)

rotateY(-5deg);


box-shadow:

0 25px 50px rgba(0,0,0,.18)!important;


}




/* Hero Background */


.hero-section:before{


content:"";

position:absolute;

width:400px;

height:400px;

background:#0d6efd;

opacity:.08;

border-radius:50%;

top:-100px;

right:-100px;


}





@media(max-width:768px){


.hero-3d-wrapper{

height:350px;

}


.hero-image-box{

width:260px;

height:260px;

}



.floating-card{


display:none;


}


}



/* =====================================
   MOBILE FLOATING APPLY BUTTON
===================================== */


.mobile-apply-btn{

display:none;

}



@media(max-width:768px){


.mobile-apply-btn{

display:block;

position:fixed;

bottom:15px;

left:15px;

right:15px;

z-index:9999;


}



.mobile-apply-btn a{


display:flex;

align-items:center;

justify-content:center;


gap:8px;


background:

linear-gradient(

90deg,

#0D6EFD,

#16a34a

);


color:white;

padding:14px;


border-radius:50px;


font-weight:700;


box-shadow:

0 10px 30px rgba(0,0,0,.25);


}



.mobile-apply-btn a:hover{


color:white;


}




/* Navbar Glass Effect */


.navbar{


backdrop-filter:blur(10px);


}



/* Mobile Menu Animation */


.navbar-collapse{


transition:.4s ease;


}



.navbar-toggler{


padding:8px 12px;

border-radius:10px;


}



.navbar-toggler:focus{


box-shadow:none;


}


}

/* =====================================
   MODERN MOBILE HAMBURGER
===================================== */


.modern-toggler{

    width:45px;

    height:42px;

    border-radius:12px;

    border:none;

    background:#f1f5ff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:5px;

}



.modern-toggler span{


display:block;

width:22px;

height:2.5px;

background:#0D6EFD;

border-radius:10px;

transition:.35s;


}




.modern-toggler:hover{


background:#0D6EFD;


}



.modern-toggler:hover span{


background:white;


}




/* Mobile Menu Box */


@media(max-width:991px){


.navbar-collapse{


background:white;

margin-top:15px;

padding:20px;

border-radius:20px;


box-shadow:

0 15px 40px rgba(0,0,0,.12);


animation:

slideMenu .35s ease;


}



.navbar-nav .nav-link{


padding:12px 15px;

border-radius:10px;


}



.navbar-nav .nav-link:hover{


background:#eef5ff;


}




}



@keyframes slideMenu{


from{


opacity:0;

transform:translateY(-15px);


}


to{


opacity:1;

transform:translateY(0);


}


}

/*=====================================
STEP 50.3
BREAKING NEWS
======================================*/

.breaking-news{

background:#0d6efd;

padding:10px 0;

}

.breaking-title{

background:#ffc107;

padding:10px;

font-weight:700;

text-align:center;

border-radius:8px;

}

.breaking-news marquee{

color:#fff;

font-weight:600;

}

.breaking-news a{

color:#fff;

margin-right:40px;

}

.quick-box{

display:block;

padding:18px;

text-align:center;

border-radius:10px;

font-size:18px;

font-weight:700;

color:#fff;

transition:.3s;

}

.quick-box:hover{

transform:translateY(-5px);

color:#fff;

}

.red{

background:#d32f2f;

}

.blue{

background:#1976d2;

}

.green{

background:#388e3c;

}

.orange{

background:#f57c00;

}

/*==========================================
STEP 50.4 HERO V2
==========================================*/

.hero-v2{

padding:90px 0;

background:linear-gradient(135deg,#eef5ff,#ffffff);

}

.hero-tag{

display:inline-block;

background:#0d6efd;

color:#fff;

padding:10px 20px;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.hero-v2 h1{

font-size:58px;

font-weight:800;

line-height:1.2;

margin-bottom:20px;

}

.hero-v2 p{

font-size:18px;

color:#666;

line-height:1.8;

}

.hero-search{

margin-top:30px;

}

.hero-dashboard{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.dashboard-card{

background:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

}

.dashboard-card:hover{

transform:translateY(-10px);

}

.dashboard-card h3{

font-size:42px;

font-weight:800;

color:#0d6efd;

}

.dashboard-card p{

margin-top:10px;

font-weight:600;

}

.hero-buttons .btn{

margin:8px;

}


/*=========================================
STEP 50.5
PORTAL GRID
=========================================*/

.portal-section{

background:#f8fbff;

}

.section-badge{

display:inline-block;

background:#0d6efd;

color:#fff;

padding:8px 20px;

border-radius:30px;

font-weight:600;

margin-bottom:15px;

}

.portal-box{

display:block;

padding:35px 20px;

border-radius:18px;

color:#fff;

text-align:center;

text-decoration:none;

transition:.35s;

height:100%;

box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.portal-box:hover{

transform:translateY(-10px);

color:#fff;

box-shadow:0 20px 40px rgba(0,0,0,.18);

}

.portal-box i{

font-size:50px;

margin-bottom:20px;

}

.portal-box h4{

font-size:24px;

font-weight:700;

margin-bottom:10px;

}

.portal-box p{

margin:0;

font-size:15px;

opacity:.95;

}

/* Colors */

.portal-red{

background:linear-gradient(135deg,#ff4b4b,#c62828);

}

.portal-blue{

background:linear-gradient(135deg,#2196f3,#1565c0);

}

.portal-green{

background:linear-gradient(135deg,#4caf50,#2e7d32);

}

.portal-orange{

background:linear-gradient(135deg,#ff9800,#ef6c00);

}

.portal-purple{

background:linear-gradient(135deg,#7e57c2,#512da8);

}

.portal-pink{

background:linear-gradient(135deg,#ec407a,#ad1457);

}

.portal-teal{

background:linear-gradient(135deg,#009688,#00695c);

}

.portal-dark{

background:linear-gradient(135deg,#37474f,#111827);

}

/*====================================
STEP 50.6
BIHAR SERVICES
====================================*/

.bihar-services{

background:#ffffff;

}

.gov-card{

background:#fff;

border-radius:18px;

padding:30px 20px;

text-align:center;

height:100%;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.08);

border:1px solid #eef2f7;

}

.gov-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(13,110,253,.15);

}

.gov-card i{

font-size:48px;

color:#0d6efd;

margin-bottom:18px;

}

.gov-card h5{

font-weight:700;

margin-bottom:8px;

}

.gov-card p{

font-size:14px;

color:#666;

margin-bottom:18px;

min-height:40px;

}

.gov-card .btn{

border-radius:30px;

padding:8px 22px;

font-weight:600;

}

/*==================================
STEP 50.7
LATEST GOVERNMENT UPDATE
==================================*/

.latest-government{

background:#f8fafc;

}

.update-box{

background:#fff;

border-radius:15px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.update-box h4{

padding:14px;

font-size:20px;

margin:0;

font-weight:700;

text-align:center;

}

.update-box ul{

margin:0;

padding:15px;

list-style:none;

}

.update-box li{

padding:8px 0;

border-bottom:1px dashed #ddd;

}

.update-box li:last-child{

border:none;

}

.update-box a{

color:#333;

font-weight:500;

transition:.3s;

}

.update-box a:hover{

color:#0d6efd;

padding-left:6px;

}

.notice-card{

background:white;

padding:25px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

height:100%;

}

.notice-card h4{

font-weight:700;

margin-bottom:15px;

color:#0d6efd;

}

.notice-card ul{

list-style:none;

padding:0;

margin:0;

}

.notice-card li{

padding:8px 0;

border-bottom:1px solid #eee;

}

.notice-card li:last-child{

border:none;

}

/* ===========================
BREAKING NEWS
=========================== */

.breaking-news{

background:#d60000;

color:#fff;

padding:10px 0;

font-weight:600;

}

.breaking-title{

background:#111;

text-align:center;

padding:10px;

font-size:18px;

font-weight:700;

}

.breaking-news marquee{

padding-top:10px;

}

.breaking-news a{

color:#fff;

text-decoration:none;

margin-right:60px;

}

.breaking-news a:hover{

color:#ffd700;

}

.sarkari-box .card{

border-radius:12px;

transition:.3s;

}

.sarkari-box .card:hover{

transform:translateY(-6px);

box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.sarkari-box ul{

padding-left:18px;

}

.sarkari-box li{

margin-bottom:10px;

}

.sarkari-box li a{

text-decoration:none;

font-weight:500;

color:#0d6efd;

}

.sarkari-box li a:hover{

color:#dc3545;

text-decoration:underline;

}

/* =====================================
IMPORTANT GRID
===================================== */

.important-card{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

height:170px;

border-radius:18px;

color:#fff;

font-weight:700;

font-size:18px;

text-decoration:none;

transition:.35s;

box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.important-card i{

font-size:42px;

margin-bottom:15px;

}

.important-card:hover{

transform:translateY(-10px);

color:#fff;

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.important-card span{

text-align:center;

padding:0 10px;

}

@media(max-width:768px){

.important-card{

height:130px;

font-size:15px;

}

.important-card i{

font-size:32px;

}

}


.search-card{
border:0;
border-radius:18px;
transition:.35s;
overflow:hidden;
}

.search-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.search-card .card-body{
padding:28px;
}

.search-card h4{
font-size:22px;
font-weight:700;
margin-bottom:15px;
}

.search-card p{
color:#666;
}

.search-card .badge{
font-size:13px;
padding:8px 16px;
border-radius:30px;
}


.stat-card{

background:#fff;
border-radius:20px;
padding:35px 20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;

}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.stat-card h2{

font-size:42px;

font-weight:800;

color:#0d6efd;

margin-bottom:10px;

}

.stat-card p{

font-size:17px;

font-weight:600;

color:#666;

margin:0;

}




