/*<style>*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
font-family: "Times New Roman", Times, serif;
}

body{
    background:#fff;
    color:#333;
    overflow-x:hidden;
    padding-left: 2px; /* prevent horizontal scroll */
}

/* ===== TOP BAR ===== */
#merejaabout{
    color:white;font-size: 17px;text-decoration: none;
    background-color: red;
    border: solid 3px white;
    border-radius: 10%;
}
nav i{
    color: white;
    background-color: #167;
}
#navatag{
color: black;
}
.top-bar{
    background:#167;
    padding:8px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#8ff;
    font-size:14px;
    flex-wrap:wrap;
}

#clock{
    font-weight:bold;
}

.top-social{
    display:flex;
    gap:12px;
}

.top-social a{
    color:#fff;
    font-size:16px;
    transition:0.3s;
}

.top-social a:hover{
    color:#248;
    background-color: red;
    font-size: 40px;
}

.language-select{
    padding:4px 6px;
    border-radius:4px;
}

/* ===== HEADER ===== */
header{
    background:Turquoise;
    color:#121;
    padding:1px 1px;
    display:flex;
    justify-content:space-between;
    align-items:bottom;
    position:relative;
    z-index:200;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:60px;
    height:auto;
    border-radius: 100%;
    border: solid 3px red;
}

/* ===== NAV ===== */
nav{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:auto;
    background-color: Turquoise;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:2px;
}

nav a i{
    font-size:10px;
}

/* ===== HAMBURGER ===== */
#menu-toggle{display:none;}

.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
    order:10; /* right side */
    color: red;
    background-color: cyan;
}

.hamburger span{
    width:38px;
    height:3px;
    background:#fff;
    margin:5px 0;
    transition:.4s;
    border-radius:3px;
}

/* ===== HERO ===== */
.hero{
    width:100%;
    padding-top: 3px;

  }
   

#ayn{
    background-color: #ffffff;
    color: #831;
    border-radius: 50px;
    text-align: center;
}
.subjecttext a{
    color: white;
    text-decoration: none;
}
.meta{
   font-size: 20px;
   border-radius: 2px;
   background-color: darkblue;
   overflow-x: auto;
   overflow-y: none;
   gap: 13px;
   color: whitesmoke;
}
.meta a{
    color:white;
}
/*77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777*/
/* MAIN GRID */
.ayy{
display:grid;
grid-template-columns:2fr 1fr;
grid-template-rows:1fr 1fr;
gap:8px;
height:525px;
}

/* BIG LEFT */

.big{
grid-row:span 2;
}
.immain{
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
/* IMAGE 3 & 4 GRID */

.bottom{
display:grid;
grid-template-columns:1fr 1fr;
gap:8px;
}

/* ax STYLE */

.ax{
position:relative;
overflow:hidden;
border-radius:5px;
cursor:pointer;
height:100%;
}

.ax img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.ax:hover img{
transform:scale(1.08);
}

/* TEXT ay */

.ay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
color:white;
background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
}

.tag{
background:none;
padding:6px 12px;
font-size:12px;
display:inline-block;
margin-bottom:10px;
}
.tag a{
    text-decoration: none;
    color: white;
}
.date{
font-size:12px;
opacity:.8;
}

/* axx */

.axx{
position:relative;
height:100%;
width:100%;
}

.axxx{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:none;
}

.axxx.active{
display:block;
}

/* TABLET */

@media(max-width:900px){

.ayy{
grid-template-columns:1fr;
grid-template-rows:auto;
height:350px;
}

.big{
grid-row:span 1;
height:350px;
}

}

/* MOBILE */

@media(max-width:600px){

.bottom{
grid-template-columns:1fr;
}

.big{
height:250px;
}

}

/*77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777*/
/*----------Text----------------*/

#serviceoftext{
    color: #03f;     
    text-shadow: 1px 1px 1px #401;
    width: auto-fit;
    font-size: 20px;
    text-align: bottom;
    background-color: none;
    text-decoration: bold;
    height:1vh;
}

/*----------Table---------*/

