*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
html { 
    scroll-behavior: smooth; 
}
body { 
    font-family: "Exo",sans-serif !important; 
    background: #f0ede8; 
    -webkit-font-smoothing: antialiased; 
}
a { 
    text-decoration: none; 
    color: inherit; 
}
ul { 
    list-style: none; 
}
button { 
    cursor: pointer; 
    border: none; 
    background: none; 
    font-family: inherit; 
}

:root {
    --mh-red:        #c0272d;
    --mh-red-dark:   #9e1f24;
    --mh-dark:       #1c1c1c;
    --mh-gray:       #666;
    --mh-border:     #e5e5e5;
    --mh-white:      #ffffff;
    --mh-topbar-bg:  #1c1c1c;
    --mh-topbar-txt: #b8b8b8;
    --bg-color: #eeeff2;
    --mh-shadow:     0 10px 40px rgba(0,0,0,0.13);
    --mh-ease:       0.26s cubic-bezier(0.4,0,0.2,1);
    --mh-drawer-w:   310px;
    
    /* Layout constraints: full width background, inner width 95% with max 1400px */
    --mh-content-max: 1400px;
    --mh-content-width: 95%;

    

}


/* ============================
    TOP BAR (full-width background, content constrained)
============================ */
header{
    width: 100%;
    background-color: var(--mh-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}
#main-header-topbar {
    background: var(--mh-topbar-bg);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

}
.main-header-topbar-inner {
    width: var(--mh-content-width);
    max-width: var(--mh-content-max);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.main-header-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-header-topbar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.77rem;
    color: var(--mh-topbar-txt);
    transition: color var(--mh-ease);
}
.main-header-topbar-contact:hover { color: #fff; }
.main-header-topbar-contact i { color: var(--mh-red); font-size: 0.72rem; }

.main-header-topbar-right {
    display: flex;
    align-items: center;
    gap: 2px;
}
.main-header-social-link {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 3px;
    font-size: 0.76rem;
    color: var(--mh-topbar-txt);
    transition: background var(--mh-ease), color var(--mh-ease), transform 0.2s;
}
.main-header-social-link:hover { transform: translateY(-2px); color: #fff; }
.main-header-social-link.mh-fb:hover  { background: #1877f2; }
.main-header-social-link.mh-ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.main-header-social-link.mh-yt:hover  { background: #ff0000; }
.main-header-social-link.mh-li:hover  { background: #0077b5; }
.main-header-social-link.mh-tw:hover  { background: #000; }
.main-header-social-link.mh-pi:hover  { background: #e60023; }

/* ============================
    STICKY WRAPPER (full-width background)
============================ */
#main-header-wrap {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--mh-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.09);
    width: 100%;
}
.main-header-bar {
    width: var(--mh-content-width);
    max-width: var(--mh-content-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

/* ============================
    LOGO
============================ */
#main-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    max-width: 200px;
}


/* ============================
    DESKTOP NAV
============================ */
#main-header-nav {
    display: flex;
    align-items: center;
    height: 78px;
}
.main-header-nav-item {
    position: relative;
    height: 78px;
    display: flex;
    align-items: center;
}
.main-header-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 13px;
    height: 78px;
    font-size: 0.845rem;
    font-weight: 500;
    color: var(--mh-dark);
    white-space: nowrap;
    position: relative;
    transition: color var(--mh-ease);
}
.main-header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--mh-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--mh-ease);
}
.main-header-nav-item:hover > .main-header-nav-link { color: var(--mh-red); }
.main-header-nav-item:hover > .main-header-nav-link::after { transform: scaleX(1); }

.main-header-chevron {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none; stroke-width: 2.5;
    flex-shrink: 0; opacity: 0.55;
    transition: transform var(--mh-ease), opacity var(--mh-ease);
}
.main-header-nav-item:hover > .main-header-nav-link .main-header-chevron {
    transform: rotate(180deg); opacity: 1;
}

/* ============================
    DROPDOWNS
============================ */
.main-header-dropdown {
    position: absolute;
    top: 100%; left: 0;
    background: var(--mh-white);
    border-top: 3px solid var(--mh-red);
    box-shadow: var(--mh-shadow);
    min-width: 215px;
    padding: 8px 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--mh-ease), transform var(--mh-ease), visibility var(--mh-ease);
}
.main-header-nav-item:hover > .main-header-dropdown {
    opacity: 1; visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.main-header-mega {
    min-width: 700px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 0;
}
.main-header-mega-col {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #f0f0f0;
}
.main-header-mega-col:last-child { border-right: none; }

.main-header-drop-link {
    display: block;
    padding: 9px 22px;
    font-size: 0.83rem;
    font-weight: 400;
    color: var(--mh-dark);
    position: relative;
    transition: color var(--mh-ease), background var(--mh-ease), padding-left var(--mh-ease);
}
.main-header-drop-link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0;
    background: var(--mh-red);
    transition: width 0.18s ease;
}
.main-header-drop-link:hover {
    color: var(--mh-red);
    background: rgba(192,39,45,0.04);
    padding-left: 30px;
}
.main-header-drop-link:hover::before { width: 3px; }

.main-header-nav-item:hover .main-header-drop-link {
    animation: mhSlideIn var(--mh-ease) both;
}
@keyframes mhSlideIn {
    from { opacity: 0; transform: translateX(-7px); }
    to   { opacity: 1; transform: none; }
}
.main-header-drop-link:nth-child(1)  { animation-delay: .03s; }
.main-header-drop-link:nth-child(2)  { animation-delay: .06s; }
.main-header-drop-link:nth-child(3)  { animation-delay: .09s; }
.main-header-drop-link:nth-child(4)  { animation-delay: .12s; }
.main-header-drop-link:nth-child(5)  { animation-delay: .15s; }
.main-header-drop-link:nth-child(6)  { animation-delay: .18s; }
.main-header-drop-link:nth-child(7)  { animation-delay: .21s; }
.main-header-drop-link:nth-child(8)  { animation-delay: .24s; }
.main-header-drop-link:nth-child(9)  { animation-delay: .27s; }

/* ============================
    HEADER RIGHT
============================ */
#main-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.main-header-contact-wrap {
    display: flex;
    align-items: center;
    gap: 9px;
}
.main-header-phone-circle {
    width: 38px; height: 38px;
    background: var(--mh-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background var(--mh-ease);
}
.main-header-phone-circle:hover { background: var(--mh-red); }
.main-header-phone-circle i { color: #fff; font-size: 0.82rem; }
.main-header-contact-txt { line-height: 1.25; }
.main-header-contact-label { font-size: 0.65rem; color: var(--mh-gray); display: block; }
.main-header-contact-num   { font-size: 0.9rem; font-weight: 600; color: var(--mh-dark); }

.main-header-btn-quote {
    background: var(--mh-red);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.82rem; font-weight: 600;
    border-radius: 2px;
    transition: background var(--mh-ease), transform 0.15s;
    white-space: nowrap;
}
.main-header-btn-quote:hover { background: var(--mh-red-dark); transform: translateY(-1px); }

/* ============================
    HAMBURGER
============================ */
#main-header-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 8px;
    border-radius: 3px;
    transition: background var(--mh-ease);
    flex-shrink: 0;
}
#main-header-hamburger:hover { background: rgba(192,39,45,0.08); }
#main-header-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--mh-dark);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s, width .2s;
    transform-origin: center;
}
#main-header-hamburger.main-header-is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#main-header-hamburger.main-header-is-open span:nth-child(2) { opacity: 0; width: 0; }
#main-header-hamburger.main-header-is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
    OVERLAY
============================ */
#main-header-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 1400;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
#main-header-overlay.main-header-ov-show {
    opacity: 1;
    pointer-events: all;
}

