/* =============================
   MOM PL HEADER STYLING
============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Logo Red Color */
:root {
    --mom-red: #e30613;       /* Strong logo red */
    --mom-light-red: #ffb3b3; /* Light red for hover */
}

/* HEADER */

.main-header {
    background: var(--mom-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 50px;   /* reduced from 15px 60px */
}

/* LOGO */
.logo img {
    height: 80px;
}

/* NAVBAR CENTER */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* WHITE BOX MENU */
/* SMALLER MENU BOX */
.nav-box {
    background: #ffffff;
    color: var(--mom-red);
    text-decoration: none;

    padding: 6px 16px;      /* reduced */
    border-radius: 6px;     /* slightly smaller */

    font-weight: 600;
    font-size: 14px;        
    
    display: inline-flex;
    align-items: center;
    gap: 6px;

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.nav-box:hover {
    background: var(--mom-light-red);
    color: #000000;
}

/* ACTIVE PAGE */
.nav-box.active {
    background: var(--mom-light-red);
    color: #000000;
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    min-width: 180px;

    display: none;
    z-index: 9999;   /* important */
}

/* Remove gap issue */
.dropdown:hover > .dropdown-menu {
    display: block;
}

/* Dropdown items */
.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--mom-red);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--mom-light-red);
    color: #000000;
}
/* CTA BUTTON RIGHT */
.header-cta .cta-btn {
    background: #ffffff;
    color: var(--mom-red);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.header-cta .cta-btn:hover {
    background: var(--mom-light-red);
    color: #000000;
}
/* PLUS ICON STYLE */

.plus-icon {
    margin-left: 8px;

    color: #000000;
    transition: 0.3s ease;
  
    font-size: 18px;
    font-weight: 600;
}


/* Optional premium rotation */
.dropdown:hover .plus-icon {
    transform: rotate(45deg);
}


/* =====================
   SLIDER
===================== */

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(227, 6, 19, 0.8);
    color: #ffffff;
    border: none;
    font-size: 22px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: #000000;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ffffff;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--mom-red);
}

/* ===============================
   FIXED HEADER
================================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Prevent content hiding behind fixed header */
body {
    padding-top: 110px;
}

/* ===============================
   HAMBURGER MENU
================================ */

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}

/* ===============================
   MOBILE VIEW
================================ */

@media (max-width: 768px) {

    body {
        padding-top: 90px;
    }

    .main-header {
        padding: 10px 20px;
    }

    .logo img {
        height: 60px;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Hide normal nav initially */
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--mom-red);
        display: none;
        padding: 20px 0;
    }

    .navbar.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .nav-box {
        width: 200px;
        justify-content: center;
    }

    /* Dropdown for mobile */
    .dropdown-menu {
        position: static;
        background: #ffffff;
        margin-top: 8px;
        display: none;
        width: 200px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* CTA button */
    .header-cta {
        display: none;
    }

    /* Slider responsive */
    .slider-container {
        height: 300px;
    }

    .slide img {
        height: 300px;
    }
}

/* =========================
   MODERN HOME ABOUT SECTION
========================= */

/* =========================
   MODERN LEFT-RIGHT ABOUT
========================= */

.home-about {
    padding: 100px 80px;
    background: #f5f5f5;
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch;   /* IMPORTANT */
}

/* LEFT IMAGE */
/* LEFT IMAGE BOX */
.about-left {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    display: flex;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-left:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(227,6,19,0.25);
}

.about-left:hover img {
    transform: scale(1.08);
}

/* RIGHT CONTENT BOX */
.about-right {
    flex: 1;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;

    display: flex;               /* ADD THIS */
    flex-direction: column;      /* ADD THIS */
     justify-content: space-between;  /* IMPORTANT */
}
.about-content-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-right.show {
    opacity: 1;
    transform: translateX(0);
}

.about-right:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(227,6,19,0.25);
}

.about-small {
    color: var(--mom-red);
    font-weight: bold;
    font-size: 14px;
}

.about-right h2 {
    font-size: 28px;
    margin: 15px 0 30px;
}

.about-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.about-point span {
    font-size: 22px;
    color: var(--mom-red);
}

