* { margin: 0; padding: 0; box-sizing: border-box; }
body {   font-family: 'Nunito';
    /* padding-top: 70px; */
    letter-spacing: 2px;
    color: #1c1c1c;  }

/* ------------------- Header ------------------- */
.header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0px 5%; background: #fff;

  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.header img { height: 90px; max-width: 100%; }

/* ------------------- Navbar ------------------- */
.navbar ul { display: flex; list-style: none; }
.navbar ul li { margin-left: 45px; }
.navbar ul li a {
  text-decoration: none; color: #444; font-weight: 500; transition: color 0.3s;
}
.navbar ul li a:hover, .navbar ul li.active a { color: #f58432; }

/* ------------------- Hamburger ------------------- */
.hamburger { 
  display: none; font-size: 28px; cursor: pointer; 
  color: #333; z-index: 1100; 
}
.hamburger.open i::before { 
  content: "\f00d"; 
  font-family: "Font Awesome 6 Free"; 
  font-weight: 900; 
}

/* Page Title */
.page-title {
  text-align: center;
  margin: 40px 0 20px;
  color: rgb(116, 113, 113);
}

.page-title h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;

}

 hr {
  width: 100px;
  height: 3px;
  background: #e91e63;
  border: none;
  margin: 10px auto;
}


    /* Gallery Grid */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 20px 5%;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .card img {
      width: 100%;
      display: block;
      border-bottom: 1px solid #eee;
    }

    .card-title {
      padding: 15px;
      text-align: center;
      font-size: 1rem;
      font-weight: 500;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        align-items: flex-start;
      }

      .header nav {
        margin-top: 10px;
      }

      .header nav a {
        margin-left: 0;
        margin-right: 15px;
      }
    }

    /* -------- Text Sections -------- */
.text, .text2 { width:100%; padding:20px; }
.text h2, .text2 h2 { text-align:center; margin-bottom:20px;  color: rgb(116, 113, 113);}
.text p, .text2 p {
  padding: 0 60px; line-height:1.9;   color: rgb(116, 113, 113); text-align:justify;
}

  /* ---------------- Floating Social Icons ---------------- */
.social-icons {
  position: fixed;
  top: 40%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}
.social-icons a {
  background: #f58432;
  color: #fff;
  padding: 12px 15px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #f58432;
  padding-left: 20px;
}


/* ---------------- Map ---------------- */
.map {
  width: 100%; background-color:#fafafa; border-top: 1px solid #f0f0f0; display: flex;
  justify-content: space-around; padding: 20px; flex-wrap: wrap; gap: 20px;
}
.map1, .map2 { flex: 1 1 400px; }    
.map1 h2 { margin-bottom: 15px; color: #222; padding: 10px 30px;}
.map1 p { margin: 8px 0; font-size: 15px; display: flex; align-items: center;  padding-left: 30px;}
.map1 i { color: #2563eb; margin-right: 8px; font-size: 16px; }
.map2 iframe { width: 100%; height: 350px; border: none; border-radius: 8px; }


/* ---------------- Branches ---------------- */
.branches { padding: 50px 5%; background: #222; }
.branches h2 { text-align:center; font-size:28px; margin-bottom:30px; color:#f0f0f0; }
.branches-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:25px; }
.branch {
  background:#333; color:#f0f0f0;
  padding:20px; border-radius:10px; transition:0.3s;
}
.branch:hover { background:#f0f0f0; color:#222; }


#branch_anchr{
  color:#f0f0f0 ;}
  #branch_anchr:hover{color:#222;}




@media (max-width: 768px) {
  /* Navbar Mobile */
  .navbar {
    display: none;               /* hide by default */
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    max-height: 70vh;            /* menu height limit */
    overflow-y: auto;            /* enable scroll */
    padding: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .navbar.active { display: flex; }

  .navbar ul { flex-direction: column; width: 100%; }
  .navbar ul li { width: 100%; margin: 0; }
  .navbar ul li a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
  }
  .navbar ul li a:hover { background: #f5f5f5; }

  .hamburger { display: block; font-size: 24px; cursor: pointer; }
}