/* ============================
    DRAWER
============================ */
#main-header-drawer {
    position: fixed;
    top: 0; left: 0;
    width: var(--mh-drawer-w);
    height: 100%;
    background: #fff;
    z-index: 1500;
    transform: translateX(-100%);
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
#main-header-drawer.main-header-drawer-show { transform: translateX(0); }

.main-header-drw-head {
    background: #242424;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.main-header-drw-head-info { line-height: 1.4; }
.main-header-drw-head-label { font-size: 0.68rem; color: #999; display: block; }
.main-header-drw-head-num   { font-size: 0.94rem; font-weight: 600; color: #fff; }
.main-header-drw-close {
    width: 30px; height: 30px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.82rem;
    transition: border-color .2s, background .2s;
    flex-shrink: 0;
}
.main-header-drw-close:hover { border-color: var(--mh-red); background: var(--mh-red); }

.main-header-drw-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 16px 10px;
    border-bottom: 1px solid var(--mh-border);
    flex-shrink: 0;
}
.main-header-drw-logo img{
    width: 170px;
}

.main-header-drw-home {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--mh-border);
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--mh-dark);
    flex-shrink: 0;
    transition: color .2s;
}
.main-header-drw-home:hover { color: var(--mh-red); }
.main-header-drw-home i { color: var(--mh-red); font-size: 0.75rem; }

