body {
      margin: 0;
      padding: 0%;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
      /* font-family: 'Poppins', sans-serif; */
      /* background: #e6edf2; */
    }
 /* Navbar Container */
    nav {
       background: linear-gradient(135deg, #105380,#034047);
      /* box-shadow: 0 2px 4px rgba(0,0,0,0.2); */
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* Navbar Links */
    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links li {
      position: relative;
      border-left: 1px solid rgba(16, 3, 3, 0.3);
      border-right: 1px solid rgba(0, 0, 0, 0.2);
    }
    .nav-links li:first-child {
      border-left: none;
    }
    .nav-links li:last-child {
      border-right: none;
    }

    .nav-links a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 14px 22px;
      color: white;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .nav-links a:hover {
      background: rgba(255,255,255,0.2);
    }

    /* Arrow Icon */
    .nav-links .has-dropdown > a::after {
      content: "▼";
      font-size: 12px;
      margin-left: 4px;
    }

    /* Dropdown Menu */
    .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #4a90e2;
      min-width: 180px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      flex-direction: column;
      z-index: 1000;
    }

    .dropdown a {
      padding: 10px 16px;
      text-align: left;
      font-weight: normal;
    }

    .nav-links li:hover > .dropdown {
      display: flex;
    }

    /* Hamburger Button */
    .menu-toggle {
      display: none;
      font-size: 26px;
      color: white;
      background: none;
      border: none;
      cursor: pointer;
      margin: 10px;
    }

/* responsive nav-bar */
@media (max-width: 1111px) {
  .nav-links a {
    padding: 12px 16px;  /* थोड़ा छोटा padding ताकि items fit हो जाएं */
    font-size: 15px;
  }
}
@media (max-width: 945px) {
  .nav-links a {
    padding: 8px 12px;   /* और छोटा padding */
    font-size: 14px;     /* text छोटा */
  }
}
    
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
      }
      .nav-links li {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
      }
      .nav-links li:first-child {
        border-top: none;
      }
      .nav-links.active {
        display: flex;
      }
      .menu-toggle {
        display: block;
      }
      /* Mobile Dropdown */
      .dropdown {
        position: static;
        box-shadow: none;
      }
      .nav-links li:hover > .dropdown {
        display: none; /* disable hover */
      }
      .nav-links li.open > .dropdown {
        display: flex;
      }
    }



    /* header section */
 

   /* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap; /* Make header items wrap on smaller screens */
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
  max-width: 100%; /* Ensure logo scales on smaller screens */
}

.logo-text {
  font-size: 25px;
  font-weight: bold;
  color: #004080;
  font-family: 'Poppins', sans-serif;
}

.logo-text span {
  display: block;
  font-size: 14px;
  color: #333;
  font-style: italic;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap; /* Wrap buttons/icons on small screens */
}

.profile-btn {
  background: #00a0e3;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.profile-btn:hover {
  background: #007bbf;
}

.social-icons a {
  text-decoration: none;
  font-size: 27px;
  margin: 0 8px;
  color: #00a0e3;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #004080;
}



/* container page ki starting yha se h */

/* Container */
/* Container */
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Services Column */
.services {
  flex: 1 1 250px;
  background: #f7f9fc;
  padding: 35px 25px 25px 35px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
 position: sticky;
  top: 20px;   
  height: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Tablet aur Mobile ke liye */

@media (max-width: 992px) {
  .services {
    flex: 1 1 100%;
    position: relative;   
    top: auto;
    margin-bottom: 20px;  
  }
}

.services:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.services h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0d3c61;
  position: relative;
}

/* Decorative underline below Services heading */
.services h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #1a73e8;
  margin-top: 8px;
  border-radius: 2px;
}

/* Services list */
.services ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.services ul li {
  margin-bottom: 15px;
  position: relative;
}

/* Anchor styling */
.services ul li a {
  text-decoration: none;
  color: #034047;
  font-weight: 500;
  display: block;
  padding-left: 24px; /* space for arrow */
  position: relative;
  transition: all 0.3s ease;
}

/* Arrow always visible */
.services ul li a::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #1a73e8;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Hover effect */
.services ul li a:hover {
  color: #0b3d91; /* darker shade */
  font-weight: 650;
}

.services ul li a:hover::before {
  color: #0b3d91; /* arrow also darker */
}

/* ---------------- Responsive Breakpoints ---------------- */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .services {
    padding: 25px 20px;
  }

  .services h2 {
    font-size: 24px;
  }

  .services ul li a {
    font-size: 15px;
    padding-left: 22px;
  }

  .services ul li a::before {
    font-size: 14px;
  }
}

/* Mobiles (≤ 768px) */
@media (max-width: 768px) {
  .services {
    padding: 20px 18px;
  }

  .services h2 {
    font-size: 22px;
  }

  .services ul li a {
    font-size: 14px;
    padding-left: 20px;
  }

  .services ul li a::before {
    font-size: 13px;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .services {
    padding: 18px 15px;
    border-radius: 10px;
  }

  .services h2 {
    font-size: 20px;
  }

  .services ul li {
    margin-bottom: 12px;
  }

  .services ul li a {
    font-size: 13px;
    padding-left: 18px;
  }

  .services ul li a::before {
    font-size: 12px;
  }
}




/* About Us Column */
.about-section {
  flex: 2 1 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 300px;
}

.about h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0d3c61;
}

.about p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.about h3 {
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #034047;
}

