/* GENERAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; }

.z-topbar {
  background:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0f1f3d 0%, #1c2c4e 100%);
  background-size: 14px 14px, cover;
  color: #fff;
  font-size: 14px;
}

.z-topbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Language */
.z-language {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer; 
}

.z-language img {
  width: 18px;
}

.z-divider {
  margin: 0 6px;
}

/* Social Icons */
.z-social-icons a {
  color: #fff;
  margin-left: 12px;
  font-size: 15px;
  text-decoration: none;
}

.z-social-icons a:hover {
  color: #cce0ff;
}

/* Mobile */
@media (max-width: 600px) {
  .z-topbar-container {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== HEADER 2 STARTED ===== */
.header2 {
  background-color: #ffffff;
  border-bottom: 2px solid #0a4ea3;
  margin: 0;
  padding: 0; /* 🔑 no vertical space from header itself */
  font-family: Arial, Helvetica, sans-serif;
}

/* ===== INNER CONTAINER ===== */
.header-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 12px; 
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  padding: 0;    
  margin: 0;      
}

.logo img {
  display: block;     
  max-height: 80px;
  width: auto;
  height: auto;
  max-width: 100%;

  margin: 0;          
  padding: 0;         
  line-height: 1;    
}

/* ===== CONTACT INFO ===== */
.contact-info {
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

.contact-item i {
  color: #0a4ea3;
  font-size: 18px;
}

.contact-item span {
  font-weight: 500;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .logo img {
    max-height: 65px;
  }

  .contact-item {
    font-size: 13px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    max-height: 60px;
  }

  .contact-info {
    align-items: center;
    gap: 4px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .logo img {
    max-height: 50px;
  }

  .contact-item {
    font-size: 13px;
  }
}


 
/*======== Menu bar Started ======*/

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
}

/* ===== Header Wrapper ===== */
.main-header {
  background:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0f1f3d 0%, #1c2c4e 100%);
  background-size: 14px 14px, cover;
  position: relative;
  z-index: 99999;
}

/* ===== Navigation Container (RESTORED WIDTH) ===== */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0f1f3d 0%, #1c2c4e 100%);
  background-size: 14px 14px, cover;

  padding: 0 20px;
  height: 18px;
  position: relative;
  z-index: 9999;

  /* ✅ EXACTLY like your first code */
  width: 100%;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Menu ===== */
ul.admenus {
  list-style: none;
  display: flex;
  gap: 10px;
}

ul.admenus li {
  position: relative;
}

ul.admenus li a {
  display: block;
  padding: 0 15px;
  line-height: 50px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  transition: 0.3s;
}

ul.admenus li a:hover {
  background: #f54325;
  color: #fff;
}

/* ===== Dropdown ===== */
ul.admenus ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #f5f5f5;
  min-width: 160px;
  z-index: 999999;
}

ul.admenus li:hover > ul {
  display: block;
}

ul.admenus ul li a {
  color: #555;
  line-height: 40px;
  padding: 0 15px;
  text-transform: none;
}

ul.admenus ul li a:hover {
  background: #f54325;
  color: #fff;
}

/* ===== Dropdown Arrow ===== */
.arrow {
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #fff;
}

/* ===== Active Menu ===== */
ul.admenus li.active > a {
  background: #f54325;
}

ul.admenus li.active > a .arrow {
  transform: rotate(180deg);
}

/* ===== Responsive (AUTO-OPEN FIX IS HERE) ===== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  ul.admenus {
    position: absolute;
    top: 50px;
    left: -100%;              /* ✅ hidden by default */
    width: 100%;
    flex-direction: column;

    background:
      radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(135deg, #0f1f3d 0%, #1c2c4e 100%);
    background-size: 14px 14px, cover;

    transition: 0.3s;
    z-index: 10000;
  }

  ul.admenus.show {
    left: 0;                  /* ✅ opens ONLY on click */
  }

  ul.admenus li {
    width: 100%;
  }

  ul.admenus li a {
    line-height: 50px;
    padding: 0 20px;
  }

  /* Mobile submenus */
  ul.admenus li ul {
    display: none !important;
    position: static;
    background: #1c2c4e;
  }

  ul.admenus li.active > ul {
    display: flex !important;
    flex-direction: column;
  }

  ul.admenus li ul li a {
    padding-left: 40px;
    color: #fff;
  }
}
/*-- === Menu Bar Ended  */


