/* New code */
body{
     margin:0;
	 /*padding:0;*/
	 font-family:sans-serif;
	 background-color: white;  
    padding: 20px;
}
header{
     position:absolute;
	 top:0;
	 left:0;
	 padding:0 100px;
	 background:#00AEEF;
	 width:100%;
	 box-sizing:border-box;
}
header .logo{
     color:#fff;
	 height:50px;
	 line-height:50px;
	 font-size:24px;
	 float:left;
	 font-weight:bold;
}
header nav{
	float:right;
}
header nav ul{
	margin:0;
	padding:0;
	display:flex;
	}
header nav ul li{list-style:none;}
header nav ul li a{
	height:50px;
	line-height:50px;
	padding:0 20px;
	color:#fff;
	text-decoration:none;
	display:block;
}
header nav ul li a:hover, 
header nav ul li a:active{
	color:#fff;
	background:#2196f3;
}
.insert_info{
					border:1px solid white;
					border-radius:50px;
				}
.menu-toggle{
	color:#fff;
	float:right;
	line-height:50px;
	font-size:24px;
	cursor:pointer;
	display:none;
}
@media(max-width: 991px)
{
	header{
		padding:0 20px;
	}
	.menu-toggle{
		display:block;
	}
	header nav{
		/*display:none;*/
		position:absolute;
		width:100%;
		height:calc(100vh-50px);
		background:#333;
		top:50px;
		left:-100%;
		transition:0.5s;
	}
	header nav.active{
		left:0;
	}
	header nav ul{
		display:block;
		text-align:center;
	}
	header nav ul li a{
		border-bottom:1px solid rgba(0,0,0,.2);
	}
}
form.search_form input[type=text]{
	padding:10px;
	font-size:17px;
	border-radius:4px;
	border:1px solid grey;
	float:left;
	width:80%;
	background:#f1f1f1;
}
form.search_form button{
	float:left;
	width:20%;
	padding:10px;
	font-size:17px;
	border:1px solid grey;
	border-left:none;
	cursor:pointer;
}
form.search_form button:hover{
	background:#b7dda;
}
/*New css*/
.latest-news-area{
				 margin:40px;
				 
			 }
			 .latest-news-wrap{
				 box-shadow:0px 3px 10px rgba(0,0,0,0.1);
			 }
			 .news-img{
				 position:relative;
			 }
			 .news-img:before{
				 position:absolute;
				 left:0;
				 right:0;
				 width:100%;
				 height:100%;
				 background:#000;
				 content:"";
				 opacity:0;
				 transform:scale(.8);
				 transtion:all 0.5s;
			 }
			 .latest-news-wrap:hover .news-img:before{
				 opacity:.5;
				 transform:scale(1);
			 }
			 .deat{
				 background:#f89406 none repeat scroll 0 0;
				 height:70px;
				 left:0;
				 position:absolute;
				 text-align:center;
				 top:0;
				 width:70px;
				 padding:10px;
			 }
			 .deat span{
				 display:block;
				 color:white;
				 font-weight:700;
				 font-size:16px;
			 }
			 .news-content{
				 padding:20px;
				 margin-left:3px;
			 }
			 .news-content i{
				 font-size:18px;
				 display:inline-block;
			 }
			 .news-content .fa{
				 padding:10px 10px;
				 cursor:pointer;
			 }
			 .news-content p{
				margin-bottom:15px;
				 text-align:justify;
				 margin-top:20px;
				 
			 }
			 .news-content a{
				 font-size:14px;
				 background-color:#e0ad23;
				 padding:10px 20px;
				 color:white;
				 transtion:all 0.5s ease-in;
			 }
			 .news-content a:hover{
				 font-size:14px;
				 border:1px solid #34495e;
				 border-top-right-radius:20px;
				 background-color:transparent;
				 color:#34495e;
				 text-decoration:none;
			 }
			 /*New code*/
			 .read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3897f0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.read-more:hover {
    background-color: #2874f0;
}
/*For page article.php*/
/* article.php - CSS Styling */
:root {
  --primary-color: #3897f0;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-gray: #e9ecef;
  --dark-gray: #6c757d;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.article-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.article-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1rem;
}

.article-title {
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
  color: #222;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.article-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-right: 1rem;
}

.article-date {
  color: var(--dark-gray);
}

.article-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 6px;
  margin: 1.5rem 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-container {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .article-title {
    font-size: 1.8rem;
  }
  
  .article-content {
    font-size: 1rem;
  }
}

/* Typography Enhancements */
.article-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #222;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 0.5rem;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem;
}

/* Blockquote styling */
.article-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 0.5rem 1rem;
  margin: 1.5rem 0;
  background: var(--secondary-color);
  font-style: italic;
  color: var(--dark-gray);
}

/* Code blocks */
.article-content pre {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 4px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
}

/* Social sharing buttons */
.social-sharing {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.social-sharing a {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-sharing .twitter {
  background: #1DA1F2;
}

.social-sharing .facebook {
  background: #4267B2;
}

.social-sharing .linkedin {
  background: #0077B5;
}
/*New*/
:root {
  brand-blue: #00AEEF; /* Logo light blue */
}

.bg-primary {
  background-color: #00AEEF;
}

.btn-primary {
  background-color: #00AEEF;
  border-color: #00AEEF;
}

.btn-primary:hover {
  background-color: #008CBA; /* darker hover */
  border-color: #008CBA;
}

a {
  color: #00AEEF;
}

a:hover {
  color: #008CBA;
}