/* ===== General Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
 
}

body {
  background-color: white;
  color: #333;
  font-family:'serif',;
}

/* ===== Header ===== */
.main-header {
  background-color: #004aad;
  color: #fff;
  padding: 20px 0;
}

.main-header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 600;
 
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ffd700;
}

/* ===== Hero Section (for Preview) ===== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #e9efff);
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #004aad;
}

/* ===== Footer ===== */
.main-footer {
  background-color: #002f6c;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  margin-top: 40px;
}

.main-footer a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 5px;
}

.main-footer a:hover {
  text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .main-header .container {
    flex-direction: column;
    gap: 10px;
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
  }
}

.header_tittle{
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: black;
  padding-top: 20px;
  padding-bottom: 10px;
}




/*popup image code*/


#popup12{
  position:fixed;
  inset:0;
  background:#0009;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* Popup box */
#box12{
  position:relative;
}

/* Responsive image */
#box12 img{
  width:90vw;          /* Mobile friendly */
  max-width:520px;     /* Desktop size */
  border-radius:12px;
  cursor:pointer;
}

/* Close button */
#close12{
  position:absolute;
  top:-12px;
  right:-12px;
  width:30px;
  height:30px;
  border:0;
  border-radius:50%;
  background:red;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:10000;
}

/* Large screens = bigger popup */
@media (min-width: 992px){
  #box12 img{
    max-width:700px;
  }
}

.whatsapp-float img {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
}