/* CONTAINER */
.container { width: 90%; max-width: 1200px; margin: auto; }

/* HEADER */
header {
  background: #2a3f54;
  color: #fff;
  padding: 15px 0;
}
header .logo { font-size: 24px; text-decoration: none; color: #fff; }
header nav ul { list-style: none; display: flex; gap: 20px; }
header nav a { color: #fff; text-decoration: none; }

/* HERO */
.hero { background: #0e5cad; color: #fff; padding: 100px 0; text-align: center; }
.btn { background: #ffd700; padding: 10px 20px; color: #000; text-decoration: none; }

/* SERVICES */
.services { padding: 50px 0; text-align:center;}
.cards { display:flex; justify-content: space-around; flex-wrap: wrap; margin-top: 20px;}
.card { background: #f4f4f4; padding: 20px; width: 30%; margin: 10px; border-radius: 8px;}

/* TABLE */
table { width: 100%; border-collapse: collapse; margin-top: 20px;}
table th, table td { padding: 10px; border: 1px solid #ccc; text-align: left; }

/* CONTACT FORM */
.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.contact-page form input,
.contact-page form textarea { padding: 10px; width: 100%; }
.contact-page button { background: #0e5cad; color: #fff; padding: 10px; border: none; }

/* FOOTER */
footer { background: #222; color: #fff; text-align: center; padding: 15px; margin-top: 40px;}

/* Anout Page Started =====*/

/* ===============================
   GLOBAL RESET
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}



/* ===============================
   ABOUT HERO SECTION
   =============================== */
.about-hero-section {
  position: relative;
  height: 280px;
  background-image: url("about-bg.jpg");
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

/* Overlay */
.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 60, 100, 0.75);
}

/* Content */
.about-hero-overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.about-hero-content {
  animation: aboutHeroFadeSlide 1.2s ease forwards;
}

.about-hero-title {
  color: #ffffff;
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 3px;
}

/* Animation */
@keyframes aboutHeroFadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   ABOUT INFO SECTION
   =============================== */
.about-info-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-info-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* Text */
.about-info-subtitle {
  color: #e31c1c;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.about-info-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-info-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Image */
.about-info-image {
  position: relative;
  padding-bottom: 25px;
}

.about-info-image::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #e31c1c;
  border-radius: 2px;
}

.about-info-image img {
  width: 100%;
  display: block;
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

/* ===============================
   FULL WIDTH MISSION & VISION
   =============================== */
.about-mission-full {
  background: #ffffff;
}

.about-mission-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.about-mission-container h3 {
  font-size: 26px;
  margin: 35px 0 10px;
  color: #000;
}

.about-mission-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 992px) {
  .about-hero-section {
    height: 240px;
  }

  .about-hero-overlay {
    padding-left: 40px;
  }

  .about-hero-title {
    font-size: 55px;
  }

  .about-info-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .about-hero-section {
    height: 210px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }

  .about-hero-overlay {
    padding-left: 20px;
  }

  .about-hero-title {
    font-size: 40px;
  }

  .about-info-title {
    font-size: 28px;
  }

  .about-mission-container h3 {
    font-size: 22px;
  }

  .about-mission-container p {
    font-size: 14px;
  }
}


/* ===============================
   VISION POINTS & GOALS
   =============================== */

.about-goals-section {
    background: #ffffff;
}

.about-goals-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Red Circle List */
.about-red-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.about-red-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Red Bullet */
.about-red-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #e31c1c;
}

/* Goals Heading */
.about-goals-title {
  font-size: 30px;
  font-weight: 800;
  color: #000;
  margin: 10px 0 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .about-red-list li {
    font-size: 14px;
  }

  .about-goals-title {
    font-size: 24px;
  }
}
/* About Page Ended =====*/

/* President Page Started === */
/* ===== President Message (Isolated & Enhanced) ===== */

.zamen-president-message {
    max-width: 900px;
    margin: 40px auto;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    line-height: 1.7;
    padding: 0 15px;
}

/* Title */
.zpm-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Image + first 3 paragraphs */
.zpm-intro {
    overflow: hidden;
}

.zpm-intro img {
    float: left;
    width: 220px;
    margin-right: 25px;
    margin-bottom: 15px;
}

.zpm-intro p {
    font-size: 14px;
    margin-bottom: 15px;
}

.zpm-salute {
    font-weight: bold;
}

/* Full-width content */
.zpm-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

/* Signature */
.zpm-signature {
    margin-top: 25px;
}

.zpm-signature p {
    margin: 4px 0;
}

/* ========================= */
/* ===== RTL SUPPORT ======= */
/* ========================= */

html[dir="rtl"] .zamen-president-message {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .zpm-intro img {
    float: right;
    margin-left: 25px;
    margin-right: 0;
}

/* ========================= */
/* ===== RESPONSIVE ========= */
/* ========================= */

@media (max-width: 768px) {

    .zpm-title {
        font-size: 22px;
    }

    .zpm-intro img {
        width: 160px;        /* Smaller image on tablet */
        margin-right: 20px;
    }
}

@media (max-width: 576px) {

    .zpm-intro img {
        float: none;
        display: block;
        width: 120px;        /* Smaller image on mobile */
        margin: 0 auto 15px;
    }

    .zpm-title {
        font-size: 20px;
        text-align: center;
    }

    .zpm-intro p,
    .zpm-content p {
        font-size: 13.5px;
    }

    .zpm-signature {
        text-align: center;
    }
}

/* President Page Ended ===*/

/* ===== FOOTER STARTED ===== */

.site-footer {
  background: linear-gradient(135deg, #0f1f3d 0%, #1c2c4e 100%);
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  padding: 80px 20px 25px;
  position: relative;
  overflow: hidden;
}

/* ===== Decorative Radial Dot Overlay ===== */
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 350px;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.35;
  pointer-events: none;
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  position: relative;
  z-index: 2;
}

/* ===== HEADINGS ===== */
.footer-col h4 {
  color: #4e5bff;
  font-size: 16px;
  margin-bottom: 22px;
  letter-spacing: 0.8px;
  position: relative;
}

/* ===== TEXT ===== */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #d9e1f2;
}

/* ===== CONTACT ===== */
.footer-contact {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.footer-contact i {
  color: #4e5bff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-contact:hover i {
  transform: scale(1.2);
  color: #ffffff;
}

/* ===== LINKS ===== */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #d9e1f2;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-col ul li a i {
  transition: transform 0.3s ease;
}

/* Underline animation */
.footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4e5bff;
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-col ul li a:hover i {
  transform: translateX(6px);
}
/* ===== WORK HOURS PERFECT ALIGNMENT ===== */
.work-hours {
  padding: 0;
  margin: 0;
  list-style: none;
}

.work-hours li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.work-hours i {
  color: #4e5bff;
  font-size: 14px;
  flex-shrink: 0;
}

/* Prevent line break inside time */
.work-hours span {
  white-space: nowrap;
}


/* ===== VISIT NOTE ===== */
.visit-note {
  margin-top: 18px;
  font-size: 13px;
  color: #cbd5f7;
}

/* ===== DIVIDER ===== */
.footer-divider {
  margin: 55px auto 25px;
  max-width: 1200px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #b8c3e6;
  position: relative;
  z-index: 2;
}

/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  background: #4e5bff;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(78, 91, 255, 0.45);
  transition: all 0.3s ease;
  z-index: 999;
}

#scrollTopBtn:hover {
  transform: translateY(-6px) scale(1.08);
  background: #3646e0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-col h4 {
    font-size: 15px;
  }
}

