body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

/* Header Menu */
.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 15px 40px;
    box-shadow: 0 2px 5px #ddd;
}

/* nav page size */
.breadcumb-title {
    font-size: 50px;
    font-weight: 500;
}

.logo {
    width: 120px;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a.active,
nav a:hover {
    color: #4db3b3;
}

/* Hero Section */
.hero {
    /* padding: 60px; */
    padding: 64px;

    /* height: 300px; */
    height: 400px;

    /* background: url('https://picsum.photos/1200/400?blur=3') center/cover; */
    background: url('/images/home_banner_300px.png') center/cover;
    color: white;
    text-shadow: 1px 1px 6px black;
}


.hero h1 {
    font-size: 40px;
}

/* Content sections */
.content {
    padding: 40px;
}

.product-list {
    list-style: square;
    font-size: 18px;
    line-height: 32px;
}


/* this is for home page 2nd section */

.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 10%;
}

.about-left {
    position: relative;
    width: 45%;
}

.about-left .img-large {
    width: 100%;
    border-radius: 8px;
}

.about-left .img-small {
    width: 70%;
    position: absolute;
    bottom: -40px;
    left: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-right {
    width: 50%;
}

.about-right h2 {
    font-size: 32px;
    color: #67bed9;
    margin-bottom: 15px;
}

.about-right p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-right ul {
    list-style: none;
    margin-bottom: 25px;
}

.about-right li {
    margin-bottom: 8px;
    font-size: 17px;
}

.btn {
    background: #67bed9;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
}

/* Floating WhatsApp Button */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 170px;  /* moved up */
    z-index: 1000;
}

.whatsapp img {
    width: 55px;
    height: 55px;
}

/* Floating Call Button */
.whatsapp1 {
    position: fixed;
    right: 25px;
    bottom: 100px; /* stays below */
    z-index: 1000;
}

.whatsapp1 img {
    width: 55px;
    height: 55px;
}

.whatsapp:hover img,
.whatsapp1:hover img {
    transform: scale(1.1);
    transition: 0.2s;
}


@media (max-width: 768px) {
  .whatsapp {
      position: fixed;
      right: 25px;
      bottom: 170px;  /* moved up */
      z-index: 1000;
  }

  .whatsapp img {
      width: 46px;
      height: 46px;
  }

  /* Floating Call Button */
  .whatsapp1 {
      position: fixed;
      right: 25px;
      bottom: 100px; /* stays below */
      z-index: 1000;
  }

  .whatsapp1 img {
      width: 46px;
      height: 46px;
  }

  .whatsapp-contact {
      position: fixed;
      right: 30px;
      bottom: 100px; /* stays below */
      z-index: 1000;
  }
  .whatsapp1-contact img {
      width: 46px;
      height: 46px;
  }

  .whatsapp:hover img,
  .whatsapp1-contact:hover img,
  .whatsapp1:hover img {
      transform: scale(1.1);
      transition: 0.2s;
  }
}



/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #67bed9;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 37px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

.map-container {
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
}

/* nely added */
/* newlyadded */
.contact-form {
    width: 80%;
    margin: auto;
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* ============================
   TITLE
============================ */
.contact-title {
    text-align: center;
    margin-top: 40px;
    font-size: 32px;
    color: #444;
    font-weight: bold;
}

.contact-title span {
    color: #67bed9;
}

/* ============================
   ADDRESS SECTION
============================ */
.address-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    width: 90%;
}

.address-card {
    width: 48%;
    background: #f9f9f4;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.address-card h3 {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 8px;
}

.address-card hr {
    width: 60%;
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px auto;
}

.address-card p {
    margin: 5px 0;
    font-size: 15px;
    color: #666;
}

.contact-icon {
    width: 80px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .address-section {
        flex-direction: column;
        width: 95%;
    }
    .address-card {
        width: 88%;
    }
}


.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 10%;
}

