:root {
    /* Colors */
    --primary-purple: #5b005d;
    --dark-bg: #121927;
     --light-bg: #ffffff;
    --text-light: #ffffff;
    --bg-muted: #f7f6f6;
    --accent-gold: #FDCC0D;
    --glass-bg: rgba(255, 255, 255, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}




.contact-hero {
    background: var(--primary-purple);
    padding: 120px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: #fff;
    max-width: 750px;
    margin: 0 auto;
}

/* Optional container width */
.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* HERO SECTION (example if needed) */
.mspx-hero-section{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--primary-purple);
    color:white;
}



/* ======= */


/* Container and Section */
.os-section {
  padding: 120px 20px;
  background-color: var(--bg-muted); /* The grey background from your image */
  display: flex;
  justify-content: center;
  font-family: sans-serif;
}

.os-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
}

/* 1. The Green Decorative Box (Top Right) */
.os-accent-box {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 55%;
  height: 80%;
  background-color: var(--accent-gold); /* Muted Green */
  border-radius: 20px;
  z-index: 1;
}

/* 2. Grid Layout for Overlap */
.os-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* 3. Blue Text Card (Left) */
.os-text-card {
  background-color: var(--dark-bg); 
  padding: 50px;
  border-radius: 20px;
  color: #cbd5e1;
 
  margin-right: -100px; 
  z-index: 4;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.os-heading {
  color: #ffffff;
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.os-body-text {
  line-height: 1.6;
  margin-bottom: 15px;
}

.os-meta {
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.os-meta a {
  color: #fff;
  text-decoration: underline;
}

.os-btn {
  display: inline-block;
  padding: 10px 35px;
  border: 1.5px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.os-btn:hover {
  background: #fff;
  color: #233a5e;
}

/* 4. Image Wrapper (Right) */
.os-image-wrapper {
  z-index: 3;
}

.os-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}









/* ================== */
/* Container Background */
.md-svc-container {
  background-color: var(--bg-muted); /* The blue header color */
  font-family: 'Arial', sans-serif;
  padding: 40px 20px;
  text-align: center;
}

/* Header Section */
.md-svc-header {
  color: #ffffff;
  margin-bottom: 40px;
}

.md-svc-title {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-bg);
}

.md-svc-subtitle {
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--dark-bg);
}

/* White Content Box */
.md-svc-content {
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr; 
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Image Styling */
.md-svc-visual {
  background-color: var(--primary-purple); 
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.md-svc-doctor-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Services Grid */
.md-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
  align-content: center;
}

.md-svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Icon Circles */
.md-svc-icon-wrapper {
  background-color: #000000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.md-svc-icon {
  width: 30px;
  height: 30px;
}

/* Typography for Items */
.md-svc-item-title {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.md-svc-item-text {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.5;
  font-style: italic;
}



















/* 5. Responsiveness */
@media (max-width: 991px) {
  .os-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .os-text-card {
    margin-right: 0;
    margin-bottom: -60px;
    padding: 30px;
    text-align: center;
  }

  .os-accent-box {
    width: 100%;
    height: 60%;
    top: 20%;
    right: 0;
  }

  .os-heading {
    font-size: 2.5rem;
  }
}


/* Responsive for Mobile */
@media (max-width: 768px) {
  .md-svc-content {
    grid-template-columns: 1fr;
  }
  .md-svc-grid {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}


