

/* ===== ABOUT SECTION ===== */
/* ===== ABOUT SECTION ===== */

.about-section{
    padding:35px 15px;
    background:#f9fbf8;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:25px;
}

/* Left Image */

.about-image{
    flex:0 0 40%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:580px;
    max-height:660px;
    object-fit:contain;
    border-radius:18px;
}

/* Right Content */

.content-section{
    flex:0 0 60%;
}

.about-text{
    background:#fff;
    padding:18px 22px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* Main Heading */

.about-text h2{
    font-size:25px;
    color:#243E70;
    margin-bottom:8px;
    line-height:1.2;
}

/* Sub Heading */

.about-text h3{
    font-size:18px;
    color:#243E70;
    margin:14px 0 8px;
}

/* Paragraph */

.about-text p{
    font-size:14px;
    color:#444;
    line-height:1.6;
    margin-bottom:8px;
}

/* Strong */

.about-text strong{
    color:#222;
}

/* List */

.approach-list{
    padding-left:18px;
    margin-top:5px;
}

.approach-list li{
    font-size:14px;
    line-height:1.6;
    margin-bottom:3px;
}

/* Social */

.about-social{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.about-social a{
    width:36px;
    height:36px;
    background:#243E70;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.about-social a:hover{
    background:#E63946;
    transform:translateY(-3px);
}

/* =================== TABLET =================== */

@media(max-width:992px){

    .about-container{
        flex-direction:column;
        gap:20px;
    }

    .about-image,
    .content-section{
        flex:100%;
        width:100%;
    }

    .about-image img{
        max-width:320px;
        max-height:360px;
    }

    .about-text{
        padding:18px;
    }

    .about-text h2{
        font-size:26px;
    }

    .about-text h3{
        font-size:18px;
    }

    .about-text p,
    .approach-list li{
        font-size:13px;
        line-height:1.55;
    }

    .about-social{
        justify-content:center;
    }

}

/* =================== MOBILE =================== */

@media(max-width:576px){

    .about-section{
        padding:25px 10px;
    }

    .about-container{
        gap:15px;
    }

    .about-image img{
        max-width:250px;
        max-height:280px;
    }

    .about-text{
        padding:15px;
        border-radius:14px;
    }

    .about-text h2{
        font-size:22px;
    }

    .about-text h3{
        font-size:17px;
    }

    .about-text p,
    .approach-list li{
        font-size:12.5px;
        line-height:1.5;
    }

    .about-social{
        margin-top:12px;
    }

    .about-social a{
        width:34px;
        height:34px;
        font-size:13px;
    }

}

.approach-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    padding:0;
    margin:10px 0;
    list-style:none;
}

.approach-list li{
    background:#f3f6fb;
    color:#243E70;
    padding:6px 14px;
    border-radius:20px;
    font-size:14px;
    font-weight:500;
    border:1px solid #dbe6f7;
}



/* ===== HOMEOPATHY SECTION ===== */

.homeopathy-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f9f7, #eef5f2);
}

.homeopathy-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 34px;
  color: #243e70;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.homeopathy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.homeo-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* hover premium effect */
.homeo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* subtle top border */
.homeo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(135deg, #E63946, #F77F00);
}

/* TEXT */
.homeo-card h3 {
  font-size: 20px;
  color: #243e70;
  margin-bottom: 10px;
}

.homeo-card p,
.homeo-card li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.homeo-card ul {
  padding-left: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .homeopathy-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 26px;
  }
}