/***

====================================================================
	Services
====================================================================

 ***/
.mehna-service-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
}

.mehna-service-box {
    width: 500px; 
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.mehna-service-box:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mehna-service-image {
    width: 350px;
    height: 350px;
    object-fit: contain;
    margin-bottom: 25px;
}

.mehna-service-title {
    font-size: 24px;
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 20px;
}

.mehna-service-description {
    font-size: 16px;
    color: #444;
    text-align: justify;
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .mehna-service-box {
        width: 100%;
    }
}

/***
====================================================================
	Blog with Sidebar
====================================================================
 ***/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

.blog-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.blog-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Blog Posts Section */
.blog-posts-section {
    flex: 2;
    width: 70%;
}

.blog-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    justify-content: flex-start;
}

.blog-card {
    width: calc(50% - 30px); 
    margin: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.blog-title {
    margin-bottom: 15px;
    text-align: center;
}

.blog-title h3 {
    color: #8C3230;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-text {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
}

.read-more-container {
    text-align: center;
    margin-top: 15px;
    padding-top: 10px;
}

.read-more {
    display: inline-block;
    color: #8C3230;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.read-more:hover {
    color: #6B1F1E;
}

/* Sidebar Section */
.blog-sidebar {
    flex: 1;
    width: 30%;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 30px 25px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: #333;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #8C3230, #B94442);
    border-radius: 2px;
}

.widget-border {
    display: none; 
}

/* Categories List */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.category-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.category-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #8C3230, #B94442);
    transition: all 0.3s ease;
    z-index: -1;
}

.category-link:hover:before,
.category-link.active:before {
    left: 0;
}

.category-link:hover,
.category-link.active {
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(140, 50, 48, 0.3);
}
.no-posts {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin: 20px 0;
    width: 100%;
    grid-column: 1 / -1; 
}

.no-posts h3 {
    color: #666;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.no-posts p {
    color: #888;
    font-size: 16px;
    text-align: center;
    margin: 0;
}

.no-posts a {
    color: #8C3230;
    text-decoration: none;
    font-weight: 600;
}