.main-header-drw-nav { overflow-y: auto; flex: 1; }
.main-header-drw-nav::-webkit-scrollbar { width: 3px; }
.main-header-drw-nav::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.main-header-drw-item { border-bottom: 1px solid var(--mh-border); }
.main-header-drw-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    font-size: 0.89rem;
    font-weight: 500;
    color: var(--mh-red);
    text-align: left;
    transition: background .2s;
}
.main-header-drw-btn:hover { background: rgba(192,39,45,0.05); }
.main-header-drw-btn.main-header-drw-plain { color: var(--mh-dark); }

.main-header-drw-toggle {
    width: 26px; height: 26px;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 300;
    color: var(--mh-dark);
    flex-shrink: 0;
    transition: transform .28s ease, border-color .2s, color .2s, background .2s;
    line-height: 1;
    pointer-events: none;
}
.main-header-drw-item.main-header-drw-open .main-header-drw-toggle {
    transform: rotate(45deg);
    border-color: var(--mh-red);
    background: var(--mh-red);
    color: #fff;
}

.main-header-drw-sub {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.main-header-drw-item.main-header-drw-open .main-header-drw-sub { max-height: 2400px; }

.main-header-drw-sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 28px;
    font-size: 0.81rem;
    color: #5a5a5a;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: color .2s, padding-left .2s, background .2s;
}
.main-header-drw-sub-link::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--mh-red);
    opacity: 0.45;
    flex-shrink: 0;
    transition: opacity .2s;
}
.main-header-drw-sub-link:hover {
    color: var(--mh-red);
    padding-left: 34px;
    background: rgba(192,39,45,0.04);
}
.main-header-drw-sub-link:hover::before { opacity: 1; }

