@font-face {
    font-family: "GeorgiaPro";
    src: url("../fonts/GeorgiaPro-Bold.ttf") format("ttf");
    font-weight: 700;
    font-style: normal;
}

:root {
    --msc-dark: #000000;
    --msc-accent: #e78aa1;
    /* derived from logo */
    --msc-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

.country_content_section{
    padding:50px 0;
}
.country_content_section .btn_readmore{
    color:var(--msc-accent);
    text-decoration:none;
    padding-left:0;
}

.country_content_section h1{
    font-size:38px;
    font-family: "GeorgiaPro";
    font-weight:700;
}
.country_content_section h2{
    font-size:30px;
    font-family: "GeorgiaPro";
    font-weight:700;
}
.country_content_section h3{
    font-size:27px;
    font-family: "GeorgiaPro";
    font-weight:600;
}
.country_content_section a{
    color:var(--msc-accent);
}



.collapsed-content {
    max-height: 180px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}

/* Fade effect */
.collapsed-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}

.expanded-content {
    max-height: 5000px;
}

.expanded-content::after {
    display: none;
}


/* Preloader Background */
#msc-preloader{
    position:fixed;
    width:100%;
    height:100%;
    background:#000000;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity .3s ease, visibility .3s ease;
}

/* Hide State */
#msc-preloader.hide{
    opacity:0;
    visibility:hidden;
}

/* Wrapper */
.msc-loader-wrapper{
    text-align:center;
}

/* Logo */
.msc-loader-logo{
    width:180px;
    margin-bottom:30px;
    animation: fadePulse 2s infinite;
}

/* Loader Line */
.msc-loader-line{
    width:160px;
    height:3px;
    background:#eee;
    margin:auto;
    position:relative;
    overflow:hidden;
    border-radius:10px;
}

.msc-loader-line::before{
    content:'';
    position:absolute;
    height:100%;
    width:40%;
    background:#c89b7b;
    animation: loadingLine 1.4s infinite;
}

/* Animations */
@keyframes loadingLine{
    0%{ left:-40%; }
    100%{ left:100%; }
}

@keyframes fadePulse{
    0%,100%{ opacity:1; }
    50%{ opacity:.5; }
}


.msc-header {
    background: transparent;
}

.msc-navbar {
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'GeorgiaPro', serif;
}