.no-posts a:hover {
    text-decoration: underline;
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    margin-bottom: 20px;
    padding: 18px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.recent-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.post-date {
    background: linear-gradient(45deg, #8C3230, #B94442);
    color: white;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-link {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    display: block;
    transition: all 0.3s ease;
}

.post-link:hover {
    color: #8C3230;
}

.no-data {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #ddd;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .blog-content-wrapper {
        flex-direction: column;
    }
    
    .blog-posts-section,
    .blog-sidebar {
        width: 100%;
    }
    
    .blog-sidebar {
        margin-top: 30px;
        position: static;
    }
    
    .blog-card {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    .blog-card {
        width: calc(100% - 30px);
    }
    
    .blog-main-container {
        padding: 15px;
    }
    
    .blog-content-wrapper {
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .blog-card {
        width: calc(100% - 20px);
        margin: 10px;
    }
    
    .blog-main-container {
        padding: 10px;
    }
}

/***

====================================================================
	News + Project 
====================================================================

 ***/

 .news-cards-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px;
    max-width: 1100px;
    margin: 20px auto;
}

.news-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.news-card {
    width: calc(33.333% - 25px);
    max-width: 300px;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.news-card-image {
    height: 170px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 15px 15px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-title {
    margin-bottom: 10px;
    text-align: center;
}

.news-card-title h4 {
    color: 
#8C3230;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.news-date {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-card-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.news-card-action {
    text-align: center;
    margin-top: 15px;
}

.news-read-more {
    display: inline-block;
    color: 
#8C3230;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

@media (max-width: 992px) {
    .news-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .news-card {
        width: 100%;
        max-width: 320px;
    }
}
.pagination-container {
    text-align: center;
    margin: 30px 0;
}

.pagination-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: 
#8C3230;
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.pagination-button:hover {
    background-color: 
#6d2826;
    color: #fff;
}

/***

====================================================================
	Footer
====================================================================

 ***/

.social-icons-custom {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.social-icons-custom li {
    display: inline-block;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: rgb(145, 13, 13);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 16px;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: darkred;
}

.social-icon i {
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (forced-colors: active) {
    .social-icon {
        border: 1px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-icon {
        transition: none;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
    }
}

@media (max-width: 320px) {
    .social-icons-custom {
        justify-content: center !important;
        gap: 5px;
        width: 100%;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .social-icon i {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .social-icons-custom {
        justify-content: center !important; 
        gap: 6px;
        width: 100%; 
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .social-icon i {
        font-size: 14px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .social-icon i {
        font-size: 15px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .social-icons-custom {
        gap: 10px;
    }
}

@media (min-width: 1201px) {
    .social-icons-custom {
        gap: 12px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), 
       (min-resolution: 192dpi) {
    .social-icon {
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
}

@media (prefers-reduced-data: reduce) {
    .social-icon {
        box-shadow: none;
    }
}

@supports not (display: flex) {
    .social-icons-custom {
        text-align: right;
    }
    
    .social-icons-custom li {
        margin: 0 4px 8px;
    }
    
    @media (max-width: 576px) {
        .social-icons-custom {
            text-align: center;
        }
    }
}

@supports not ((display: flex) or (display: grid)) {
    .social-icons-custom li {
        display: inline-block;
        vertical-align: middle;
    }
    
    .social-icon {
        display: inline-block;
        text-align: center;
    }
    
    .social-icon i {
        display: inline-block;
        vertical-align: middle;
        line-height: 38px;
    }
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        .social-icon {
            -webkit-appearance: none;
        }
    }
}

/***

====================================================================
	Home Messages
====================================================================

 ***/

.custom-hero {
  width: 100%;
  overflow: hidden;
  margin-top: 0px;
  position: relative;
  z-index: 1;
}

.custom-hero-image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.custom-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(100%);
}  

.custom-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.custom-hero-text {
  position: absolute;
  top: 50%;
  left: 150px; 
  transform: translateY(-50%); 
  color: white;
  text-align: left;
  z-index: 2;
  max-width: 800px;
  font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  text-transform: none; 
  line-height: 1.1;
}

.custom-hero-text h1 {
  font-size: 45px;
  font-weight: 400; 
  color: #ffffff;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1.1 !important;
  text-transform: none !important; 
}

.custom-hero-text span.highlight {
  color: #94272d; 
  display: inline !important;
}

.custom-hero-text p.larger {
  font-size: 40px !important;
  color: #ffffff;
  margin-top: 0px !important;
  margin-bottom: 5px !important;
  padding-top: 0 !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.custom-hero-text p.smaller {
  font-size: 20px !important;
  color: #ffffff;
  margin-top: 20px !important;
  padding-top: 0 !important;
  line-height: 1.3 !important;
  font-weight: 300 !important; 
  text-transform: none !important;
}

.custom-hero-text p span,
.custom-hero-text p div,
.custom-hero-text p * {
  display: inline !important;
}

@media (min-width: 768px) {
  .custom-hero-text h1 {
    font-size: 50px;
  }
  
  .custom-hero-text p.larger {
    font-size: 40px !important;
  }
  
  .custom-hero-text p.smaller {
    font-size: 20px !important;
  }
}

@media (min-width: 992px) {
  .custom-hero-text h1 {
    font-size: 60px;
  }
  
  .custom-hero-text p.larger {
    font-size: 50px !important;
  }
  
  .custom-hero-text p.smaller {
    font-size: 22px !important;
  }
}

@media (max-width: 767px) {
  .custom-hero-image {
    height: 400px;
  }
  
  .custom-hero-text {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
  }
  
  .custom-hero-text h1,
  .custom-hero-text span.highlight,
  .custom-hero-text p.larger,
  .custom-hero-text p.smaller {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text h1 strong,
  .custom-hero-text h1 * {
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
  }
  
  .custom-hero-text p.larger,
  .custom-hero-text p.larger span,
  .custom-hero-text p.larger strong,
  .custom-hero-text p.larger * {
    font-size: 28px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
  }
  
  .custom-hero-text p.smaller,
  .custom-hero-text p.smaller span,
  .custom-hero-text p.smaller strong,
  .custom-hero-text p.smaller * {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-top: 10px !important;
    text-transform: none !important;
  }
  
  .custom-hero-text [style*="font-size"] {
    font-size: inherit !important;
  }
}

@media (max-width: 480px) {
  .custom-hero-image {
    height: 350px;
  }
  
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text h1 strong,
  .custom-hero-text h1 * {
    font-size: 24px !important;
  }
  
  .custom-hero-text p.larger,
  .custom-hero-text p.larger span,
  .custom-hero-text p.larger strong,
  .custom-hero-text p.larger * {
    font-size: 22px !important;
  }
  
  .custom-hero-text p.smaller,
  .custom-hero-text p.smaller span,
  .custom-hero-text p.smaller strong,
  .custom-hero-text p.smaller * {
    font-size: 16px !important;
  }
  
  .custom-hero-text [style*="font-size"] {
    font-size: inherit !important;
  }
}

@media (max-width: 360px) {
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text h1 strong,
  .custom-hero-text h1 * {
    font-size: 20px !important;
  }
  
  .custom-hero-text p.larger,
  .custom-hero-text p.larger span,
  .custom-hero-text p.larger strong,
  .custom-hero-text p.larger * {
    font-size: 18px !important;
  }
  
  .custom-hero-text p.smaller,
  .custom-hero-text p.smaller span,
  .custom-hero-text p.smaller strong,
  .custom-hero-text p.smaller * {
    font-size: 14px !important;
  }
  
  .custom-hero-text [style*="font-size"] {
    font-size: inherit !important;
  }
}

@media (max-width: 767px) {
  .custom-hero-image {
    height: 400px;
  }
  
  .custom-hero-text {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 95%;
  }
  
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text p,
  .custom-hero-text p span,
  .custom-hero-text p div,
  .custom-hero-text p *,
  .custom-hero-text h1 * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .custom-hero-text {
    line-height: 0.9 !important;
  }
  
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text h1 strong,
  .custom-hero-text h1 [style*="font-size"] {
    font-size: 20px !important;
    margin-bottom: 0px !important; 
    line-height: 1 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .custom-hero-text p,
  .custom-hero-text p span,
  .custom-hero-text p strong,
  .custom-hero-text p div,
  .custom-hero-text p *,
  .custom-hero-text [style*="font-size"] {
    font-size: 22px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important; 
    line-height: 1 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  .custom-hero-image {
    height: 300px;
  }
  
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text h1 strong,
  .custom-hero-text h1 [style*="font-size"] {
    font-size: 18px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0.9 !important;
  }
  
  .custom-hero-text p,
  .custom-hero-text p span,
  .custom-hero-text p strong,
  .custom-hero-text p div,
  .custom-hero-text p *,
  .custom-hero-text [style*="font-size"] {
    font-size: 20px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0.9 !important;
  }
  
  .custom-hero-text {
    line-height: 0.9 !important;
  }
}

@media (max-width: 360px) {
  .custom-hero-text h1,
  .custom-hero-text h1 span,
  .custom-hero-text h1 strong,
  .custom-hero-text h1 [style*="font-size"] {
    font-size: 16px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0.9 !important;
  }
  
  .custom-hero-text p,
  .custom-hero-text p span,
  .custom-hero-text p strong,
  .custom-hero-text p div,
  .custom-hero-text p *,
  .custom-hero-text [style*="font-size"] {
    font-size: 18px !important;
    margin-bottom: 0px !important;
    margin-top: 0px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0.9 !important;
  }
  
  .custom-hero-text {
    line-height: 0.9 !important;
  }
}
  
/***

====================================================================
	Contact Page
====================================================================

 ***/

.mehna_lux_contact_section {
    background-color: #fefdfa; 
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif; 
}

.mehna_lux_container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.mehna_lux_header {
    margin-bottom: 50px;
    text-align: center;
}

.mehna_lux_desc_wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.mehna_lux_desc {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    color: inherit;
    position: relative;
    display: inline-block;
}

.mehna_lux_desc::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #96262c;
    margin: 20px auto 0;
}

.mehna_lux_content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.mehna_lux_info_col {
    flex: 1;
    min-width: 280px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.mehna_lux_info_item {
    position: relative;
    padding-bottom: 5px;
}

.mehna_lux_info_item:last-child {
    margin-bottom: 0;
}

.mehna_lux_title {
    color: #96262c; 
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.mehna_lux_detail {
    line-height: 1; 
}

.mehna_lux_detail p {
    margin: 0 0 8px 0;
    color: inherit;
}

.mehna_lux_detail p:last-child {
    margin-bottom: 0;
}

.mehna_lux_link {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.mehna_lux_link:hover {
    color: #96262c;
}

.mehna_lux_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #96262c;
    transition: width 0.3s ease;
}

.mehna_lux_link:hover::after {
    width: 100%;
}

.mehna_lux_map_col {
    flex: 1.5;
    min-width: 280px;
    padding: 0 20px;
    box-sizing: border-box;
}

.mehna_lux_map_frame {
    width: 100%;
    height: 350px; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: all 0.3s ease;
}

.mehna_lux_map_frame:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.mehna_lux_map_frame {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    -ms-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

.mehna_lux_map_frame:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
}

@media only screen and (max-width: 992px) {
    .mehna_lux_content {
        flex-direction: column;
    }
    
    .mehna_lux_info_col {
        margin-bottom: 40px;
    }
    
    .mehna_lux_map_frame {
        height: 320px;
    }
}

@media only screen and (max-width: 768px) {
    .mehna_lux_contact_section {
        padding: 40px 0;
    }
    
    .mehna_lux_header {
        margin-bottom: 40px;
    }
    
    .mehna_lux_map_frame {
        height: 300px;
    }
}

@media only screen and (max-width: 576px) {
    .mehna_lux_title {
        font-size: 16px;
    }
    
    .mehna_lux_header {
        margin-bottom: 30px;
    }
    
    .mehna_lux_desc {
        font-size: 16px;
    }
    
    .mehna_lux_map_frame {
        height: 250px;
    }
}

/***

====================================================================
	Newsdtl Page
====================================================================

 ***/

#mehna-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    color: #333;
    line-height: 1.6;
}

#mehna-news-container * {
    box-sizing: border-box;
}

#mehna-news-container .article-header {
    margin-bottom: 40px;
    text-align: center;
}

#mehna-news-container .article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #94272d;
    margin-bottom: 15px;
    line-height: 1.3;
}

#mehna-news-container .article-date {
    font-size: 1.2rem;
    color: #718096;
    font-weight: 600;
    margin-bottom: 30px;
    display: block;
}

#mehna-news-container .article-content {
    display: flex;
    flex-direction: row-reverse; /* Ensures images appear on the right */
    gap: 50px;
    margin-bottom: 50px;
}

#mehna-news-container .article-text {
    flex: 3;
}

#mehna-news-container .article-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
}

#mehna-news-container .article-text b {
    color: #0c0c0c;
    font-weight: 700;
}

#mehna-news-container .article-text strong {
    color: #94272d;
    font-weight: 700;
}

#mehna-news-container .article-gallery {
    flex: 2;
    position: relative;
    height: auto;
}

#mehna-news-container .gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background-color: #fff;
    /* Fixed height for image container */
    height: 400px; 
}

#mehna-news-container .gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

#mehna-news-container .gallery-item {
    flex: 0 0 100%;
    height: 100%; /* Use parent container height */
    position: relative;
}

#mehna-news-container .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures the image fills the available space while maintaining aspect ratio */
}

#mehna-news-container .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

#mehna-news-container .gallery-nav button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#mehna-news-container .gallery-nav button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

#mehna-news-container .gallery-nav i {
    color: #2c5282;
    font-size: 1.2rem;
}

#mehna-news-container .gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#mehna-news-container .gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#mehna-news-container .gallery-dot.active {
    background-color: #2c5282;
}

#mehna-news-container .back-button-container {
    text-align: center;
    margin-top: 40px;
}

#mehna-news-container .back-button {
    display: inline-block;
    background-color: #94272d;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #94272d;
}

#mehna-news-container .back-button:hover {
    background-color: #94272d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Improved modal styles */
#mehna-image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

#mehna-image-modal .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mehna-image-modal .modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

#mehna-image-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

/* Navigation buttons in modal */
#mehna-image-modal .modal-gallery-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10001;
}