/* Header style */
table.dataTable thead th {
    background-color: #e6e6e6;
    text-align: center;
}

/* Olive colored columns like your image */
.olive {
    background-color: #5b5f0d !important;
    color: white !important;
    text-align: center;
}

/* Alternate row color */
table.dataTable tbody tr:nth-child(even) {
    background-color: #4a4;
}

/* Footer filter dropdown */
tfoot select {
    width: auto;
}


/* ===== DOTS ===== */
.dots{
    position:absolute;
    bottom:10px;
    width:100%;
    display:flex;
    justify-content:center;
    gap:9px;
    overflow: auto;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:white;
    opacity:.9;
    cursor:pointer;
}

.dot.active{opacity:1}

/* ===== SERVICES ===== */
.services{
    padding:60px 40px;
    text-align:center;
}

.services h2{
    margin-bottom:40px;
}

.service-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    padding:10px;
    border-radius:5px;
    box-shadow:0 4px 10px rgba(0,5,0,.1);
    width: 96%;
    margin-top: 30px;
    margin-bottom:286px;
    text-align: center;
    align-items: center;
    border-bottom: 3px #aaf dotted;
    border-left:1px #06f dotted;
    border-top: 1px #ffe solid;
    border-right: 1px #fff solid;
}
/*===========Notice======*/
.notices{
    padding:60px 40px;
    text-align:center;
}
.services h2{
    margin-bottom:40px;
}
.notice-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.load-morenotice-btn{
    padding:10px 20px; cursor:pointer;
    background-color: floralwhite;
    color: royalblue;
}
.load-morenotice-btn:hover{
    background-color: whitesmoke;
    color: black;
    font-size: 21px;
}
/*===========History======*/
.history{
    padding:60px 40px;
    text-align:center;
}
.history h2{
    margin-bottom:40px;
}
.history-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.load-morehistory-btn{
    padding:10px 20px; cursor:pointer;
    background-color: floralwhite;
    color: royalblue;
}
.load-morehistory-btn:hover{
    background-color: whitesmoke;
    color: black;
    font-size: 21px;
}/*===========Culture======*/
.culture{
    padding:60px 40px;
    text-align:center;
}
.culture h2{
    margin-bottom:40px;
}
.culture-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.load-moreculture-btn{
    padding:10px 20px; cursor:pointer;
    background-color: floralwhite;
    color: royalblue;
}
.load-moreculture-btn:hover{
    background-color: whitesmoke;
    color: black;
    font-size: 21px;
}
/*===========policy======*/
.Policies{
    padding:60px 40px;
    text-align:center;
}
.Policies h2{
    margin-bottom:40px;
}
.Policies-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.load-morePolicies-btn{
    padding:10px 20px; cursor:pointer;
    background-color: floralwhite;
    color: royalblue;
}
.load-morePolicies-btn:hover{
    background-color: whitesmoke;
    color: black;
    font-size: 21px;
}

/* ===== CHARTS ===== */
.charts{
    padding:50px 40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    background:#fff;
    text-align:center;
}

.charts canvas{
    max-width:100%;
    height:300px;
}

/* ===== FOOTER ===== */
footer{
    background:Turquoise;
    color:black;
    text-align:center;
    padding:30px 40px;
}

.footer-social{
    margin-top:10px;
    display:flex;
    justify-content:center;
    gap:12px;
    color: black;
}

.footer-social a{
    color:blue;
    font-size:18px;
    background-color: blue;
}

.footer-social a:hover{
    color:blue;
}