.nav-link {
    color: var(--msc-white) !important;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.nav-link:hover {
    color: var(--msc-accent) !important;
}

.msc-enquiry-btn {
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 14px;
}

.msc-dropdown {
    background: var(--msc-dark);
    border-radius: 12px;
    padding: 10px 0;
}

.msc-dropdown .dropdown-item {
    color: var(--msc-white);
    font-size: 14px;
}

.msc-dropdown .dropdown-item:hover {
    background: transparent;
    color: var(--msc-accent);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    left: 100%;
    top: 0;
}

.msc-header.scrolled {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Nav links after scroll */
.msc-header.scrolled .nav-link {
    color: var(--msc-dark) !important;
}
.msc-header.scrolled .dropdown-menu .nav-link {
    color: #ffffff !important;
}

/* Enquiry button after scroll */
.msc-header.scrolled .msc-enquiry-btn {
    border-color: var(--msc-dark);
    color: var(--msc-dark);
}

/* Logo swap support (optional) */
.msc-header.scrolled .msc-logo-light {
    display: none;
}

.msc-header.scrolled .msc-logo-dark {
    display: block;
}

/* Default state */
.msc-logo-dark {
    display: none;
}

.msc-header {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#mscMobileMenu{
    display:none;
}

/* HERO BASE */
.msc-hero-section {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Video */
.msc-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.msc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Content */
.msc-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.msc-hero-content h1 {
    font-family: 'GeorgiaPro', serif;
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.msc-hero-content h1 span {
    color: var(--msc-accent);
}

.msc-hero-content p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 35px;
}

/* Buttons */
.msc-hero-actions .btn {
    border-radius: 30px;
    padding: 10px 26px;
    font-size: 14px;
}

/* DOT NAVIGATION */
/* FIXED LEFT DOT NAVIGATION */
.msc-dot-nav {
    position: fixed;
    /* 🔥 KEY FIX */
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    /* above all sections */
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Dots */
.msc-dot-nav .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    background: transparent;
    opacity: 0.5;
    transition: all 0.3s ease;
}

/* Active dot */
.msc-dot-nav .dot.active {
    background: var(--msc-accent);
    border-color: var(--msc-accent);
    opacity: 1;
}


/* VIDEO BACKGROUND */
.msc-about-video-section {
    padding: 100px 0;
    overflow: hidden;
}

.msc-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.msc-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.msc-about-content h2 {
    font-family: 'GeorgiaPro', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

/* SLIDER */
.msc-quality-slider {
    position: relative;
}

/* TOP NAV WRAPPER */
.msc-slider-top-nav {
    position: relative;
    margin-bottom: 22px;
}

/* Horizontal line */
.msc-slider-top-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%);
}

/* Dots */
.msc-slider-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.msc-slider-dots span {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.4;
}

.msc-slider-dots span.active {
    opacity: 1;
}

/* Track */
.msc-slider-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

/* Card */
.msc-slide-card {
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
}

.msc-slide-card video {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 12px;
}

.msc-slide-card h5 {
    font-size: 16px;
    font-weight: 600;
}

.msc-slide-card p {
    font-size: 14px;
    color: #555;
}

/* Bottom nav */
.msc-slider-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.msc-prev,
.msc-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}


.msc-progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.msc-progress-line span {
    display: block;
    height: 100%;
    background: #fff;
    width: 0;
    transition: width 0.4s ease;
}

/* SECTION */
.msc-categories-section {
    background: #ffffff;
}

/* Heading */
.msc-section-title {
    font-family: 'GeorgiaPro', serif;
    font-size: 42px;
    line-height: 1.3;
    color: var(--msc-dark);
}

/* Card */
.msc-category-card {
    position: relative;
    display: block;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

/* Background */
.msc-category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

/* Overlay */
.msc-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.25));
}

/* Content */
.msc-category-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.msc-category-content h3 {
    font-family: 'GeorgiaPro', serif;
    font-size: 28px;
    margin-bottom: 10px;
}

.msc-category-content p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 18px;
}

/* Link */
.msc-category-link {
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* Hover */
.msc-category-card:hover .msc-category-bg {
    transform: scale(1.08);
}

.msc-category-card:hover .msc-category-link {
    opacity: 1;
}

/* Bulk Highlight */
.msc-category-bulk .msc-category-overlay {
    background: linear-gradient(to top,
            rgba(231, 138, 161, 0.85),
            rgba(0, 0, 0, 0.2));
}

.mobile_slider{
     background: linear-gradient(to top,
            rgba(231, 138, 161, 1),
            rgba(0, 0, 0, 1));
    padding: 80px 0;
}

.roadmap {
    position: relative;
    height: 200em;
    padding: 5em 0;
}

.roadmap__card {
    position: relative;
    width: 100%;
    /* height: 25.25em; */
    margin-top: 5em;
    background: linear-gradient(to top,
            rgba(231, 138, 161, 1),
            rgba(0, 0, 0, 1));
    padding: 80px 0;
    /* box-shadow: 0 20px 0 0 #3b3b3b; */
}

.roadmap__card.sticky {
    position: -webkit-sticky;
    position: sticky;
    bottom: -450px;
    z-index: 3;
    margin-top: 0em;
    margin-bottom: 0em;
}

.roadmap__card.sticky.step-1 {
    /* bottom: 3.5em; */
    z-index: 10;
    /* margin-bottom: 3.33em; */
}

.roadmap__card.sticky.step-2 {
    /* bottom: 9.17em; */
    z-index: 8;
    /* margin-bottom: 3.33em; */
}

.roadmap__card.sticky.step-3 {
    /* bottom: 4.17em; */
    z-index: 6;
    /* margin-bottom: 3.33em; */
}

.roadmap__card.sticky.step-4 {
    /* bottom: 4.17em; */
    z-index: 4;
    /* margin-bottom: 3.33em; */
}

.roadmap__card.sticky.step-5 {
    /* bottom: 4.17em; */
    z-index: 2;
    /* margin-bottom: 3.33em; */
}

.roadmap__card.sticky.step-6 {
    /* top: 4.17px; */
    /* bottom: 4.17em; */
    z-index: 1;
    /* margin-bottom: 3.33em; */
}

.card-content {
    position: static;

    height: 90em;
    margin-bottom: 0em;
    padding: 1.2em 2em;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.card-content {
    height: 100%;
}

.roadmap__card .card-content h3 {
    font-size: 50px;
    line-height: 50px;
}


.roadmap__title {
    position: relative;
    top: 0em;
    /* height: 200vh; */
    padding-top: 0em;
    padding-right: 0em;
    padding-left: 0em;
}

.roadmap__card-line {
    width: 0.05em;
    height: 15.17em;
    background-color: #fff;
    margin: auto;
}

.roadmap .service_video {
    border-radius: 50px;
}

/* SECTION */
.msc-recent-products {
    background: #ffffff;
}

.msc-section-tag {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

/* Card */
.msc-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.msc-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Media */
.msc-product-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Info */
.msc-product-info {
    padding: 20px;
}

.msc-product-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--msc-dark);
}

.msc-product-info span {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 14px;
}

/* Enquiry */
.msc-enquiry-link {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--msc-accent);
    text-decoration: none;
}

