/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,60,114,0.85);
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.gallery-modal-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  background: #fff;
  padding: 8px;
}
.gallery-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.8rem;
  color: #ffd200;
  cursor: pointer;
  font-weight: bold;
  z-index: 2100;
  transition: color 0.2s;
}
.gallery-close:hover {
  color: #fff;
}
/* General */
* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
body {
  line-height: 1.7;
  background: #f6f7fb;
  color: #222;
}

/* Navbar */
header {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    padding: 10px 40px; /* Reduced top/bottom padding */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(30,60,114,0.08);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Navbar logo image styling */
.logo img {
  border-radius: 50%;
  height: 58px;
  width: auto;
  display: block;
  margin-left: 0px;
  margin-right: 0px;
}

.brand-name {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 1px 1px 6px #1e3c72;
  background: none;
}


.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 28px;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  transition: 0.3s;
  padding: 6px 12px;
  border-radius: 4px;
}
.nav-links a:hover {
  background: #fff;
  color: #2a5298;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */
/* Hero */
/* Hero */
.hero {
  background: linear-gradient(120deg, #e0e6f6 0%, #c9e7fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3c72;
  text-align: center;
  padding: 60px 20px 80px 20px; /* Reduced top padding */
  position: relative;
  min-height: 600px;
  margin-top: 70px; /* Add margin to prevent content from being hidden under header */
}
.hero-overlay {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-shadow: none;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #1e3c72;
  animation: fadeInDown 1s;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 24px;
  animation: fadeInUp 1s;
  color: #2a5298;
}
.hero-highlights {
  list-style: none;
  margin-bottom: 28px;
}
.hero-highlights li {
  font-size: 1.12rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e3c72;
}
.btn {
  background: linear-gradient(90deg, #2a5298 0%, #1e3c72 100%);
  padding: 12px 32px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff !important;
  font-weight: 700;
  font-size: 1.08rem;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 16px rgba(30,60,114,0.10);
  border: none;
}
.btn:hover {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(30,60,114,0.18);
  opacity: 0.92;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About */
/* About, Services, Gallery, Contact */
/* About, Services, Gallery, Contact */
.about, .services, .gallery, .contact {
  padding: 120px 20px 60px 20px;
  text-align: center;
  background: #f6f7fb;
}
.about h2, .services h2, .gallery h2, .contact h2 {
  font-size: 2.3rem;
  margin-bottom: 24px;
  color: #222;
  font-weight: 700;
  letter-spacing: 1px;
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.about-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(30,60,114,0.10);
  display: block;
  margin-bottom: 20px;
  max-width: 100%;
}
.about-list {
  list-style: disc inside;
  text-align: left;
  margin-top: 18px;
  color: #2a5298;
  font-size: 1.08rem;
}
.about-list li {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

/* Services */
/* Services */
/* Services */
/* Services */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 36px;
}
.card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(30,60,114,0.08);
  transition: 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  font-size: 1.08rem;
  min-height: 140px;
  text-align: left;
  border: 1px solid #e0e6f6;
}
.card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(30,60,114,0.10);
}
.card h3 {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  color: #1e3c72;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: #444;
  font-size: 1.05rem;
}
.card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 8px 40px rgba(30,60,114,0.14);
  border-color: #c9e7fa;
}

/* Gallery */
/* Gallery */
/* Gallery */
/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 18px;
}
.gallery-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(30,60,114,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.2s;
  text-align: left;
  border: 1px solid #e0e6f6;
}
.gallery-item img {
  width: 100%;
  max-width: 260px;
  border-radius: 12px;
  margin-bottom: 10px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(30,60,114,0.10);
}
.gallery-item span {
  font-size: 1.08rem;
  color: #1e3c72;
  font-weight: 600;
  margin-bottom: 6px;
}
.gallery-item p {
  color: #444;
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(30,60,114,0.14);
  border-color: #c9e7fa;
}
.gallery-desc {
  color: #2a5298;
  font-size: 1.12rem;
  margin-top: 14px;
}

/* Contact */
/* Contact */
/* Contact */
.contact-flex {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 36px;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(30,60,114,0.08);
  padding: 36px 28px;
  min-width: 320px;
  max-width: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #e0e6f6;
}
.contact-card h3 {
  font-size: 1.35rem;
  color: #2a5298;
  margin-bottom: 8px;
}
.contact-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 1.08rem;
  color: #222;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 2px;
}
.contact-form {
  max-width: 420px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(30,60,114,0.08);
  padding: 36px 28px;
  border: 1px solid #e0e6f6;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #bfcbe6;
  border-radius: 7px;
  font-size: 1.08rem;
  background: #f6f7fb;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #2a5298;
  background: #fff;
}
.contact-form button {
  padding: 12px;
  background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
  color: #222;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-weight: 700;
}
.contact-form button:hover {
  background: linear-gradient(90deg, #ffd200 0%, #f7971e 100%);
  color: #1e3c72;
}

/* Footer */
/* Footer */
footer {
  background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  text-align: center;
  padding: 22px;
  font-size: 1.08rem;
  letter-spacing: 1px;
}

/* Responsive */
@media(max-width: 1100px) {
  .about-flex { flex-direction: column; gap: 24px; }
  .about-img { width: 120px; height: 120px; max-width: 100%; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-flex { flex-direction: column; gap: 24px; align-items: center; }
  .contact-card, .contact-form { max-width: 100%; }
}

@media(max-width: 768px) {
  .logo {
    font-size: 1.1rem;
    white-space: nowrap;
    max-width: 90vw;
    overflow-x: auto;
  }
  .nav-links { display: none; flex-direction: column; background: #2a5298; position: absolute; top: 60px; right: 0; width: 220px; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero {
    padding-top: 80px; /* Reduced for mobile too */
  }
  .hero h1 { font-size: 2rem; }
  .about-flex { flex-direction: column; gap: 14px; }
  .about-img { width: 100px; height: 100px; max-width: 100%; }
  .service-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
