html{
	font-family:sans-serif;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
}
*,*:after,*:before{
	box-sizing:border-box;
}
body{
	margin:0;
	padding:0;
	font-family:"Open Sans",Helvetica,Arial,sans-serif;
	background:#fff;
	line-height:1.42;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary{
	display:block;
}
/*Start of toparea*/
.toparea{
	background:#1da0e0;
	padding-top:5px;
	padding-bottom:5px;
	min-height:45px;
}
.social{
	padding:0;
	margin:0;
}
.social li:first-child{
	margin-left:0;
}
.social li{
	margin:0 1px;
	list-style:none;
	display:inline-block;
}
.social li a{
	width:32px;
	height:32px;
	display:block;
	border:1px solid #fff;
	text-align:center;
	line-height:30px;
	color:#fff;
	border-radius:4px;
}
a{
	-webkit-transition:all 1s ease 0s;
	-moz-transition:all 1s ease 0s;
	-o-transition:all 1s ease 0s;
	transition:all 1s ease 0s;
}
.top-list{
	padding:0;
	margin:0;
	list-style:none; 
	text-align:center;
}
.top-list li{
	position:relative;
	color:#fff;
	display:inline-block;
	padding:5px 0px 5px 15px;
	font-size:15px;
}
.top-list li a{
	color:#fff;
	text-decoration:none;
}
.top-list li i {
	margin:0px 8px 0px 0px;
}
.top-right{
	margin:0;
	padding:0;
	float:right;
}
.top-right li{
	list-style:none;	
	margin-left:0.5em;
	display:inline-block;
}
.top-right li a{
	color:#fff;
	padding:0em 1em;
	line-height:30px;
	text-decoration:none;
	border:1px solid #fff;
	display:inline-block;
	border-radius:4px;
}
@media (max-width:768px){
.social,.top-list{
	text-align:center;
}
.top-right{
	text-align:center;
	float:none;
}
    
}
/*End of toparea*/
/*Start of header*/

/* HEADER */
header {
    background: #0d6efd;
    position: relative;
    width: 100%;
    z-index: 999;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
}

/* LOGO */
.navbar-brand img {
    height: 50px;
}

/* MENU */
.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-nav li {
    position: relative;
}

/* LINKS */
.navbar-nav li a {
    display: block;
    padding: 2px 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* HOVER */
.navbar-nav li a:hover {
    background: rgba(255,255,255,0.15);
}

/* ACTIVE MENU */
.navbar-nav li.active > a {
    background: #fff;
    color: #0d6efd;
    border-radius: 4px;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* DROPDOWN ITEMS */
.dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
}

.dropdown-menu li a:hover {
    background: #f1f1f1;
}

/* SHOW DROPDOWN ON CLICK (via class) */
.dropdown.open .dropdown-menu {
    display: block;
}

/* CARET */
.caret {
    margin-left: 5px;
}

/* TOGGLE BUTTON */
.navbar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px 0;
    background: #fff;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Modified Styles */

/* HAMBURGER ANIMATION */
/* .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
} */

.navbar-toggle .icon-bar {
    transition: 0.3s;
}

/* TRANSFORM INTO X */
.navbar-toggle.active .icon-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .icon-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-nav li.active > a {
    background: #fff;
    color: #0d6efd;
    border-radius: 4px;
}

/* HOVER IMPROVEMENT */
.navbar-nav li a:hover {
    background: rgba(255,255,255,0.2);
}

/* STICKY HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* OPTIONAL SHADOW ON SCROLL */
header.scrolled {
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}








/* RESPONSIVE */
@media (max-width: 768px) {

    /* NAVBAR LINE */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: center; /* center container */
        position: relative;
        height: 70px;
    }

    /* HEADER WRAPPER */
    .navbar-header {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center; /* center logo */
        position: relative;
    }

    /* ✅ LOGO CENTER (NO absolute) */
    .navbar-brand {
        margin: 0 auto; /* centers logo */
        display: block;
    }

    .navbar-brand img {
        height: 55px;
    }

    /* ✅ TOGGLE LEFT */
    .navbar-toggle {
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }
     .navbar-toggle {
        display: flex; /* show ONLY on mobile */
        flex-direction: column;
        justify-content: center;
    }

    /* ICON BARS */
    .navbar-toggle .icon-bar {
        display: block;
        width: 28px;
        height: 3px;
        margin: 5px 0;
        background: #fff;
    }

    /* ✅ MENU BELOW */
    /* .navbar-collapse {
        width: 100%;
        display: none;
        position: absolute;
        top: 70px; 
        left: 0;
        background: #0d6efd;
    }

    .navbar-collapse.active {
        display: block;
    } */

    /* SMOOTH SLIDE */
    .navbar-collapse {
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: #0d6efd;

        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    /* OPEN STATE */
    .navbar-collapse.active {
        max-height: 500px; /* enough for menu */
    }

    /* ✅ FORCE VERTICAL MENU */
    .navbar-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .navbar-nav li {
        width: 100%;
    }

    .navbar-nav li a {
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    /* DROPDOWN FIX */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
    }
}


/*End of header*/

/* Start of slider */
#custom-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

/* Container */
#custom-slider .carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

/* Slide */
#custom-slider .item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

/* Image */
#custom-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Caption */
.caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.caption h2 {
    font-size: 40px;
}

.caption p {
    font-size: 18px;
}

/* Controls */
.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.left { left: 10px; }
.right { right: 10px; }

/* Dots */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;
    margin: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: orange;
}

@media (max-width: 768px) {
   #custom-slider {
    margin-top:-20px;
} 
}
/* End of slider */