.msc-enquiry-link:hover {
    text-decoration: underline;
}

.msc-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* SECTION BASE */
.msc-video-showcase {
    background: #fafafa;
    padding: 80px 0;
    position: relative;
}

/* Heading */
.msc-video-heading h2 {
    font-family: 'GeorgiaPro', serif;
    font-size: 42px;
    color: #000;
}

/* Slider Wrapper */
.msc-video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Slider */
.msc-video-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.msc-video-slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.msc-video-card {
    min-width: 260px;
    height: 460px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

/* Video */
.msc-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Navigation Buttons */
.msc-video-nav {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.msc-video-nav.prev {
    left: -20px;
}

.msc-video-nav.next {
    right: -20px;
}

.msc-video-nav i {
    font-size: 14px;
}

/* SECTION */
.msc-why-us-section {
    background: #ffffff;
}

/* Card */
.msc-why-card {
    background: #fafafa;
    border-radius: 22px;
    padding: 36px 30px;
    height: 100%;
    transition: all 0.4s ease;
}

.msc-why-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

/* Icon */
.msc-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(231, 138, 161, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.msc-why-icon i {
    color: var(--msc-accent);
    font-size: 22px;
}

/* Text */
.msc-why-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--msc-dark);
}

.msc-why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* FAQ SECTION */
.msc-faq-section {
    background: linear-gradient(to top,
            rgba(231, 138, 161, 1),
            rgba(0, 0, 0, 1));
}

/* Accordion */
.msc-faq-accordion .accordion-item {
    border: none;
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
}

.msc-faq-accordion .accordion-button {
    font-size: 16px;
    font-weight: 500;
    padding: 20px 24px;
    background: #ffffff;
    color: var(--msc-dark);
    box-shadow: none;
}

.msc-faq-accordion .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: var(--msc-accent);
}

.msc-faq-accordion .accordion-button::after {
    background-size: 14px;
}

.msc-faq-accordion .accordion-body {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding: 0 24px 22px;
    background: #ffffff;
}

/* CERTIFICATIONS SECTION */
.msc-certifications-section {
    background: #ffffff;
    padding:80px 0;
}

