:root{
    --blue:#082f63;
    --gold:#c98723;
    --light:#fff8ef;
}
body{
    font-family: Arial, sans-serif;
    color:#10233f;
    background:#fff;
}

/* Government Navbar Start */

.govt-navbar{
    background:#ffffff;
    padding:10px 0;
    border-top:5px solid #082f63;
    border-bottom:1px solid #e5e5e5;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    z-index:999;
}

.nav-logo{
    width:250px;
    height:55px;
    object-fit:contain;
}

.govt-navbar .nav-link{
    color:#1b1b1b !important;
    font-size:15px;
    font-weight:700;
    padding:14px 16px !important;
    position:relative;
    letter-spacing:.2px;
}

.govt-navbar .nav-link::before{
    content:"";
    position:absolute;
    left:16px;
    right:16px;
    bottom:6px;
    height:3px;
    background:#c98723;
    transform:scaleX(0);
    transform-origin:left;
    transition:.3s ease;
    border-radius:10px;
}

.govt-navbar .nav-link:hover,
.govt-navbar .nav-link.active{
    color:#082f63 !important;
}

.govt-navbar .nav-link:hover::before,
.govt-navbar .nav-link.active::before{
    transform:scaleX(1);
}

.govt-dropdown{
    border:0;
    border-radius:0 0 12px 12px;
    padding:8px;
    min-width:230px;
    box-shadow:0 12px 35px rgba(0,0,0,.15);
    border-top:4px solid #c98723;
    animation:dropdownFade .25s ease;
}

.govt-dropdown .dropdown-item{
    font-size:14px;
    font-weight:600;
    padding:11px 14px;
    border-radius:8px;
    color:#222;
    transition:.3s;
}

.govt-dropdown .dropdown-item:hover{
    background:#082f63;
    color:#fff;
    padding-left:20px;
}

.govt-btn{
    display:inline-block;
    background:#082f63;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-weight:700;
    text-decoration:none;
    border:2px solid #082f63;
    transition:.3s;
}

.govt-btn:hover{
    background:#c98723;
    border-color:#c98723;
    color:#fff;
}

