* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-cream);
    margin: 0;
    /* Ensure body has no margin */
    padding: 0;
    /* Ensure body has no padding */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

body>svg {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

html,
body {
    overflow-x: hidden;
}


/* ------------------ COLOR PALETTE ------------------ */

:root {
    --neo-primary: #8F6740;
    --neo-dark: #1F1A17;
    --neo-light: #F4EEE8;
    --neo-soft: #9C8C7A;
    --neo-white: #FFFFFF;
    --primary-brown: #9e6b39;
    --dark-brown: #7d5326;
    --black: #000000;
    --white: #ffffff;
    --light-cream: #f9f5f0;
}


/* ------------------ TOPBAR ------------------ */

.neo-topbar {
    background: var(--neo-primary);
    color: var(--neo-white);
    padding: 6px 0;
    font-family: 'Poppins', sans-serif;
}

.neo-topbar-inner {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Important for responsiveness */
}


/* LEFT SIDE */

.neo-top-left span {
    margin-right: 20px;
    font-size: 15px;
    white-space: nowrap;
    /* Prevent text breaking weirdly */
}

.neo-top-left i {
    color: var(--neo-white);
    margin-right: 5px;
}


/* RIGHT SOCIAL */

.neo-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.neo-top-right a {
    color: var(--neo-white);
    font-size: 16px;
    transition: .3s;
}

.neo-top-right a:hover {
    color: #000;
    transform: translateY(-3px);
}


/* ---------- RESPONSIVE FIX ---------- */


/* Tablet (max-width: 992px) */

@media (max-width: 992px) {
    .neo-topbar-inner {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .neo-top-left span {
        margin-right: 12px;
        font-size: 14px;
    }
}


/* Mobile (max-width: 576px) */

@media (max-width: 576px) {
    .neo-top-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .neo-top-left span {
        margin-right: 0;
        font-size: 13px;
    }
    .neo-top-right a {
        font-size: 15px;
    }
}


/* ------------------ HEADER ------------------ */

.neo-header {
    background: #F4EEE6;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.15) 0 4px 20px;
}

.neo-nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.neo-logo img {
    width: 150px;
}


/* ------------------ NAV LINKS ------------------ */

.neo-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.neo-link {
    position: relative;
    text-decoration: none;
    font-size: 19px;
    font-family: "Playfair Display", serif;
    color: var(--neo-dark);
    transition: .3s ease-in-out;
    padding: 5px 0;
}


/* underline */

.neo-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--neo-primary);
    transition: .35s ease-in-out;
}

.neo-link:hover,
.neo-link.active {
    color: var(--neo-primary);
    transform: translateY(-2px);
}

.neo-link:hover::after,
.neo-link.active::after {
    width: 100%;
}


/* ------------------ DROPDOWN ------------------ */

.neo-dropdown {
    position: relative;
}

.neo-drop-btn {
    background: none;
    border: none;
    font-size: 19px;
    font-family: "Playfair Display", serif;
    color: var(--neo-dark);
    cursor: pointer;
    display: flex;
    gap: 6px;
    align-items: center;
    transition: .3s;
}

.neo-drop-btn:hover {
    color: var(--neo-primary);
    transform: translateY(-2px);
}

.neo-drop-menu {
    position: absolute;
    top: 28px;
    left: 0;
    width: 210px;
    background: var(--neo-white) !important;
    box-shadow: rgba(0, 0, 0, 0.18) 0 6px 20px;
    display: none;
    flex-direction: column;
    padding: 12px 0;
    animation: neoFade .35s ease;
    z-index: 9999;
}

@keyframes neoFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neo-dropdown:hover .neo-drop-menu {
    display: flex;
}

.neo-drop-menu a {
    padding: 12px 20px;
    color: var(--neo-dark);
    text-decoration: none;
    transition: .3s;
}

.neo-drop-menu a:hover {
    background: var(--neo-primary);
    color: var(--neo-white);
    padding-left: 28px;
}


/* ------------------ PRIMARY BUTTON ------------------ */

.neo-primary-btn {
    background: var(--neo-primary);
    color: var(--neo-white) !important;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: .3s ease;
}

.neo-primary-btn:hover {
    background: #6e4f30;
    transform: translateY(-2px) scale(1.04);
}


/* ------------------ MOBILE ------------------ */