/* Description */
.msc-section-desc {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

/* Card */
.msc-cert-card {
    padding: 22px 14px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.msc-cert-card img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
    /*filter: grayscale(100%);*/
    opacity: 0.85;
    transition: all 0.3s ease;
}

.msc-cert-card span {
    display: block;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: #555;
}

/* Hover */
/*.msc-cert-card:hover img {*/
/*    filter: grayscale(0%);*/
/*    opacity: 1;*/
/*}*/

/* FOOTER BASE */
.msc-footer {
    background: #0e0e0e;
    color: #cccccc;
    padding: 80px 0 30px;
}

/* Text */
.msc-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    max-width: 90%;
}

/* Titles */
.msc-footer-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    color: #ffffff;
}

/* Links */
.msc-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.msc-footer-links li {
    margin-bottom: 10px;
}

.msc-footer-links a {
    color: #cccccc;
    font-size: 14px;
    text-decoration: none;
}

.msc-footer-links a:hover {
    color: var(--msc-accent);
}

/* Social */
.msc-footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.msc-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.msc-footer-social a:hover {
    background: var(--msc-accent);
}

/* Address */
.msc-footer-address {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Map */
.msc-footer-map iframe {
    width: 100%;
    height: 160px;
    border: none;
    border-radius: 14px;
}

/* Divider */
.msc-footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 50px 0 20px;
}

/* Copyright */
.msc-footer-copy {
    font-size: 13px;
    color: #999;
}

/* Text */
.msc-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

/* Mission & Vision */
.msc-mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 22px;
    height: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.msc-mv-card h3 {
    font-family: 'GeorgiaPro', serif;
    margin-bottom: 14px;
}

.msc-mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* Founder Section */
.msc-founder-split {
    background: linear-gradient(to top,
            rgba(231, 138, 161, 1),
            rgba(0, 0, 0, 1));
}

.msc-founder-title {
    font-family: 'GeorgiaPro', serif;
    font-size: 42px;
    margin-bottom: 20px;
}

.msc-founder-video-box {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.msc-founder-video-box video {
    width: 100%;
    height: auto;
    display: block;
    /* background: #000; */
}

.msc-founder-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 16px;
}

.msc-founder-name {
    margin-top: 20px;
    font-weight: 500;
}

/* BREADCRUMB SECTION */
.msc-breadcrumb-section {
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background */
.msc-breadcrumb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.msc-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Title */
.msc-breadcrumb-title {
    font-family: 'GeorgiaPro', serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Breadcrumb */
.msc-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.msc-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

.msc-breadcrumb a:hover {
    color: #ffffff;
}

.msc-breadcrumb .active {
    color: #ffffff;
    font-size: 14px;
}

/* FILTER BOX */
.msc-filter-box {
    background: #fafafa;
    padding: 24px;
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

.msc-filter-title {
    margin-bottom: 20px;
}

.msc-filter-group {
    margin-bottom: 20px;
}

.msc-filter-group h6 {
    font-size: 14px;
    margin-bottom: 10px;
}

.msc-filter-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
}

/* PRODUCT CARD */
.msc-product-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.msc-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.msc-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.msc-product-info {
    padding: 16px;
}

.msc-product-info h5 {
    font-size: 16px;
    color: var(--msc-dark);
}

.msc-product-info span {
    font-size: 13px;
    color: #777;
}


/* Contact Intro */
.msc-contact-intro {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

/* Form Box */
.msc-contact-form-box {
    background: #ffffff;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.msc-contact-form-box .form-control {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
}

.msc-contact-form-box .form-control:focus {
    box-shadow: none;
    border-color: var(--msc-accent);
}

/* Success Message */
.msc-form-success {
    font-size: 14px;
    color: #2e7d32;
    background: #e8f5e9;
    padding: 10px 14px;
    border-radius: 8px;
}

/* Process */
.msc-contact-process h5 {
    margin-bottom: 18px;
}

.msc-contact-process ul {
    list-style: none;
    padding: 0;
}

.msc-contact-process li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
}

.msc-contact-process li span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--msc-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.msc-contact-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Map */
.msc-map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
}

/* Main Media */
.msc-product-main-media img {
    width: 100%;
    border-radius: 22px;
}

/* Thumbnails */
.msc-product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.msc-product-thumbs img,
.msc-video-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.msc-product-thumbs img.active {
    border-color: var(--msc-accent);
}

/* Video Thumb */
.msc-video-thumb {
    position: relative;
}

.msc-video-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    z-index: 2;
}