#mehna-image-modal .modal-gallery-nav button {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 20px;
}

#mehna-image-modal .modal-gallery-nav button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

#mehna-image-modal .modal-gallery-nav i {
    color: white;
    font-size: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    #mehna-news-container .article-content {
        flex-direction: column;
    }
    
    #mehna-news-container .article-gallery {
        margin-bottom: 30px;
    }
    
    #mehna-news-container .gallery-container {
        height: 300px;
    }
    
    #mehna-news-container .article-title {
        font-size: 1.8rem;
    }
}

/***

====================================================================
	Form Siction
====================================================================

 ***/

 #mehna-contact-section * {
    box-sizing: border-box;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    margin: 0;
    padding: 0;
}

#mehna-contact-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

#mehna-contact-section .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#mehna-contact-section .container {
    position: relative;
    width: 100%;
    padding: 60px 10%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns content to the right */
    padding-right: 20%; /* Adds more padding on the right */
}

#mehna-contact-section .contact-title {
    color: white;
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 300;
    align-self: flex-end; /* Aligns title with the form */
    width: 65%; /* Same width as the form */
}

#mehna-contact-section .contact-form {
    width: 65%; /* Increased from 50% to make form larger */
}

#mehna-contact-section .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

#mehna-contact-section .form-group {
    width: 100%;
    margin-bottom: 15px;
}

