*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f5f7fa;
}

.top-bar{
  background-color: #234678;
  color: #ffffff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  font-size: 14px;
}

.top-bar p{
  margin-left: 5%;
}

.top-bar span{
  white-space: nowrap;
  margin-right: 7%;
}

header{
  background:#fff;
  padding:15px 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:15px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.hero-slider{
  position: relative;
  height: 480px;
  overflow: hidden;
}

.slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active{
  opacity: 1;
}

.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,40,60,0.55); 
}

.hero-text{
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 650px;
  z-index: 2;
}

.hero-text h1{
  font-size: 38px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-text p{
  font-size: 15px;
  letter-spacing: 1px;
}

.arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
}

.arrow.left{ left: 10px; }
.arrow.right{ right: 10px; }
.logo {
  display: flex;
  align-items: center;  
  gap: 15px;  

}

.logo img {
  width: 150px;       
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;  
}

.logo-text .title {
  font-size: 29px;
  font-weight: bold;
}

.logo-text .subtitle {
  font-size: 19px;
  margin-top: 20px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.logo-text h5{
  margin-left:0;
  color: #e7113c;
  font-size: medium;
}

.issue-box img{
  width: 200px;    
  margin-top: -40px;
}
.issue-box{
  display: flex;
  align-items: center;
  margin-left: 25%;
  gap: 20px;
}
.issue-left{
  text-align: center;
}

.download-btn{
  padding:6px 16px;
  background-color: #234678;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.download-btn:hover{
  background-color: #1b355a;
}

.coming-soon{
  font-size: 30px;
  color: #e53935;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 50%;
  position: relative;
  top: -200px;  
}

.logo span{
  background:#5b61e1;
  color:#fff;
  padding:5px 10px;
}
.issues h1{
  text-align: center;
  font-style: normal;
  color:#5b61e1;
  height: 120px;

}
.issues span{
  color:#dc617e;
}
.issues a{
  margin-left: 27%;
}

nav{
  display:flex;
  flex-wrap:wrap;
  font-style: italic;
}

nav a{
    margin: 8px;
    padding: 10px 18px;   
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    border-radius: 6px;
}

nav a:hover{
  background: #254b7f;
  color: #ffffff;
}


@media(max-width:768px){
  .hero{
    min-height: 60vh;
    padding: 0 6%;
  }
  .issue-box{
    flex-direction: column;
    gap: 20px;
  }
}

footer{
  background:#143869;
  color:#fff;
  padding: 20px 5% 20px;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  letter-spacing: 1.5px;
}

.footer-container div{
  flex:1 1 250px;
}

footer h3{
  color:#FFE082;
  margin-bottom:10px;
}

footer p{
  font-size:14px;
  line-height:1.6;
}

input, textarea{
  width:100%;
  padding:10px;
  margin:6px 0;
  border-radius:5px;
  border:none;
}
.copy{
  border: none;
  text-align:center;
  padding:25px;
  font-size:13px;
  color:#cccccc;
}
button{
  background:#4cd137;
  color:white;
  border:none;
  padding:10px 25px;
  border-radius:5px;
  cursor:pointer;
}

button:hover{
  background:#44bd32;
}

.section.background-white{
  background: #ffffff;
  padding: 60px 0;
}

.line{
  max-width: 1200px;
  margin: auto;
}

.margin{
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.margin-m-bottom{
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.margin-m-bottom:hover{
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.margin-bottom{
  width: 150px;
  margin-bottom: 15px;
}

.text-thin{
  font-weight: 500;
  color: #003366;
  margin-bottom: 12px;
}

.margin-m-bottom p{
  font-size: 14.5px;
  line-height: 1.7;
  color: #333333;
}

@media (max-width: 900px){
  .margin{
    flex-direction: column;
  }
}
@media(max-width:768px){
  header{
    flex-direction:column;
    text-align:center;
  }

  nav{
    justify-content:center;
  }
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
  background: white;
}

.page-title {
  background: #234678;;
  color: white;
  text-align: center;
  padding: 5px;
}
.section {
  text-align: center;
  margin-bottom: 20px;
}
.section h3 {
  margin-bottom: 10px;
  text-decoration: underline;
}
.name {
  font-weight: bold;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.grid-4{
    padding: 20px;
    margin-top: -20px; 
}
.grid-4 h3{
  margin: 0;
  padding: -11px;
  font-weight: bold;
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  width:100px
}
.card1 {
  background: #f2f2f2;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  height: 30px;
  text-decoration: underline
}
.card2 {
  background: #f2f2f2;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}
.card h4 {
  margin-bottom: 10px;
}


.content {
    padding: 50px 80px;
}
.content h1 {
    font-style: italic;
    margin-top:  0px;
}
.content p {
    line-height: 1.5;
    top: 10px;
}
.editor-sign {
    text-align: right;
    margin-top: 40px;
    color: #2e7d32;
}
.editor-sign span {
    text-align: right;
    margin-top: 40px;
    color: #151515;
}
.archive-wrapper{
  width: 100%;
  padding: 20px 20px;
  text-align: center;
  background: #f5f7fa;
}
.pub-title{
  font-size: 28px;
  margin-bottom: 40px;
  align-items: center;
  color: #000;
}
.issue-box1{
  display: inline-block;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.cover-img{
  width: 240px;
  display: block;
  margin: 0 auto;
}
.download-btn1{
  display: inline-block;
  margin-top: 18px;
  padding: 10px 10px;
  background: #1f3f6d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}
.download-btn1:hover{
  background: #16325c;
}

