/* =========================
   GLOBAL RESET & BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

/* =========================
   COMMON FULL PAGE SECTION
========================= */

.page {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  scroll-snap-align: start;
  box-sizing: border-box;
}

/* =========================
   SECTION 1 – HERO (CENTER)
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero h1,
.hero p,
.hero-btn {
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2vh;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #111;
  background-color: #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #f2f2f2;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #0f172a);
  z-index: 3;
  pointer-events: none;
}

/* =========================
   SECTION 2 – SPLIT LAYOUT
========================= */

.split {
  background-color: #0f172a;
}

.split .left,
.split .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
}

.split .left {
  overflow: hidden;
}

.split .left img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.563);
  overflow: hidden;
}

.split .right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 4rem;
  position: relative;
}

.split .right h1 {
  text-align: left;
  color: #ffffff;
  font-weight: 700;
  font-size: 3rem;
  padding-bottom: 2rem;
  line-height: 1.1;
}

.split .right p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.split .right .abtus {
  display: inline-block;
  text-decoration: none;
  position: relative;
  margin-top: 20px;
  padding: 12px 35px;
  border-radius: 50px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: none;
}

.split .right .abtus:hover {
  background-color: #ffffff;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* =========================
   SECTION 4 – CTA
========================= */

.cta {
  background: #8b5cf6;
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta button {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background: white;
  color: #8b5cf6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
   PRICING PAGE STYLES
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

.pricing-section {
  width: 100%;
  padding: 4rem 1.5rem;
  background-color: #f8fafc;
  font-family: 'Poppins', sans-serif;
  color: #334155;
  position: relative;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.price-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.price-area {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 2px;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: #64748b;
  margin-left: 5px;
}

.plan-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #475569;
}

.feature-list li.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.icon {
  margin-right: 10px;
  font-weight: bold;
}

.icon.check {
  color: #10b981;
}

.icon.cross {
  color: #cbd5e1;
}

.card-action {
  margin-top: auto;
}

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #0f172a;
  background: transparent;
  color: #0f172a;
}

.btn-plan:hover {
  background: #0f172a;
  color: white;
}

/* =========================
   POPULAR CARD STYLING
========================= */

.price-card.popular {
  border: 2px solid #2266c5;
  transform: scale(1.05);
  z-index: 2;
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2266c5;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(34, 102, 197, 0.3);
}

.btn-primary-glow {
  background: #2266c5;
  color: white;
  border-color: #2266c5;
  box-shadow: 0 4px 14px rgba(34, 102, 197, 0.4);
}

.btn-primary-glow:hover {
  background: #1a4e9e;
  box-shadow: 0 6px 20px rgba(34, 102, 197, 0.6);
  transform: translateY(-2px);
}

/* =========================
   CUSTOMER REVIEWS STYLING
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.reviews-section {
  padding: 5rem 1.5rem;
  background-color: #f9fafb;
  font-family: 'Poppins', sans-serif;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.reviews-header .section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #d1d5db;
}

.card-top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #f3f4f6;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.customer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.service-tag {
  font-size: 0.85rem;
  color: #2266c5;
  font-weight: 500;
  margin-top: 2px;
}

.star-rating {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  transition: text-shadow 0.3s ease;
}

.review-card:hover .star-rating {
  text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  font-style: italic;
}

/* =========================
   RESPONSIVENESS
========================= */

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-header .section-title {
    font-size: 1.8rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .review-card {
    padding: 1.5rem;
  }
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card.popular {
    transform: scale(1);
  }

  .price-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .pricing-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-card.popular {
    order: -1;
    margin-top: 15px;
  }
}

/* =========================
   VARIABLES & SEARCH SECTION
========================= */

:root {
  --primary: #4F46E5;
  --primary-hover: #4338ca;
  --text-dark: #111827;
  --text-light: #6B7280;
  --bg-body: #F3F4F6;
  --bg-card: #FFFFFF;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

body {
  color: var(--text-dark);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

.search-section {
  padding: 3rem 0;
  text-align: center;
}

.search-section h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg-card);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.input-group {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

input,
select {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
}

select {
  padding-left: 1rem;
  cursor: pointer;
}

.stats-row {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-bottom: 3rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
}

.card-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}

.category-badge {
  background: #EEF2FF;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.status {
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-Available {
  color: #10B981;
}

.status-Available .status-dot {
  background: #10B981;
}

.status-Busy {
  color: #F59E0B;
}

.status-Busy .status-dot {
  background: #F59E0B;
}

.status-Offline {
  color: #EF4444;
}

.status-Offline .status-dot {
  background: #EF4444;
}

.card-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.service-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.rating {
  color: #FBBF24;
  font-size: 0.9rem;
}

.card-footer {
  padding: 1rem;
  background: #F9FAFB;
  border-top: 1px solid #E5E7EB;
  text-align: right;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  width: 100%;
  grid-column: 1 / -1;
}

.empty-icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #D1D5DB;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  width: 90%;
  max-width: 450px;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  border-top: 1px solid #E5E7EB;
  margin-top: auto;
}

/* =========================
   FOOTER STYLING
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.site-footer {
  background-color: #0d0d0d;
  color: #bfbfbf;
  font-family: 'Poppins', sans-serif;
  padding-top: 5rem;
  font-size: 0.95rem;
  position: relative;
  border-top: 1px solid #262626;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #3b82f6;
  border-radius: 2px;
}

.footer-logo {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 0.9rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 1rem;
}

.brand-desc {
  line-height: 1.6;
  font-size: 0.9rem;
  color: #a3a3a3;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #bfbfbf;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
  color: #3b82f6;
}

.badge-new {
  background-color: #3b82f6;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 5px;
  vertical-align: middle;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-info i {
  color: #3b82f6;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #1f1f1f;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-links a:hover {
  background-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
  background-color: #050505;
  padding: 1.5rem 0;
  border-top: 1px solid #1f1f1f;
  font-size: 0.85rem;
  color: #737373;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heart-icon {
  color: #ef4444;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* =========================
   RESPONSIVENESS
========================= */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 3rem;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brand-col {
    border-bottom: 1px solid #262626;
    padding-bottom: 2rem;
  }

  .bottom-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =========================
   NAVBAR STYLES
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar .logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.mobile-only {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: #111;
    width: 100%;
    height: 100vh;
    text-align: center;
    padding-top: 2rem;
    transition: 0.3s;
    gap: 1.5rem;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-only {
    display: block;
  }

  .nav-btn {
    padding: 10px 25px;
    background: #2266c5;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* =========================
   RESPONSIVE (MOBILE)
========================= */

@media (max-width: 768px) {
  .page {
    height: auto;
    min-height: 100vh;
    padding: 2rem 1rem;
    flex-direction: column;
    scroll-snap-align: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .split {
    flex-direction: column;
    height: auto;
    padding-bottom: 4rem;
  }

  .split .left,
  .split .right {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .split .left img {
    max-width: 80%;
    margin-bottom: 30px;
  }

  .split .right {
    padding-left: 0;
  }

  .split .right h1 {
    font-size: 2.2rem;
    text-align: center;
    padding-bottom: 1rem;
  }

  .split .right p {
    text-align: center;
    font-size: 1rem;
  }

  .split .right .abtus {
    width: 100%;
    margin-top: 15px;
    display: block;
    text-align: center;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .filter-bar {
    flex-direction: column;
  }

  .input-group {
    width: 100%;
  }
}
  

body {
  background-color: #f3f4f6;
}

.about-header {
  background-color: #ffffff;
  padding: 4rem 1rem 6rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.about-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  top: 45px;
  z-index: 10;
}

.about-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.mission-section {
  text-align: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e5e7eb;
}

.mission-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.mission-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

.offerings-section {
  text-align: left;
  border-radius: 2px solid blue;
}

.offerings-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.offerings-title::before {
  content: '';
  display: block;
  width: 6px;
  height: 24px;
  background-color: #2266c5;
  margin-right: 12px;
  border-radius: 4px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.offering-col h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #1f2937;
}

.offering-col p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.offering-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offering-col ul li {
  position: relative;
  padding-left: 1.2rem;
}
/* =========================
   CONTACT PAGE STYLES
========================= */

/* Main Section Background */
.contact-page-section {
    padding: 8rem 1.5rem 5rem; /* Top padding accounts for fixed navbar */
    background-color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 1000px;
    width: 100%;
}

/* Flex Wrapper (The Card) */
.contact-wrapper {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Left Side: Info Box */
.contact-info-box {
    flex: 1;
    background-color: #0f172a; /* Deep Slate (Matches Hero Fade) */
    color: #ffffff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Optional decorative circle behind info */
.contact-info-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtext {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Info Items (Icon + Text) */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    color: #3b82f6; /* Accent Blue */
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Socials in Contact Box */
.contact-socials {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

.contact-socials a {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.contact-socials a:hover {
    color: #3b82f6;
    transform: translateY(-3px);
}

/* Right Side: Form Box */
.contact-form-box {
    flex: 1.5; /* Slightly wider than info box */
    padding: 3rem;
    background: #ffffff;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border-radius: 8px;
    margin-top: 10px;
    background: #2266c5; /* Brand Blue */
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-submit-btn:hover {
    background: #1e5bb0;
}

/* Responsive Design for Contact Page */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-box {
        padding: 2.5rem;
    }

    .contact-form-box {
        padding: 2rem;
    }
}