/*Start of the main body*/
/* Spacing */
.spacet50 {
    padding-top: 50px;
}
.spaceb50 {
    padding-bottom: 50px;
}

/* Main content area */
.row > div[class*="col-"] {
    margin-bottom: 20px;
}

/* Sidebar box */
.sidebar {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
}

/* Section title */
.catetab {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
}

/* News container */
.newscontent {
    position: relative;
}

/* Ticker container */
.tickercontainer {
    height: 300px;
    overflow: hidden;
    position: relative;
}

/* Mask (keep structure) */
.mask {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* News list */
.newsticker {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: tickerMove 15s linear infinite;
}

/* Each news item */
.newsticker li {
    padding: 12px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    transition: 0.3s;
}

/* Hover effect */
.newsticker li:hover {
    background: #f1f1f1;
}

/* Links */
.newsticker li a {
    text-decoration: none;
    color: #333;
    display: block;
}

/* Date box */
.newsticker .date {
    font-size: 14px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 5px;
}

.newsticker .date span {
    display: block;
    font-size: 12px;
    color: #999;
}

/* Animation */
@keyframes tickerMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Pause on hover */
.tickercontainer:hover .newsticker {
    animation-play-state: paused;
}

/* Complain button */
.complain {
    margin-top: 20px;
}

.complain a {
    display: block;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.complain a:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
    .tickercontainer {
        height: 200px;
    }

    .catetab {
        font-size: 16px;
    }
}

/*End of the main body*/
/*Start of the footer*/
footer{
	background:#036494;
	clear:both;
	padding-top:20px;
}
.fo-title{
	color:#fff;
	position:relative;
	padding-bottom:15px;
	margin-bottom:15px;
}
.fo-title:after{
	position:absolute;
	content:"";
	background:#fff;
	width:40px;
	height:2px;
	bottom:0;
	left:0;
}
.f1-list{
	padding:0;
	margin:0;
	list-style:none;
}
.f1-list li{
	display:block;
	padding:2px 15px;
	position:relative;
}
.f1-list li a{
	text-decoration:none;
	color:#fff;
}
.f1-list li a:after{
	content:"\f105";
	position:absolute;
	top:2px;
	left:0px;
	font-family:'FontAwesome';
}
.co-list{
	padding:0;
	margin:0;
	list-style:none;
}
.co-list li{
	display:block;
	padding:5px 30px;
	position:relative;
	color:#fff;
}
.co-list li i{
	content:"";
	position:absolute;
	left:0;
	top:8px;
	font-family:'FontAwesome';
	color:#fff;
}
.co-list li a{
	text-decoration:none;
	color:#fff;
}

.copy-right{
	background:#1da0e1;
	margin-top:30px;
	padding:15px 0px 0px;
	color:#fff;
}
.copy-right p{
	text-align:center;
}
/*End of the footer*/