*{
    padding:0;
    margin:0;
}
/* ============ NAVBAR DESKTOP ============ */
.mjh-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 3px solid #d62049;
    position: fixed;      /* HERE */
    top: 0;               /* HERE */
    left: 0;              /* HERE */
    z-index: 9999;        /* HERE */
}

.mjh-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.mjh-logo img {
    height: 55px;
    object-fit: contain;
}

.mjh-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.mjh-nav ul li a {
    text-decoration: none;
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.mjh-nav ul li a:hover {
    color: #d62049;
}

/* Hide hamburger on desktop */
.mjh-menu-btn {
    display: none;
}

/* ============ MOBILE VIEW ============ */
@media (max-width: 768px) {
  
  .mjh-container {
      padding: 15px 20px;
  }

  /* Hide desktop nav */
  .mjh-nav {
      display: none;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background: #ffffff;
      padding: 20px 0;
      border-bottom: 3px solid #d62049;
      /*box-shadow: 0px 4px 12px rgba(0,0,0,0.1);*/
      z-index: 1000;
  }

  .mjh-nav ul {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }

  .mjh-nav ul li a {
      font-size: 18px;
      color: #222;
  }

  /* Hamburger button */
  .mjh-menu-btn {
      display: block;
      font-size: 32px;
      cursor: pointer;
      color: #d62049;
      font-weight: bold;
  }
}





















/* Default: Desktop view */
.img-desktop {
  display: block;
}

.img-mobile {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .img-desktop {
    display: none;
  }

  .img-mobile {
    display: block;
  }
}

/* ===========================
        HERO SLIDER BASE
   =========================== */
   .hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
       

  }
  
  .hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s linear;
  }
  
  .hero-slider .slide.active {
    opacity: 1;
    z-index: 5;
  }
  
  .hero-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
    opacity: 0.8;
  }
  
  .arrow:hover {
    opacity: 1;
  }
  
  .left {
    left: 20px;
  }
  
  .right {
    right: 20px;
  }
  
  .dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }
  
  .dots span {
    height: 10px;
    width: 10px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .dots .active-dot {
    opacity: 1;
  }
  
  
  /* ===========================
          MOBILE RESPONSIVE
     =========================== */
  @media (max-width: 768px) {
    .hero-slider {
      height: 62vh;
    }
  
    .arrow {
      font-size: 26px;
      padding: 5px;
    }
  
    .left { left: 10px; }
    .right { right: 10px; }
  
    .dots span {
      height: 8px;
      width: 8px;
      margin: 0 3px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-slid60vh;
    }
  
    .arrow {
      font-size: 22px;
    }
  }

  



  /* CONTENT SLIDER */
.content-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
}

.left-fixed img {
    width: 90%;
    max-width: 450px;
}