.contact-form-box {
    width: 60%;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-image-box {
    width: 35%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-image-box img {
    width: 100%;
    border-radius: 12px;
}

/* Form Styling */
.contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.contact-form textarea {
    height: 120px;
}


textarea {
    height: 120px;
}

.submit-btn {
    background: #67bed9;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background: #927322;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-box,
    .contact-image-box {
        width: 100%;
    }
}


/* MAIN BOX */
.contact-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #698eb320; /* light theme shade */
    border: 2px solid #698eb3;
    border-radius: 12px;
    padding: 40px;
    gap: 40px;
    margin: 60px auto;
    width: 90%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* LEFT FORM AREA */
.contact-left {
    flex: 1;
}

/* FORM ELEMENTS */
.contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #b99757;
    border-radius: 6px;
    font-size: 16px;
    background: white;
}

.contact-form textarea {
    height: 130px;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #698eb3;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b99757;
}

/* RIGHT IMAGE */
.contact-right img {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* RESPONSIVE */
/* @media (max-width: 900px) {
    .contact-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 0 30px;
    }
} */

@media (max-width: 768px) {
    .contact-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 0 30px;
    }
}

.contact-right {
    background: #698eb3;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* contact end */


/* ============================
   INNER HERO
============================ */
.inner-hero {
    background: url('images/about_us.png') center/cover no-repeat;
    padding: 80px 50px;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.inner-hero-contact {
    background: url('images/contact_us.png') center/cover no-repeat;
    padding: 80px 50px;
    color: ##369fc9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.inner-hero-contact h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.inner-hero h1 {
    font-size: 45px;
    margin-bottom: 10px;
}

.inner-hero-contact p {
    color: #fff;
    opacity: 0.9;
    font-size: 16px;
}

.inner-hero-contact a {
    color: #fff;
    text-decoration: none;
}

.inner-hero p {
    color: #fff;
    opacity: 0.9;
    font-size: 16px;
}

.inner-hero a {
    color: #fff;
    text-decoration: none;
}


.submit-btn {
    width: 100%;
    padding: 14px;
    background: #b88a28;
    color: white;
    font-size: 17px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #9e741f;
}



.products-section {
    padding: 60px 10%;
    text-align: center;
}

.products-section h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #15406b; /* matches footer gradient */
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.product-card {
    width: 250px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    color: #15406b; /* matches footer */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
    .product-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .product-card {
        width: 100%;
    }
}


/* newlyadded index.html */
/* Home About Section – New Modern Layout */
.home-about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 60px 5%;
    background: #f3f8fa;
}

.home-about2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    /* padding: 60px 5%; */
    background: #1571b9;
}

.home-about2 {
    justify-content: center;
    /* padding: 60px 10%; */
}

.about-text-box2 {
    flex: 1;
    background: #1571b9;
    color: white;
    padding: 40px;
    border-radius: 4px;
    /* max-width: 550px; */
}

.about-text-box2 h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text-box2 p {
    font-size: 23px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-box2 .btn {
    display: inline-block;
    background: #1571b9;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-text-box2 .btn:hover {
    background: #1a73e8;
}


.about-text-box {
    flex: 1;
    background: #0b2a4a;
    color: white;
    padding: 40px;
    border-radius: 4px;
    max-width: 550px;
}

.about-text-box h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-text-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text-box .btn {
    display: inline-block;
    background: #4ba3ff;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.about-text-box .btn:hover {
    background: #1a73e8;
}

.about-image-box {
    flex: 1;
    border: 8px solid #0b2a4a;
    padding: 0;
    border-radius: 6px;
}

.about-image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .home-about {
        flex-direction: column;
        text-align: center;
    }

    .about-text-box {
        max-width: 100%;
    }

    .about-image-box {
        width: 100%;
    }

    .home-about2 {
        flex-direction: column;
        text-align: center;
    }

    .about-text-box {
        max-width: 100%;
    }

    .about-image-box {
        width: 100%;
    }
    .about-text-box2 {
        max-width: 100%;
    }

}

.about-text-box ul.about-list {
    margin-top: 10px;
    padding-left: 20px;
}

.about-text-box ul.about-list li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5;
    list-style: none;
    color: #eef3f7;
}



/* .about-image-box {
    flex: 1;
    border: 8px solid #0b2a4a;
    padding: 0;
    border-radius: 6px;
} */

.img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.img-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}


/* about */

/* 3-column new About Layout */
.about-three-column {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 25px;
    padding: 60px 5%;
    background: #f3f7fa;
}

/* Image Boxes */
.about-img-box {
    flex: 1;
    background: #0b2a4a;
    border-radius: 8px;
    overflow: hidden;
}

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

/* Middle Text Box */
.about-text-box-about {
    flex: 1.3;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.about-text-box-about h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2b6e95;
}

.about-text-box-about p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

/* Button */
.about-text-box-about .btn {
    display: inline-block;
    background: #45a8ce;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: .3s;
}

.about-text-box-about .btn:hover {
    background: #2f89b4;
}

/* Responsive */
@media (max-width: 900px) {
    .about-three-column {
        flex-direction: column;
    }
}


/* mobile view */

/* HAMBURGER - MOBILE ONLY */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
        /* color: #15406b;*/
        color: #000;
        font-weight: bold;
    }
}

/* MOBILE MENU SIDEBAR */
/* .mobile-menu {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 9999;
} */

.mobile-menu {
    position: fixed;
    top: 0;
    left: -80%;
    width: 55%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 1s ease-in-out;
    z-index: 9999;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}
.mobile-menu a:hover {
    color: #698eb3;
}

/* HEADER INSIDE MOBILE MENU */
/* .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
} */

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.mobile-logo {
    width: 120px;
}

/* .close-btn {
    font-size: 28px;
    cursor: pointer;
    color: #15406b;
} */