/* ===== USEFUL LINKS ===== */
.footer-links{
    margin-top:20px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-links a{
    color:blue;
    text-decoration:underline;
}

.footer-links a:hover{
    color:#ffeb3b;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .hamburger{display:flex; order:100%; margin-left:auto;}

    nav{
        width:100%;
        flex-direction:column;
        background:#1565c0;
        max-height:0;
        overflow:auto;
        transition:max-height .5s ease;
        margin-left:0;
        order:3;
        left:0;
        right:0;
    }

    nav a{
        padding:12px 0;
        text-align:center;
    }

    #menu-toggle:checked ~ nav{
        max-height:500px;
    }

    /* Hamburger animation ☰ → ✖ */
    #menu-toggle:checked + .hamburger span:nth-child(1){
        transform:rotate(45deg) translate(6px,6px);
    }
    #menu-toggle:checked + .hamburger span:nth-child(2){
        opacity:0;
    }
    #menu-toggle:checked + .hamburger span:nth-child(3){
        transform:rotate(-45deg) translate(6px,-6px);
    }
}
/*
</style>*/
/* ===== LOGIN FORM ===== */
.login-container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    margin: 60px auto;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.input-group {
    margin-bottom: 15px;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
button {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background: #45a049;
}
.error-msg {
    color: red;
    margin-top: 10px;
    text-align: center;
}
.forgot-password {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
    color: #007BFF;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}
/*****************************************************************/
/* Container */
.slides-container{
    position: relative;
    width: 100%;
    overflow: hidden;

}
/* Dots */
.dots{
    display: flex;
    justify-content: center;
    margin-top: 15px;
    bottom: 0px;
    background-color: #368;
    color: red;

}
.dot{
    width: 20px;
    height: 20px;
    margin: 0 6px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: background 0.3s;
    background-color: #fff;
}
.dot.active{
    background: #1f6;
}
/* scroll to up */
#backToTop {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 24px;
    background-color: #45f;
    color: white;
    border: none;
    border-radius: 100%;
    padding: 12px 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background 0.3s;
    text-align: right;
    width: 60px;
}
#backToTop:hover {
    background-color: #ff1;
        border-radius: 100%;

}
/*-----------------Detiels note----------*/
    #messages{
        background-color: #ddd;
        color: #0d4fa3;
        text-align: left;
    }
    .panel-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      min-height: 400px;
      padding:6px ;
      width: 99.5%;
    }

    .panel {
      background: #ffe;
      border-radius: 2px;
      overflow: auto-fit;
      width: 80%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      text-align: left;
    }
     #backs{
        color: blue;
        text-align: right;
        align-items: right;
        font-family:Times New Roman;
        text-decoration: none;
     }
    .panel img {
      width: 100%;
      height: auto;
      display: block;
    }
    .panel-text {
      padding: 15px;
      text-align: left;
      font-size: 20px;
    }
    .panel h3 {
      margin: 0 0 10px 0;
      font-size: 1.2rem;
      color: #619;
    }
    .panel p {
      margin: 1px;
      color: #115;
      font-size: 1.95rem;
    }
    /* Hover effect */
    .panel:hover {
      transform: translateX(2px);
      box-shadow: 0 8px 20px rgba(0,6,0,0.15);
       cursor: default;

    }
    /* Responsive */
    @media (max-width: 650px) {
      .panel {
        width: 99%;
      }
    }

.container{
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
    gap:10px;
}
/* ===== CARD ===== */
.card1{
    position:relative;
    height:260px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
.card1 img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* ===== TEXT MERGED ON IMAGE ===== */
.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:14px;
    background:linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color:#fff;
}
.overlay p{
    font-size:22px;
    line-height:1.1;
    margin:1px;
    background-color: none;
    color: #fff;
    font-style: bold;
    border-radius: 9px;
    width: 100%;
    text-align: left;
}
.views{
    display:flex;
    text-align:left;
    gap:1px;
    color: gold;
    background-color: #259;
    width: 70px;
    border-radius: 20%;
}
/* ===== HOVER ===== */
.card1:hover{
    transform:translateY(5px);
    transition:0.8s ease;
}
.likedislikefavorite a
{
   
    cursor:pointer;
    color: whitesmoke;
    gap: 110px;
    background-color: darkblue;

}
.load-btn{
    background-color: #121;
    width: auto;
    item-align:center;
    text-align: center;
    color: white;
    text-decoration-thickness: 4px;
    height: 50px;
    border: whitesmoke solid 3px;
    font-weight: 700;
    padding:  17px;
    margin: -17px;

}
.load-btn:hover{
    background-color: #121;
}
#nextload{
    background-color: #121;
    text-align: center;
    border-radius: 5px;
}