.neo-mobile-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .neo-menu {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--neo-white);
        flex-direction: column;
        padding: 40px 30px;
        gap: 25px;
        transition: .4s ease;
        box-shadow: rgba(0, 0, 0, 0.25) 0 4px 20px;
    }
    .neo-menu.neo-menu-open {
        right: 0;
    }
    .neo-mobile-toggle {
        display: block;
        color: var(--neo-dark);
    }
}


/*********      Slider Start    *************/

.slider-container {
    position: relative;
    width: 100%;
    /* Full width instead of max-width */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 600px;
}

.slide {
    min-width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: var(--white);
}

.slide-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
    color: #ffff;
}

.slide h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--primary-brown);
}

.slide p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-brown);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-brown);
}

.slide-btn:hover {
    background-color: transparent;
    color: var(--white);
}

.slide-btn.light {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 15px;
}

.slide-btn.light:hover {
    background-color: var(--white);
    color: var(--primary-brown);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-brown);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
}

.nav-btn {
    background-color: #6e4f3093;
    color: var(--white);
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    border: none;
}

.nav-btn:hover {
    background-color: var(--primary-brown);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-brown);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wood-texture {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 C 40 10, 65 15, 100 20 L 100 0 L 0 0 Z' fill='%239e6b39' /%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.7;
}


/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .slides {
        height: 450px;
    }
    .slide-overlay {
        padding: 40px;
    }
    .slide h2 {
        font-size: 34px;
    }
    .slide p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .slides {
        height: 400px;
    }
    .slide-overlay {
        padding: 30px;
    }
    .slide h2 {
        font-size: 28px;
    }
    .slide p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .slides {
        height: 350px;
    }
    .slide-overlay {
        padding: 20px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    }
    .slide h2 {
        font-size: 22px;
    }
    .slide h2::after {
        width: 60px;
        height: 3px;
    }
    .slide p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    .slide-btn {
        padding: 8px 16px;
        font-size: 12px;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    .slide-btn.light {
        margin-left: 0;
    }
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .slider-controls {
        bottom: 15px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .badge {
        padding: 4px 10px;
        font-size: 10px;
    }
}


/********       Slider End      ***********/


/********       Welcome section     *******/


/* MultiStrong Welcome Section Styles - Namespaced with 'ms-' */

.ms-welcome-section {
    position: relative;
    background-color: #f9f5f0;
    padding: 80px 0;
    overflow: hidden;
}

.ms-wood-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M0 10h100M0 20h100M0 30h100M0 40h100M0 50h100M0 60h100M0 70h100M0 80h100M0 90h100' stroke='%23a67c3f' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
}

.ms-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ms-welcome-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ms-welcome-text {
    flex: 1;
    position: relative;
}

.ms-welcome-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.ms-welcome-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #a67c3f;
}

.ms-welcome-heading span {
    color: #a67c3f;
    font-weight: 700;
}

.ms-welcome-subheading {
    font-size: 1.2rem;
    color: #7d5a24;
    margin-bottom: 20px;
    font-style: italic;
}

.ms-welcome-description {
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.ms-product-categories {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.ms-category {
    background-color: rgba(166, 124, 63, 0.1);
    padding: 10px 20px;
    border-left: 3px solid #a67c3f;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ms-category:hover {
    background-color: rgba(166, 124, 63, 0.2);
    transform: translateX(5px);
}

.ms-cta-button {
    display: inline-block;
    background-color: #a67c3f;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ms-cta-button:hover {
    background-color: #7d5a24;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ms-welcome-image {
    flex: 1;
    position: relative;
}

.ms-main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.ms-welcome-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: #a67c3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    text-align: center;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: ms-pulse 2s infinite;
}

.ms-welcome-badge span {
    display: block;
}

.ms-hindi-text {
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 400;
}

.ms-strength-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='45' fill='%23ffffff' fill-opacity='0.3'/%3E%3Cpath d='M65,35 L55,45 L60,50 L40,70 L35,65 L55,45 L50,40 L60,30 C63,27 68,27 71,30 C74,33 74,38 71,41 L65,35Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}


/* Animation - Namespaced */

@keyframes ms-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


/* Stats Counter Section */

.ms-stats-counter {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(166, 124, 63, 0.2);
}

.ms-stat-item {
    text-align: center;
    flex: 1;
}

.ms-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #a67c3f;
    margin-bottom: 10px;
}