/* Text */
.msc-product-title {
    font-family: 'GeorgiaPro', serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.msc-product-short {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
}

.msc-product-highlights {
    list-style: none;
    padding: 0;
}

.msc-product-highlights li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Specs */
.msc-spec-table th {
    width: 200px;
    font-weight: 500;
}

/* MAIN MEDIA */
.msc-product-main-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    /* prevents layout jump */
    border-radius: 22px;
    overflow: hidden;
    /* 🔥 stops video overflow */
    background: #f5f5f5;
}

/* IMAGE */
.msc-product-main-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}

/* VIDEO */
.msc-product-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
    display: none;
    /* hidden by default */
}

/* THUMBNAILS */
.msc-product-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.msc-product-thumbs img,
.msc-video-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
}

.msc-product-thumbs img.active {
    border-color: var(--msc-accent);
}

/* VIDEO THUMB */
.msc-video-thumb {
    position: relative;
}

.msc-video-thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    z-index: 2;
}

.accordion-button::after {
    background-image: none !important;
    content: "+";
    font-size: 22px;
    font-weight: 500;
    transform: none !important;
}

.accordion-button[aria-expanded="true"]::after {
    content: "−";
}
.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.accordion-button:focus{
    box-shadow: none;
    border-color: #e78aa1;
    background-color: #e78aa1;
}
.accordion-body ul li{
    line-height: 30px;
}

.msc-info-hero {
    padding: 100px 0;
    background: linear-gradient(180deg,#faf7f4,#fff);
}

.msc-tag {
    font-size: 13px;
    letter-spacing: 1px;
    color: #c89b7b;
    text-transform: uppercase;
}

.msc-section {
    padding: 80px 0;
}

.bg-soft {
    background: #faf7f4;
}

.msc-section-title {
    font-size: 34px;
    font-family: 'GeorgiaPro', serif;
}

.msc-info-card,
.msc-fabric-card,
.msc-season-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.05);
}

.msc-table th {
    background: #f3ebe5;
}

.msc-list {
    padding-left: 18px;
}

/* Footer Trust Strip */
.msc-footer-trust {
    background: #f5f2ee;
    padding: 35px 0;
    border-top: 1px solid #e5ded7;
}

.msc-trust-item i {
    font-size: 28px;
    color: #e78aa1; /* My Sleep Cove accent */
    margin-bottom: 8px;
}

.msc-trust-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: #000;
}

.msc-trust-item p {
    font-size: 13px;
    color: #000;
    margin: 0;
}

/* Bulk CTA Section */
.msc-bulk-cta {
    /* background: linear-gradient(180deg, #faf7f4, #f3ebe5); */
     background: linear-gradient(100deg,
            rgba(231, 138, 161, 1),
            rgba(0, 0, 0, 1));
    padding: 70px 0;
    border-top: 1px solid #e6ded6;
}

.msc-cta-tag {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.msc-bulk-cta h2 {
    font-family: 'GeorgiaPro', serif;
    font-size: 36px;
    margin-bottom: 14px;
    color: #fff;
}

.msc-bulk-cta p {
    font-size: 16px;
    color: #fff;
    max-width: 720px;
}

/* CTA Button */
.msc-btn-primary {
    display: inline-block;
    background: #e78aa1;
    color: #fff;
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.msc-btn-primary:hover {
    background: #000;
    color: #fff;
}

/* Related Products */
.msc-related-products {
    padding: 80px 0;
    background: #faf7f4;
}

.msc-related-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: transform .3s ease;
}

.msc-related-card:hover {
    transform: translateY(-6px);
}

.msc-related-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.msc-related-info {
    padding: 16px;
    text-align: center;
}

.msc-related-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.msc-related-info span {
    font-size: 12px;
    color: #8a7f78;
}

.msc-policy-hero {
    background: #faf7f4;
    padding: 80px 0 50px;
    text-align: center;
}

.msc-policy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
}