.main-header-drw-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--mh-border);
    background: #f9f9f9;
    display: flex; align-items: center; gap: 5px;
    flex-shrink: 0;
}
.main-header-drw-social {
    width: 32px; height: 32px;
    border: 1.5px solid var(--mh-border);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.76rem;
    color: var(--mh-gray);
    transition: background .2s, color .2s, border-color .2s, transform .18s;
}
.main-header-drw-social:hover { transform: translateY(-2px); color: #fff; }
.main-header-drw-social.mh-fb:hover { background:#1877f2; border-color:#1877f2; }
.main-header-drw-social.mh-ig:hover { background:#e1306c; border-color:#e1306c; }
.main-header-drw-social.mh-yt:hover { background:#ff0000; border-color:#ff0000; }
.main-header-drw-social.mh-li:hover { background:#0077b5; border-color:#0077b5; }
.main-header-drw-social.mh-tw:hover { background:#000; border-color:#000; }

/* ============================
    RESPONSIVE (maintain 95% width on smaller screens)
============================ */
@media (max-width: 1100px) {
    .main-header-bar, .main-header-topbar-inner { width: var(--mh-content-width); }
    .main-header-bar { padding: 0; margin: 0 auto; }
    .main-header-topbar-inner { margin: 0 auto; }
    #main-header-nav { display: none; }
    .main-header-contact-wrap { display: none; }
    #main-header-hamburger { display: flex; }
    #main-header-overlay { display: block; }
}
@media (max-width: 600px) {
    #main-header-topbar { height: auto; min-height: 38px; padding: 5px 0; }
    .main-header-topbar-inner { flex-wrap: wrap; gap: 4px; padding: 4px 0; }
    .main-header-topbar-left { gap: 10px; }
    .main-header-bar { height: 64px; }
    .main-header-btn-quote { padding: 8px 12px; font-size: 0.77rem; }
}
@media (max-width: 380px) {
    .main-header-topbar-right { display: none; }
}


/* =================================================================================
   Main Content Styles (for demo purposes) powered by https://www.easysoftltd.com
==================================================================================== */

/* Slider Container */
#slider {
    width: 100vw;
    /* ইমেজের অরিজিনাল রেশিও সেট করা হলো, এর ফলে ছবি একটুও কাটবে না */
    aspect-ratio: 3520 / 1216; 
    max-height: 80vh; /* ম্যাক্সিমাম হাইট ৮০% ডিসপ্লে জুড়ে থাকবে */
    height: auto;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Slider Track */
#sliderWrap {
    display: flex;
    width: 100%;
    height: 100%;
    list-style: none;
}
.slider-wrap li img{
    height: 120vh;
}

/* Individual Slide */
#sliderWrap li {
    flex: 0 0 100vw; 
    width: 100vw;
    height: 100%; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Real Image Tag inside Slide */
#sliderWrap li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Since container ratio matches image, cover works flawlessly without cropping */
    object-position: center;
    z-index: 1;
}

/* Dark Overlay to make text readable */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

/* Slide Content (Title, Subtitle, Button) */
.slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

/* Auto Scaling Text based on screen size */
.slide-content h1 {
    font-size: clamp(1.2rem, 3.5vw, 4rem);
    margin-bottom: clamp(5px, 1vw, 15px);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.slide-content p {
    font-size: clamp(0.8rem, 1.5vw, 1.5rem);
    margin-bottom: clamp(10px, 2vw, 30px);
    line-height: 1.5;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.slide-content .btn {
    display: inline-block;
    padding: clamp(6px, 1vw, 12px) clamp(12px, 2vw, 30px);
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: clamp(0.7rem, 1vw, 1.1rem);
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s ease;
}
.slide-content .btn:hover {
    background: rgb(196, 253, 255);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(196, 253, 255, 0.4);
}

/* Navigation Arrows */
#prev, #next {
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(20px, 4vw, 40px);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
    background: rgba(0,0,0,0.3);
    padding: clamp(2px, 0.5vw, 10px) clamp(10px, 1vw, 20px);
    border-radius: 5px;
    cursor: pointer;
}
#prev:hover, #next:hover {
    color: #fff;
    background: rgba(0,0,0,0.8);
}
#prev { left: clamp(5px, 2vw, 20px); }
#next { right: clamp(5px, 2vw, 20px); }

/* Pagination Dots */
#num {
    position: absolute;
    bottom: clamp(10px, 2vw, 30px);
    width: 100%;
    text-align: center;
    z-index: 10;
}
#num div {
    display: inline-block;
    width: clamp(15px, 2vw, 30px);
    height: clamp(3px, 0.5vw, 5px);
    background: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    transition: 0.3s ease;
    cursor: pointer;
    border-radius: 3px;
}
#num div:hover, #num div.active {
    background: #fff;
    box-shadow: 0 0 10px 2px rgb(196, 253, 255);
}

/* Progress Bar */
#lbar, #pbar {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    z-index: 10;
}
#lbar {
    background: rgba(255, 255, 255, 0.2);
}
#pbar {
    background: rgb(196, 253, 255);
    width: 0;
    box-shadow: 0 0 10px 1px rgb(196, 253, 255);
}
.animate-bar {
    animation: load 8s linear forwards;
}
@keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
}

/* =================================================================================
   Main Index Service Styles (for demo purposes) powered by https://www.easysoftltd.com
==================================================================================== */

/* Section Styles */
.index-services-section {
    position: relative;
    overflow: hidden;
    width: var(--mh-content-width);
    max-width: var(--mh-content-max);
    align-items: center;
    margin: 0 auto;
    padding: 20px 0px;
}

.index-bg-shape-left {
    position: absolute;
    top: 0;
    left: -50px;
    width: 300px;
    height: 300px;
    border: 1px solid #fca5a5;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.4;
    z-index: 0;
}

.index-bg-shape-right {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.index-container {
    max-width: 1360px; /* Increased width to accommodate 4 cards comfortably */
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.index-section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.index-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--mh-dark);
    margin-bottom: 15px;
}

.index-section-header p {
    font-size: 15px;
    color: var(--mh-gray);
    line-height: 1.6;
}

.index-section-header strong {
    color: var(--mh-dark);
    font-weight: 600;
}

/* Grid Layout: 4 Columns */
.index-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Card Styles & Hover Animations */
.index-service-card {
    background-color: var(--mh-white);
    border-radius: 20px;
    padding: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

/* Enhanced Card Hover */
.index-service-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
}

.index-card-image-wrapper {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.index-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image Zoom on Hover */
.index-service-card:hover .index-card-image-wrapper img {
    transform: scale(1.1);
}

.index-card-content {
    padding-bottom: 40px;
}

.index-card-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--mh-red);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.index-divider {
    height: 1px;
    width: 100%;
    background-color: #e5e7eb;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.index-service-card:hover .index-divider {
    /* background-color: #fca5a5; */
}

