@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700&display=swap');

html, body {
  height: auto !important;
  overflow-x: hidden;
}

body {
  min-height: 100%;
   background-color: #ebe1d4;
}

* {
  max-width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
/* ===== GLOBAL TYPOGRAPHY SYSTEM ===== */

:root {
  --h1-size: 2.5rem; 
  --h2-size: 36px; 
  --h3-size: 1.5rem; 
  --p-size: 15px;

}
small { font-size: 0.875rem; }

/* Headings */
h1 {
  font-size: var(--h1-size);
   font-size: 2.5rem; 
  font-weight: 300;
  letter-spacing: 0px;

}

h2 {
  font-size: var(--h2-size);

   line-height: 1.3;

}

h3 {
  font-size: var(--h3-size);
  font-size: 1.5rem; 
  }

/* Paragraph */
p {
  font-size: var(--p-size);
   line-height: 1.7;
     font-size: 15px; 
font-family: 'Inter', sans-serif; /* or your body font */
}

/* Mobile scaling – proportional, not random */
@media (max-width: 768px) {
  :root {
    --h1-size: 34px;
    --h2-size: 28px;
    --h3-size: 20px;
    --p-size: 16px;
  }
}
html, body {
  overflow-x: hidden;
}

body {
    background: #fff;
     font-family: 'Inter', sans-serif;
     font-size: 1rem; 
}

@media (max-width:768px){

p, li,  h3, h4, h5, h6{
    hyphens:auto;
    overflow-wrap:break-word;
}

}

/* PRELOADER */

#site-preloader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#ffffff;
z-index:999999;
display:flex;
align-items:center;
justify-content:center;
transition:opacity .4s ease, visibility .4s ease;
}

#site-preloader.hide{
opacity:0;
visibility:hidden;
}

/* Spinner */

.preloader-spinner{
width:50px;
height:50px;
border:4px solid #e5e5e5;
border-top:4px solid #a8643f;
border-radius:50%;
animation:preloader-spin .8s linear infinite;
}

