body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right top, #fdfbfb, #ebedee);
  color: #20303C;
  overflow-x: hidden;
}

.blurred-bg{
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}
.blurred-bg { top: 50px; left: -150px; background: radial-gradient(circle, #116DFF 0%, transparent 70%); }
/* .blurred-bg2 { bottom: 0; top: 750px; background: radial-gradient(circle, #0000EE 0%, transparent 90%); } */


.navbar {
  position: fixed;
  top: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  z-index: 99;
  flex-wrap: wrap;
}
.navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: #116DFF;
  animation: pulse 3s infinite;
}


.navbar nav a {
  margin-left: 20px;
  color: #20303C;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s;
}
.navbar nav a:hover { color: #116DFF; }

.about-hero {
  display: flex;
  flex-wrap: wrap;
  padding: 140px 40px 60px;
  gap: 50px;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.about-left {
  flex: 1 1 480px;
  position: relative;
}
.about-imgs {
  display: flex;
  gap: 20px;
  position: relative;
}
.about-imgs .img-1, .about-imgs .img-2 {
  width: 230px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-imgs .img-2 {
  position: absolute;
  left: 160px;
  top: 60px;
}

.about-right {
  flex: 1 1 480px;
  padding: 30px;
  border-radius: 16px;
}
.about-right.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.about-right h5 {
  color: #116DFF;
  font-size: 16px;
  margin-bottom: 10px;
}
.about-right h1 {
  font-size: 34px;
  color: #0d1a26;
}
.about-right p {
  margin-top: 15px;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.about-links {
  display: flex;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}
.about-box {
  border: 1px solid #116DFF;
  padding: 15px 20px;
  border-radius: 8px;
  color: #116DFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.about-box i {
  margin-right: 10px;
}
.about-box:hover {
  background: #116DFF;
  color: #fff;
}

.about-main-btn {
  background: #116DFF;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}
.about-main-btn i {
  margin-left: 10px;
}
.about-main-btn:hover {
  background: #004ecc;
}






.counters {
  margin: 60px 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.counters div {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 16px;
  padding: 30px 20px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}
.counters div:hover {
  transform: scale(1.05);
}
.counters .icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: #116DFF;
}
.counters h2 {
  font-size: 32px;
  margin: 0;
  color: #116DFF;
}
.counters p {
  font-size: 16px;
  margin: 0;
}




.location {
  padding: 50px 20px;
  text-align: center;
  background: #eef4f9;
}

.map-container {
  max-width: 100%;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}







.site-footer {
  background: #1a1a2e;
  color: #f1f1f1;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  max-width: 100%;
  margin: auto;
}

.footer-about, .footer-links, .footer-social {
  flex: 1;
  text-align: center;
}

.footer-about h3 {
  font-size: 24px;
  color: #00aaff;
  margin-bottom: 15px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 14px;
  color: #ccc;
}

.footer-links h4, .footer-social h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #00aaff;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}
.footer-social .social-icons a {
  color: #ffffff;
  font-size: 25px;
  transition: 0.3s;
}
.footer-social .social-icons a:hover {
  color: #00aaff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}
.footer-bottom a {
  color: #00aaff;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}