.about-point:hover {
    transform: translateX(6px);
}
.about-left,
.about-right {
    min-height: 500px;
}
/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--mom-red);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #000000;
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .home-about {
        padding: 60px 20px;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-right {
        padding: 30px;
    }

    .about-right h2 {
        font-size: 20px;
    }
}

/* =========================
        OUR OFFERINGS
========================= */

.our-offerings {
    padding: 100px 80px;
    background: #f5f5f5;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
  
}

.section-heading span {
    color: var(--mom-red);
    font-weight: bold;
    font-size: 20px;
}

.section-heading h2 {
    font-size: 32px;
    margin-top: 10px;
}

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

/* CARD DESIGN */
.offer-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.offer-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--mom-red);
    transition: 0.4s ease;
}

.offer-card:hover::before {
    width: 100%;
}

/* Hover Glow */
.offer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(227,6,19,0.25);
}

/* ICON */
.offer-icon {
    width: 70px;
    height: 70px;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

/* Icon Glow Effect */
.offer-card:hover .offer-icon {
    border-color: var(--mom-red);
    box-shadow: 0 0 25px rgba(227,6,19,0.6);
    transform: scale(1.1);
}

/* Title */
.offer-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Paragraph */
.offer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
@media (max-width: 768px) {

    .our-offerings {
        padding: 60px 20px;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-heading h2 {
        font-size: 22px;
    }
}
/* =========================
        COUNTER SECTION
========================= */

.counter-section {
    background: var(--mom-red);
    padding: 80px 60px;
}

.counter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.counter-box {
    flex: 1;
    position: relative;
}

/* Vertical Divider */
.counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.5);
}

.counter-box h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.counter-box p {
    font-size: 16px;
}
/* =========================
        OUR PRODUCTS
========================= */

.our-products {
    padding: 80px 60px;
    background: #ffffff;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* PRODUCT CARD */
.product-card {
    width: 400px;              /* FIXED WIDTH */
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(227,6,19,0.25);
}

/* IMAGE */
.product-image {
    width: 100%;
    height: 280px;       /* Control card height from image */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* IMPORTANT */
    display: block;
    transition: 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* CONTENT */
.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.product-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.product-btn {
    display: inline-block;
    background: var(--mom-red);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s ease;
}

.product-btn:hover {
    background: #000000;
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .our-products {
        padding: 50px 20px;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 350px;
    }

    .product-image {
        height: 220px;
    }

    .product-content h3 {
        font-size: 18px;
    }
}

/* =========================
        OUR MANAGEMENT
========================= */

.our-management {
    padding: 100px 80px;
    background: #f5f5f5;
}

.management-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* CARD */
.management-card {
    width: 380px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.management-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(227,6,19,0.25);
}

/* IMAGE */
.management-img {
    height: 360px;   /* increased height */
    overflow: hidden;
}

.management-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;   /* 🔥 IMPORTANT FIX */
    display: block;
}

/* RED CONTENT PANEL */
.management-content {
    background: var(--mom-red);
    padding: 30px;
    color: #ffffff;
    flex: 1;    /* removes bottom white gap */
}

.management-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.management-content h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.management-content p {
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 768px) {

    .our-management {
        padding: 60px 20px;
    }

    .management-grid {
        flex-direction: column;
        align-items: center;
    }

    .management-card {
        width: 100%;
        max-width: 350px;
    }

    .management-img {
        height: 280px;
    }
}

/* =========================
        CERTIFICATES
========================= */

.certificates-section {
    padding: 100px 100px;
    background: #f5f5f5;
    overflow: hidden;
}

.certificates-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.certificates-slider {
    overflow: hidden;
    width: 90%;
}

.certificates-track {
    display: flex;
    gap: 80px;
    animation: scrollCertificates 20s linear infinite;
}

/* Infinite Scroll Animation */
@keyframes scrollCertificates {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== Certificate White Box ===== */

.certificate-item{
    background:#ffffff;         /* White box */
    padding:25px;               /* Space around logo */
    border-radius:10px;         /* Soft corners */
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.certificate-item img{
    max-width:150px;
    height:auto;
    object-fit:contain;
}

.certificate-item:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 25px rgba(0,0,0,0.20);
}

/* ARROWS */
.cert-btn {
    background: var(--mom-red);
    color: #ffffff;
    border: none;
    font-size: 22px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 2;
}

.cert-btn:hover {
    background: #000000;
}
@media (max-width: 768px) {

    .certificates-section {
        padding: 60px 20px;
    }

    .certificates-track {
        gap: 40px;
        animation: scrollCertificates 15s linear infinite;
    }

    .certificate-item {
        width: 120px;
        height: 120px;
    }

    .cert-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* =========================
        GALLERY
========================= */
/* =========================
        GALLERY
========================= */

.gallery-section {
    padding: 100px 60px;
    background: #f5f5f5;
    overflow: hidden;
}

.gallery-slider {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 40px;
    animation: scrollGallery 20s linear infinite;
}

/* 2 IMAGES VISIBLE */
.gallery-item {
    flex: 0 0 50%;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: 0.3s ease;
}

/* GLOW HOVER ONLY */
.gallery-item img:hover {
    box-shadow: 0 0 25px rgba(227,6,19,0.6);
    transform: scale(1.02);
}

/* INFINITE SCROLL */
@keyframes scrollGallery {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* PAUSE ON HOVER */
.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .gallery-item img {
        height: 260px;
    }
}


/* =========================
        FOOTER
========================= */

.main-footer {
    background: var(--mom-red);
    color: #ffffff;
    padding-top: 70px;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 80px 60px;
    align-items: start;
}

/* LOGO */
.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
}

/* TEXT */
.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;

}

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    padding-left: 6px;
    color: #000000;
}

