/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f7f9fb;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

h1, h2, h3, h4 {
  line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; }

p { margin-bottom: 15px; }

/* =========================
   HEADER
========================= */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 18px;
  color: #a43c97;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #a43c97;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */
.hero {
  color: #fff;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(
    rgba(164,60,151,0.85),
    rgba(56,156,164,0.85)
  );
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-text {
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #a43c97;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #389ca4;
  color: #fff;
}

.cta-text {
  margin-top: 20px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* =========================
   QUICK STRIP
========================= */
.quick-strip {
  background: #cbdcea;
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
}

/* =========================
   SECTIONS
========================= */
section {
  padding: 70px 0;
}

.about {
  background: #fff;
}

.mission-vision {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.mission-vision div {
  background: #f7f9fb;
  padding: 20px;
  border-radius: 10px;
}

/* =========================
   SPLIT SECTION
========================= */
.split {
  background: #f1f6f9;
}

.split-inner {
  display: flex;
  justify-content: space-around;
  gap: 40px;
}

.split ul {
  margin-top: 10px;
}

.split li {
  margin-bottom: 10px;
}

/* =========================
   SERVICES
========================= */
.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card h4 {
  margin-bottom: 10px;
  color: #a43c97;
}

/* =========================
   CONTACT
========================= */
.contact {
  background: #cbdcea;
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #222;
  color: #fff;
  padding-top: 30px;
}


.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 5%;
    width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .split-inner,
  .contact-inner,
  .mission-vision {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

.contact-info {
  max-width: 400px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  font-size: 1rem;
}

.contact-item i {
  color: #389ca4;
  font-size: 18px;
  width: 25px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #a43c97;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}
.card:hover h4 {
  color: #389ca4;
}
/* =========================
   CONTACT - PREMIUM STYLE
========================= */
.contact {
  background: linear-gradient(135deg, #cbdcea, #eaf4fb);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
}

.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
  justify-content: space-between;
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD STYLE */
.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
  text-align: left;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON STYLE */
.contact-card i {
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #a43c97, #389ca4);
  padding: 12px;
  border-radius: 50%;
  min-width: 45px;
  text-align: center;
}

/* TEXT */
.contact-card h4 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.contact-card a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.contact-card a:hover {
  color: #a43c97;
}

/* MAP */
.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
.contact-card:nth-child(2) {
  border-left: 4px solid #25D366;
}
.contact-card:active {
  transform: scale(0.98);
}
.contact-card div {
  line-height: 1.4;
}
.contact-map iframe {
  filter: grayscale(20%) contrast(95%);
}

section {
  padding: 70px 0;
}