:root {
  --bg: #fff;
  --card: #f9fbfd;
  --primary: #2270db;
  --accent: #39e2eb;
  --text: #222;
  --muted: #555;
  --shadow: 0 10px 30px rgba(0,0,0,.11);
  --glow: #00c6fb;
  --hover: #163b5b;
  --glow-alt: #f5b942;
}

/* General reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--text);
}

.container {
  width: min(1100px, 92%);
  margin: auto;
}

/* Navbar Styles */
.navbar {
  width: 100%;
  height: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  position: relative;
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-right a {
  color: #2270db;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
  padding: 2px 0;
}
.nav-right a:hover,
.nav-right a:focus {
  color: #39e2eb;
  text-shadow: 0 0 8px #39e2eb33;
}

/* Hero Section Styles */
.hero-section {
  width: 100vw;
  min-height: 700px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100vw;
  min-height: 700px;
  height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background: url(images/heroimage.png) right center / cover no-repeat;
  opacity: 0;
  animation: heroBgInRight 1.2s cubic-bezier(.7,0,.32,1) .1s both;
}

.hero-overlay-pane {
  flex: 0 0 58%;
  height: 100%;
  background: linear-gradient(108deg, rgba(70,58,160,0.88) 85%, rgba(47,128,237,0.09) 120%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px #2222;
  opacity: 0;
  animation: fadeInLeft 1s cubic-bezier(.7,0,.32,1) both;
  background-blend-mode: lighten;
  padding-top: 40px;
}

/* Logo Styles */
.hero-logo {
  position: relative;
  margin-left: 5vw;
  margin-bottom: 30px;
  z-index: 3;
  animation: fadeInUp 1s ease .3s both;
}

.hero-logo img {
  width: 400px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  margin-left: 5vw;
  z-index: 3;
  max-width: 560px;
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(.7,0,.32,1) .5s both;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #0ce1f0;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 3px 12px #0003;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.hero-desc {
  font-size: 0.88rem;
  color: #2a267a;
  font-weight: 400;
  margin-bottom: 36px;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.18rem;
  font-weight: 600;
  color: #fff;
  background: #2270db;
  border: none;
  border-radius: 7px;
  box-shadow: 0 8px 32px rgba(17,19,26,0.10);
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  cursor: pointer;
}

.hero-btn:hover {
  background: #39e2eb;
  color: #212529;
  transform: translateY(-2px);
}

.hero-container::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 72%, #eee 100%);
  z-index: 2;
}

/* Keyframes */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px);}
  to { opacity: 1; transform: translateX(0);}
}

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

@keyframes heroBgInRight {
  from { opacity: 0; transform: translateX(80px);}
  to   { opacity: 1; transform: translateX(0);}
}




/* Vision & Mission Section */
.vision-mission-modern {
  background: #fff;
  padding: 70px 0 40px 0;
}

.vision-mission-header {
  text-align: center;
  margin-bottom: 32px;
}

.vision-mission-header h2 {
  color: #2270db;
  font-size: 2.29rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.vision-mission-header p {
  color: #727a8d;
  font-size: 1.17rem;
  margin: 0;
}

.vision-mission-grid {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  max-width: 880px;
  margin: 0 auto;
}

.vision-mission-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(36,65,164,0.11);
  padding: 38px 32px 28px 32px;
  min-width: 260px;
  max-width: 395px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.32s, transform 0.32s;
}

.vision-mission-card:hover {
  box-shadow: 0 10px 30px 0 rgba(36,65,164,0.18);
  transform: translateY(-8px) scale(1.03);
}

.vm-icon {
  background: #e9f6fd;
  color: #39e2eb;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px #ceecfb30;
  transition: background 0.32s, color 0.2s;
}