@keyframes preloader-spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
@media (max-width:768px){

.container{
    padding-left:0px;
    padding-right:0px;
}

}
/* Top Bar */
.top-bar {
    background: #ab6340;
    color: #fff;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}
.top-bar a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
/* Remove default browser link styles */
.top-bar a:visited,
.top-bar a:active,
.top-bar a:focus {
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

/* Hover Effect */
.top-bar a:hover {
    color: #f5e4d7; /* soft beige hover */
    text-decoration: none;
}

/* Left & Right alignment spacing */
.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Social icons spacing */
.social-icons a i {
    font-size: 14px;
}
/* Top bar: scrolls away normally */
.top-bar {
    position: relative;
    z-index: 1;
}


/* Hide by default (mobile first approach) */
.top-right.social-icons {
  display: none;
}

/* Show only on desktop */
@media (min-width: 992px) {
  .top-right.social-icons {
    display: flex;   /* or block if you prefer */
    align-items: center;
    gap: 15px;
  }
}

.top-left span {
    margin-right: 15px;
}

.top-right a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

/* Header */
.main-header {
    background: #ffffff;/* Hide by default (mobile first approach) */
.top-right.social-icons {
  display: none;
}

/* Show only on desktop */
@media (min-width: 992px) {
  .top-right.social-icons {
    display: flex;   /* or block if you prefer */
    align-items: center;
    gap: 15px;
  }
}
    border-bottom: 1px solid #eee;
    position: relative;
}
/* Default (desktop) – keep your existing layout */
.top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile only */
@media (max-width: 991px) {
  .top-left {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: bold;
    color: #6b3e3e;
   margin-left: 0px;
    padding: 0px 0px;
}
@media (max-width: 768px) {
 .logo {

   margin-left: 0px;

}

  }

.logo img {
    max-height: 80px;
    width: auto;
    display: block;
}


/* CTA Button */
.btn-primary {
    background: #ab6340;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
}



/* Header container */
.main-header {
    background: #fff;
}

/* Sticky wrapper */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 0px;
    background: #fff;

    transition: box-shadow 0.3s ease;
}

/* Shadow when scrolling */
.header-sticky {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* ===== STICKY HEADER – FINAL ===== */

.header-sticky {
    background: #ffffff;
    width: 100%;
    z-index: 1000;
}

/* Fixed state */
.header-sticky.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Search button */
.search-btn{
  background:none;
  border:none;
  font-size:18px;
  cursor:pointer;
  margin-right:10px;
  color:#333;
}

/* Hidden search box */
.header-search-box{
    position:absolute;
    top:85px;
  right:140px;
    background:#ffffff;
    padding:12px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    display:none;
    z-index:9999;
    transition:all 0.25s ease;
}

.header-search-box input{
    width:240px;
    padding:10px 14px;
    border:1px solid #e3e3e3;
    border-radius:8px;
    font-size:14px;
    outline:none;
    transition:all 0.25s ease;
}

@media (max-width:768px){

.header-search-box{
    right:20px;
    top:70px;
    width:220px;
}

}
/* ===============================
   FOOTER
=================================*/

.main-footer {
    background: #ab6340;   /* corporate navy */
    color: #ffffff;
    padding-top: 80px;
    position: relative;
    font-family: 'Inter', sans-serif;
  
}

.footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 25px;
}

.footer-about p {
      margin-bottom: 25px;
}

/* ===============================
   FOOTER LINK RESET
=================================*/
/* Remove default italics from address */
.main-footer address {
  font-style: normal;
}

.main-footer a {
  color: #e6e6e6;          /* soft light color */
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Remove visited purple */
.main-footer a:visited {
  color: #e6e6e6;
}

/* Remove default underline on hover */
.main-footer a:hover {
  color: #ffffff;          /* slightly brighter on hover */
  text-decoration: none;
}

/* Remove active state underline */
.main-footer a:active {
  color: #ffffff;
  text-decoration: none;
}

/* Remove ugly browser focus ring but keep accessibility */
.main-footer a:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
  border-radius: 4px;
}
.main-footer a:hover {
  color: #c28b5b;   /* premium gold accent */
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    
}

.footer-col ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    transition: 0.3s;
    line-height: 1.1;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
    
}

.footer-contact {
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-title {
    margin-top: 30px;
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ffffff;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    background: #ab6340;
}

.footer-bottom-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links a {
    margin-left: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Scroll Top Button */
.scroll-top {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    background: #ffffff10;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
}

.scroll-top:hover {
    background: #ffffff30;
}
@media (min-width: 992px) {

    .footer-container {
        position: relative;
    }

    .footer-container::before {
        content: "";
        position: absolute;
        left: 42%;   /* adjust slightly if needed */
        top: 0;
        bottom: 0;
        width: 1px;
        background: rgba(255,255,255,0.08);
        background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.12),
    transparent
);

    }
}


/* ===============================
   RESPONSIVE
=================================*/

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 15px;
    }
}
/* ===============================
  MENU
=================================*/

body{
    font-family: 'Poppins', sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: #333;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5em;
}

.navbar.initial-offset {
    margin-top: 30px; /* top bar height */
}

.buttons{
    display: flex;
    align-items: center;
    gap: 1em;
}

button{
    border: none;
    transition: 0.3s;
    cursor: pointer;
}

.btn{
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    background: #ab6340;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
}

.btn:hover{
    background: #a8643f;
}

.menu-btn{
    background: none;
    display: inline-block;
}

.menu-btn span{
   font-size:1.6em;
   font-weight:300;
}

/* =========================================
   DESKTOP VERSION
========================================= */

@media screen and (min-width: 1200px) {

    .menu-btn{
        display: none;
    }

    /* Main menu */
    .mega-menu{
        display: flex;
        align-items: center;
        gap: 2em;
    }

    .mega-menu > li{
        position: relative;
        padding: 1.5em 0;
    }

    .mega-menu > li > a{
        font-weight: 500;
    }

    /* Underline effect */
    .mega-menu > li::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 4px;
        background: #a8643f;
        transition: width 0.3s ease;
    }

    .mega-menu > li:hover::after{
        width: 100%;
    }

    .mega-menu > li.current-menu-item::after,
    .mega-menu > li.current-menu-parent::after,
    .mega-menu > li.current_page_item::after,
    .mega-menu > li.current_page_parent::after{
        width: 100%;
    }

    /* WordPress Submenu */
    .mega-menu li .sub-menu{
        position: absolute;
        top: 100%;
        left: 0;
        width: 270px;
        background: #fff;
        padding: 10px 0;
        border-radius: 6px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        display: none;
    }

    .mega-menu li:hover > .sub-menu{
        display: block;
    }

    .sub-menu li{
        padding: 8px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(168, 100, 63, 0.15);
    }

    .sub-menu li:last-child{
        border-bottom: none;
    }

    .sub-menu li:hover{
        background: #f6f2ee;
    }

    .sub-menu li a{
        display: block;
    }
}

