/*
Theme Name: My Custom Theme
Author: Gopal Sr Web Developer
Version: 1.0
*/


/* RESET top header section */

body{
    font-family: 'Poppins', sans-serif;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
} */

/* CONTAINER */
.container {
    max-width: 1250px;
    width: 90%;
    margin: auto;
}

/* ================= HEADER TOP ================= */
.header-top {
    background: #fff;
    padding: 18px 0;
}

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

/* LOGO */
.logo img {
    max-height: 60px;
}

/* BUTTONS */
.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-dark {
    background: #2f3439;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    background: #2f3439;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}


/* ================= BLOG BANNER ================= */
/* Blog Banner */
.blog-banner {
  width: 100%;
  min-height: 350px;
  background-image: url("https://staging.dhiindia.com/blog/wp-content/themes/mythemeblog/assets/images/banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: -16px !important;
}

/* Dark overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
}

/* Banner content */
.banner-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.banner-content h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 18px;
  color: #f1f1f1;
  max-width: 600px;
  margin: auto;
}

/* Tablet */
@media (max-width: 768px) {
  .blog-banner {
    min-height: 250px;
  }

  .banner-content h2 {
    font-size: 34px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .blog-banner {
    min-height: 200px;
  }

  .banner-content h2 {
    font-size: 26px;
  }

  .banner-content p {
    font-size: 14px;
  }
}


.custom-blog-section{
    padding:60px 0;
    background:#fafafa;
    font-family:'Poppins', sans-serif;
}

.custom-blog-section .container{
    max-width:1250px;
    margin:auto;
}

/* Heading */
.blog-head{
    text-align:center;
    margin-bottom:40px;
}

.blog-head h2{
    font-size:26px;
    font-weight:700;
    text-transform:uppercase;
    position:relative;
    display:inline-block;
    padding:0 20px;
}

.blog-head h2:before,
.blog-head h2:after{
    content:"";
    position:absolute;
    top:50%;
    width:40px;
    height:2px;
    background:#f4a300;
}

.blog-head h2:before{ left:-50px; }
.blog-head h2:after{ right:-50px; }

.blog-head p{
    /* max-width:800px;
    margin:15px auto 0;
    font-size:14px;
    color:#555; */
    font-size: 16px;
    line-height: 28px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 0 20px;
}

.blog-card {
    /* background: #f3f3f3; */
    border-radius: 18px;
    overflow: hidden;
    padding: 18px;
    max-width: 860px;
    width: calc(100% - 30px);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 40px auto;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-image {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    line-height: 0;
}

.blog-image a {
    display: block;
}

.blog-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.blog-content {
    padding: 4px 8px 10px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    color: #707070;
    font-size: 15px;
    line-height: 1.4;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-date::before {
    content: "📅";
    font-size: 13px;
    line-height: 1;
}

.blog-author::before {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ddd;
    display: inline-block;
    background-image: radial-gradient(circle at center, #f7f7f7 35%, #cfcfcf 36%);
    background-size: cover;
    flex-shrink: 0;
}

.blog-title {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
}

.blog-title a:hover {
    color: #111;
}

.blog-excerpt {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 1.65;
    color: #666;
    max-width: 95%;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-size: 26px;
    font-weight: 600;
}

.read-more-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8e8e8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.read-more:hover .read-more-icon {
    background: #000;
    color: #fff;
    transform: translateX(3px);
}

.read-more-text {
    display: inline-block;
}

@media (max-width: 991px) {
    .blog-card {
        padding: 16px;
        border-radius: 16px;
        width: calc(100% - 24px);
        margin: 30px auto;
    }

    .blog-image img {
        height: 320px;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-excerpt {
        font-size: 18px;
        line-height: 1.6;
        max-width: 100%;
    }

    .read-more {
        font-size: 20px;
    }

    .read-more-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .blog-card {
        padding: 12px;
        border-radius: 14px;
        width: calc(100% - 20px);
        margin: 20px auto;
    }

    .blog-image {
        margin-bottom: 14px;
    }

    .blog-image img {
        height: 220px;
        border-radius: 12px;
    }

    .blog-content {
        padding: 2px 4px 8px;
    }

    .blog-meta {
        gap: 12px;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .blog-author::before {
        width: 22px;
        height: 22px;
    }

    .blog-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .blog-excerpt {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .read-more {
        font-size: 16px;
        gap: 10px;
    }

    .read-more-icon {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}


/* ================= FOOTER section start ================= */
.site-footer {
    background: #222;
    color: #fff;
    font-size: 14px;
}

.footer-top {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo */
.footer-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 25px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight:500;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.certificates img {
    width: 50%;
    margin-bottom: 15px;
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.footer-call p {
    margin-top: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* Locations start 02-03-2026 */

.footer-locations {
    background: #3d3d3d;
    padding: 15px 0;
}

.footer-locations {
    background: #333;
    padding: 17px 0;
    font-size: 15px;
}


.footer-locations a {
    color: #ffffff;
    text-decoration: none;
}

.footer-locations a:hover {
    text-decoration: underline;
}

.clinic-title {
    margin: 0;
    color: #fff;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.location-list li {
    color: #fff;
    font-size: 15px;
}

/* Pipe Separator */
.location-list li:not(:last-child)::after {
    content: " | ";
    color: #fff;
    margin: 0 5px;
}

/* Optional: Active (Delhi highlight) */
.location-list a.active {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .location-list {
        margin-top: 10px;
    }

    .location-list li {
        font-size: 14px;
        line-height: 1.8;
    }
}



/* End Locations */

/* Bottom */
.footer-bottom {
    background: #000;
    padding: 15px 0;
}

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

.footer-links a {
    color: #fff;
    margin-left: 17px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links a {
        margin: 0 8px;
    }
}

/* ================= END FOOTER section start ================= */

/* ===== Blog Hero Section ===== */

.custom-blog-hero {
    /* background: #f3f3f3; */
    padding: 80px 20px;
    text-align: center;
}

.hero-container {
    max-width: 850px;
    margin: 0 auto;
}

.custom-blog-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.custom-blog-hero p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin: 0;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .custom-blog-hero {
        padding: 30px 20px;
    }

    .custom-blog-hero h1 {
        font-size: 28px;
    }

    .custom-blog-hero p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .custom-blog-hero {
        padding: 20px 15px;
    }

    .custom-blog-hero h1 {
        font-size: 22px;
    }

    .custom-blog-hero p {
        font-size: 14px;
    }
}





/* ================= Blog start 11-02-2026 ================= */
/* .blog-hero {
    background: #f4f4f4;
    padding: 70px 20px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.blog-hero p {
    max-width: 750px;
    margin: auto;
    color: #555;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
} */

.blog-posts {
    padding: 60px 0;
}

.blog-card {
    background: #fff;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.blog-image img {
    width: 100%;
    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    display: flex;
    gap: 20px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.read-more {
    /* text-decoration: none;
    color: #0a7c86;
    font-weight: 600; */

    font-size: 16px;
    line-height: 20px;
    color: #111;
    font-weight: 600;
}

/* today 20-02-2026*/
.specialist-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.specialist-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.specialist-text {
    flex: 1;
}

.specialist-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.specialist-text p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.specialist-image {
    flex: 1;
    text-align: center;
}

.specialist-image img {
    max-width: 100%;
}

.specialist-form {
    flex: 1;
    background: #111;
    padding: 25px;
    border-radius: 8px;
}

.specialist-form .form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.specialist-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
}

.specialist-form button {
    width: 100%;
    padding: 12px;
    background: #00b3a4;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.specialist-form button:hover {
    background: #008f82;
}

@media (max-width: 992px) {
    .specialist-container {
        flex-direction: column;
        text-align: center;
    }

    .specialist-form .form-row {
        flex-direction: column;
    }
}