.mission-card .vm-icon { color: #2270db; background: #dfeffd; }
.vision-card .vm-icon { color: #2270db; background: #dfeffd; }

.vision-mission-card h3 {
  color: #2270db;
  font-size: 1.35em;
  font-weight: 700;
  margin-bottom: 11px;
  margin-top: 0;
  letter-spacing: 0.01em;
}

.vision-mission-card p {
  color: #4a5568;
  font-size: 1.06em;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

@media (max-width: 900px) {
  .vision-mission-grid {
    flex-direction: column;
    gap: 26px;
    max-width: 98vw;
  }
  .vision-mission-card {
    max-width: 96vw;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  background: #fff;
  color: #212529;
  padding: 80px 0;
}
.section-title, .section-header h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: #2270db;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}
.section-subtitle, .section-header p {
  text-align: center;
  color: #555;
  font-size: 1.15em;
  margin-top: 0;
  margin-bottom: 38px;
  font-weight: 400;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.feature-item {
  background: #f9fbfd;
  color: #2270db;
  border-radius: 13px;
  box-shadow: 0 5px 15px #39e2eb05;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  padding: 38px 22px 28px 22px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-item h3 { color: #2270db; font-size: 1.25em; font-weight: 700; margin-bottom: 12px; margin-top: 8px;}
.feature-item i { font-size: 2.5em; margin-bottom: 20px; color: #39e2eb; display: block;}
.feature-item p { color: #555; font-size: 1em; margin-top: 0; margin-bottom: 0;}
.feature-item:hover { transform: translateY(-9px); box-shadow: 0 13px 35px #39e2eb17;}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; gap: 22px;}
  .feature-item { padding: 30px 14px 22px 14px;}
  .section-title { font-size: 1.6em;}
}

/* services Section */
.services-modern-section {
  background: #fff;
  padding: 90px 6%; /* Increased padding on sides */
}

.services-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-section-badge {
  display: inline-block;
  background: #ffeadb;
  color: #666;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px 16px;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.services-section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin: 0 0 12px 0;
  letter-spacing: 0.025em;
}

.services-section-header p {
  font-size: 1.23rem;
  color: #426187;
  margin: 0 0 6px 0;
}

/* Grid: 3 cards per row desktop, 2 tablet, 1 mobile */
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* slightly more spacing */
  justify-content: center;
  padding: 0 2%; /* added side spacing to prevent touching edges */
  max-width: 1300px;
  margin: 0 auto; /* centers the grid */
}

.service-modern-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(36,65,164,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.32s;
  cursor: pointer;
  min-width: 0;
  height: 100%; /* Ensures consistent card height */
}

.service-modern-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 20px 54px 0 rgba(36,65,164,0.16);
}

.service-card-img {
  width: 100%;
  height: 220px; /* Increased card image height */
  overflow: hidden;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  transition: transform 0.26s;
}

.service-modern-card:hover .service-card-img img {
  transform: scale(1.07) rotate(-1.6deg);
}

.service-card-info {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 25px 24px 25px; /* Increased padding inside */
  background: #fff;
  flex-grow: 1;
}

.service-card-icon {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f5f8ff;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: #2270db;
  box-shadow: 0 2px 8px #dfedfd44;
  transition: background 0.25s, color 0.22s;
}

.service-modern-card:hover .service-card-icon {
  background: #39e2eb11;
  color: #39e2eb;
}

.service-card-info h3 {
  margin: 0 0 8px 0;
  color: #222b44;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: color 0.25s;
}

.service-modern-card:hover .service-card-info h3 {
  color: #2270db;
}

.service-card-info p {
  color: #626879;
  font-size: 1em;
  margin: 0;
  line-height: 1.55;
}

/* Tablet: 2 per row */
@media (max-width: 1100px) {
  .services-modern-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 4%;
  }
  .service-card-img { height: 190px; }
}

/* Mobile: 1 per row */
@media (max-width: 650px) {
  .services-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 5%;
  }
  .service-card-img { height: 170px; }
  .services-section-header h2 { font-size: 2.2rem; }
}




/* Cities Section */
.cities-section {
  background: #fff;
  padding: 70px 0 54px 0;
}
.cities-section .section-header { text-align: center; margin-bottom: 38px;}
.cities-section .section-header h2 { font-size: 40px; color: #2270db; letter-spacing: 1px; font-weight: 600; margin-bottom: 0;}
.cities-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
}
.city-item {
  display: flex; flex-direction: column; align-items: center; width: 160px;
}
.city-icon {
  background: #e3e9f5;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px 0 rgba(33,45,113,0.08);
  margin-bottom: 18px;
  border: 2px solid #2270db33;
}
.city-icon img {
  width: 94px; height: 94px; object-fit: contain;
}
.city-label {
  color: #2270db;
  font-size: 21px;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-align: center;
}
@media (max-width: 900px) {
  .cities-grid { gap: 28px; }
  .city-item { width: 120px; }
  .city-icon { width: 72px; height: 72px;}
  .city-icon img { width: 56px; height: 56px;}
  .city-label { font-size: 16px;}
}

/* Contact Section */
.contact-section {
  padding: 80px 6%;
  background: #f9fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Centered Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 650px;
}

.contact-badge {
  display: inline-block;
  background: #eaf1ff;
  color: #1e5eff;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.contact-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1rem;
  color: #4f4f4f;
  line-height: 1.6;
}

/* Contact Container (Left & Right) */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* ensures both sides equal height */
  max-width: 1100px;
  width: 100%;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Info */
.contact-info {
  flex: 1 1 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #eaf1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e5eff;
  font-size: 1.3rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2px;
}

.contact-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Right Form */
.contact-form {
  flex: 1 1 48%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%; /* keeps equal height */
}

.form-group {
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1e5eff;
  box-shadow: 0 0 0 3px rgba(30,94,255,0.15);
}

.btn-submit {
  width: 100%;
  padding: 13px 0;
  background: #1e5eff;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background: #0050ff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
    width: 100%;
  }

  .contact-form {
    padding: 28px 24px;
  }
}

@media (max-width: 600px) {
  .contact-header h2 {
    font-size: 2rem;
  }

  .btn-submit {
    font-size: 0.95rem;
  }
}

/* FOOTER */
.fusion-footer {
  background: #000;
  color: #2270db;
  padding: 60px 6vw 0 6vw;
  font-size: 1.05em;
  letter-spacing: 0.4px;
  border-top: 1.5px solid #e3e9f5;
}
.fusion-footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1.1fr 1.3fr 1.3fr;
  gap: 44px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
 .fusion-logo {
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 3px 16px #2270db14;
}

.fusion-footer-links, .fusion-footer-contact, .fusion-footer-map {
  background: none;
  color: #2270db;
}
.fusion-footer-links h4, .fusion-footer-contact h4, .fusion-footer-map h4 {
  color: #2270db;
  font-weight: 700;
  font-size: 1.13em;
  margin-bottom: 9px;
}
.fusion-footer-links ul, .fusion-footer-contact ul {
  list-style: none; padding: 0; margin: 0;
}
.fusion-footer-links li, .fusion-footer-contact li {
  margin-bottom: 10px; color: #555;
}
.fusion-footer-links a {
  color: #39e2eb;
  text-decoration: none;
  transition: color .19s;
}
.fusion-footer-links a:hover {
  color: #2270db;
  text-decoration: underline;
}
.fusion-footer-contact i {
  color: #2270db;
  margin-right: 7px;
}
.fusion-footer-social {
  margin-top: 12px;
}
.fusion-footer-social a {
  color: #2270db;
  font-size: 1.25em;
  margin-right: 13px;
  transition: color .19s;
}
.fusion-footer-social a:hover {
  color: #39e2eb;
}
.fusion-footer-map h4 {
  margin-bottom: 10px;
}
.fusion-footer-map iframe {
  width: 100%;
  height: 120px;
  border-radius: 9px;
  border: 2px solid #e3e9f5;
  box-shadow: 0 3px 11px #d3e8f6;
  background: #fff;
  margin-top: 8px;
}
.fusion-footer-base {
  background: #000;
  color: #888;
  border-top: 1px solid #0a0a0b;
  text-align: center;
  font-size: .99em;
  padding: 14px 0 9px 0;
  margin-top: 30px;
}
@media (max-width: 1050px) {
  .fusion-footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 26px;
  }
}
@media (max-width: 750px) {
  .fusion-footer-main {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 0;
  }
  .fusion-footer {
    padding: 40px 2vw 0 2vw;
  }
  .fusion-footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .fusion-footer-map iframe {
    height: 160px;
  }
}


/* Smooth Fade Animation for Sections */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky Navbar on Scroll */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Navbar Scroll Effect */
body {
  scroll-behavior: smooth;
}



/* End of CSS */