/* =========================================
   MOBILE VERSION
========================================= */

@media screen and (max-width: 1199px) {

    .navbar{
        padding: 1em 1.5em;
    }

    .menu-container{
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: 0.3s ease-in-out;
    }

    .mega-menu{
        padding: 1em;
        display: block;
    }

    .mega-menu li{
        font-weight: 600;
        border-bottom: 1px solid rgba(168, 100, 63, 0.15);
    }

    .mega-menu li a{
        display: block;
        padding: 0.8em 0;
    }

    .sub-menu{
        display: none;
        padding-left: 15px;
        font-weight: 400;
    }

    .sub-menu li{
        border-bottom: 1px solid rgba(168, 100, 63, 0.15);
    }

    .menu-show{
        display: block;
    }

    .mega-menu-show{
        height: auto;
    }
    /* Fix navbar layout in mobile */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make button smaller in mobile */
.btn {
    font-size: 0.9rem;
    padding: 8px 14px;
}

/* Ensure proper spacing */
.buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Prevent logo from shrinking */
.logo img {
    max-height: 40px;
}

/* Ensure menu icon stays visible */
.menu-btn {
    font-size: 24px;
}
.navbar.initial-offset {
    margin-top: 0px; /* top bar height */
}

}



.menu-item-has-children > a::after {
    content: "chevron_right";
    font-family: 'Material Symbols Outlined';
    font-size: 18px;
    margin-left: 5px;
    vertical-align: middle;
}
.sub-menu {
    display: none;
}

.sub-menu.menu-show {
    display: block;
}
/* Remove any background highlight */
.mega-menu > li,
.mega-menu > li:hover,
.mega-menu > li.current-menu-item,
.mega-menu > li.current-menu-parent,
.mega-menu > li.current_page_item,
.mega-menu > li.current_page_parent {
    background: none !important;
}

/* Ensure anchor is positioned */
.mega-menu > li > a {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}
@media (min-width: 992px) {
    .desktop-spacer {
        display: block;
        height: 80px;
    }
}

/* =========================================
   team slider
========================================= */

/* CARD */
#sptp-781 .sptp-member{
    background:#ffffff !important;
    border-radius:14px !important;
    padding:20px !important;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:all 0.3s ease;

    display:flex !important;
    flex-direction:column;
   align-items: flex-start !important;
    height:100%;
}
.sptp_member img {
  align-self: flex-start !important;
}
#sptp-781 .sptp-member:hover{
    transform:translateY(-5px);
}

/* FORCE INNER STRUCTURE (IMPORTANT FIX) */
#sptp-781 .sptp-member > *{
    width:100%;
}

#sptp-781 .sptp-member-content{
    display:flex;
    flex-direction:column;
    flex-grow:1;
    width:100%;
}

/* IMAGE */
#sptp-781 .sptp-member-avatar img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:12px;
}

/* NAME */
#sptp-781 .sptp-member-name{
    color:#5b2e2e !important;
    font-size:18px !important;
    font-weight:600;

    min-height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* DESIGNATION */
#sptp-781 .sptp-member-profession{
    color:#a35c3a !important;
    font-size:14px;
    margin-bottom:10px;
}

/* DESCRIPTION */
#sptp-781 .sptp-member-desc{
    color:#444 !important;
    font-size:13px;
    text-align:left;

    flex-grow:1;          /* 👈 KEY: pushes button down */
    margin-bottom:15px;
}

/* ROW & COLUMN */
#sptp-781 .sp-tp-row{
    display:flex;
    flex-wrap:wrap;
}

#sptp-781 .sp-tp-col{
    display:flex !important;
}

/* BUTTON (FINAL FIX) */
#sptp-781 .view-profile-btn {
  display: block;      /* Changed from inline-block to block */
  width: fit-content;  /* Ensures the background doesn't stretch full width */
  margin: 20px auto 10px auto; /* Centers horizontally (left/right auto) */
  padding: 10px 22px;
  background: #a35c3a;
  color: #fff !important;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* HOVER */