#mehna-contact-section .form-control {
    width: 100%;
    padding: 18px; /* Increased padding to make fields larger */
    border: none;
    border-radius: 6px;
    background-color: #f5f5f5;
    font-size: 16px;
    color: #666;
}

#mehna-contact-section textarea.form-control {
    min-height: 170px; /* Increased height of textarea */
    resize: vertical;
}

#mehna-contact-section .btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px; /* Slightly increased */
}

#mehna-contact-section .btn-send {
    background-color: #96272c;
    color: white;
    border: none;
    padding: 14px 40px; /* Increased padding to make button larger */
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}

#mehna-contact-section .btn-send:hover {
    background-color: #96272c;
}

/* Responsive design */
@media (max-width: 992px) {
    #mehna-contact-section .container {
        padding-right: 15%; /* Adjusted for better responsive behavior */
    }
    
    #mehna-contact-section .contact-form {
        width: 70%;
    }
    
    #mehna-contact-section .contact-title {
        width: 70%; /* Match form width */
    }
}

@media (max-width: 768px) {
    #mehna-contact-section .container {
        padding: 40px 10%;
        align-items: center; /* Center on mobile */
    }
    
    #mehna-contact-section .contact-form {
        width: 100%;
        max-width: 500px;
    }
    
    #mehna-contact-section .contact-title {
        width: 100%;
        max-width: 500px;
        align-self: center; /* Center title on mobile */
        text-align: center;
    }
    
    #mehna-contact-section .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    #mehna-contact-section .contact-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    #mehna-contact-section .form-control {
        padding: 14px;
    }
    
    #mehna-contact-section .btn-send {
        padding: 12px 35px;
        font-size: 16px;
    }
}

