/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

/* Navbar */
.navbar {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  padding: 18px 80px;
  background: transparent; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo {
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: #263073;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li{
  list-style: none;
}

.nav-links ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
  padding-bottom: 4px;
}

.nav-links a:hover{
  color: #263073;
}

.nav-links a.active {
  color: #0077cc;
}

/* Appointment Button */
.btn-appointment {
  background-color: #263073;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-appointment:hover {
  background-color: #0077cc;
}

/* Hero Section */
.about-hero {
  height: 60vh;
  background: url('../image/XYG53goblM-62cec3a2db20a.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6%;
  text-align: center;
  color: #fff;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.1rem;
}

/*map*/
.map-heading{
  text-align: center;
}
.mapouter{
  width:100%;
  height:400px;
  margin-bottom: 0px;
}

.gmap_canvas {
  overflow:hidden;
  background:none!important;
  width:100%;
  height:400px;
}

.gmap_iframe {
  height:400px!important;
  width:100%;
}

/* ===== CONTACT SECTION ===== */
.contact-us {
  background-color: #f8f8f8;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-left,
.contact-right {
  padding: 60px 50px;
}

.contact-left h2,
.contact-right h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-left p,
.contact-right p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* CONTACT INFO */
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #fff5e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1f3b;
  font-size: 1.5rem;
  margin-right: 20px;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #000;
}

.contact-text p {
  color: #666;
  margin: 0;
}

.contact-text a {
  color: #333;
  text-decoration: none;
}

.contact-text a:hover {
  color: #1b1f3b;
}

.contact-us hr{
  display: none;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn i {
  font-size: 1.2rem;
}

.cta-btn.email {
  background-color: #333;
  color: #fff;
}

.cta-btn.email:hover {
  background-color: #444;
}

.cta-btn.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.cta-btn.whatsapp:hover {
  background-color: #1ba851;
}

.cta-btn.review {
  padding-left: 0;
  color: #fff;
}

/* BEFORE FOOTER SECTION */
.before-footer-section {
  position: relative;
  height: 50vh;
  background-image: url("../image/passport-with-stamps.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* optional overlay for contrast */
.before-footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* CONTENT */
.before-footer-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-in-out;
}

.before-footer-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.before-footer-content p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #ddd;
  line-height: 1.7;
}

.divider {
  width: 60px !important;
  height: 4px;
  background-color: #263073;
  margin: 0 auto 25px auto;
}

/* === BUTTON === */
.before-footer-btn {
  background-color: #263073;
  color: #fff;
  padding: 14px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.before-footer-btn:hover {
  background-color: #5e9eff;
  transform: translateY(-3px);
}

/* footer */
.footer {
  background-color: #0a1932;
  color: #fff;
  text-align: center;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.footer h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-text {
  max-width: 700px;
  margin: 20px auto 40px;
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.footer-socials a {
  color: #fff;
  font-size: 22px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #0077cc;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 14px;
  color: #aaaaaa;
}

@media (max-width: 992px) and (min-width: 400px) {
  .navbar {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .btn-appointment {
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 25px 0;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
    color: #fff;
  }

  .menu-icon {
    display: block;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
  }

  .btn-appointment {
    display: none;
  }

  .about-hero {
    height: 70vh;
    background-position: center top;
  }

  .hero-conent h1 {
    font-size: 2.2rem;
    padding: 0 20px;
    line-height: 1.3;
  }

  .contact-grid {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    align-items: center;
  }

  .contact-us{
    padding: 75px 0;
  }

  .contact-left,
  .contact-right {
    padding: 40px 30px;
    text-align: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .icon-circle {
    margin: 0 0 15px 0;
  }

  .contact-us hr{
    display: block;
    width: 90%;
    text-align: center !important;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .cta-btn. {
    justify-content: center;
  }

  .cta-btn.review{
    padding: 20px 14px;
  }

  .before-footer-content h1 {
    font-size: 2rem;
  }

  .before-footer-content p {
    font-size: 1rem;
  }

  .before-footer-btn {
    padding: 12px 28px;
  }

  .footer-container {
    text-align: center;
  }
  .footer-subscribe form {
    flex-direction: column;
  }
  .footer-subscribe input,
  .footer-subscribe button {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .footer-socials {
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .contact-info {
    margin: 1rem;
    border-radius: 15px;
    grid-template-columns: 1fr;
  }

  .info-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .info-box:last-child {
    border-bottom: none;
  }
}


/* Responsive */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 900px){
  .logo{
    font-size: 15px;
  }

  .nav-links {
    height: 80 vh;
    width: 100%;
    position: fixed;
    top: 70px;
    right: -100%;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 30px;
    transition: 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: #333;
  }

  .menu-icon {
    display: block;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 300px;
  }

  .about-stats {
    justify-content: center;
  }

  .list-cta { 
    align-items: center; 
  }
  .checklist { 
    text-align: left; 
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  
  

  
}

