/* General Styles */
* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 70;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: #222;
  background-color: #FFF;
  -webkit-font-smoothing:antialiased;
}
/* Header */
.site-header {
  background-color: #FFF;
  color: #006633;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  flex-wrap: wrap;
}

.logo {
  width: 150px;
  height: 90px;
}

.header-text h1 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.header-text h2 {
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.social-links {
  text-align: right;
  font-size: 1rem;
  font-weight: bold;
}

.social-links a {
  color: #006633;
  margin: 0 5px;
  font-size: 2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffcc00;
}

/* Navigation */
.navbar {
  background: #004d26;
  position: relative;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar li {
  margin: 0;
  position: relative;
}

.navbar a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: white;
  text-decoration: none;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #00994d;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004d26;
  min-width: 220px;
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 0.8rem 1.2rem;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background-color: #00994d;
}

/* Show dropdown on hover (desktop only) */
.navbar ul li:hover > .dropdown-menu {
  display: block;
}

/* Dropdown icon */
.dropdown > a i {
  margin-left: 6px;
  font-size: 0.8rem;
}

/* Fade-in dropdown effect */
.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.navbar ul li:hover > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-height: 400px;
}

.carousel img {
  width: 100%;
  display: block;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 1rem;
}

/* News & Content */
.content {
  padding: 2rem 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.news-item img {
  width: 100%;
  border-radius: 6px;
}

.news-item a {
 text-decoration:none;
}

.announcements {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}


.announcements .col {
  flex: 1 1 300px;
}

.announcements .col a{
  text-decoration:none;
}


  .main-side-container{
    display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }
  .main-side-container div a{
    font-size: 15pt;
  }
  .main-side-container div hr{
  height: 2px;
  width: 80%;
  border: none;
  border-radius: 7px;
  background-color:#fff;
  }
  .w-f-u{
    background-color: #00b600;
    border-radius: 5px;
  }
  .w-f-u:hover{
    color: white !important;
    box-shadow: 0px 0px 10px red;
  }
  
  .sub-side-container:first-child{
    color: red;
  }
  /* Responsive layout*/
  @media screen and (max-width: 1080px) {
    .main-side-container{
      display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .main-side-container div a{
      font-size: 14pt;
    }
  }@media screen and (max-width: 863px) {
  .main-side-container div a{
      font-size: 13pt;}
    }
    @media screen and (max-width: 820px) {
      .main-side-container div a{
          font-size: 12pt;
      }
      .w-f-u{
       margin-bottom: 10px;
        margin-left: 10px;
      }
  }
  h4 {
      text-align: center;
      font-size: 60px;
      margin-top: 0px;
    }
    .svg-clock{
      width: 11px;
      fill:grey;
    }
    /* Increase the font size of the h1 element */
    .header h1 {
      font-size: 40px;
    }
    
    /* Column container */
    .row {  
      display: flex;
      flex-wrap: wrap;
    }
    
    /* Create two unequal columns that sits next to each other */
    /* Sidebar/left column */
    .side {
      flex: 30%;
      background-color: #f1f1f1;
      padding: 20px;
    }
    /* Main column */
    .main {   
      flex: 40%;
      background-color: white;
      padding: 20px;
    }
    
    .brand{
    text-align: center;
     float: end;
     margin-top: 0px;
  }
  .brand a:hover{
    text-decoration: none;
    color: #fff;
  }
  .brand a{
      text-decoration: none;
      color: #fff;
      font-family: Berlin Sans FB;
      -webkit-animation-name: example; /* Chrome, Safari, Opera */
      -webkit-animation-duration: 4s; /* Chrome, Safari, Opera */
      animation-name: branddesign;
      animation-duration: 4s;
      animation-iteration-count: 2;
  }
  @keyframes branddesign {
      0%   {color: #282e3b;}
      25%  { color: white;}
      50%  { color: #282e3b;}
      100% { color: white;}
  }
  
  .facb:hover{
    color: rgb(62, 62, 214) !important;
  }
  .insg:hover{
    color: rgba(255, 0, 21, 0.493) !important;
  }
  .twit:hover{
    color: skyblue !important;
  }
  .teleg:hover{
    color: rgb(33, 135, 175) !important;
  }
  .w-f-u{
    background-color: #00b600 ;
    border-radius: 5px ;
    padding: 2px;
  }
  .w-f-u:hover{
    color: white !important;
    box-shadow: 0px 0px 10px #ff591cbb ;
  }
  .svg-clock{
    width: 10px;
    
  }

    /*  image */
    .imgprops {
      width: 100%;
    }
.news-item{
  text-align:center;
}
    /* ===== Pagination Styling ===== */
.pagination {
  display: flex;
  justify-content: center;   /* Centers pagination horizontally */
  align-items: center;       /* Vertically aligns pagination items */
  flex-wrap: wrap;           /* Wraps on small screens (responsive) */
  gap: 8px;                  /* Space between buttons */
  list-style: none;          /* Removes bullets */
  padding: 0;
  margin: 20px 0;
}

/* ===== Pagination Items ===== */
.pagination .page-item {
  display: flex;
}

/* ===== Pagination Links ===== */
.pagination .page-link {
  display: inline-block;
  color: #113277;            /* Deep blue tone */
  background-color: #ffffff;
  border: 1px solid #113277;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

/* ===== Hover & Active Effects ===== */
.pagination .page-link:hover {
  background-color: #113277;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Disabled Buttons ===== */
.pagination .page-item.disabled .page-link {
  color: #999;
  border-color: #ccc;
  background-color: #f5f5f5;
  cursor: not-allowed;
  transform: none;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 480px) {
  .pagination .page-link {
    padding: 6px 10px;
    font-size: 13px;
  }
}

  #myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
  animation-name: rotate;
     animation-duration: 3s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
} 
/*scroll to top*/
 @keyframes rotate {
   to {
     transform: rotate(2520deg);
   }
 }
/* Footer */
.site-footer {
  background-color: #006633;
  color: white;
  padding: 1rem;
}


.site-footer li a:link{
    color: #FFF;
    text-decoration:none;
}



.site-footer li a:hover{
    background-color: #00994d;
 
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
}

.footer-columns ul a {
 color: #FFF;
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  border-top: 1px solid #004d26;
  padding-top: 0.5rem;
  color: #fff 
}


.footer-bottom a:link {
 color:#FFF;
 text-decoration:none;
}

.footer-bottom a:visited {
 color:#FFF;
 text-decoration:none;
}
.footer-bottom a:hover {
 background-color:#00994d;
}

.brand{
    text-align: center;
     float: end;
     margin-top: -30px;
  }
  .brand a{
      text-decoration: none;
      color: #fff;
      font-family: Berlin Sans FB;
      -webkit-animation-name: example; /* Chrome, Safari, Opera */
      -webkit-animation-duration: 4s; /* Chrome, Safari, Opera */
      animation-name: branddesign;
      animation-duration: 4s;
      animation-iteration-count: 2;
  }
  @keyframes branddesign {
      0%   {color: #282e3b;}
      25%  { color: white;}
      50%  { color: #282e3b;}
      100% { color: white;}
  }
  /*sidenavigation*/
  .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 1;
      top: 0;
      left: 0;
      background-color: white;
      overflow-x: hidden;
      transition: 0.5s;
      padding-top: 60px;
  }
  
  .sidenav a {
      padding: 8px 8px 8px 32px;
      text-decoration: none;
      font-size: 25px;
      display: block;
      transition: 0.3s
  }
  
  .sidenav a:hover{
      color: #ff5a1c;
      text-decoration-thickness: 3px;
  }
  .closebtn {
      font-size: 36px !important;
  }
  .main-side-container{
    display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: nowrap;
      flex-wrap: nowrap;
  }
  .main-side-container div a{
    font-size: 15pt;
  }
  .main-side-container div hr{
  height: 2px;
  width: 80%;
  border: none;
  border-radius: 7px;
  background-color:#fff;
  }
  .w-f-u{
    background-color: #00b600;
    border-radius: 5px;
  }
  .w-f-u:hover{
    color: white !important;
    box-shadow: 0px 0px 10px red;
  }
  
  .sub-side-container:first-child{
    color: red;
  }
  /* Responsive layout*/
  @media screen and (max-width: 1080px) {
    .main-side-container{
      display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .main-side-container div a{
      font-size: 14pt;
    }
  }@media screen and (max-width: 863px) {
  .main-side-container div a{
      font-size: 13pt;}
    }
    @media screen and (max-width: 820px) {
      .main-side-container div a{
          font-size: 12pt;
      }
      .w-f-u{
       margin-bottom: 10px;
        margin-left: 10px;
      }
  }
  h4 {
      text-align: center;
      font-size: 60px;
      margin-top: 0px;
    }
    .svg-clock{
      width: 11px;
      fill:grey;
    }
    /* Increase the font size of the h1 element */
    .header h1 {
      font-size: 40px;
    }
    
    /* Column container */
    .row {  
      display: flex;
      flex-wrap: wrap;
    }
    
    /* Create two unequal columns that sits next to each other */
    /* Sidebar/left column */
    .side {
      flex: 30%;
      background-color: #f1f1f1;
      padding: 20px;
    }
    /* Main column */
    .main {   
      flex: 40%;
      background-color: white;
      padding: 20px;
    }
    
    /*  image */
    .imgprops {
      width: 100%;
    }
    @media screen and (max-width: 800px) {
      .side{
  flex: 50%;
      }
      .main{
        flex: 50%;
      }
      
    }
    /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
    @media screen and (max-width: 500px) {
      .row {   
        flex-direction: column;
      }
    }
    
    /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
    @media screen and (max-width: 400px) {
      .navbar a {
        float: none;
        width:100%;
      }
    }
    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        top: 0;
        right:  0;
        background-color:#282e3b ;
        overflow-x: hidden;
        transition: 0.5s;
        padding:0px;
    opacity: .90;
    }
    
    .sidenav a {
        padding: 8px 8px 8px 32px;
        text-decoration: none;
        font-size: 25px;
        color: #fff;
        display: block;
        transition: 0.3s;
    
    }
    
    .sidenav a:hover, .offcanvas a:focus{
        color:red;
        text-decoration: none;
    }
    
    .closebtn {
        position: relative;
        top: 0;
        right: 25px;
        font-size: 36px !important;
         
    }
    
    #main {
        transition: margin-left .5s;
      
      color: white;
    }
    
    @media screen and (max-height: 450px) {
      .sidenav {padding-top: 15px;}
      .sidenav a {font-size: 18px;}
    }
  @media screen and (max-width: 700px){
  .top-nav{
      display: none;
  }
  }
  @media screen and (max-width: 1000px){
    .top-nav{
      margin-left: 70px !important;
    }
    }
  .top-nav{
    margin-bottom: 70px;
    margin-left: 30%;
    
  }
  .nav{
    width: auto;
    height: 40px;
    border: none;
    line-height: 20px;
  }
  .top-nav a{
  text-decoration: none;
  color: #F5F5F5;
  font-family: Berlin Sans FB;
  
  }
  .top-nav a:hover{
    color: red;
  }
  .top-nav a li{
    list-style: none;
  float: left;
    font-size: 12pt ;
    margin-right: 20px;
  }
  .fa-circle{
  color: red;
  margin-left: 3px;
  }
  #c-color{
        text-transform: uppercase;
    }
   .header-box{
     background-color: #F5F5F5;
     height:70px;
   }
   .News-heading{
     text-decoration: navy;    
     font-size:12pt;
     display:flex;
     flex-direction:row;
   }
   .News-heading:before, .News-heading:after{
  content: "";
  flex: 1 1;
  border-bottom: 1px solid;
  margin:auto;
   }
   .News-heading:before{
     margin-right: 10px;
   }
   .News-heading:after{
     margin-left: 10px;
   }
   
  .facb:hover{
    color: rgb(62, 62, 214) !important;
  }
  .insg:hover{
    color: rgba(255, 0, 21, 0.493) !important;
  }
  .twit:hover{
    color: skyblue !important;
  }
  .teleg:hover{
    color: rgb(33, 135, 175) !important;
  }
  
  .sub-container:first-child{
    color: #fff;
  }
  
 
   .card-title-font{
     color:#113277;
     font-size: 15pt
   }
 .postimgtop{
  width:100%;
   height:320px;
   border-radius:5px 5px 0 0;
 }
 .postimgtop-con{
   height: auto;
 }
 .postimgtopt{
  width:100%;
   height:150px;
   border-radius:5px 5px 0 0;
 }
 .fixed-bar{
  position: fixed;
  top:0;
  width: 100%;
  z-index: 1;
 }
/*scroll to top*/
 @keyframes rotate {
   to {
     transform: rotate(2520deg);
   }
 }
 #myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
  animation-name: rotate;
     animation-duration: 3s;
     animation-timing-function: linear;
     animation-iteration-count: infinite;
}

/* ============================================================
   🌐 RESPONSIVE STYLES
   ============================================================ */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .header-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header-text h1 {
    font-size: 2rem;
  }

  .navbar ul {
    flex-wrap: wrap;
  }

  .content {
    padding: 1.5rem;
    
  }

  .footer-columns {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .logo {
    width: 120px;
    height: auto;
  }

  /* Hamburger Menu */
  .menu-toggle {
    display: block;
    color: white;
    font-size: 1.8rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
    text-align: right;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #004d26;
  }

  .navbar ul.show {
    display: flex;
  }

  .navbar a {
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  /* Dropdowns on mobile: click-to-open */
  .navbar ul li:hover > .dropdown-menu {
    display: none; /* disable hover */
  }

  .navbar ul li.active > .dropdown-menu {
    display: block;
    position: static;
    opacity: 1;
    transform: none;
  }

  .announcements {
    flex: 1 1 50px;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .header-text h1 {
    font-size: 1.5rem;
  }

  .header-text h2 {
    font-size: 1rem;
  }

  .carousel-container {
    max-height: 250px;
  }

  .content {
    padding: 1rem;
  }


  
}