.about ul {
  list-style: disc;
  margin-left: 20px;
  color: #333;
}

.about ul li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    gap: 30px;
  }

  .services {
    padding: 25px 20px;
  }

  .about-section {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .container {
    flex-direction: column;
  }

  .services, .about-section {
    flex: 1 1 100%;
  }

  .services ul li a::after {
    right: -15px;
  }

  .about h2 {
    font-size: 24px;
  }

  .about h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
    gap: 20px;
  }

  .services {
    padding: 20px 15px;
  }

  .services h2 {
    font-size: 22px;
  }

  .services ul li {
    margin-bottom: 10px;
  }

  .services ul li a::after {
    right: -12px;
  }

  .about h2 {
    font-size: 22px;
  }

  .about h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .services, .about-section {
    padding: 15px;
  }

  .services h2 {
    font-size: 20px;
  }

  .about h2 {
    font-size: 20px;
  }

  .about h3 {
    font-size: 16px;
  }

  .services ul li a::after {
    right: -10px;
  }
}


/* gallery wala part */
.container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;   /* images wrap ho jaye */
  gap: 20px;
  margin-top: 0px;
}

.img-box {
  flex: 1 1 200px;   /* responsive width */
  max-width: 220px;  /* maximum size */
  height: 140px;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay when zoom */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.overlay.active {
  display: flex;
}

.overlay .zoom-box {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: auto;
  max-height: 80vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.7);
  animation: zoomIn 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image will always fit fully */
.overlay .zoom-box img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.close-btn:hover {
  color: red;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0.5; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .img-box {
    flex: 1 1 180px;
    height: 130px;
  }
  .overlay .zoom-box {
    width: 85%;
    max-height: 75vh;
  }
}

@media (max-width: 768px) {
  .img-box {
    flex: 1 1 45%;
    height: 120px;
  }
  .overlay .zoom-box {
    width: 95%;
    max-height: 70vh;
  }
  .services {
  flex: 1 1 250px;
  background: #f7f9fc;
  padding: 35px 25px 25px 35px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}

@media (max-width: 480px) {
  .img-box {
    flex: 1 1 100%;
    height: 180px;
  }
  .overlay .zoom-box {
    width: 95%;
    max-height: 65vh;
  }
  .services {
  flex: 1 1 250px;
  background: #f7f9fc;
  padding: 35px 25px 25px 35px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}



















/* ===== FOOTER ===== */

 hr {
  width: 100px;
  height: 3px;
  background: #003366;;
  border: none;
  margin: 10px auto;
}

.branches {
  padding: 10px 20px;
  background: linear-gradient(135deg, #f4f8fb, #eef2f7);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.branches h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #003366;
  font-weight: 600;
  letter-spacing: 1px;
}

.branches-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.branch-card {
  background: linear-gradient(135deg, #ffffff, #f7f9fc);
  border-radius: 16px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
  border: 2px solid transparent;
   opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.branch-card.show {
  opacity: 1;
  transform: translateY(0);
}

.branch-card a{
  list-style-type: none;
  text-decoration: none;
}


.branch-card:hover {
  transform: translateY(-6px);
  border: 2px solid #105380;
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.branch-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #105380;
}

.branch-card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.5;
}

.branch-card span {
  display: block;
  font-weight: bold;
  color: #034047;
  font-size: 0.95rem;
}



/* foooter k niche wala part */

 footer {
       background: linear-gradient(135deg, #105380,#034047);
      /* box-shadow: 0 2px 4px rgba(0,0,0,0.2); */
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      color: #fff;
      padding: 20px 50px;
      position: relative;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 15px;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: 14px;
    }

    /* Social icons separate class */
    .footer-social {
      display: flex;
      gap: 15px;
       

    }

    .footer-social a {
      color: #fff;
      font-size: 22px;
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 15px;
      font-size: 14px;
    }

    /* Scroll to top button */
    #scrollTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #105380;
      color: #fff;
      border: none;
      border-radius: 50%;
      padding: 10px 14px;
      font-size: 18px;
      cursor: pointer;
      display: none;
    }

    /* Webmail Modal */
   .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px); /* thoda blur background */
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(135deg, #ffffff, #f3f7f9);
  padding: 30px 25px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  color: #333;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transform: scale(0.9);
  animation: popIn 0.3s ease-in-out forwards;
}

/* content animation */
@keyframes popIn {
  to { transform: scale(1); }
}

.modal-content h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #034047;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

.modal-content input:focus {
  border-color: #034047;
  box-shadow: 0 0 6px rgba(3,64,71,0.4);
}

.modal-content button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #034047, #105380);
  border: none;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content button:hover {
  background: linear-gradient(135deg, #105380, #034047);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #ff4d4d;
  transition: 0.3s;
}

.close-btn:hover {
  color: #b30000;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
  .footer-column {
    padding: 0 15px;
  }
  .footer-bottom-row {
    padding: 15px 15px;
  }
}

@media (max-width: 992px) {
  .footer {
    flex-direction: column;
  }
  .footer-column {
    border-right: none;
    padding: 10px 0;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .social-icons {
    margin-top: 10px;
  }
  
}

@media (max-width: 768px) {
  
  .header {
    justify-content: center;
  }
  .logo-text {
    text-align: center;
  }
  .header-right {
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }
  .logo img {
    height: 60px;
  }
  .profile-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  .social-icons a {
    font-size: 16px;
    width: 25px;
    height: 25px;
    line-height: 25px;
  }
  
}


