* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
/* img {
    width: 100%;
    height: 100%;
} */

/* Root Variables */
:root {
    --yellow: #f9ed32;
    --black: #000000;
    --gray: #3a3939;
    --light-gray: #f2f2f2;
}

/* Global */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Hero Section */
.section-top {
    width: 100%;
    padding: 4rem 0;  
    position: relative;
    overflow: hidden;
    min-height: 400px; 
    display: flex;
    align-items: center;
}

.section-top-row {

    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
    width: 100%;
    flex-wrap: wrap;
}

/* Left Content */
.section-top-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* margin-right: 14rem; */
}

.title-top {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.section-top-left p {
    font-size: 1.4rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 90%;
}

/* Button */
.btn-banner {
    padding: 1.2rem 3rem;
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
}

.btn-banner:hover {
    background-color: #000 !important;
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Right Images */
.section-top-right {
    flex: 1;
    position: relative;
    min-height: 450px; 
    max-width: 600px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-top-right img {
    width: 48%;
    border: 3px solid var(--yellow);
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    object-fit: cover;
}



.image1 {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-5deg);
}

.image2 {
    bottom: -10px;
    right: -10px;
    z-index: 3;
    transform: rotate(3deg);
        animation: liftUpDown 0.6s ease infinite;

}

@keyframes liftUpDown {
  0% {
        z-index: 10 !important;

  }
  50% {
  }
  100% {
    z-index: 10 !important;
  }
}


/* Hover Effects */
.section-top-right img:hover {
    z-index: 10 !important;
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 992px) {
    .section-top-row {
        flex-direction: column;
    }

    .section-top-right {
        min-height: 300px;
        margin-top: 3rem;
        max-width: 100%;
    }

    .section-top-right img {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .section-top {
        height: auto;
        padding: 4rem 0;
    }

    .section-top-row {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .section-top-left,
    .section-top-right {
        width: 100%;
        align-items: center;
        justify-content: center;
        margin-right: 0; 
    }

    .section-top-right {
        position: relative;
        height: 300px;
    }

    .section-top-right img {
        position: absolute;
        width: 200px;
    }

    .image1 {
        top: 10%;
        left: 20%;
    }

    .image2 {
        top: 35%;
        left: 40%;
    }
}

@media (max-width: 480px) {
    .section-top {
        padding: 1.5rem 0;
        min-height: auto;
    }

    .section-top-row {
        gap: 1.5rem;
    }

    .title-top {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
        font-weight: normal;
    }

    .title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .section-top-left p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .btn-banner {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-top-right {
        min-height: 250px;
    }

    .section-top-right img {
        width: 35%;
        border-width: 2px;
    }

    .image1 {
        top: -10px;
        left: -30px;
    }

    .image2 {
        bottom: -10px;
        right: -10px;
    }

    .section-top-right img:hover {
        transform: scale(1.03) !important;
    }
}


/* Font sizes adjustment */
.title-top {
    font-size: 1.2rem; 
    margin-bottom: 0.3rem;
    font-weight: normal;
}

.title {
    font-size: 2.5rem; 
    line-height: 1.2;
}

.section-top-left p {
    font-size: 1rem;
    max-width: 90%;
}

.btn-banner {
    padding: 0.9rem 2rem;
    font-size: 1.1rem; 
}

.section-top-right img {
    height: 60%;
    width: 55%; 
    border-radius: 0.8rem;
    border: 3px solid var(--yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    object-fit: cover;
}

.image1 {
    top: 5%;
    left: 5%;
    z-index: 2;
    transform: rotate(-4deg);
}

.image2 {
    bottom: 5%;
    right: 5%;
    z-index: 1;
    transform: rotate(3deg);
}

/* -------------- */





/* Section-1 */
.section-1 .heading {
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--black);
}
.section-1 .p {
    font-size: 1.6rem;
    color: var(--gray);
    text-align: center;
    padding: 0 8rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}
.section-1-box {
    padding: 3rem 0;
background-color: transparent;
    /* background: linear-gradient(135deg, var(--light-gray), var(--white)); */
    border-radius: 15px;
}
.section-1-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 3rem;
    gap: 3rem;
    transition: all 0.6s ease-in-out;
}
.section-1-row:hover {
    transform: scale(1.02);
}
.section-1-row:nth-child(even) {
    flex-direction: row-reverse;
}
.section-1-row img {
    width: 40%;
    height: auto;
    max-height: 450px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    outline: 1px solid var(--yellow);
}
.section-1-row-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    justify-content: center;
}
.section-1-row-content b {
    font-size: 2rem;
    color: var(--black);
    font-weight: bold;
    letter-spacing: 0.5px;
}
.section-1-row-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
}
.section-1-row-content b:hover {
    color: var(--yellow);
    transition: color 0.3s ease;
}
.section-1-row-content p:hover {
    color: var(--black);
    transition: color 0.3s ease;
}


/* ------------------------ */





/* Compact Section-1 */
.section-1 {
    padding: 2rem 0; 
}

.section-1 .heading {
    font-size: 1.8rem; 
    font-weight: 600; 
    text-align: center;
    margin-bottom: 1rem; 
    color: var(--black);
    line-height: 1.3;
}

.section-1 p.MsoNormal {
    font-size: 1rem; 

    color: var(--gray);
    text-align: center;
    padding: 0 1rem; 

    margin: 1rem auto; 
    max-width: 800px; 

    line-height: 1.6;
}

.section-1-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem; 
    padding: 1.5rem;
    margin: 1rem 0;
}

.section-1-row img {
    width: 45%;  
    max-height: 300px; 
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    outline: 2px solid var(--yellow); 
}

.section-1-row-content {
    width: 50%; 
}

.section-1-row-content b {
    font-size: 1.3rem; 
    color: var(--black);
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.section-1-row-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.section-1-row:hover {
    transform: none; 
    background: rgba(249, 237, 50, 0.05); 
}

.section-1-row:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .section-1-row, 
    .section-1-row:nth-child(even) {
        flex-direction: column;
    }
    
    .section-1-row img,
    .section-1-row-content {
        width: 100%;
    }
    
    .section-1-row img {
        max-height: 250px;
    }
}



.section-1 {
  padding: 4rem 0;
  background: var(--white);
}

.section-1 .heading {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: var(--black);
  margin-bottom: 1rem;
}

.about-subtext {
  font-size: 1.1rem;
  color: var(--gray);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}

.section-1-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.section-1-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--light-gray);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.section-1-row:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.section-1-row:nth-child(even) {
  flex-direction: row-reverse;
}