@keyframes dropdownFade{
    from{
        opacity:0;
        transform:translateY(12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(min-width:992px){
    .dropdown:hover .dropdown-menu{
        display:block;
    }
}

@media(max-width:991px){
    .govt-navbar .navbar-collapse{
        background:#fff;
        margin-top:12px;
        padding:15px;
        border-radius:12px;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .govt-btn{
        margin-top:10px;
        text-align:center;
        width:100%;
    }
}

@media(max-width:576px){
    .nav-logo{
        width:210px;
        height:48px;
    }
}

/* Government Navbar End */

/* Hero slider */
.hero-slide{
    height:450px;
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    line-height:1.2;
}

.hero-content h1 span{
    color:#d49b33;
}

.hero-content p{
    max-width:700px;
    margin:20px auto;
    font-size:18px;
}

.search-box{
    max-width:750px;
    margin:30px auto;
    display:flex;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
}

.search-box input{
    flex:1;
    border:none;
    padding:18px;
    outline:none;
}

.search-box button{
    background:#082f63;
    color:#fff;
    border:none;
    padding:0 35px;
}

.hero-btn{
    border:none;
    padding:14px 30px;
    border-radius:8px;
    color:#fff;
    font-weight:600;
    margin:5px;
}

.btn-blue{
    background:#082f63;
}

.btn-gold{
    background:#d49b33;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}

@media(max-width:768px){

    .hero-slide{
        height:500px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .search-box{
        flex-direction:column;
    }

    .search-box button{
        padding:15px;
    }
}
 /* hero slider end */
/* party start */
.section-title{
    font-weight:800;
    color:var(--blue);
    margin-bottom:20px;
}
.leader-card{
    background:white;
    border-radius:10px;
    box-shadow:0 4px 16px rgba(0,0,0,.08);
    padding:15px;
    display:flex;
    align-items:center;
    gap:15px;
    height:130px;
    border:0.1px solid #1b1b1b;
    
}

.leader-card img{
    width:85px;
    height:100px;
    object-fit:cover;
    border-radius:8px;
}
.leader-card h6{
    font-weight:800;
    margin-bottom:5px;
}
#leaderSlider{
    position: relative;
}

.leader-slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #082f63;
    color: #fff;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0,0,0,.18);
}

.leader-slider-btn:hover{
    background: #c98723;
}

.leader-slider-prev{
    left: 0;
}

.leader-slider-next{
    right: 0;
}

@media(max-width: 576px){
    #leaderSlider{
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .leader-slider-btn{
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
.party{
    font-size:13px;
    font-weight:700;
}
 /* party end  */
  /* directory start */
.info-box{
    background:#fff;
    border-radius:14px;
    padding:24px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.section-title{
    color:#082f63;
    font-weight:800;
}
.directory-card{
    display:block;
    text-align:center;
    text-decoration:none;
    background:#fff;
    border:1px solid #e9edf5;
    border-radius:12px;
    padding:18px 12px;
    height:100%;
    transition:.3s;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.directory-card:hover{
    transform:translateY(-4px);
    border-color:#082f63;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.directory-card i{
    font-size:38px;
    margin-bottom:12px;
}

.directory-card h6{
    font-size:15px;
    font-weight:700;
    color:#082f63;
    margin-bottom:8px;
    line-height:1.4;
}

.directory-card small{
    display:block;
    color:#666;
    font-size:13px;
    line-height:1.5;
    min-height:38px;
}

.arrow-btn{
    margin-top:12px;
    color:#082f63;
    font-size:5px;
    transition:.3s;
}

.directory-card:hover .arrow-btn{
    color:#c98723;
    transform:translateX(5px);
}

@media(max-width:575px){
    .info-box{
        padding:18px;
    }

    .directory-card{
        padding:22px 10px;
    }

    .directory-card i{
        font-size:34px;
    }
}
  /* directory end */
  /* footer start */
.stats{
    background:var(--blue);
    color:white;
    padding:25px 0;
}
.stat-item{
    display:flex;
    align-items:center;
    gap:15px;
    justify-content:center;
    border-right:1px solid rgba(255,255,255,.2);
}
.stat-item i{
    font-size:34px;
    color:var(--gold);
}
.stat-item h3{
    margin:0;
    font-weight:900;
}
.stat-item p{
    margin:0;
    font-size:14px;
}



/* Responsive */
@media(max-width:991px){
    .hero h1{font-size:36px;}
    .search-box{flex-direction:column;}
    .search-box button{padding:15px;}
    .leader-card{height:auto;}
    .stat-item{
        border-right:0;
        margin:15px 0;
    }
}
@media(max-width:576px){
    .hero h1{font-size:28px;}
    .hero p{font-size:15px;}
    .logo h3{font-size:20px;}
    .logo img{width:60px;}
}
/* footer end */


/* president_tenure section start */

   .president-section{
    /* padding:70px 0; */
    background:linear-gradient(180deg,#f8fbff,#ffffff);
}
.content{
    background-image:  url('../img/slider-3.png');
     background-size:cover;
    background-position:center;
    height: 300px;
    align-items:center;
}

.section-title{
    padding-top:50px ;
    text-align:center;
    margin-bottom:40px;
    
  
    


}

.section-title span{
    display:inline-block;
    background:#082f63;
    color:#fff;
    padding:7px 20px;
    border-radius:30px;
    font-weight:700;
    font-size:14px;
    margin-bottom:12px;
}

.section-title h2{
    color:#082f63;
    font-size:38px;
    font-weight:800;
    margin-bottom:10px;
}

.section-title p{
    color:#555;
    font-size:16px;
}
.president-header{
    background:linear-gradient(135deg,#082f63,#0b4a8b);
    padding:70px 0 90px;
    text-align:center;
    color:#fff;
    position:relative;
}

.president-header::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#ff9933,#ffffff,#138808);
}

.president-header span{
    display:inline-block;
    background:#c98723;
    padding:8px 22px;
    border-radius:30px;
    font-size:15px;
    font-weight:700;
    margin-bottom:15px;
}

.president-header h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.president-header p{
    font-size:17px;
    margin:0;
    opacity:.95;
}

.president-card{
    background:#fff;
    margin-top:-45px;
    border-radius:18px;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
    overflow:hidden;
    border:1px solid #ddd;
}

.president-card-title{
    background:#fff;
    padding:22px 30px;
    border-bottom:1px solid #e5e5e5;
    border-left:6px solid #c98723;
}

.president-card-title h2{
    margin:0;
    color:#082f63;
    font-size:26px;
    font-weight:800;
}

.president-table-box{
    width:100%;
}

.president-table{
    width:100%;
    margin:0;
    border-collapse:collapse;
}

.president-table thead{
    background:#082f63;
    color:#fff;
}

.president-table thead th{
    padding:18px 20px;
    font-size:16px;
    font-weight:700;
    border:1px solid rgba(255,255,255,.15);
    white-space:nowrap;
}

.president-table tbody td{
    padding:18px 20px;
    font-size:15.5px;
    color:#222;
    border:1px solid #e6e6e6;
    vertical-align:middle;
}

.president-table tbody tr:nth-child(even){
    background:#f8fbff;
}

.president-table tbody tr:hover{
    background:#fff4df;
    transition:.3s ease;
}

.president-table tbody td:first-child{
    width:80px;
    text-align:center;
    font-weight:800;
    color:#082f63;
    background:#eef5ff;
}

.president-table tbody td:nth-child(2){
    font-weight:800;
    color:#111;
    min-width:230px;
}

.president-table tbody td:nth-child(3){
    min-width:260px;
    color:#9a610d;
    font-weight:700;
    white-space:nowrap;
}

.president-table tbody td:nth-child(4){
    line-height:1.7;
}

@media(max-width:991px){
    .president-header{
        padding:55px 15px 75px;
    }

    .president-header h1{
        font-size:32px;
    }

    .president-card-title h2{
        font-size:22px;
    }
}

@media(max-width:576px){
    .president-header h1{
        font-size:26px;
    }

    .president-header p{
        font-size:14px;
    }

    .president-table thead th,
    .president-table tbody td{
        font-size:14px;
        padding:14px;
    }
}

/* president_tenure section end*/