
.navbar {
  font-family: "Dosis", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  z-index: 999;
  background: transparent;
  transition: background-color 0.4s ease, padding 0.3s ease;
  box-sizing: border-box;
}
.navbar .logo img {
  height: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.nav-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ebf5fb;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links li a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar .nav-links li a:hover {
  color: rgba(229, 229, 229, 0.969);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 12px 8px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 10px;
    background: linear-gradient(135deg, #001a33, #003366);
  }
  .logo {
    flex: 1;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.97);
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    padding: 11px 0px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.13);
    line-height: 0;
  }

  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 6.5px 0;
  }
}
@media (max-width: 480px) {
  .navbar {
    padding: 14px 10px;
    background: linear-gradient(135deg, #001a33, #003366);
  }
  .nav-links {
    gap: 7px;
  }
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.8;
  background-color: #f8fafc;
  color: #1e293b;
  background-image: radial-gradient(rgba(0, 40, 85, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container-bangalore {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.header-bangalore {
  background: linear-gradient(135deg, #001a33, #003366);
  color: #fff;
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-bangalore::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="0" y="0"/><rect fill="rgba(255,255,255,0.03)" width="50" height="50" x="50" y="50"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.header-bangalore h1 {
  margin: 0 auto 25px;
  font-size: 3rem;
  font-weight: 800;
  max-width: 900px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-bangalore p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.divider-bangalore {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00bfff, #4dabf7);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}


.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin: 60px auto;
  padding: 0 20px;
  max-width: 1400px;
}

@media (max-width: 1024px) {
  .grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
  }

  .header-bangalore h1 {
    font-size: 2.5rem;
  }

  .header-bangalore p {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .grid-3x3 {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 20px;
  }

  .header-bangalore {
    padding: 60px 20px 40px;
    margin-top: 50px;
  }

  .header-bangalore h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .header-bangalore p {
    font-size: 1rem;
  }

  .card-delhi {
    padding: 25px 20px;
  }

  .card-delhi h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .card-delhi li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}


.card-delhi {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card-delhi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00bfff, #4dabf7);
  transition: all 0.3s ease;
}

.card-delhi:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-delhi:hover::before {
  height: 5px;
  background: linear-gradient(90deg, #4dabf7, #00bfff);
}

.card-delhi:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-delhi h2 {
  color: #002855;
  margin: 0 0 20px 0;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.card-delhi h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00bfff, #4dabf7);
  border-radius: 3px;
}

.card-delhi ul {
  list-style: none;
  padding-left: 0;
}

.card-delhi li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
  color: #475569;
  transition: all 0.3s ease;
}

.card-delhi li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #00bfff;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card-delhi li:hover {
  transform: translateX(5px);
}

.card-delhi li:hover::before {
  color: #0056b3;
}

.card-delhi li strong {
  color: #0056b3;
}



.footer {
  width: 100%;
  background: linear-gradient(90deg, #181e26 0%, #28374c 100%);
  color: #f4f6fb;
  padding-top: 3vw;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  position: relative;
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  padding: 0 2.5vw;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 180px;
  flex: 1;
  margin-bottom: 2rem;
}
.footer-col h4 {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 1.1em;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 7px;
}
.footer-col h4::after {
  content: "";
  display: block;
  width: 32px;
  height: 2.5px;
  background: #00b4d8;
  border-radius: 2px;
  margin-top: 3px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  display: flex;
  align-items: flex-start;
}
.footer-col ul li i {
  margin-right: 10px;
  font-size: clamp(1rem, 1.8vw, 1.1em);
  color: #00b4d8;
  margin-top: 2px;
}
.footer-col ul li a {
  color: #e3e8f3;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
}
.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: #00b4d8;
  text-decoration: underline;
  outline: none;
}
.footer-divider {
  border: none;
  height: 1px;
  background: #333;
  margin: 0;
  width: 88%;
}
.footer-bottom {
  text-align: center;
  padding: 1em 0 0.6em 0;
  font-size: clamp(0.8rem, 1.2vw, 0.98rem);
  color: #bbb;
  background: #151515;
  letter-spacing: 0.01em;
}


@media (max-width: 1200px) {
  .footer-container {
    max-width: 970px;
    padding-left: 3vw;
    padding-right: 3vw;
    gap: 2vw;
  }
}
@media (max-width: 900px) {
  .footer-container {
    max-width: 700px;
    padding-left: 4vw;
    padding-right: 4vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 2vw;
  }
  .footer-col {
    margin-bottom: 1rem;
    width: 100%;
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .footer-container {
    max-width: 100%;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .footer-col {
    margin-bottom: 1rem;
  }
  .footer-divider {
    width: 94%;
  }
}
@media (max-width: 600px) {
  .footer {
    padding-top: 20px;
  }
  .footer-container {
    padding: 0 1vw;
  }
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.7em;
  }
  .footer-col ul li,
  .footer-col ul li a {
    font-size: 0.85rem;
  }
  .footer-bottom {
    padding: 0.9em 0 0.5em 0;
    font-size: 0.81rem;
  }
}


.footer-col ul li a:hover i {
  color: #00b4d8;
}

@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }
  .footer-col {
    min-width: 190px;
    flex-basis: 46%;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 0;
    padding: 0 12px;
  }
  .footer-col {
    min-width: unset;
    width: 100%;
    margin-bottom: 24px;
  }
  .newsletter-form {
    max-width: 100%;
  }
  .footer-social {
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 0 4.5vw;
  }
  .footer-col h4 {
    font-size: 1rem;
  }
  .footer-bottom {
    font-size: 0.7rem;
  }
}