.ms-stat-label {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Media Queries */

@media (max-width: 1024px) {
    .ms-welcome-heading {
        font-size: 2.2rem;
    }
    .ms-welcome-badge {
        width: 120px;
        height: 120px;
        top: -20px;
        right: -20px;
    }
    .ms-strength-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .ms-welcome-content {
        flex-direction: column;
        gap: 60px;
    }
    .ms-welcome-image {
        order: -1;
    }
    .ms-welcome-badge {
        top: auto;
        bottom: -30px;
        right: 20px;
    }
    .ms-stats-counter {
        flex-wrap: wrap;
    }
    .ms-stat-item {
        flex-basis: 45%;
    }
}

@media (max-width: 480px) {
    .ms-welcome-section {
        padding: 60px 0;
    }
    .ms-welcome-heading {
        font-size: 1.8rem;
    }
    .ms-welcome-badge {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
    .ms-strength-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }
    .ms-product-categories {
        gap: 10px;
    }
    .ms-category {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    .ms-stats-counter {
        flex-direction: column;
        gap: 30px;
    }
    .ms-stat-item {
        flex-basis: 100%;
    }
}


/*********      Welcome End     *********/


/* product section start */

.product-showcase {
    background: linear-gradient(to right, var(--white) 50%, #316ba81f 50%);
    /* left white, right bluish */
    padding: 40px 0;
}

.product-card {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.product-card:hover .overlay {
    transform: scale(1.1);
    /* zoom effect */
}

.product-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.product-card .btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-size: 14px;
    padding: 6px 16px;
    transition: background 0.3s;
}

.product-card .btn:hover {
    background-color: var(--secondary);
}

.rcp-products {
    background: linear-gradient(to right, #ffffff 50%, #f7810c41 50%);
}

.rcp-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.rcp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.259);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    transform: scale(1);
    transition: transform 0.4s ease, background 0.3s ease;
}

.rcp-card:hover .rcp-overlay {
    transform: scale(1.05);
    background: rgba(34, 34, 34, 0.871);
}

.rcp-overlay h5 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 8px;
}

.rcp-overlay p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #fff;
}

.btn-rcp {
    background-color: #D0DDEB !important;
    color: #222 !important;
    border: none;
    font-weight: 500 !important;
    padding: 8px 20px;
    font-size: 14px;
    text-transform: none;
    transition: background 0.3s;
    border-radius: 0px !important;
}

.btn-rcp:hover {
    background-color: #004E93 !important;
    color: #fff !important;
}


/* product section start */

.promo-section {
    position: relative;
    background: url("../assets-new/bg-bg.jpg") no-repeat center center/cover;
    background-attachment: fixed;
    /* 🔥 FIXED BACKGROUND */
    min-height: 70vh;
    color: #fff;
}

.promo-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.promo-section .content {
    position: relative;
    z-index: 2;
}

.promo-section h1 {
    font-size: 2.8rem;
    line-height: 1.3;
}

.promo-section p {
    font-size: 1.1rem;
    margin: 15px 0 25px;
    color: #fff !important;
}

.btn-shop {
    background-color: #004e93f7 !important;
    color: #fff !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    border-radius: 0px !important;
    transition: 0.3s !important;
    text-decoration: none !important;
}

.btn-shop:hover {
    background-color: #fff !important;
    color: #004E93 !important;
    border: 1px solid #fff !important;
}


/* Responsive */

@media (max-width: 992px) {
    .promo-section h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 576px) {
    .promo-section h1 {
        font-size: 1.6rem !important;
    }
    .promo-section p {
        font-size: 1rem !important;
    }
}


/* gallery start */

.application-gallery {
    /* background-color: #111; */
    padding: 60px 0;
}

.application-gallery .container {
    padding: 0 40px;
}


/* Gallery Row */

.gallery-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.6s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


/* Fix image size */

.gallery-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    border-radius: 12px;
}


/* Hover Effects */

.gallery-item:hover {
    flex: 3;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}


/* Overlay Text */

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    border-radius: 12px;
}