#sptp-781 .view-profile-btn:hover{
    background:#8c4a2f;
    transform:translateY(-2px);
}





/* =========================================
   TEAM MEMBER PROFILE - PROFESSIONAL DESIGN
========================================= */

.team-profile-wrapper{
    max-width:1100px;
    margin:15px auto;
    padding:0 20px;
}

/* CARD */
.team-profile-card{
    display:flex;
    align-items:flex-start;
    gap:40px;
    align-items:center;
    background:#ffffff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

/* LEFT IMAGE */
.team-profile-left img{
    width:280px;
    height:320px;
    object-fit:cover;
    border-radius:15px;
     align-items:flex-start !important;
}
.team-profile-left{
    align-self:flex-start;
}
/* RIGHT CONTENT */
.team-profile-right{
    flex:1;
    border-radius:12px;
    padding: 30px;
     background:#f5f2ef;
}

/* NAME */
.team-name{
    font-size:28px;
    font-weight:600;
    color:#2b2b2b;
    margin-bottom:8px;
}

/* ROLE */
.team-role{
    font-size:16px;
    color:#a35c3a;
    font-weight:600;
    margin-bottom:20px;
}

/* DIVIDER */
.team-divider{
    width:50px;
    height:3px;
    background:#a35c3a;
    margin-bottom:20px;
}

/* DESCRIPTION */
.team-description{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:25px;
}

/* CTA BUTTON */
.team-cta{
    display:inline-block;
    padding:12px 28px;
    background:#a35c3a;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
}

.team-cta:hover{
    background:#8c4a2f;
    transform:translateY(-2px);
}

.team-description ul{
   
    margin: 15px 0;
    font-size: 16px;
  line-height: 1.7;
  color: #555;
  
}
}

.team-description li{
position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    line-height: 1.8;
    color: #444;
    font-size: 15px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .team-profile-card{
        flex-direction:column;
        
        padding:25px;
    }
.team-description{
text-align: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;

    word-break: normal;
    overflow-wrap: break-word;

    line-height: 1.8;
}
    .team-profile-left img{
        width:100%;
        height:auto;
    }

    .team-divider{
        margin-left:auto;
        margin-right:auto;
    }
    .team-profile-right{
    flex:1;
    border-radius:12px;
    padding: 10px;
     background:#f5f2ef;
}
.sptp-single-post {
margin-left:0 !important;
margin-right:0 !important;
padding-left:0 !important;
 padding-right:0 !important;   
}
}
/* =========================================
   BLOG SINGLE PAGE - PREMIUM DESIGN
========================================= */

/* RESET THEME CONTAINER */
.single-post .site-main{
    max-width:100%;
    margin:0;
    padding:0;
}

/* CONTENT WIDTH CONTROL (ONLY TEXT AREA) */
.mp-blog-main{
    max-width:100%;
}

/* OPTIONAL: LIMIT TEXT READABILITY */
.mp-blog-main .entry-content{
    max-width:750px;
}