.index-card-content p {
    font-size: 13px;
    color: var(--mh-gray);
    line-height: 1.6;
}

/* S-Curve Corner Cutout */
.index-card-cutout {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 65px;
    height: 65px;
    background-color: #F0EDE8;
    border-top-left-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-card-cutout::before {
    content: "";
    position: absolute;
    top: -20px;
    right: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, transparent 20px, var(--bg-color) 20.5px);
}

.index-card-cutout::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, transparent 20px, var(--bg-color) 20.5px);
}

/* Circular Arrow Button & Hover */
.index-arrow-btn {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.index-arrow-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--mh-red);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform 0.3s ease, stroke 0.3s ease;
}

/* Arrow Button Hover Effect */
.index-service-card:hover .index-arrow-btn {
    background-color: var(--mh-red);
    /* box-shadow: 0 6px 15px rgba(224, 26, 34, 0.3); */
}

.index-service-card:hover .index-arrow-btn svg {
    stroke: #ffffff;
    transform: rotate(45deg); /* Playful rotation on hover */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .index-services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards on medium screens */
    }
}

@media (max-width: 992px) {
    .index-services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards on tablets */
    }
}

@media (max-width: 768px) {
    .index-services-grid {
        grid-template-columns: 1fr; /* 1 card on mobile */
    }
    .index-section-header h2 {
        font-size: 28px;
    }
    .index-services-section {
        padding: 50px 15px;
    }
}

/* ===========================================================================================
   Main Index Latest Projects Styles (for demo purposes) powered by https://www.easysoftltd.com
=============================================================================================== */
/* Title and Subtitle Section */

.index-latest-section {
    width: var(--mh-content-width);
    max-width: var(--mh-content-max);
    align-items: center;
    margin: 0 auto;
    padding: 20px 0px;
}
.index-latest-header-section {
    text-align: center;
    margin-bottom: 40px;
}
.index-latest-header-section {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.index-latest-header-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--mh-dark);
    margin-bottom: 15px;
}

.index-latest-header-section p {
    font-size: 15px;
    color: var(--mh-gray);
    line-height: 1.6;
}

.index-latest-header-section strong {
    color: var(--mh-dark);
    font-weight: 600;
}

.index-latest-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--mh-dark);
    margin: 0 0 10px 0;
}

.index-latest-subtitle {
    font-size: 16px;
    color: var(--mh-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout - now responsive and flexible */
.index-latest-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .index-latest-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .index-latest-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .index-latest-video-grid {
        grid-template-columns: 1fr;
    }
}

/* Video Card styling with Hover Animation */
.index-latest-video-card {
    background-color: var(--mh-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.index-latest-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Top Right More Icon */
.index-latest-more-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    color: var(--mh-dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.index-latest-more-icon:hover {
    background-color: var(--mh-dark);
    color: #ffffff;
}

/* Video Container - with custom play button overlay */
.index-latest-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}

.index-latest-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thumbnail image styling */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    z-index: 1;
}

.index-latest-video-card:hover .video-thumbnail {
    transform: scale(1.03);
}

/* ========== YOUTUBE-STYLE PLAY BUTTON ========== */
/* Exactly mimics YouTube's iconic red play button with white triangle */
.custom-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 40px;
    background-color: #ff0000;
    border-radius: 12px;
    cursor: pointer;
    z-index: 15;
    transition: all 0.2s ease;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* YouTube-style play triangle inside the button */
.custom-play-btn::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #ffffff;
    transition: all 0.15s ease;
}

/* Hover effect - YouTube style scaling */
.custom-play-btn:hover {
    background-color: #cc0000;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Optional pulse animation for initial attention */
@keyframes youtubePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.index-latest-video-container .custom-play-btn {
    animation: youtubePulse 2s ease-out 1;
}

/* Small screen adjustment */
@media (max-width: 600px) {
    .custom-play-btn {
        width: 56px;
        height: 38px;
        border-radius: 10px;
    }
    .custom-play-btn::before {
        border-width: 9px 0 9px 16px;
        transform: translate(-35%, -50%);
    }
}

/* Card content */
.index-latest-card-content {
    padding: 8px 10px;
}

.index-latest-card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--mh-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}






/* =================================================================================
   Main Footer Styles (for demo purposes) powered by https://www.easysoftltd.com
==================================================================================== */

#main-footer,
.main-footer-wrapper {
    background-color: #111;
    background-image: url("../../images/es-demo-footer-dark-wood-texture.webp");
    color: #ccc;
    padding: 60px 0 0;
    position: relative;
}

.main-footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
}