.hover-overlay span {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay h1 {
    color: #ffff;
}


/* Non-hovered images shrink slightly */

.gallery-item:not(:hover) {
    flex: 1;
    filter: brightness(0.9);
}


/* Responsive */

@media (max-width: 992px) {
    .gallery-row {
        flex-direction: column;
    }
    .gallery-item {
        flex: none;
        height: 300px;
    }
    .gallery-item img {
        height: 100%;
    }
}

.ms-pro-service {
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff, #f1e6d9);
}


/* MAIN WRAPPER */

.ms-pro-wrapper {
    max-width: 1350px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 0 30px;
}


/* Make Left = 50%, Right = 50% */

.ms-pro-image,
.ms-pro-content {
    flex: 1;
}


/* LEFT IMAGE */

.img-glass-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
}

.img-glass-card img {
    width: 100%;
    border-radius: 20px;
}

.img-glass-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.30);
}


/* RIGHT CONTENT */

.ms-pro-mini-heading {
    color: #9A6835;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ms-pro-heading {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ms-pro-heading span {
    color: #9A6835;
}

.ms-pro-para {
    font-size: 16px;
    line-height: 1.7;
    color: #4d4d4d;
    margin-bottom: 30px;
}


/* FEATURE GRID */

.ms-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.ms-pro-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border: 1px solid #f1e1cf;
    position: relative;
    overflow: hidden;
}

.ms-pro-card i {
    font-size: 28px;
    color: #9A6835;
    margin-bottom: 12px;
}

.ms-pro-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.ms-pro-card p {
    font-size: 14px;
    color: #666;
}


/* Hover Glow Effect */

.ms-pro-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(154, 104, 53, 0.2);
    top: -20px;
    right: -20px;
    border-radius: 50%;
    transition: 0.4s;
    transform: scale(0);
}

.ms-pro-card:hover::after {
    transform: scale(2.5);
}

.ms-pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


/* ICON SOLID LOOK */

.ms-pro-card i,
.ms-pro-card i:before {
    color: #9A6835 !important;
    font-weight: 900 !important;
    transition: 0.3s ease-in-out;
}

.ms-pro-card:hover i,
.ms-pro-card:hover i:before {
    color: #C48543 !important;
    transform: scale(1.2);
}


/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
    .ms-pro-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .ms-pro-image,
    .ms-pro-content {
        flex: unset;
        width: 100%;
    }
    .img-glass-card img {
        width: 100%;
        max-width: 480px;
        margin: auto;
        display: block;
    }
    .ms-pro-heading {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .ms-pro-heading {
        font-size: 30px;
    }
    .ms-pro-para {
        font-size: 15px;
    }
}


/* footer start */

#msp-footer {
    background: #1a0f08;
    padding: 60px 0 20px;
    color: #fff;
    font-family: "Poppins", sans-serif;
}


/* MAIN GRID */

.msp-footer-container {
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding: 0 30px;
}


/* BRAND SECTION */

.msp-footer-brand {
    padding-right: 20px;
}

.msp-footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.msp-footer-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 25px;
}

.msp-read-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #c49b63;
    color: #c49b63;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
    margin-bottom: 25px;
}

.msp-read-btn:hover {
    background: #c49b63;
    color: #1a0f08;
}


/* Social Icons */

.msp-social {
    margin-top: 10px;
}

.msp-social span {
    margin-right: 15px;
    font-weight: 500;
}

.msp-social a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.msp-social a:hover {
    color: #c49b63;
}


/* RIGHT MENU COLUMNS */

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


/* Tablet (max-width: 992px) — Footer becomes 1 column! */

@media (max-width: 992px) {
    .msp-footer-container {
        grid-template-columns: 1fr;
        /* 1 column layout */
        text-align: center;
    }
    .msp-footer-brand {
        padding-right: 0;
    }
    .msp-social {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    .msp-footer-links {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 10px;
    }
}


/* Mobile (max-width: 600px) — Everything 1 column */

@media (max-width: 600px) {
    .msp-footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .msp-footer-desc {
        text-align: center;
    }
    .msp-social {
        justify-content: center;
    }
}


/* Titles & List */

.msp-footer-title {
    font-size: 26px;
    font-weight: 700;
    color: #c49b63;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.msp-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: #c49b63;
    margin-bottom: 18px;
}

.msp-column ul {
    list-style: none;
    padding: 0;
}

.msp-column ul li {
    font-size: 14.5px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.msp-column ul a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.msp-column ul a:hover {
    color: #c49b63;
    padding-left: 3px;
}


/* Bottom Bar */

.msp-footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-size: 14px;
}

.msp-designed {
    display: block;
    margin-top: 4px;
    color: #c49b63;
}