/* ARTICLE CARD */
.single-post article{
    background:#ffffff;
    padding:40px;
    border-radius:16px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

/* TITLE */
.single-post .entry-title{
    font-size:34px;
    font-weight:600;
    color:#2b2b2b;
    line-height:1.3;
    margin-bottom:15px;
}

/* META (date, author) */
.single-post .entry-meta{
    font-size:13px;
    color:#888;
    margin-bottom:25px;
}

/* FEATURED IMAGE */
.single-post .post-thumbnail img{
    width:100%;
    border-radius:12px;
    margin-bottom:25px;
}

/* PARAGRAPH */
.single-post .entry-content p{
    font-size:16px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

/* HEADINGS */
.single-post .entry-content h2{
    font-size:26px;
    margin-top:35px;
    margin-bottom:15px;
    color:#2b2b2b;
}

.single-post .entry-content h3{
    font-size:20px;
    margin-top:25px;
    margin-bottom:10px;
    color:#333;
}

/* LISTS */
.single-post .entry-content ul{
    padding-left:20px;
    margin-bottom:20px;
}

.single-post .entry-content li{
    margin-bottom:8px;
    line-height:1.6;
}

/* BLOCKQUOTE */
.single-post .entry-content blockquote{
    border-left:4px solid #a35c3a;
    padding-left:15px;
    color:#555;
    font-style:italic;
    margin:25px 0;
}

/* LINKS */
.single-post .entry-content a{
    color:#a35c3a;
    text-decoration:none;
    border-bottom:1px solid rgba(163,92,58,0.3);
}

.single-post .entry-content a:hover{
    color:#8c4a2f;
}

/* IMAGE INSIDE CONTENT */
.single-post .entry-content img{
    border-radius:10px;
    margin:20px 0;
}

/* SPACING FIX ABOVE FOOTER */
.single-post .site-main{
    margin-bottom:60px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .single-post article{
        padding:25px;
    }

    .single-post .entry-title{
        font-size:26px;
    }

    .single-post .entry-content p{
        font-size:15px;
    }
}


.single-post{
    background:#f7f4f2;
}
.single-post .entry-content p:first-of-type::first-letter{
    font-size:42px;
    font-weight:600;
    color:#a35c3a;
    float:left;
    margin-right:8px;
}
.single-post .entry-content{
    max-width:700px;
    margin:auto;
}


/* =========================================
BLOG DESIGN
========================================= */


/* HERO IMAGE */
.blog-hero{
    position:relative;
}

/* IMAGE */
.blog-hero img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:15px;
    display:block;
}

/* BLACK OVERLAY */
.blog-hero::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35); /* adjust darkness here */
    border-radius:15px;
}
/* CONTENT */
.blog-content{
    padding:40px;
}

/* TITLE */
.blog-title{
    font-size:32px;
    font-weight:600;
    color:#2b2b2b;
    margin-bottom:10px;
    line-height:1.3;
}

/* AUTHOR */
.blog-author{
    font-size:13px;
    color:#888;
    margin-bottom:25px;
         background:#f5f2ef;
    padding:20px;
    border-radius:14px;
}

/* TEXT */
.blog-content p{
    font-size:16px;
    line-height:1.8;
    color:#444;
    margin-bottom:20px;
}

/* HEADINGS */
.blog-content h2{
    font-size:24px;
    margin-top:30px;
    margin-bottom:15px;
    color:#2b2b2b;
}

/* BLOCKQUOTE */
.blog-content blockquote{
    font-size:20px;
    font-weight:500;
    color:#a8643f;
    border-left:4px solid #a8643f;
    padding-left:15px;
    margin:25px 0;
}

/* IMAGE */
.blog-image img{
    width:100%;
    border-radius:12px;
    margin:25px 0;
}

/* LIST */
.blog-content ul{
    padding-left:20px;
}

.blog-content li{
    margin-bottom:10px;
}

/* HIGHLIGHT BOX */
.highlight-box{
    background:#f9f5f2;
    border-left:4px solid #a8643f;
    padding:20px;
    border-radius:8px;
    margin:30px 0;
}

/* CLOSING BOX */
.closing-box{
    text-align:center;
    padding:25px;
    background:#f7f4f2;
    color:#fff !important;
    border-radius:12px;
    margin-top:30px;
}

.closing-box strong{
    font-size:18px;
}

/* MOBILE */
@media(max-width:768px){

    .blog-content{
        padding:5px;
    }

    .blog-title{
        font-size:24px;
    }

    .blog-hero img{
        height:250px;
    }
}

/* BLOG LAYOUT */

/* FULL WIDTH SECTION */
.mp-blog-layout{
    width:100%;
    padding:30px 0;
    margin:0;
}

/* INNER CONTAINER (ALIGNED WITH HEADER) */
.mp-blog-layout-inner{
    max-width:100%;
    margin:0 40px;
    padding:0 20px;

    display:grid;
    grid-template-columns: 3.5fr 1.5fr;
    gap:20px;
}

/* MAIN */
.mp-blog-main{
    background:#fff;
    padding:25px !important;
    border-radius:12px;
    box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

/* TITLE */
.mp-blog-title{
    font-size:30px;
    margin-bottom:20px;
}

/* SIDEBAR */
.mp-blog-sidebar{
    position:sticky;
    top:120px;
}

/* WIDGET */
.mp-widget{
    background:#fff;
    padding:16px;              /* tighter */
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    margin-bottom:20px;
}


/* TITLE */
.mp-widget-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
}

/* LIST */
.mp-widget ul{
    list-style:none;
    padding:0;
}