/* BOTTOM STRIP */
.footer-bottom {
    background: #1f1f1f;
    padding: 18px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom-right a {
    background: #f4d19b;
    padding: 6px 12px;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-right a:hover {
    background: var(--mom-red);
    color: #fff;
}
@media (max-width: 992px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
}
.footer-bottom-left a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s;
}

.footer-bottom-left a:hover{
    color:#e30613;
}

.footer-bottom-right a{
    color:#ffffff;
    text-decoration:none;
}

.footer-bottom-right a:hover{
    color:#e30613;
}
.footer-col a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s ease;
}

.footer-col a:hover{
    color:#000;
}
@media (max-width: 600px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 130px;
    }
}


/* =========================
        ENQUIRY MODAL
========================= */

.enquiry-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.enquiry-modal.active {
    display: flex;
}

.enquiry-content {
    background: #f5efe6;
    width: 420px;                 /* slightly smaller */
    max-width: 90%;
    padding: 25px 25px;           /* reduced padding */
    border-radius: 18px;
    position: relative;
    animation: popup 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* POPUP */
@keyframes popup {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CLOSE BUTTON */
.enquiry-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
    color: var(--mom-red);
}

/* LOGO */
.enquiry-logo {
    text-align: center;
    margin-bottom: 10px;   /* reduced */
}

.enquiry-logo img {
    width: 55px;
    height: 55px;
}

/* HEADING */
.enquiry-content h2 {
    text-align: center;
    margin-bottom: 18px;   /* reduced */
    color: #5c1b17;
    font-size: 22px;
}

/* FORM */
.enquiry-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;   /* reduced gap */
}

/* INPUT + TEXTAREA + SELECT */
.enquiry-content input,
.enquiry-content textarea,
.enquiry-content select {
    padding: 10px 14px;        /* reduced height */
    border-radius: 10px;
    border: 1px solid #e2b480;
    outline: none;
    font-size: 13px;
    background: #fff;
    transition: 0.3s;
}

/* Textarea smaller */
.enquiry-content textarea {
    height: 80px;   /* fixed smaller height */
    resize: none;
}

/* Focus */
.enquiry-content input:focus,
.enquiry-content textarea:focus,
.enquiry-content select:focus {
    border-color: var(--mom-red);
    box-shadow: 0 0 6px rgba(227,6,19,0.3);
}

/* BUTTON */
.enquiry-content button {
    margin-top: 8px;
    padding: 12px;
    border-radius: 25px;
    border: none;
    background: var(--mom-red);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.enquiry-content button:hover {
    background: #000;
}