/*--------------------------------- Page loading------------------- */
#animats{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:cyan;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
    gap: 10px;
}
#animats p{
    background-color: yellow;
    color: red;
    font-size: 20px;
    margin-left: 9px;
    padding: 7px;
}
/* Spinner */
.loader{
  width:120px;
  height:120px;
  border:8px solid #416;
  border-top:8px solid #ff6;
  border-bottom:8px solid #ff9;
  border-left:8px solid cyan;
  border-right:8px solid cyan;
  border-radius:100%;
  animation:spin 1s linear infinite;
  background: #fff;
}

@keyframes spin{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(359deg);}
}

/* Hide page initially */
#pageContent{
  display:none;
  text-align: center;
}
/* scroll text marquee */
.scroll{
  background-color: floralwhite;
  color: #233;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

.scroll span{
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 99s linear infinite;
}

@keyframes scrollText{
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
section:hover{
  transition: transform 0.111s;
  section{transform: rotate(-10deg)}
}

img {
  width: 300px;
  transition: transform 0.22222s;
}

img:hover {
  transform: scale(1.2);
}
.card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}
/* About Section*/


/* abouthero SECTION */

.abouthero{
justify-content:center;
align-items:center;
gap:40px;
padding:60px;
background:#ddd;
}

.imagesc{
background-color: lightgray;
item-align:center;
text-align: center;
padding: 1px;
margin-bottom: 41px;

}

.abouthero-text{
max-width:auto;
font-size:14px;
line-height:1.9;
text-align: justify;
font-size: 20px;
color: #123;
margin-top: -40px;
margin-left: 3px;
}

.aboutbtn{
background:#e11212;
color:white;
border:none;
padding:10px 25px;
margin-top:20px;
cursor:pointer;
}

/* aboutfeatures */

.aboutfeatures{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
padding:40px;
}

.feature{
background:#bcd3d8;
padding:40px;
text-align:center;
}

.feature h3{
margin-bottom:10px;
}

/* INFO SECTION */

.info-section{
padding:40px;
text-align:center;
}

.aboutsection-btn{
background:#e11212;
color:white;
border:none;
padding:10px 25px;
margin-bottom:40px;
}
.aboutsection-btn:hover{
    background-color: none;
}
.aboutinfo-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
max-width:800px;
margin:auto;
}

.aboutinfo-box{
background:white;
padding:20px;
text-align:left;
border-radius:4px;
}

.aboutinfo-box h4{
background:#2f5fa8;
color:white;
padding:8px;
margin-bottom:10px;
font-size:14px;
}


.aboutsocials{
margin-top:10px;
display:flex;
justify-content:center;
gap:20px;
}

.aboutsocials span{
background:#c60f0f;
padding:8px 12px;
border-radius:20px;
font-size:12px;
cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:900px){

.abouthero{
flex-direction:column;
text-align:center;
margin: 0px;
}
.aboutfeatures{
grid-template-columns:2fr;
}

.aboutinfo-grid{
grid-template-columns:2fr;
}

}
.eyemian{
    background-color: #167;
    text-align: left;

}
/* main page next btn*/
.nextmainbtn{
    padding:10px 20px; cursor:pointer;
    background-color: floralwhite;
    color: royalblue;
}
.nextmainbtn:hover{
    background-color: whitesmoke;
    color: black;
    font-size: 21px;
}


/*  Comment Section of Page */
  .comment-form{
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  .comment-form h2{
    text-align: center;
    margin-bottom: 20px;
    color: #0d4fa3;
  }
  .comment-form .form-group{
    margin-bottom: 15px;
  }
  .comment-form label{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .comment-form input,
  .comment-form textarea{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  .comment-form textarea{
    resize: vertical;
  }
  .comment-form button{
    width: 100%;
    padding: 12px;
    background: #0d4fa3;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  .comment-form button:hover{
    background: #083b7a;
  }
  #statusMsg{
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
  }