.mp-widget li{
    margin-bottom:10px;
}

.mp-widget a{
    text-decoration:none;
    color:#444;
}

.mp-widget a:hover{
    color:#a8643f;
}

/* MOBILE */
@media(max-width:768px){
    .mp-blog-layout{
        grid-template-columns:1fr;
    }
}
/* REMOVE EXTRA OUTER SPACE FROM THEME */
.single-post .site-main{
    max-width:100% !important;
    padding:0 !important;
    margin:0 !important;
}

@media(max-width:768px){

    .mp-blog-layout-inner{
        display:block !important;   /* 👈 disables grid */
          margin:0 10px;
          padding:0 5px;
    }

    .mp-blog-main{
        width:100%;
    }

    .mp-blog-sidebar{
        width:100%;
        margin-top:20px;            /* space between content & sidebar */
    }

}


/* =========================================
   SIDEBAR PREMIUM DESIGN
========================================= */

.mp-blog-sidebar{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* WIDGET BOX */
.mp-widget{
    background:#fff;
    padding:30px 30px;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

/* TITLE */
.mp-widget-title{
    font-size:16px;
    font-weight:600;
    color:#2b2b2b;
    margin-bottom:12px;
    position:relative;
}

/* SMALL ACCENT LINE */
.mp-widget-title::after{
    content:"";
    display:block;
    width:30px;
    height:3px;
    background:#a8643f;
    margin-top:6px;
    border-radius:2px;
}

/* LIST RESET */
.mp-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* LIST ITEMS */
.mp-widget ul li{
    margin-bottom:10px;
}

/* LINKS */
.mp-widget ul li a{
    text-decoration:none;
    font-size:13.5px;
    line-height:1.5;
    color:#444;
    display:block;

    transition:all 0.25s ease;
}

/* HOVER EFFECT */
.mp-widget ul li a:hover{
    color:#a8643f;
    transform:translateX(4px);
}

/* SEPARATOR */
.mp-widget ul li:not(:last-child){
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}

/* CATEGORY STYLE */
.mp-widget ul li.cat-item a{
    font-weight:500;
    background:#f5f2ef;
    padding: 15px;
    border-radius: 10px;
}

/* ARCHIVE STYLE */
.mp-widget ul li a{
    opacity:0.9;
      font-weight:500;
     background:#f5f2ef;
    padding: 15px;
    border-radius: 10px;
}

/* MOBILE */
@media(max-width:768px){

    .mp-widget{
        padding:15px;
    }

    .mp-widget-title{
        font-size:15px;
    }

}


/* =========================================
   SIDEBAR SEARCH BOX
========================================= */

.mp-search-box{
     background:#f5f2ef;
    padding:20px;
    border-radius:14px;
    margin-bottom:25px;
    border: 1px solid white;
}

/* FORM */
.mp-search-box form{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #eee;
}

/* INPUT */
.mp-search-box input{
    flex:1;
    border:none;
    padding:12px 14px;
    font-size:14px;
    outline:none;
    color:#333;
}

/* BUTTON */
.mp-search-box button{
    width:45px;
    height:45px;
    border:none;
    background:#a8643f;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:all 0.3s ease;
}

/* HOVER */
.mp-search-box button:hover{
    background:#8c4e2f;
}

/* PLACEHOLDER */
.mp-search-box input::placeholder{
    color:#aaa;
}

/* =========================================
   LATEST POSTS - HORIZONTAL STYLE
========================================= */

.mp-latest-posts{
    list-style:none;
    padding:0;
    margin:0;
}

.mp-latest-posts li{
    margin-bottom:15px;
}

/* MAIN ITEM */
.mp-latest-item{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    padding:10px;
    border-radius:10px;
    transition:all 0.3s ease;
    background:#f5f2ef;
}

/* HOVER */
.mp-latest-item:hover{
    background:#f5f2ef;
}

/* THUMB LEFT */
.mp-thumb{
    width:70px;
    height:70px;
    flex-shrink:0;
    border-radius:10px;
    overflow:hidden;
}

.mp-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* TEXT RIGHT */
.mp-post-info{
    flex:1;
}

/* TITLE */
.mp-post-title{
    font-size:14px;
    color:#333;
    line-height:1.5;
    display:block;
}

/* HOVER COLOR */
.mp-latest-item:hover .mp-post-title{
    color:#a8643f;
}

/* FORCE HORIZONTAL LAYOUT */
.mp-latest-posts li a.mp-latest-item{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    gap:12px !important;
}

/* FORCE IMAGE SIZE */
.mp-latest-posts .mp-thumb{
    width:70px !important;
    height:70px !important;
    flex-shrink:0 !important;
}

.mp-latest-posts .mp-thumb img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

/* FORCE TEXT SIDE */
.mp-latest-posts .mp-post-info{
    display:block !important;
    width:auto !important;
}

/* REMOVE ANY BLOCK STACKING */
.mp-latest-posts .mp-thumb,
.mp-latest-posts .mp-post-info{
    float:none !important;
}
/* =========================================
   COMMENT SECTION
========================================= */

.mp-comments-section{
    margin-top:20px;
}

/* TITLE */
.mp-comment-title{
    font-size:28px;
    margin-bottom:25px;
    color:#2b2b2b;
}

/* FORM */
.mp-comment-form{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/* INPUT WRAPPER */
.mp-form-row{
    width:48%;
}

.mp-form-row.full{
    width:100%;
}

/* INPUTS */
.mp-comment-form input,
.mp-comment-form textarea{
    width:100%;
    padding:16px;
    border:none;
    background:#f5f1ef;
    border-radius:10px;
    font-size:14px;
    outline:none;
    color:#333;
}

/* TEXTAREA */
.mp-comment-form textarea{
    resize:none;
}

/* BUTTON */
.mp-comment-btn{
    margin-top:10px;
    background:#ab6340;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:30px;
    font-size:14px;
    cursor:pointer;
    transition:all 0.3s ease;
}

/* HOVER */
.mp-comment-btn:hover{
    background:#155e5c;
}

/* MOBILE */
@media(max-width:768px){

    .mp-form-row{
        width:100%;
    }

}

/* =========================================
   TAGS
========================================= */

.mp-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.mp-tags a{
    padding:8px 14px;
    background:#f5f2ef;
    border-radius:10px;
    font-size:13px;
    color:#444;
    text-decoration:none;
    transition:all 0.3s ease;
}

.mp-tags a:hover{
    background:#a8643f;
    color:#fff;
}

/* =========================================
   SIDEBAR COMMENTS
========================================= */

.mp-sidebar-comments{
    list-style:none;
    padding:0;
    margin:0;
}

.mp-sidebar-comments li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
        padding:10px;
    background:#f5f2ef;
    border-radius:10px;
}

/* ICON */
.mp-comment-icon{
    width:32px;
    height:32px;
    background:#f1ece9;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
}

/* TEXT */
.mp-comment-text{
    font-size:13px;
    color:#444;
    line-height:1.5;
}
/* =========================================
   PREMIUM FLOATING SHARE
========================================= */


.floating-share{
    position:fixed;
    top:65%;
    left:5px;
    transform:translateY(-50%);
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* BUTTON */
.share-btn{
    display:flex;
    align-items:center;
    gap:10px;

    width:50px;
    height:50px;
    padding:0 16px;

    border-radius:50px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;

    overflow:hidden;
    white-space:nowrap;

    backdrop-filter: blur(10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.15);

    transition:all 0.4s ease;
}

/* ICON */
.share-btn i{
    font-size:18px;
    min-width:20px;
}

/* TEXT HIDDEN INITIALLY */
.share-btn span{
    opacity:0;
    transform:translateX(-10px);
    transition:all 0.3s ease;
}

/* HOVER EXPAND */
.share-btn:hover{
    width:160px;
    border-radius:50px;
}

.share-btn:hover span{
    opacity:1;
    transform:translateX(0);
}

/* COLORS */
.whatsapp{ background:#25D366; }
.facebook{ background:#1877F2; }
.twitter{ background:#000; }
.linkedin{ background:#0A66C2; }

/* HOVER EFFECT */
.share-btn:hover{
    transform:translateX(10px) scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* MOBILE */
@media(max-width:768px){

    .floating-share{
        display:none;
        left:10px;
    }

    .share-btn{
        width:45px;
        height:45px;
        padding:0 12px;
    }

    .share-btn:hover{
        width:45px; /* disable expand on mobile */
    }

    .share-btn span{
        display:none;
    }
}
.floating-share{
    transition: all 0.4s ease;
}

/* =========================================
   POST NAVIGATION
========================================= */

.mp-post-navigation{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid #eee;
}

/* EACH BOX */
.mp-nav-item{
    width:48%;
}

.mp-nav-item a{
    display:block;
    text-decoration:none;
    background:#fff;
    padding:18px;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,0.05);
    transition:all 0.3s ease;
}

/* LABEL */
.mp-nav-item span{
    display:block;
    font-size:12px;
    color:#888;
    margin-bottom:6px;
}

/* TITLE */
.mp-nav-item strong{
    font-size:14px;
    color:#333;
    line-height:1.4;
}

/* HOVER */
.mp-nav-item a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    color:#a8643f;
}

/* ALIGNMENT */
.mp-nav-item.prev{
    text-align:left;
}

.mp-nav-item.next{
    text-align:right;
}

/* MOBILE */
@media(max-width:768px){

    .mp-post-navigation{
        flex-direction:column;
    }

    .mp-nav-item{
        width:100%;
    }

    .mp-nav-item.next{
        text-align:left;
    }

}
/* =========================================
   BLOG HERO BANNER
========================================= */

.mp-blog-hero{
    position:relative;
    height:320px;
    display:flex;
    align-items:center;
    margin-top:75px;
    padding:0 60px;
    background:url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?q=80&w=1600') center/cover no-repeat;
}

/* DARK OVERLAY */
.mp-blog-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

/* CONTENT */
.mp-blog-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

/* TITLE */
.mp-blog-hero-title{
    font-size:24px;
    font-weight:300;
    margin-bottom:15px;
}

/* BREADCRUMB */
.mp-breadcrumb{
    display:flex;
    align-items:center;
    text-align: center;
    gap:8px;
    font-size:14px;
}

/* LINKS */
.mp-breadcrumb a{
    color:#fff;
    text-decoration:none;
    opacity:0.85;
}

.mp-breadcrumb a:hover{
    opacity:1;
}

/* ACTIVE */
.mp-breadcrumb .active{
    opacity:1;
    font-weight:500;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .mp-blog-hero{
        height:220px;
        padding:0 20px;
    }

    .mp-blog-hero-title{
        font-size:22px;
    }
}


/* =========================================
   FEATURED IMAGE
========================================= */

.mp-featured-image{
    position:relative;
    margin-bottom:20px;
}

.mp-featured-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

/* DATE BADGE */
.mp-date-badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#0f8b8d;
    color:#fff;
    padding:10px 12px;
    border-radius:8px;
    text-align:center;
    font-size:12px;
    line-height:1.2;
}

.mp-date-badge .day{
    display:block;
    font-size:16px;
    font-weight:600;
}

.mp-date-badge .month{
    font-size:11px;
    text-transform:uppercase;
}

/* =========================================
   META INFO
========================================= */

.mp-post-meta{
    display:flex;
    gap:20px;
    font-size:14px;
    color:#666;
    margin-bottom:10px;
}

.mp-post-meta span{
    display:flex;
    align-items:center;
    gap:5px;
}

/* =========================================
   TITLE
========================================= */

.mp-blog-title{
    font-size:30px;
    font-weight:600;
    line-height:1.4;
    margin-bottom:10px;
}

/* =========================================
   DATE BELOW TITLE
========================================= */

.mp-post-date{
    font-size:14px;
    color:#888;
    margin-bottom:20px;
}

/* HERO SECTION */
.mp-blog-hero{
    position:relative;
    height:300px;
    background:url('https://images.unsplash.com/photo-1576091160550-2173dba999ef') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    margin-top:65px;
}

/* OVERLAY */
.mp-blog-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

/* CONTENT */
.mp-blog-hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.mp-blog-hero-title{
    font-size:28px;
    margin-bottom:10px;
}

/* BREADCRUMB */
.mp-breadcrumb{
    font-size:14px;
    opacity:0.9;
}

.mp-breadcrumb a{
    color:#fff;
    text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
    .mp-blog-hero{
        height:200px;
    }
    .mp-blog-hero-title{
        font-size:24px;
    }
    .mp-blog-hero{
    margin-top:90px;
}
}

/* DOCTOR BOOKING*/
.mp-modal {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
}

.mp-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0% auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.mp-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mp-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  color: #333;
}

/* Button styling (Mindport theme match) */
.book-btn {
  background: #b26a4b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}