/* ------------------- Reset ------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {   font-family: 'Nunito';
    /* padding-top: 70px; */
    letter-spacing: 2px;
    color: #1c1c1c;
   background: linear-gradient(135deg, #ffe0e0, #ffffff);  }

/* ------------------- 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; 
}


/* ---------------- 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;}





 /* background: linear-gradient(135deg, #ffe0e0, #ffffff); */

@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; }

  /* Text resize */
  .page-intro h1 { font-size:24px; }
  .text p, .text2 p { padding:0 20px; }

  /* Social icons bottom on mobile */
  /* .social-icons { 
    top: auto; bottom: 10%; 
    flex-direction: row; 
    left: 50%; transform: translateX(-50%); 
  } */

  /* Custom scrollbar (optional) */
  .navbar::-webkit-scrollbar { width: 6px; }
  .navbar::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
}


    /* Contact Form */
    .contact-section {
      max-width: 750px;
      margin: 60px auto;
      background: #fff;
      padding: 40px 35px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      animation: fadeIn 1s ease-in-out;
    }
    .contact-section h2 {
      text-align: center;
      margin-bottom: 25px;
      font-size: 32px;
      font-weight: bold;
      background: linear-gradient(45deg, #ff3c78, #ff8c42);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .form-group {
      margin-bottom: 18px;
      position: relative;
    }
    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #444;
    }
    .form-group input, 
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      border: 2px solid #eee;
      border-radius: 12px;
      font-size: 16px;
      outline: none;
      transition: all 0.3s ease;
      background: #fafafa;
    }
    .form-group input:focus, 
    .form-group textarea:focus {
      border-color: #ff3c78;
      background: #fff;
      box-shadow: 0 0 8px rgba(255,60,120,0.3);
    }
    .form-group textarea {
      resize: none;
      height: 130px;
    }
    .error {
      color: #e13366;
      font-size: 14px;
      margin-top: 5px;
    }

    .btn-submit {
      display: inline-block;
      width: 100%;
      background: linear-gradient(45deg, #ff3c78, #ff8c42);
      color: #fff;
      padding: 14px;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.3s;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255,60,120,0.4);
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* Success Popup Modal */
    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 2000;
    }
    .modal.active {
      visibility: visible;
      opacity: 1;
    }
    .modal-content {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      max-width: 400px;
      animation: scaleUp 0.4s ease;
    }
    .modal-content h3 {
      color: #ff3c78;
      margin-bottom: 10px;
    }
    .modal-content p {
      font-size: 16px;
      margin-bottom: 20px;
    }
    .modal-content button {
      background: linear-gradient(45deg, #ff3c78, #ff8c42);
      color: #fff;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }
    .modal-content button:hover {
      opacity: 0.9;
    }

    @keyframes scaleUp {
      from {transform: scale(0.8); opacity: 0;}
      to {transform: scale(1); opacity: 1;}
    }