.section-1-row img {
  flex: 1 1 45%;
  max-width: 100%;
  max-height: 360px;
  border-radius: 0.75rem;
  object-fit: cover;
  outline: 3px solid var(--yellow);
  transition: transform 0.3s ease;
}

.section-1-row:hover img {
  transform: scale(1.02);
}

.section-1-row-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.section-1-row-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.section-1-row-content p {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-1-row {
    flex-direction: column !important;
    text-align: center;
  }
  .section-1-row img,
  .section-1-row-content {
    width: 100%;
  }
}






/* ------------------------------ */


/* Section-2 */
.section-2 {
    padding: 5rem 0;
}

.section-2 .heading{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-2 .p {
    font-size: 1.6rem;
    color: var(--gray);
    text-align: center;
    padding: 0 13rem;
    margin: 1rem 0;
    line-height: 1.8;
}
.section-2-box {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding: 0 3rem;
}
.section-2-box img {
    width: 55%;
    border-radius: 0.5rem;
    height: 350px;
    outline: 2px solid var(--yellow);
}
.section-2-content {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.section-2-content-list label {
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: capitalize;
    display: block;
    margin-bottom: 0.8rem; 
    position: relative;
    padding-left: 1.5rem; 
}

.section-2-content-list label::before {
    content: "•";
    color: #d4a017;
    position: absolute;
    left: 0;
    top: 0;
}

.section-2-content-list ul {
    margin-bottom: 1.5rem;
}

.section-2-content-list:last-child ul {
    margin-bottom: 0;
}

.content-2-ul1 {
    margin: 1rem 0rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 1.1rem;
    color: var(--gray);
}


.content-2-ul1 li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.content-2-ul1 li::before {
    content: '\2714'; 
    color: var(--yellow); 
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}
.section-2-content-text{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.section-2-content-text p{
    color: var(--gray);
    font-size: 1.05rem;
}

.section-2-content li::marker,
.content-2-ul1 li::before {
    content: none !important;
}

.section-2-content li::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23d4a017"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" stroke="%23d4a017" stroke-width="1.5"/></svg>');
    margin-right: 0.7rem;
    vertical-align: middle;
    display: inline-block;
    width: 16px; 
    height: 16px;
    transition: transform 0.2s ease;
}

.section-2-content li:hover::before {
    transform: translateX(3px);
}

.section-2-content li:hover{
    cursor: default;
}






/* -------------------------------- */






.image-slider {
  padding: 3rem 0px;
  position: relative;
  background: linear-gradient(to right, #f9f9f9, #fff);
  text-align: center;
  overflow: hidden;
}

.image-slider .heading {
  color: var(--black);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 220px;
  height: 260px; /* smaller height */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--yellow);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

/* Arrow Buttons */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--yellow);
  background: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.2rem 0.6rem;
  z-index: 10;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.left-arrow {
  left: 15px;
}

.right-arrow {
  right: 15px;
}


/* Medium screens (tablets) */
@media (max-width: 991px) {
  .image-slider {
    padding: 2rem 0;
  }

  .image-slider .heading {
    font-size: 2rem;
  }

  .slide {
    flex: 0 0 180px;
    height: 220px;
  }

  .arrow {
    font-size: 2.2rem;
  }
}

/* Small screens (phones) */
@media (max-width: 576px) {
  .image-slider .heading {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .slide {
    flex: 0 0 140px;
    height: 180px;
  }

  .slider {
    gap: 14px;
  }

  .arrow {
    font-size: 1.8rem;
    padding: 0.1rem 0.4rem;
  }

  .left-arrow {
    left: 8px;
  }

  .right-arrow {
    right: 8px;
  }
}






.manufacturing-section {
    padding: 3rem 0; 
    background-color: var(--light-gray);
}

.manufacturing-content {
    display: flex;
    gap: 2rem; 
    align-items: center;
}

.manufacturing-section .heading{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.left-content {
    flex: 1;
    padding: 1rem;
}

.left-content h4 {
    font-size: 1.5rem; 
    color: var(--black);
    margin-bottom: 0.8rem;
}

.left-content p {
    font-size: 1.1rem; 
    color: var(--dark-gray);
    line-height: 1.6;
}

.right-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem; 
}

.image-row {
    display: contents; 
}

.right-images img {
    width: 100%;
    height: 180px; 
    border-radius: 0.3rem; 
    object-fit: cover;
    border: 2px solid var(--yellow); 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.right-images img:nth-child(1) {
    transform-origin: bottom right;
}
.right-images img:nth-child(2) {
    transform-origin: bottom left;
}
.right-images img:nth-child(3) {
    transform-origin: top right;
}
.right-images img:nth-child(4) {
    transform-origin: top left;
}

.right-images:hover img {
    transform: 
        rotate(calc(var(--i) * 5deg)) 
        scale(1.03);
    z-index: 2;
}

.more-info-btn {
    padding: 0.8rem 1.8rem;
    background: var(--yellow);
    border: 2px solid transparent;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
    cursor: pointer;
}

.more-info-btn:hover {
    background: transparent;
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.right-images img:hover {
    filter: sepia(0.3) saturate(1.2);

}

.right-images img {
    animation: pulse 5s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(0.98); }
    100% { transform: scale(1.02); }
}


@media (max-width: 991px) {
  .manufacturing-content {
    flex-direction: column;
    text-align: center;
  }

  .left-content {
    padding: 0.5rem 1rem;
  }

  .left-content h4 {
    font-size: 1.4rem;
  }

  .left-content p {
    font-size: 1rem;
  }

  .right-images {
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.6rem;
  }

  .right-images img {
    height: 160px;
  }
}

@media (max-width: 576px) {
  .right-images {
    grid-template-columns: repeat(2, 1fr); 
    gap: 0.4rem;
  }

  .right-images img {
    height: 140px;
  }

  .left-content h4 {
    font-size: 1.2rem;
  }

  .left-content p {
    font-size: 0.95rem;
  }

  .more-info-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}



.why-choose-us-modern {
  background-color: var(--light-gray);
  padding: 5rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--yellow);
}

.feature-card .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  color: var(--yellow);
}

.feature-card svg {
  width: 100%;
  height: 100%;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--gray);
}



/* Responsive */
@media (max-width: 1024px) {
    .section-top-left, .section-top-right {
        width: 100%;
        text-align: center;
    }
    .section-top-left {
        margin-top: 2rem;
        align-items: center;
    }
    .section-top-left b {
        font-size: 2.8rem;
    }
    .section-top-right img {
        width: 70%;
        margin: 0 auto;
    }
    .section-1 .p {
        padding: 0 2rem;
    }
    .section-1-row img, .section-1-row-content {
        width: 100%;
    }
    .section-1-row img {
        max-height: 300px;
    }
    .section-2 .p {
        font-size: 1.4rem;
        padding: 0 8rem;
    }
    .section-2-box {
        flex-direction: column;
        align-items: center;
    }
    .section-2-box img {
        width: 70%;
        height: auto;
    }
    .content-2-ul1 {
        font-size: 1rem;
        margin: 1rem 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .heading {
        font-size: 2rem;
    }
    .section-top-right{
        width: 100;
    }
    .section-top-right .image2{
        left: -10px;
        top: 20px;
    }
    .section-top-right .image1{
        left: 28px;
    }
    .section-top-left b {
        font-size: 2.5rem;
    }
    .section-top-left p {
        font-size: 1.4rem;
    }
    .section-1 .heading{
        font-size: 1.3rem;
    }
    .section-1 .p {
        font-size: 1rem;
    }
    .section-top-left button {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }
    .section-top-right img {
        width: 90%;
    }
    .section-1-row-content b {
        font-size: 1.3rem;
    }
    .section-1-row-content p {
        font-size: 1rem;
    }
    .section-1-row img {
        width: 100%;
        height: auto;
    }
    .section-2 .p {
        font-size: 1rem;
        padding: 0 4rem;
    }
    .section-2-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0px;
    }
    .section-2-box img {
        width: 100%;
        height: auto;
    }
    .section-2-content-list label {
        font-size: 1.2rem;
    }
    .content-2-ul1 {
        font-size: 1rem;
    }
    .manufacturing-content {
        flex-direction: column; 
    }
    .left-content h4 {
        font-size: 1.5rem;
        text-align: center;
    }
    .left-content p {
       font-size: 1rem; 
    }
    .image-row {
        flex-direction: column;
        width: 100%;
    }
    .right-images{
        width: 100%;
    }
    .image-row img {
        width: 80%; 
        margin: 0px auto;
        margin-bottom: 1rem;
    }
    .choose-us-item {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .heading {
        font-size: 1.8rem;
    }
    .section-top-left b {
        font-size: 2rem;
    }
    .section-top-left p {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    .section-top-left button {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
    .section-top-right img {
        width: 100%;
        margin: 0;
    }
    .section-1 .p {
        font-size: 1.1rem;
    }
    .section-1-row-content b {
        font-size: 1.3rem;
    }
    .section-1-row-content p {
        font-size: 1rem;
    }
    .section-2 {
        padding: 3rem 0;
    }
    .section-2 .p {
        font-size: 1rem;
        line-height: 1.5;
    }
    .section-2-box {
        gap: 1rem;
        padding: 0px;
    }
    .section-2-box img {
        width: 100%;
        height: auto;
    }
    .section-2-content-list label {
        font-size: 1.1rem;
    }
    .content-2-ul1 {
        font-size: 0.9rem;
    }
}









/* HERO SECTION GRADIENT */
.section-top.home-banner {
  background: linear-gradient(135deg, #1e0055 0%, #6a0174 100%);
  background-attachment: fixed;
  color: white;
}







.section-top.home-banner .title-top {
  color: #ffd700 !important; /* Gold for the top title */
}

.section-top.home-banner .title {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-top.home-banner p {
  color: #e2c4ff !important; /* Light lavender for paragraph */
  max-width: 80%;
  line-height: 1.6;
}

/* HERO BANNER BUTTON WITH GLASS EFFECT */
.section-top.home-banner .btn-banner {
  background: linear-gradient(135deg, #ffe227 0%, #ffcc00 100%) !important;
  color: #1e0055 !important;
  border: none !important;
  /* border-radius: 50px; */
  /* padding: 1.2rem 3rem; */
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  /* box-shadow: 0 4px 15px rgba(255, 226, 39, 0.3); */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.section-top.home-banner .btn-banner:hover {
  background: linear-gradient(135deg, #004599 0%, #002d66 100%) !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 69, 153, 0.4);
}

/* Glass shine effect */
.section-top.home-banner .btn-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(30deg);
  transition: all 0.4s;
}

.section-top.home-banner .btn-banner:hover::after {
  left: 120%;
  background: rgba(255, 255, 255, 0.25);
}

/* Pulse animation on focus */
.section-top.home-banner .btn-banner:focus {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 69, 153, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 69, 153, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 69, 153, 0);
  }
}




/* Image Borders */
.section-top.home-banner .section-top-right img {
  border: 3px solid white !important; /* Gold border */
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.section-top.home-banner .section-top-right img:hover{
      border: 1px solid #ca3346 !important; /* Gold border */

}



/* WHY CHOOSE US SECTION STYLING */
.why-choose-us-modern {
  background: linear-gradient(135deg, #ca3346 0%, #21428c 100%) !important;
  padding: 4rem 0;
  color: white;
}

.why-choose-us-modern .section-title {
  color: white !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.why-choose-us-modern .section-subtitle {
  color: rgba(255,255,255,0.9) !important;
}

/* Feature Cards */
.why-choose-us-modern .feature-card {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.why-choose-us-modern .feature-card h4 {
  color: white !important;
}

.why-choose-us-modern .feature-card p {
  color: rgba(255,255,255,0.85) !important;
}

/* Icons */
.why-choose-us-modern .icon svg {
  stroke: white !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Hover Effects */
.why-choose-us-modern .feature-card:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
}






/* SECTION ROWS STYLING */
.section-1.about-sec {
  background: #f8f9fa !important; /* Light gray background */
  padding: 4rem 0;
}

/* Text Colors */
.section-1.about-sec .heading {
  color: #1e0055 !important; /* Deep purple */
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-1.about-sec .about-subtext {
  color: #4a4a4a !important; /* Dark gray */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Row Container */
.section-1-row {
  background: white !important;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-left: 5px solid #ca3346 !important; /* Accent border */
  transition: all 0.3s ease;
}

/* Row Content */
.section-1-row-content {
  padding: 2rem;
}

.section-1-row-content h4 {
  color: #1e0055 !important; /* Deep purple */
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.section-1-row-content p {
  color: #555 !important; /* Medium gray */
  line-height: 1.6;
}

/* Images */
.section-1-row img {
  width: 40%;
  height: 300px;
  object-fit: cover;
  border-right: 1px solid #eee !important;
  outline: 2px solid #6a0174;
}

/* Hover Effects */
.section-1-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(202, 51, 70, 0.15);
  border-left-color: #21428c !important; /* Changes to blue on hover */
}

/* Responsive */
@media (max-width: 768px) {
  .section-1-row {
    flex-direction: column;
  }
  
  .section-1-row img {
    width: 100%;
    height: 200px;
    border-right: none !important;
    border-bottom: 1px solid #eee !important;
  }
}




/* SLIDER STYLING */
.image-slider {
  background: linear-gradient(135deg, #ca3346 0%, #21428c 100%) !important;
  padding: 3rem 0;
  position: relative;
}

/* Heading */
.image-slider .heading {
  color: white !important;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Slider Container */
.slider-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Slides */
.slide {
  flex: 0 0 280px;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  border: 3px solid rgba(255,255,255,0.3) !important;
  transition: all 0.4s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide:hover {
  border-color: white !important;
}

.slide:hover img {
  transform: scale(1.05);
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  /* background: rgba(255,255,255,0.2); */
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  z-index: 10;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.arrow:hover {
  /* background: rgba(255,255,255,0.3); */
  transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 220px;
    height: 260px;
  }
  
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}




/* SECTION 2 STYLING */
.section-2 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  padding: 4rem 0;
}

.section-2 .heading {
  color: #1e0055 !important; /* Deep purple */
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.section-2 p {
  color: #4a4a4a !important; /* Dark gray */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.section-2-box {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #ca3346 !important; /* Red accent */
  transition: all 0.3s ease;
}

.section-2-box img {
  width: 50%;
  border-radius: 8px;
  outline: 2px solid #b6d2ee !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-2-content {
  width: 50%;
}

.section-2-content-list label {
  color: #21428c !important; /* Blue */
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.section-2-content-list ul {
  margin-bottom: 1.5rem;
}

.section-2-content-list li {
  color: #4a4a4a !important;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-2-content-list li:before {
  content: "•";
  color: #ca3346 !important; /* Red */
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}

.section-2-content p {
  color: #4a4a4a !important;
  text-align: left;
  margin-top: 1rem;
  font-style: italic;
}

/* Hover Effects */
.section-2-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(202, 51, 70, 0.15);
  border-left-color: #21428c !important; /* Changes to blue on hover */
}

/* Responsive */
@media (max-width: 992px) {
  .section-2-box {
    flex-direction: column;
  }
  
  .section-2-box img,
  .section-2-content {
    width: 100%;
  }
}




/* MANUFACTURING SECTION STYLING */
.manufacturing-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
  padding: 4rem 0;
}

.manufacturing-section .heading {
  color: #1e0055 !important; /* Deep purple */
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.manufacturing-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.left-content {
  flex: 1;
  padding-right: 2rem;
}

.left-content h4 {
  color: #21428c !important; /* Blue */
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.left-content p {
  color: #4a4a4a !important; /* Dark gray */
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Images Grid */
.right-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.right-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid #ca3346 !important; /* Red border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.right-images img:hover {
  transform: scale(1.03);
  border-color: #21428c !important; /* Blue on hover */
  box-shadow: 0 6px 16px rgba(33,66,140,0.2);
}

/* Button Styling */
.more-info-btn {
  background: #ca3346 !important; /* Red */
  color: white !important;
  border: none !important;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.more-info-btn:hover {
  background: #21428c !important; /* Blue */
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(33,66,140,0.3);
}

.more-info-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(30deg);
  transition: all 0.3s;
}

.more-info-btn:hover::after {
  left: 120%;
}

/* Responsive */
@media (max-width: 992px) {
  .manufacturing-content {
    flex-direction: column;
  }
  
  .left-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .right-images img {
    height: 180px;
  }
}

@media (max-width: 576px) {
  .right-images {
    grid-template-columns: 1fr;
  }
}