.right-slider {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.slides .slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slides .slide.active {
    display: block;
    opacity: 1;
}

.slide p {
    font-size: 25px;
    color: black;
}

.dots-1 {
    margin-top: 20px;
    text-align: center;
}

.dots-1 span {
    height: 10px;
    width: 10px;
    background: #c0c0c0;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.dots-1 .active {
    background: #e63b3b;
}

/* ================================
   MOBILE RESPONSIVE FIX
================================ */
@media (max-width: 768px) {

    .content-slider {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }

    .left-fixed {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .left-fixed img {
        width: 80%;
        max-width: 300px;
    }

    .right-slider {
        width: 100%;
        max-width: 100%;
    }

    .slide p {
        font-size: 18px;
        line-height: 1.5;
        padding: 0 10px;
        text-align: justify;
    }

    .dots-1 {
        margin-top: 15px;
    }

    .dots-1 span {
        height: 8px;
        width: 8px;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {

    .left-fixed img {
        width: 90%;
        max-width: 260px;
    }

    .slide p {
        font-size: 16px;
    }

    .dots-1 span {
        height: 7px;
        width: 7px;
    }
}








.about-section {
    width: 100%;
    background: #fff;
    font-family: Arial, sans-serif;
   
}

.about-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    color: #d62049;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-text .tagline {
    color: #d62049;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.about-text p {
    color: #333;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
   padding: 0 15px 10px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
}

/* ----------------------------------------------- */
/* MOBILE RESPONSIVE (Under 768px) */
@media (max-width: 768px) {

    .about-section {
     
    }

    .about-container {
        flex-direction: column;
        gap: 25px;
    }

    .about-text h1 {
        font-size: 30px;
        text-align: center;
    }

    .about-text .tagline {
        font-size: 16px;
        text-align: center;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
    }

    .about-image img {
        max-width: 100%;
        width: 100%;
        margin-top: 10px;
    }
}

/* Tiny phones (≤480px) */
@media (max-width: 480px) {

    .about-text h1 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 13px;
        padding:0 15px;
    }

    .about-text .tagline {
        font-size: 15px;
    }
}







.services-section {
    background: #d62049; /* pink/red bg */
    padding: 60px 20px;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Grid layout */
.services-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
    padding: 0 40px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-item img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

.service-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: bold;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* ------------ Responsive ------------- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 15px;
        padding: 20px 10px;
        background: rgb(255 255 255 / 32%);
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }

    .service-item img {
        width: 200px;
        height: 200px;
    }

    .service-content h3 {
        font-size: 20px;
        margin-top: 10px;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }
}










.industries {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.industries h2 {
    font-size: 34px;
    font-weight: 700;
    color: #d62049;
    margin-bottom: 20px;
}

.industries .desc {
    max-width: 850px;
    margin: 0 auto 50px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    max-width: 1100px;
    margin: auto;
}

.industry-item {
    text-align: center;
    transition: transform 0.3s;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-item img {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.industry-item p {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .industry-item img {
        width: 100px;
    }

    .industries .desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .industry-item img {
        width: 80px;
    }

    .industries h2 {
        font-size: 28px;
    }

    .industries .desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .industry-item p {
        font-size: 14px;
    }
}









.products-section {
    padding: 40px 20px;
    text-align: center;
}

.products-section .title {
    font-size: 28px;
    font-weight: bold;
    color: #c8102e;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.product-grid {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    gap: 20px;
}

.product-card {
    background: url('BG_PATTERN_IMAGE_URL'); /* replace with your background image URL */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 10px 5px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.product-name {
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 0;
    font-size: 14px;
    margin-top: -4px;
    text-transform: uppercase;
}

/* Responsive Breakpoints */
@media screen and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media screen and (max-width: 600px) {
    .product-grid {
        grid-template-columns: fr; /* 1 column on mobile */
        gap: 15px;
    }

    .product-card img {
        height: 180px;
    }

    .products-section .title {
        font-size: 22px;
    }
}






.contact-section-1 {
    background-color: #1c234a;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 60px;
}

/* LEFT IMAGE BOX */
.left-box img {
    width: 350px;
    border-radius: 20px;
}

/* RIGHT SIDE CONTENT */
.right-box {
    max-width: 650px;
}

.right-box h1 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 700;
    color:white;
}

.right-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
    color:white;
}

/* FORM */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input, 
.full-input input,
.full-input textarea {
    width: 100%;
        padding: 14px 0px;

    border-radius: 6px;
    border: none;
    font-size: 14px;
    margin:5px 0;
}

textarea {
    height: 150px;
    resize: none;
}

button {
    background: #d62049;
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

.form-message {
    margin-top: 15px;
    font-size: 14px;
    color: #aeef06;
}

/* RESPONSIVE FOR MOBILE */
@media (max-width: 900px) {
    .contact-section-1 {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .left-box img {
        width: 100%;
        max-width: 400px;
    }

    .right-box {
        max-width: 100%;
        text-align: center;
    }

    .right-box h1 {
        font-size: 30px;
    }

    .right-box p {
        font-size: 15px;
        max-width: 100%;
    }

    button {
        width: 100%;
        padding: 12px 20px;
    }
}











.mjh-footer {
    background: #0f0f0f;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.footer-logo {
    width: 220px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-col p {
    color: #ccc;
    line-height: 22px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 6px 0;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: .3s;
}

.footer-col ul li a:hover {
    color: #cc1139;
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: .3s;
}

.social-icons a:hover {
    color: #d62049;
}

.footer-contact {
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #bbb;
    font-size: 14px;
}

/* Scroll to top button */
.scroll-top {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: #0f0f0f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    cursor: pointer;
    transition: 0.3s;
    display: none; /* hidden by default */
}

.scroll-top i {
    color: #d62049;
    font-size: 18px;
}

.scroll-top:hover {
    background: #1a1a1a;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        text-align: center;
    }

    .footer-col {
        width: 100%;
    }

    .footer-logo {
        width: 180px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-col p,
    .footer-col ul li a,
    .footer-contact {
        font-size: 14px;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
    }

    .scroll-top i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 150px;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .footer-col p,
    .footer-col ul li a,
    .footer-contact {
        font-size: 13px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
    }

    .scroll-top i {
        font-size: 14px;
    }
}