/* ----------------------------------------------------
       RESET & BASE STYLES
       ---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



html {
  scroll-behavior: smooth;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2b2b2b;
  background-color: #f8f9fa;
}

body {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------------------------------
       NAVIGATION BAR & LOGO
       ---------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand-logo {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
  background: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #5635ba;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  text-transform: uppercase;
}

.nav-links a {
  color: #c982d2;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
  color: #c084fc;
}

/* ----------------------------------------------------
       SECTION STYLES & DIVIDERS
       ---------------------------------------------------- */
.page-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  position: relative;
}

.section-divider {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7e22ce, #c084fc, #7e22ce);
  border: none;
}

/* ----------------------------------------------------
       HERO / HOME SECTION
       ---------------------------------------------------- */
#home {
  background:
    linear-gradient(rgba(214, 162, 204, 0.48), rgba(238, 240, 243, 0.2)),
    url("https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?auto=format&fit=crop&q=80&w=3840")
      center/cover no-repeat fixed;
  color: #1e17d6;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  padding: 2rem;
}

.brand-hero-title,
.section-title {
   font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  background: linear-gradient(135deg, #7c55a0 0%, #620ebc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.brand-hero-title {
  font-size: 3.8rem;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.hero-subtitle-heading {
  font-size: 1.5rem;
  color: #1c6ebf;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #270948;
  margin-bottom: 2.5rem;
}

.mission-box {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #c084fc;
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(8px);
  text-align: left;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mission-box h3 {
  font-size: 1.25rem;
  color: #1e0fbe;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.mission-box p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #05213d;
}

/* ----------------------------------------------------
       ABOUT US SECTION
       ---------------------------------------------------- */
#about {
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  color: #1e293b;
}

.container {
  max-width: 1200px;
  width: 100%;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-desc {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f3e8ff;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(168, 85, 247, 0.25);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.06);
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card h4 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #7e22ce;
  font-weight: 700;
}

.card p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ----------------------------------------------------
       SERVICES SECTION
       ---------------------------------------------------- */
#services {
  background-color: #ffffff;
  color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3e8ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: #c084fc;
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(126, 34, 206, 0.15);
}

.service-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-body h4 {
  font-size: 1.3rem;
  color: #7e22ce;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.service-body p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* ----------------------------------------------------
       CONTACT US SECTION
       ---------------------------------------------------- */
#contact {
  background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
  color: #1e293b;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #f3e8ff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.info-item h4 {
  color: #7e22ce;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.info-item p,
.info-item a {
  color: #475569;
  font-size: 1rem;
}

.info-item a:hover {
  color: #a855f7;
  text-decoration: underline;
}

form {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #f3e8ff;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.btn-submit {
  background: linear-gradient(135deg, #7e22ce 0%, #a855f7 100%);
  color: #ffffff;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.3);
}

.btn-submit:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* ----------------------------------------------------
       STICKY CALL BUTTON
       ---------------------------------------------------- */
.sticky-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #7e22ce 0%, #a855f7 100%);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(126, 34, 206, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  animation: softPulse 3s infinite;
}

.sticky-call-btn:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 12px 30px rgba(126, 34, 206, 0.55);
  background: linear-gradient(135deg, #6b21a8 0%, #9333ea 100%);
  color: #ffffff;
}

.sticky-call-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(126, 34, 206, 0.4);
  }
  50% {
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.7);
  }
}

/* ----------------------------------------------------
       RESPONSIVE & MOBILE HAMBURGER MENU
       ---------------------------------------------------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e3d7e2;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease-in-out,
      visibility 0.4s;
    visibility: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    max-height: 350px;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover {
    background-color: rgba(192, 132, 252, 0.1);
  }

  .brand-hero-title {
    font-size: 2.4rem;
  }
  .hero-subtitle-heading {
    font-size: 1.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }

  .sticky-call-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.95rem;
  }
}