.close-btn {
    font-size: 26px;
    cursor: pointer;
    color: #000;
}

.float-btn {
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}

.float-call {
    background: wheat;
}

.float-btn {
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}


/* ============================
   CATELOG (FLIPBOOK) PAGE CSS
   ============================ */

/* Page Title */
.catelog-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #38bdf8;
}


/* ============================
   FULLSCREEN FLIPBOOK
   ============================ */
#flipbook {
    width: 100%;
    max-width: 1200px;
    height: 80vh;
    margin: 30px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.40);
    background: #000;
}

#flipbook img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #flipbook {
        height: 70vh;
    }
}

/* ============================
   NEXT & PREVIOUS BUTTONS
   ============================ */
.flipbook-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: #0ea5e9;
    border: none;
    color: white;
    padding: 12px 18px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 8px;
    z-index: 999;
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.6);
    transition: 0.25s;
}

.flipbook-btn:hover {
    background: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.9);
    transform: translateY(-50%) scale(1.09);
}

.prev-page {
    left: 25px;
}

.next-page {
    right: 25px;
}


/* ============================
   SCROLL TO TOP BUTTON
   ============================ */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #38bdf8;
    color: #000;
    padding: 12px 15px;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
    transition: 0.25s;
}

.scroll-top:hover {
    background: #0ea5e9;
    box-shadow: 0 0 18px rgba(14, 165, 233, 1);
}


/* *********************home banner gif */
/* .moving-banner {
    width: 100%;
    height: 300px;
    background: url('/images/mrs_banner_optionB_slow.gif') repeat-x;
    background-size: cover;
    animation: moveBanner 500s linear infinite;
}

@media (max-width: 768px) {
    .moving-banner {
        height: 200px;
        animation: moveBanner 800s linear infinite;
    }
}

@keyframes moveBanner {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -3000px 0;
    }
} */
/*
.moving-banner {
    width: 100%;
    height: 250px;
    background: url('/images/mrs_banner_optionB_slow.gif') repeat-x center center;
    background-size: contain;
    background-repeat: repeat-x;
    background-color: #ffffff;
    animation: moveBanner 120s linear infinite;
}


@media (max-width: 768px) {
    .moving-banner {
        height: 150px;
        background-size: contain;
        animation: moveBanner 150s linear infinite;
    }
}

@keyframes moveBanner {
    0% { background-position: 0 0; }
    100% { background-position: -4500px 0; }
} */

/* MOVING BANNER */
.moving-banner {
    width: 100%;
    height: 250px;
    background: url('/images/mrs_banner_optionB_slow.gif') repeat-x center;
    background-size: contain;
    animation: moveBanner 120s linear infinite;
}

/* Mobile Banner */
@media (max-width: 768px) {
    .moving-banner {
        height: 150px;
        background-size: cover;
        animation: moveBanner 150s linear infinite;
    }
}

/* ANIMATION */
@keyframes moveBanner {
    0% { background-position: 0 0; }
    100% { background-position: -4500px 0; }
}

/* TEXT SECTION (below banner) */
.hero-text {
    text-align: center;
    padding: 25px 15px;    /* reduced spacing */
    background: linear-gradient(
        to bottom,
        #f5f5f5,
        #ffffff 40%,
        #ffffff 60%,
        #f5f5f5
    );  /* subtle grey gradient */
    border-bottom: 1px solid #e6e6e6;   /* thin separator */
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);  /* soft shadow */
    animation: fadeIn 1.4s ease-in-out;         /* fade animation */
}

.hero-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    /* opacity: 0; */
    animation: fadeInHeading 1.2s ease forwards;
}

.hero-text p {
    font-size: 25px;
    line-height: 1.5;
    color: #333;
}

/* Mobile text */
@media (max-width: 768px) {
  .hero-text {
       padding: 10px 5px;   /* very compact on real phones */
   }
    .hero-text h1 {
        padding: 10px 5px;
        font-size: 25px;
    }
    .hero-text p {
        font-size: 19px;
        padding: 0 25px;
    }
}


/* Main container */
.home-about3 {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff, #f5f7fa);
    padding: 50px 20px 45px;
    border-top: 5px solid #e6e6e6;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Inner box */
.about-text-box3 {
    text-align: center;
    max-width: 700px;
    animation: fadeIn 1.2s ease;
}

/* Heading */
.about-text-box3 h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a3350;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* Paragraph */
.about-text-box3 p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding: 0 20px;     /* Important: avoids touching mobile edges */
    margin: 0 auto;
    max-width: 650px;
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .home-about3 {
        padding: 35px 10px 30px;
    }

    .about-text-box3 h2 {
        font-size: 22px;
    }

    .about-text-box3 p {
        font-size: 14px;
        padding: 0 25px;   /* extra spacing at sides */
        line-height: 1.45;
    }
}

/* Fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