/***

====================================================================
	Our Team Page
====================================================================

 ***/

 .mehna-team-container {
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    color: #333;
}

.mehna-team-intro {
    padding: 90px 10%;
    background-color: #fff;
}

.mehna-team-intro-text {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 100%;
    text-align: center;
}

.mehna-highlight {
    color: #96262c;
    font-weight: 600;
}

.mehna-title-words {
    color: #666;
    font-weight: 600;
}

.mehna-brillant-minds {
    background-color: #f2f2f2;
    padding: 40px 5%;
    text-align: center;
}

.mehna-brillant-title {
    color: #a17f7f;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}

.mehna-brillant-title .mehna-highlight {
    font-weight: bold;
}

.mehna-brillant-text {
    max-width: 1000px;
    margin: 0 auto 30px;
    color: #666;
    line-height: 1.6;
}

.mehna-weps-title {
    color: #a17f7f;
    font-size: 22px;
    margin: 40px auto 20px;
    font-weight: normal;
    text-align: center;
}

.mehna-weps-image {
    max-width: 600px;
    margin: 0 auto 20px;
    text-align: center;
}

.mehna-weps-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.mehna-weps-text {
    max-width: 1000px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.mehna-team-full-image {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; 
}

.mehna-team-full-image img {
    width: 100%;
    height: auto;
    display: block;
}

.mehna-meet-our-people {
    padding: 40px 0;
    background-color: #fff;
}

.mehna-meet-title {
    color: #666;
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
}

.mehna-meet-subtitle {
    color: #a17f7f;
    font-size: 22px;
    margin: 10px 0 60px;
    text-align: center;
    font-style: italic;
}

.mehna-team-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.mehna-team-member {
    display: flex;
    margin-bottom: 50px;
    align-items: flex-start;
}

.mehna-member-image {
    width: 120px;
    margin-right: 200px;
    flex-shrink: 0;
}

.mehna-member-image img {
    width: 150%;
    height: auto;
    display: block;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mehna-member-info {
    flex: 1;
    padding-top: 5px;
}

.mehna-member-name {
    color: #96272c;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 550;
    margin-top: 0;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.mehna-member-description {
    color: #666;
    font-size: 17px;
    line-height: 1.7;
    max-width: 550px;
    margin-top: 0;
    margin-bottom: 0;
}

.mehna-join-button-container {
    text-align: center;
    margin: 40px 0;
}

.mehna-join-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #96262c;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: normal;
    transition: background-color 0.3s;
}

.mehna-join-button:hover {
    background-color: #7d1f24;
}

@media (max-width: 768px) {
    .mehna-brillant-title {
        font-size: 24px;
    }
    
    .mehna-weps-title {
        font-size: 20px;
    }
    
    .mehna-meet-title {
        font-size: 28px;
    }
    
    .mehna-meet-subtitle {
        font-size: 18px;
    }
    
    .mehna-team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mehna-member-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .mehna-member-info {
        text-align: center;
    }
    
    .mehna-member-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .mehna-team-box {
        padding: 0 15px;
    }
    
    .mehna-meet-title {
        font-size: 24px;
    }
    
    .mehna-meet-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/***

====================================================================
	About Page
====================================================================

 ***/

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    padding-top: 0; /* No top padding */
    margin-top: 0; /* Remove any top margin */
}

.accordion-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0; /* Remove top margin */
}

.accordion {
    width: 100%;
}

/* For screens larger than 768px, create two columns */
@media (min-width: 768px) {
    .accordion {
        width: 48%;
    }
}

/* For smaller screens, make it single column */
@media (max-width: 767px) {
    .accordion {
        width: 100%;
    }
}

.accordion-item {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.accordion-button {
    background-color: #94272d;
    color: white;
    cursor: pointer;
    padding: 16px 25px;
    width: 100%;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

/* Responsive font size */
@media (min-width: 768px) {
    .accordion-button {
        font-size: 18px;
    }
}

.accordion-button .title {
    text-align: left;
    flex-grow: 1;
}

.accordion-button .arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
    flex-shrink: 0;
}

.accordion-button .arrow svg {
    width: 12px;
    height: 12px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
    border-radius: 0 0 10px 10px;
}

.content-inner {
    padding: 16px 20px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-text {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.company-name {
    color: #94272d;
    font-weight: bold;
}

/* Active states */
.accordion-item.active .accordion-button {
    border-radius: 10px 10px 0 0;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.accordion-item.active .content-inner {
    opacity: 1;
    transform: translateY(0);
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

/* White accordion state */
.accordion-item.white .accordion-button {
    background-color: white;
    color: black;
    font-weight: 600;
}

.accordion-item.white .arrow {
    background-color: transparent;
}

.accordion-item.white .arrow svg path {
    color: #94272d;
}

/* Reset styles only for our container */
.mehna-vmv-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main container styles */
.mehna-vmv-container {
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    line-height: 1.6;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    isolation: isolate;
}

/* Inner container */
.mehna-vmv-inner {
    background-color: white;
    padding: 20px;
    border-radius: 0;
    box-shadow: none;
}

/* Header styles */
.mehna-vmv-header {
    text-align: center;
    margin-bottom: 50px;
}

.mehna-vmv-container h1 {
    color: #555;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

.mehna-vmv-quote {
    color: #999;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 300;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

.mehna-vmv-quote-author {
    color: #666;
    font-weight: 400;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

/* Intro text styles */
.mehna-vmv-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    padding: 0 20px;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

.mehna-vmv-intro p {
    margin-bottom: 20px;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

/* Section styles - Updated with exact spacing to match image */
.mehna-vmv-section {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
}

/* Remove bottom margin from last section */
.mehna-vmv-section:last-of-type {
    margin-bottom: 0;
}

/* Exact spacing between sections as shown in image */
.mehna-vmv-section:nth-of-type(4) {
    margin-bottom: 30px;
}

.mehna-vmv-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.mehna-vmv-icon {
    margin-right: 15px;
    width: 70px;
    height: 70px;
}

.mehna-vmv-section-title {
    color: #94272d;
    font-size: 40px;
    font-weight: 300;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    margin: 0;
    padding: 0;
}

/* Updated section content for exact match to image */
.mehna-vmv-section-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.mehna-vmv-section-text {
    flex: 1;
    padding-right: 420px;
}

.mehna-vmv-section-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

/* Image styling exactly as in reference image */
.mehna-vmv-section-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    height: 350px;
    overflow: hidden;
}

.mehna-vmv-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Mission list styles */
.mehna-vmv-mission-list {
    list-style-type: none;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    padding-left: 0;
    margin-bottom: 0;
}

.mehna-vmv-mission-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    list-style: none;
}

/* Last list item spacing */
.mehna-vmv-mission-list li:last-child {
    margin-bottom: 0;
}

.mehna-vmv-mission-list li:before {
    content: "•";
    color: #94272d;
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
}

.mehna-vmv-highlight {
    font-weight: 500;
    color: #94272d;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
}

.mehna-vmv-italicized {
    font-style: italic;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
}

/* CRITICAL FIX: Remove space between boxes and CORE VALUES */
.mehna-vmv-section:last-of-type {
    margin-top: 0;
    padding-top: 0;
}

/* Connect Core Values directly to accordion boxes */
.container {
    padding-top: 0;
    margin-top: -10px; /* Pull up the accordion boxes to remove gap */
}

/* Responsive styles */
@media (max-width: 768px) {
    .mehna-vmv-container {
        padding: 10px;
    }
    
    .mehna-vmv-inner {
        padding: 15px;
    }
    
    .mehna-vmv-section-content {
        flex-direction: column;
    }
    
    /* Reset image settings on mobile */
    .mehna-vmv-section-text {
        padding-right: 0;
    }
    
    .mehna-vmv-section-image {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    
    .container {
        margin-top: 0;
    }
    
    .mehna-vmv-container h1 {
        font-size: 28px;
    }
    
    .mehna-vmv-section-title {
        font-size: 28px;
    }
}
.mehna-values-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px;
  }
  
  .mehna-values-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .mehna-values-column {
    flex: 1;
  }
  
  .mehna-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mehna-value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .mehna-value-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #94272d; /* Maroon dot color */
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .mehna-value-text {
    color: #585a5b;
    font-size: 18px;
    font-weight: 500;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .mehna-values-columns {
      flex-direction: column;
      gap: 10px;
    }
  }

/***

====================================================================
	Home Why Mehna
====================================================================

 ***/

  /* Main Container */
.mehna-sections-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    color: #585a5b;
  }
  
  /* Header Styling - Exact Match to Image */
  .mehna-exact-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .mehna-main-title {
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 54px;
    font-weight: 400;
    color: #585a5b;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .mehna-title-highlight {
    color: #94272d;
    font-weight: 400;
  }
  
  .mehna-tagline {
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    font-size: 28px;
    color: #a78486;
    margin-top: 0;
    font-weight: 400;
    line-height: 1.3;
  }
  
  /* Features Layout - Single row with even spacing */
  .mehna-features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 30px;
    width: 100%;
  }
  
  .mehna-feature {
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
    padding: 0 10px;
  }
  
  .mehna-feature:hover {
    transform: translateY(-5px);
  }
  
  /* Feature Icon - sized icons */
  .feature-icon {
    margin-bottom: 20px;
  }
  
  .feature-icon img {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Feature Title */
  .feature-title {
    color: #96262C;
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .feature-icon img {
      width: 100px;
    }
  }
  
  @media (max-width: 768px) {
    .mehna-main-title {
      font-size: 42px;
    }
    
    .mehna-tagline {
      font-size: 26px;
    }
    
    .feature-title {
      font-size: 22px;
    }
    
    .mehna-features {
      flex-wrap: wrap;
    }
    
    .mehna-feature {
      flex: 1 1 40%;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .mehna-main-title {
      font-size: 36px;
    }
    
    .mehna-tagline {
      font-size: 22px;
    }
    
    .feature-title {
      font-size: 20px;
    }
    
    .mehna-feature {
      flex: 1 1 100%;
    }
  }
  
  
/***

====================================================================
	HOME MESS
====================================================================

***/
 
.accountability-section {
    font-family: "Public Sans", Helvetica, Arial, Lucida, sans-serif;
    position: relative;
    z-index: 1;
}

.accountability-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.accountability-slide {
    width: 100%;
    position: relative;
    background-color: transparent;
    aspect-ratio: 16/9;
    max-height: 70vh;
}

.accountability-slide-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.accountability-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.2);
}

.accountability-content-wrapper {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.accountability-content {
    text-transform: uppercase;
    color: white;
    text-align: left;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.accountability-content p {
    transform: translateY(50px);
    opacity: 0;
    margin: 0;
    padding: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.accountability-line1 {
    color: #94272d;
    font-size: 40px;
    margin-bottom: 5px !important;
}

.accountability-line2 {
    color: white;
    font-size: 45px;
    margin-bottom: 5px !important;
}

.accountability-line3 {
    color: white;
    font-size: 45px;
}

.accountability-highlight {
    color: #94272d;
    display: inline;
}

.accountability-animated p:nth-child(1) {
    animation: accountabilitySlideUp 0.8s forwards 0.2s;
}

.accountability-animated p:nth-child(2) {
    animation: accountabilitySlideUp 0.8s forwards 0.5s;
}

.accountability-animated p:nth-child(3) {
    animation: accountabilitySlideUp 0.8s forwards 0.8s;
}

@keyframes accountabilitySlideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media only screen and (min-width: 768px) {
    .accountability-line1 {
        font-size: 50px;
        margin-bottom: 8px !important;
    }
    .accountability-line2, .accountability-line3 {
        font-size: 60px;
        margin-bottom: 8px !important;
    }
}

@media only screen and (min-width: 992px) {
    .accountability-slide {
        aspect-ratio: 21/9;
        max-height: 100vh;
        height: 85vh;
    }
    
    .accountability-content-wrapper {
        width: 80%;
        padding: 0 40px;
    }
    
    .accountability-line1 {
        font-size: 60px;
        margin-bottom: 10px !important;
    }
    
    .accountability-line2, .accountability-line3 {
        font-size: 70px;
        margin-bottom: 10px !important;
    }
}

@media only screen and (min-width: 1200px) {
    .accountability-slide {
        height: 90vh;
        max-height: none;
    }
    
    .accountability-line1 {
        font-size: 70px;
    }
    
    .accountability-line2, .accountability-line3 {
        font-size: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .accountability-slide {
        aspect-ratio: 4/3.5;
        max-height: 65vh;
        height: auto;
    }
    
    .accountability-content {
        text-align: center !important;
        line-height: 1.2 !important;
    }
    
    .accountability-content-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
        width: 95% !important;
        padding: 0 15px !important;
    }
    
    .accountability-content p,
    .accountability-content p span,
    .accountability-content p div,
    .accountability-content p * {
        margin-left: auto !important;
        margin-right: auto !important;
        line-height: 1.2 !important;
        margin-bottom: 8px !important;
    }
    
    .accountability-content .accountability-line1,
    .accountability-content p.accountability-line1,
    .accountability-content [class*="line1"],
    .accountability-content h1,
    .accountability-content h2,
    .accountability-content h3,
    .accountability-content [style*="font-size"] {
        font-size: 28px !important; 
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .accountability-content .accountability-line2,
    .accountability-content .accountability-line3,
    .accountability-content p.accountability-line2,
    .accountability-content p.accountability-line3,
    .accountability-content [class*="line2"],
    .accountability-content [class*="line3"] {
        font-size: 30px !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    #accountabilityAnimatedContent * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media only screen and (max-width: 480px) {
    .accountability-slide {
        max-height: 60vh;
    }
    
    .accountability-content .accountability-line1,
    .accountability-content p.accountability-line1,
    .accountability-content [class*="line1"],
    .accountability-content h1,
    .accountability-content h2,
    .accountability-content h3,
    .accountability-content [style*="font-size"] {
        font-size: 24px !important;
        margin-bottom: 7px !important;
    }
    
    .accountability-content .accountability-line2,
    .accountability-content .accountability-line3,
    .accountability-content p.accountability-line2,
    .accountability-content p.accountability-line3,
    .accountability-content [class*="line2"],
    .accountability-content [class*="line3"] {
        font-size: 26px !important;
        margin-bottom: 7px !important;
    }
}

@media only screen and (max-width: 360px) {
    .accountability-slide {
        max-height: 55vh;
    }
    
    .accountability-content .accountability-line1,
    .accountability-content p.accountability-line1,
    .accountability-content [class*="line1"],
    .accountability-content h1,
    .accountability-content h2,
    .accountability-content h3,
    .accountability-content [style*="font-size"] {
        font-size: 22px !important;
        margin-bottom: 6px !important;
    }
    
    .accountability-content .accountability-line2,
    .accountability-content .accountability-line3,
    .accountability-content p.accountability-line2,
    .accountability-content p.accountability-line3,
    .accountability-content [class*="line2"],
    .accountability-content [class*="line3"] {
        font-size: 24px !important;
        margin-bottom: 6px !important;
    }
}


/***

====================================================================
	Footer For Screens
====================================================================

***/

@media (max-width: 767px) {
  .et_pb_column_2_tb_footer img {
    width: 40px !important;
    height: 40px !important;
  }
  
  .et_pb_column_2_tb_footer a,
  .et_pb_column_2_tb_footer span {
    font-size: 16px !important;
  }
  
  .et_pb_column_2_tb_footer table {
    width: 100% !important;
  }
  
  .et_pb_column_2_tb_footer tr {
    margin-bottom: 15px;
    display: block;
  }
  
  .et_pb_column_3_tb_footer .et_pb_image {
    text-align: center !important;
  }
  
  .et_pb_column_3_tb_footer .et_pb_image img {
    width: 200px !important;
    height: auto !important;
  }
  
  .social-icons-custom {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  
  .social-icons-custom .social-icon i {
    font-size: 15px !important;
  }
  
  .et_pb_text_1_tb_footer p {
    text-align: center !important;
    font-size: 15px !important;
  }
}

/***

====================================================================
	Footer For Screens
====================================================================

***/

.search-page {
            background: #f8f9fa;
            min-height: 100vh;
            padding: 40px 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        .search-header {
            background: #fff;
            padding: 60px 0;
            margin-bottom: 40px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .search-title {
            font-size: 2.5rem;
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .search-term-highlight {
            color: #B85450;
            font-weight: 700;
        }

        .results-count {
            color: #666;
            font-size: 1.1rem;
            margin-top: 15px;
        }

        .results-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Result Cards - Same Style as Website */
        .result-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }

        .result-content {
            display: flex;
            align-items: center;
            padding: 0;
        }

        .result-content.no-image {
            display: block;
        }

        .result-content.no-image .result-text {
            padding: 35px;
            width: 100%;
        }

        .result-text {
            flex: 1;
            padding: 35px;
        }

        .result-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #B85450;
            margin-bottom: 15px;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .result-card:hover .result-title {
            color: #A04943;
        }

        .result-description {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .read-more-btn {
            color: #B85450;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .read-more-btn:hover {
            color: #A04943;
            text-decoration: none;
        }

        .result-image {
            width: 300px;
            height: 200px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }

        .result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .result-card:hover .result-image img {
            transform: scale(1.05);
        }

        /* Search Highlighting - Matching Website Colors */
        .highlight-text {
            background: rgba(184, 84, 80, 0.15);
            color: #B85450;
            padding: 2px 4px;
            border-radius: 3px;
            font-weight: 600;
        }

        /* No Results */
        .no-results {
            background: #fff;
            text-align: center;
            padding: 80px 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .no-results-icon {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 30px;
        }

        .no-results h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .no-results p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 500px;
            margin: 0 auto;
        }

        /* Custom Pagination Styling */
        .search-pagination {
            margin-top: 50px;
        }

        .template-pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .template-pagination .pagination {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .template-pagination .pagination li {
            display: inline-block;
        }

        .template-pagination .pagination li a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            color: #666;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .template-pagination .pagination li a:hover {
            background: #B85450;
            border-color: #B85450;
            color: #fff;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(184, 84, 80, 0.3);
        }

        .template-pagination .pagination li a.active {
            background: #B85450;
            border-color: #B85450;
            color: #fff;
            box-shadow: 0 5px 15px rgba(184, 84, 80, 0.3);
            transform: translateY(-2px);
        }

        .template-pagination .pagination li.disabled span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: #f5f5f5;
            border: 2px solid #eee;
            border-radius: 8px;
            color: #ccc;
            font-weight: 600;
            font-size: 1rem;
            cursor: not-allowed;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .result-content {
                flex-direction: column;
            }
            
            .result-image-container {
                width: 100%;
                height: 200px;
            }
            
            .result-text {
                padding: 25px;
            }
            
            .search-title {
                font-size: 2rem;
            }

            .template-pagination .pagination {
                gap: 5px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .template-pagination .pagination li a,
            .template-pagination .pagination li span {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .search-header {
                padding: 40px 0;
            }
            
            .result-text {
                padding: 20px;
            }

            .template-pagination .pagination li a,
            .template-pagination .pagination li span {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }

            .template-pagination .pagination {
                gap: 3px;
            }
        }