.msc-policy-hero p {
    color: #7a726c;
    margin-top: 8px;
}

.msc-policy-content {
    padding: 70px 0;
}

.msc-policy-content h3 {
    margin-top: 40px;
    font-size: 22px;
}

.msc-policy-content ul {
    padding-left: 18px;
}

.msc-policy-content li {
    margin-bottom: 8px;
}

.msc-policy-content p {
    color: #444;
    line-height: 1.7;
}

.msc-contact-info h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.msc-contact-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.msc-contact-info a {
    color: #e78aa1;
    text-decoration: none;
}

.msc-contact-info a:hover {
    text-decoration: underline;
}

.custom-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.custom-pagination .pagination {
    gap: 8px;
}

.custom-pagination .page-link {
    border-radius: 10px;
    border: none;
    padding: 8px 14px;
    font-weight: 500;
    color: #333;
    background-color: #f2f2f2;
    transition: all 0.2s ease;
}

.custom-pagination .page-link:hover {
    background-color: #E68AA1;
    color: #fff;
}

.custom-pagination .page-item.active .page-link {
    background-color: #E68AA1;
    color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
    background-color: #e5e5e5;
    color: #999;
}
.custom-pagination p{
    display: none !important;
}

.parallax {
    background-image: url(../img/comfort-bg.webp); /* change image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    padding: 180px 0;
    position: relative;
    color: #fff;
}

/* Optional overlay for better text contrast */
.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.parallax .container {
    position: relative;
    z-index: 1;
}

/* Base Fabric Card */
.msc-fabric-card {
    position: relative;
    height: 320px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease;
    padding:0;
}

.msc-fabric-card:hover {
    transform: translateY(-6px);
}

/* Overlay */
.msc-fabric-overlay {
    width: 100%;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.8),
        transparent
    );
    color: #fff;
}

.msc-fabric-overlay h5 {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.msc-fabric-overlay p {
    font-size: 14px;
    margin-bottom: 6px;
}

.msc-fabric-overlay span {
    font-size: 13px;
    opacity: 0.9;
}

/* Individual Background Images */
.msc-fabric-cotton {
    background-image: url('../img/cotton.png');
}

.msc-fabric-flannel {
    background-image: url('../img/flannel.png');
}

.msc-fabric-microfiber {
    background-image: url('../img/microfiber.png');
}

/* Base Season Card */
.msc-season-card {
    position: relative;
    height: 300px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease;
    padding:0;
}

.msc-season-card:hover {
    transform: translateY(-6px);
}

/* Overlay */
.msc-season-overlay {
    width: 100%;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0.8),
        transparent
    );
    color: #fff;
}

.msc-season-overlay h5 {
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.msc-season-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Background Images */
.msc-season-summer {
    background-image: url('../img/summer.png');
}

.msc-season-all {
    background-image: url('../img/all-season.png');
}

.msc-season-winter {
    background-image: url('../img/winter.png');
}

.msc-footer {
    position: relative;
    background: url("../img/footer-bg.webp") center/cover no-repeat;
    color: #cccccc;
    padding: 80px 0 30px;
    overflow: hidden;
}

/* Overlay */
.msc-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* adjust darkness */
    z-index: 0;
}

/* Keep content above overlay */
.msc-footer .container {
    position: relative;
    z-index: 1;
}

  /*footer img{*/
  /*      width:90%;*/
  /*  }*/


.msc-thankyou {
    padding: 30px 0;
    background: #faf7f4;
}

.msc-thankyou-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    max-width: 600px;
    margin: auto;
}

.msc-check-icon {
    width: 70px;
    height: 70px;
    background: #e78aa1;
    color: #fff;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin: auto auto 20px;
}

.msc-thankyou h1 {
    font-family:'Playfair Display', serif;
    margin-bottom:15px;
}