/* ---- Logo & About ---- */
.main-footer-logo-box {
    display: inline-block;
    padding: 10px 14px;
    margin-bottom: 18px;
    border-radius: 4px;
    max-width: 220px;
}
.main-footer-logo-img {
    width: 100%;
    max-width: 200px;
    display: block;
}
.main-footer-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #aaa;
    margin-bottom: 20px;
}
.main-footer-follow {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.5px;
}
.main-footer-social-icons {
    display: flex;
    gap: 10px;
}
.main-footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    color: #fff;
}
.main-footer-social-btn svg { width: 17px; height: 17px; }
.main-footer-fb  { background: #1877f2; }
.main-footer-yt  { background: #ff0000; }
.main-footer-ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.main-footer-social-btn:hover { transform: scale(1.15); }

/* ---- Headings ---- */
.main-footer-heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.main-footer-heading-bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #6abf2e;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ---- Lists (now all list items are links with hover animations) ---- */
.main-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.main-footer-list li {
    font-size: 14px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    cursor: pointer;
}
/* global hover animation for list items: shift + color + checkmark glow */
.main-footer-list li:hover {
    color: #6abf2e;
    transform: translateX(4px);
}
.main-footer-list li:hover .main-footer-check {
    background: #fff;
    color: #6abf2e;
    box-shadow: 0 0 5px #6abf2e;
    transition: all 0.2s;
}
.main-footer-list li a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    width: 100%;
    transition: color 0.2s;
}
.main-footer-list li a:hover {
    color: #6abf2e;
}
.main-footer-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #6abf2e;
    color: #fff;
    font-size: 11px;
    border-radius: 3px;
    flex-shrink: 0;
    font-weight: 700;
    transition: all 0.2s ease;
}

/* ---- Contact List (preserved) with hover effects ---- */
.main-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}
.main-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.2s ease;
}
.main-footer-contact-item:hover {
    color: #6abf2e;
    transform: translateX(3px);
}
.main-footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.main-footer-contact-icon svg { width: 16px; height: 16px; }
.main-footer-icon-phone { background: #6abf2e; color: #fff; }
.main-footer-icon-mail  { background: #444; color: #ccc; border: 1px solid #555; }
.main-footer-icon-loc   { background: #444; color: #ccc; border: 1px solid #555; }
.main-footer-phone-num {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Exo 2', sans-serif;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.main-footer-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #555;
    color: #ddd;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.main-footer-map-btn:hover {
    border-color: #6abf2e;
    color: #6abf2e;
    background: rgba(106,191,46,0.05);
    transform: scale(1.01);
}

/* ---- Bottom Bar ---- */
.main-footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #2a2a2a;
    background: #0d0d0d;
    padding: 18px 30px;
}
.main-footer-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.main-footer-copy {
    font-size: 13px;
    color: #777;
    margin: 0;
}
.main-footer-easysoft-link {
    color: #6abf2e;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.main-footer-easysoft-link:hover { color: #88df3e; text-decoration: underline; }
.main-footer-rights {
    font-size: 13px;
    color: #555;
    margin: 0;
    font-style: italic;
}

/* ====== FLOATING ACTION BUTTONS: WHATSAPP & MESSENGER REMOVED ====== */
/* group container kept but empty — no FABs visible (since we removed elements) */
.main-footer-fab-group {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}
/* No .main-footer-fab-whatsapp, no fab-messenger — removed entirely */

/* ---- Scroll To Top (preserved) ---- */
.main-footer-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: #6abf2e;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(106,191,46,0.4);
    transition: background 0.2s, transform 0.2s, opacity 0.3s;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
}
.main-footer-scroll-top.main-footer-scroll-visible {
    opacity: 1;
    pointer-events: auto;
}
.main-footer-scroll-top:hover {
    background: #7ed640;
    transform: translateY(-3px);
}
.main-footer-scroll-top svg { width: 20px; height: 20px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .main-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    }
}

@media (max-width: 640px) {
    .main-footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    }
    .main-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    }
    /* FAB group hidden because no buttons, but keep style reserved */
    .main-footer-fab-group {
    display: none;
    }
    .main-footer-scroll-top {
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
    }
}

/* extra micro animation for contact & map consistency */
.main-footer-contact-item:hover .main-footer-phone-num {
    color: #6abf2e;
    text-decoration-color: #6abf2e;
}