.msc-btn-home {
    display:inline-block;
    margin-top:25px;
    padding:14px 34px;
    border-radius:40px;
    background:#e78aa1;
    color:#fff;
    text-decoration:none;
}




/* MOBILE */

@media (max-width: 768px) {

    #mscMobileMenu{
        display:block ;
    }
    .navbar-toggler{
        border:none;
        font-size:20px;
    }
    .msc-hero-content h1 {
        font-size: 38px;
    }
    .scrolled button i {
        color: #000 !important;
    }
    .msc-header.scrolled .nav-link{
        color:#fff !important;
    }

    .msc-dot-nav {
        display: none;
    }
    
    .msc-category-content {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        z-index: 2;
    }

    .msc-section-title {
        font-size: 32px;
    }

    .msc-category-card {
        height: 130px;
    }
    .msc-category-content h3{
        font-size:16px;
    }
    .msc-category-link{
        font-size:12px;
    }

    .msc-product-media img {
        height: 200px;
    }

    .msc-video-heading h2 {
        font-size: 28px;
    }

    .msc-video-card {
        min-width: 220px;
        height: 380px;
    }

    .msc-why-card {
        padding: 30px 24px;
    }

    .msc-faq-accordion .accordion-button {
        font-size: 15px;
        padding: 18px 20px;
    }

    .msc-cert-card img {
        max-height: 55px;
    }

    .msc-footer {
        padding: 60px 0 30px;
    }

    .msc-founder-title {
        font-size: 32px;
    }

    .msc-founder-section {
        height: auto;
        padding: 80px 0;
    }

    .msc-breadcrumb-section {
        height: 260px;
    }

    .msc-breadcrumb-title {
        font-size: 34px;
    }

    .msc-contact-form-box {
        padding: 28px;
    }

    .msc-product-title {
        font-size: 28px;
    }

     .msc-trust-item {
        padding: 10px 0;
    }

    .msc-bulk-cta {
        text-align: center;
    }

    .msc-bulk-cta h2 {
        font-size: 28px;
    }
    
    .roadmap__card-line {
        width: 0.05em;
        height: 50em;
        background-color: #fff;
        margin: auto;
    }
    
    .roadmap__card.sticky {
      
        bottom: -1100px;

    }
    .roadmap {
        position: relative;
        height: 330em;
        padding: 5em 0;
    }
    
    
}

@media(max-width:576px){
    .roadmap__card.sticky {
      
        bottom: -2500px;

    }
    

    .roadmap {
        position: relative;
        height: 585em;
        padding: 5em 0;
    }
    .msc-product-media img{
        height:auto;
    }
    .card-content{
        padding:0;
    }
    .msc-product-info {
        padding: 8px;
    }
    .msc-product-info h5{
        font-size:12px;
    }
    .msc-enquiry-link{
        font-size:10px;
    }
    .roadmap{
        height:160em;
    }
    .msc-why-card{
        padding:10px;
    }
    .msc-why-card p{
        font-size:12px;
    }
    .msc-why-card h5{
        font-size:12px;
    }
    .msc-mv-card{
        padding:10px;
    }
    tbody, td, tfoot, th, thead, tr{
        font-size:10px;
    }
    .msc-season-overlay{
        padding:10px;
    }
    .msc-season-overlay h5{
        font-size:16px;
    }
    .msc-season-overlay p{
        font-size:10px;
    }
    .msc-season-card{
        height:165px;
    }
    .msc-footer-divider{
        margin: 10px 0 20px;
    }
    .msc-fabric-overlay{
        padding:10px;
    }
    .msc-fabric-overlay p{
        font-size:10px;
    }
    .msc-fabric-overlay span{
        font-size:10px;
    }
    .msc-fabric-card{
        height:190px;
    }
    
    .parallax {
        background-image: url(../img/comfort-bg-mobile.webp); /* change image */
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    
        padding: 180px 0;
        position: relative;
        color: #fff;
    }
    .msc-fabric-overlay h5{
        font-size:18px;
    }
}