* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana !important;
}

header li {
    animation: alternate-reverse;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo img {
    max-width: 200px;
}

header .menu-icon {
    font-size: 32px;
    cursor: pointer;
    color: #414361;
}
/* Fullscreen Image Styles */
      .fullscreen-image {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 99999;
        background: linear-gradient(
          135deg,
          #113023 0%,
          #000000 50%,
          #000000 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
        overflow: hidden;
      }
      
      .fullscreen-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("./images/image.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.15;
        z-index: -1;
      }

      .banner-content {
        width: 95%;
        max-width: 1400px;
        height: 90%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        color: white;
        position: relative;
        padding: 20px;
      }

      .left-section {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      .main-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: bold;
        line-height: 1.1;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .main-title .highlight {
        color: #00ff88;
        text-shadow: 0 0 20px rgba(82, 183, 136, 0.3);
      }

      .subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
        color: #e0e0e0;
        margin-bottom: 30px;
        line-height: 1.4;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        margin: 30px 0;
      }

      .stat-item {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(82, 183, 136, 0.4);
        border-radius: 12px;
        padding: 15px 10px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, background 0.3s ease;
      }

      .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(82, 183, 136, 0.15);
      }

      .stat-number {
        font-size: clamp(1.5rem);
        font-weight: bold;
        color: #52b788;
        display: block;
      }

      .stat-label {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        color: #e0e0e0;
        margin-top: 5px;
      }

      .right-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
        justify-content: center;
      }

      .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
      }

      .feature-item {
        background: rgba(255, 255, 255, 0.08);
        border-left: 4px solid #52b788;
        padding: 15px 20px;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
      }

      .feature-item:hover {
        background: rgba(82, 183, 136, 0.15);
        transform: translateX(5px);
      }

      .feature-title {
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
        font-weight: bold;
        color: #52b788;
        margin-bottom: 5px;
      }

      .feature-desc {
        font-size: clamp(0.75rem, 2vw, 0.9rem);
        color: #e0e0e0;
        line-height: 1.3;
      }

      .additional-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
        margin-top: 20px;
      }

      .mini-feature {
        background: rgba(82, 183, 136, 0.15);
        padding: 12px 8px;
        border-radius: 6px;
        text-align: center;
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
        font-weight: 600;
        color: #52b788;
        border: 1px solid rgba(82, 183, 136, 0.3);
        transition: all 0.3s ease;
      }

      .mini-feature:hover {
        background: rgba(82, 183, 136, 0.25);
        transform: scale(1.05);
      }

      .decorative-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
      }

      .circle {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(82, 183, 136, 0.1) 0%,
          transparent 70%
        );
      }

      .circle-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
      }

      .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
      }

      .loading-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 15px;
        color: #52b788;
        font-size: clamp(0.75rem, 2vw, 0.9rem);
      }

      .progress-bar {
        width: clamp(150px, 30vw, 200px);
        height: 3px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
        overflow: hidden;
      }

      .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #52b788, #2d6a4f);
        border-radius: 3px;
        animation: fillProgress 2s ease-out forwards;
      }

      @keyframes fillProgress {
        0% {
          width: 0%;
        }
        100% {
          width: 100%;
        }
      }

      /* Large Desktop (1440px and above) */
      @media (min-width: 1440px) {
        .banner-content {
          max-width: 1600px;
          gap: 60px;
        }

        .main-title {
          font-size: 4rem;
        }

        .subtitle {
          font-size: 1.6rem;
        }
      }

      /* Desktop (1024px to 1439px) */
      @media (max-width: 1439px) and (min-width: 1024px) {
        .banner-content {
          gap: 40px;
          padding: 20px;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      /* Tablet Landscape (768px to 1023px) */
      @media (max-width: 1023px) and (min-width: 768px) {
        .banner-content {
          grid-template-columns: 1fr;
          gap: 30px;
          height: 95%;
          overflow-y: auto;
          padding: 15px;
        }

        .left-section {
          gap: 20px;
          text-align: center;
        }

        .stats-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 10px;
        }

        .additional-features {
          grid-template-columns: repeat(2, 1fr);
        }

        .circle-1 {
          width: 200px;
          height: 200px;
          top: -100px;
          right: -100px;
        }

        .circle-2 {
          width: 150px;
          height: 150px;
          bottom: -75px;
          left: -75px;
        }
      }

      /* Mobile Landscape (576px to 767px) */
      @media (max-width: 767px) and (min-width: 576px) and (orientation: landscape) {
        .banner-content {
          grid-template-columns: 1fr 1fr;
          gap: 20px;
          height: 95%;
          overflow-y: auto;
          padding: 10px;
        }

        .left-section {
          gap: 15px;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 8px;
          margin: 15px 0;
        }

        .stat-item {
          padding: 10px 8px;
        }

        .features-grid {
          gap: 10px;
          margin-bottom: 15px;
        }

        .feature-item {
          padding: 12px 15px;
        }

        .additional-features {
          grid-template-columns: repeat(2, 1fr);
          gap: 8px;
        }
      }

      /* Mobile Portrait (480px to 767px) */
      @media (max-width: 767px) and (min-width: 481px) and (orientation: portrait) {
        .banner-content {
          grid-template-columns: 1fr;
          gap: 20px;
          height: 95%;
          overflow-y: auto;
          padding: 15px 10px;
        }

        .left-section {
          gap: 20px;
          text-align: center;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
          margin: 20px 0;
        }

        .additional-features {
          grid-template-columns: 1fr;
          gap: 10px;
        }

        .loading-indicator {
          bottom: 20px;
          flex-direction: column;
          gap: 10px;
        }
      }

      /* Small Mobile (320px to 480px) */
      @media (max-width: 480px) {
        .banner-content {
          grid-template-columns: 1fr;
          gap: 15px;
          height: 95%;
          overflow-y: auto;
          padding: 10px 8px;
          width: 98%;
        }

        .left-section {
          gap: 15px;
          text-align: center;
        }

        .main-title {
          font-size: 1.8rem;
          margin-bottom: 15px;
        }

        .subtitle {
          font-size: 0.9rem;
          margin-bottom: 20px;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 8px;
          margin: 15px 0;
        }

        .stat-item {
          padding: 12px 6px;
          border-radius: 8px;
        }

        .stat-number {
          font-size: 1.4rem;
        }

        .stat-label {
          font-size: 0.65rem;
        }

        .features-grid {
          gap: 10px;
          margin-bottom: 15px;
        }

        .feature-item {
          padding: 12px 15px;
          border-radius: 6px;
        }

        .feature-title {
          font-size: 0.85rem;
        }

        .feature-desc {
          font-size: 0.7rem;
        }

        .additional-features {
          grid-template-columns: 1fr;
          gap: 8px;
        }

        .mini-feature {
          padding: 10px 8px;
          font-size: 0.65rem;
        }

        .circle-1 {
          width: 150px;
          height: 150px;
          top: -75px;
          right: -75px;
        }

        .circle-2 {
          width: 100px;
          height: 100px;
          bottom: -50px;
          left: -50px;
        }

        .loading-indicator {
          bottom: 15px;
          flex-direction: column;
          gap: 8px;
          font-size: 0.75rem;
        }

        .progress-bar {
          width: 120px;
        }
      }

      /* Extra Small Mobile (less than 320px) */
      @media (max-width: 319px) {
        .banner-content {
          width: 100%;
          padding: 8px 5px;
          gap: 12px;
        }

        .main-title {
          font-size: 1.5rem;
        }

        .subtitle {
          font-size: 0.8rem;
        }

        .stats-grid {
          grid-template-columns: 1fr 1fr;
          gap: 6px;
        }

        .stat-item {
          padding: 8px 4px;
        }

        .stat-number {
          font-size: 1.2rem;
        }

        .stat-label {
          font-size: 0.6rem;
        }

        .feature-item {
          padding: 10px 12px;
        }

        .feature-title {
          font-size: 0.8rem;
        }

        .feature-desc {
          font-size: 0.65rem;
        }

        .mini-feature {
          padding: 8px 6px;
          font-size: 0.6rem;
        }
      }

      .fullscreen-image.hidden {
        opacity: 0;
        visibility: hidden;
      }

      .fullscreen-image img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }

      /* Main content completely hidden during loading */
      .main-content {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
      }

      .main-content.show {
        display: block;
        opacity: 1;
        visibility: visible;
      }


      
/* Navigation Menu */
header .nav-menu {
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background-color: white;
    transition: right 0.9s ease-in-out;
    z-index: 999;
    padding: 0 50px;
}

header .nav-menu.active {
    right: 0;
    /* Menu slides in */
}

header .nav-menu li {
    margin: 10px 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    padding-bottom: 20px;

}

header .nav-menu li a {
    text-decoration: none;
    color: #5B5B5B;
    font-size: 20px;
}

header .nav-menu li a:hover {
    color: #939436;
}

/* Close Icon */
header .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #5B5B5B;
    display: none;
    /* Hidden initially */
}

header .nav-menu.active .close-icon {
    display: block;
}

/* Dropdown Menu */
header .dropdown {
    position: relative;
}

header .dropdown-menu {
    display: none;
    /* Hidden by default */
    position: relative;
    padding-left: 20px;
    border: none;
}

header .dropdown-menu li {
    padding: 10px 0;
    border: none;
}

header .dropdown-menu li a {
    font-size: 18px;
    color: #5B5B5B;


}

header .dropdown-menu li a:hover {
    color: #B6B640;
}

header .dropdown:hover .dropdown-menu {
    display: block;
    /* Show on hover */
}

/* -----banner-------------- */
.banner .video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: top;
    overflow: hidden;
    background-color: #000;
}

.banner .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Black overlay with 50% opacity */
    z-index: 2;
}

.banner .content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    color: white;
    animation: right 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    ;
}

.banner .content h1 {
    font-size: 60px;
    font-weight: bold;
}

.banner .content p {
    font-size: 34px;
    font-weight: 400;
    margin-top: 10px;
    text-transform: uppercase;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    header .logo img {
        max-width: 130px;
    }


    header .menu-icon {
        font-size: 26px;

    }

    .banner .video-banner {
        height: 60vh;
        /* Reduce height on smaller screens */
    }

    .banner .content h1 {
        font-size: 36px;
        /* Reduce font size */
    }

    .banner .content p {
        font-size: 20px;
        /* Reduce font size */
    }
}

@media (max-width: 480px) {
    .banner .video-banner {
        height: 50vh;
        /* Further reduce height on extra small screens */
    }

    .banner .content h1 {
        font-size: 28px;
        /* Reduce font size further */
    }

    .banner .content p {
        font-size: 16px;
        /* Reduce font size further */
    }
}

/* ------------home products---------- */
.banner-heading {
    margin-top: 50px;
    margin-bottom: 150px;
}

.banner-heading h2 {
    font-size: 22px;
    text-transform: capitalize;
    color: #B6B640;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 800;
    line-height: 50px;
}

.banner-heading .head-2 {
    font-size: 20px;
    text-transform: capitalize;
    color: #939436;
    text-align: center;
    margin-bottom: 0px;
    padding: 0px 45px;
}

.banner-heading .row p {
    font-size: 13px;
    color: #787878;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
    margin-bottom: 10px;

}

.banner-heading .head-2 img {
    width: 30px;
    height: auto;
}

.banner-heading .images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-heading .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.banner-heading .images img {
    width: 100%;
    height: 100%;
}

/* .banner-heading .content h5 {
    font-size: 18px;
    color: #787878;
    font-weight: 500;
}

.banner-heading .content h6 {
    font-size: 18px;
    color: #939436;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
} */



/* -------- */
.quotes {
    background-color: #f7f7f7;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 40px;
}

.home-products {
    margin: 100px 0;
}

.home-products h2 {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #939436;
    letter-spacing: 2px;
    padding-bottom: 50px;
}

.home-products .products {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.home-products .products h3 {
    font-size: 14px;
    color: #5B5B5B;
    font-weight: 700;
}

.view-btn {
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    border: 1px solid #B6B640;
    color: #B6B640;
    font-weight: 500;
}

.view-btn:hover {
    color: #fff;
    background-color: #939436;
}

.home-products .products img {
    width: 65%;
}

@media (max-width: 768px) {
    .home-products .products {
        margin-bottom: 50px;
    }

    .home-products {
        margin: 30px 0;
    }
    .banner-heading .head-2 {
        font-size: 12px;
    padding: 0px 25px;
    }
    .banner-heading .head-2 img {
        width: 25px;
    }
}

/* -----------about---------- */
.home-about {
    margin: 100px 0;
}

.home-about .images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.home-about .images img {
    width: 90%;
}

.home-about .content h5 {
    font-size: 18px;
    color: #787878;
    font-weight: 500;
}

.home-about .content h6 {
    font-size: 18px;
    color: #939436;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-about .content p {
    font-size: 13px;
    color: #787878;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
}

@media (max-width: 768px) {
    .home-about {
        margin: 20px 0;
    }

    .home-about .content {
        margin: 20px 0;
    }

    .home-about .content h6 {
        text-align: center;
    }

    .home-about .content h6 {
        line-height: 35px;
    }
}



/* -------------projects--- */
.projects {
    margin: 100px 0;
    text-align: center;
}

.projects h2 {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #939436;
    letter-spacing: 2px;
    padding-bottom: 50px;
}


.projects iframe {
    width: 100%;
    height: 315px;
}

/* --------testimonials----------- */
.testimonials {
    margin: 100px 0;
    text-align: center;
}

.testimonials h2 {
    text-align: center;
    font-size: 19px;
    font-weight: 700;
    color: #939436;
    letter-spacing: 2px;
    padding-bottom: 50px;
}


.testimonials iframe {
    width: 100%;
    height: 315px;
}

.testimonials h6 {
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #939436;
    letter-spacing: 2px;
}

.testimonials p {
    text-align: center;
    font-size: 12px;
    color: #464646;
    text-align: center;
    padding: 0 10px;
}



/* -----ratings--- */
.ratings img {
    width: 30%;
    padding-bottom: 25px;
}

.ratings img:hover {
    scale: 1.05;
}

.ratings {
    padding: 50px 0;
}

.ratings .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.ratings .box h3 {
    font-size: 32px;
    color: #B6B640;
    font-weight: 700;
}

.ratings .box p {
    font-size: 14px;
    color: #787878;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .ratings .box p {
        font-size: 12px;
        letter-spacing: 0px;
    }



}

/* -------------leaders--------- */



.foot-line {
    border-bottom: 1px solid #B6B640;
}

footer {
    margin-top: 50px;
    margin-bottom: 20px;
}

footer .cards h1 {
    font-size: 30px;
    font-weight: 800;
    color: #464646;
    padding-bottom: 30px;

}

footer .cards h1:hover {
    color: #B6B640;
}

footer .cards p {
    font-size: 12px;
    color: #464646;
    font-weight: 500;
    text-align: justify;
    line-height: 30px;
}

footer .para {
    padding-right: 50px;
}

footer .cards .social-icons {
    display: flex;
    gap: 20px;
}

footer .cards .social-icons i {
    color: #888888;
    font-size: 18px;
}

footer .cards .social-icons i:hover {
    color: #B6B640;
}

footer .cards h2 {
    font-size: 17px;
    font-weight: 600;
    color: #464646;
    padding-bottom: 30px;
}

footer .cards a {
    font-size: 12px;
    font-weight: 500;
    color: #464646;
    text-decoration: none;
}

footer .cards a:hover {
    color: #B6B640;
}

footer .foot-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .deta {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

footer .deta svg {
    width: 20px;
    height: 20px;
}

footer .deta svg:hover {
    scale: 1.3;
}

footer h3 {
    font-size: 15px;
    font-weight: 600;
    color: #464646;
}

footer .cards {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

footer .cards h3:hover {
    color: #B6B640;
}

footer .details {
    width: 100%;
}

footer .cards.links {
    padding-left: 120px;
}

@media (max-width: 768px) {
    .leaders {
        margin: 50px 0;
    }

    footer .para {
        padding-right: 0px;
    }

    footer .cards h1 {
        padding-bottom: 0px;
    }

    footer .cards.links {
        padding-left: 12px;
    }

    footer .cards {
        margin-bottom: 20px;
    }

    footer .cards h2 {
        padding-bottom: 0px;
    }

    .projects {
        margin: 50px 0;
    }

    .testimonials {
        margin: 50px 0;
    }

    .banner-heading .content {
        margin-bottom: 20px;
    }


    .banner-heading h2 {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 30px;
    }

    .banner-heading {
        margin-top: 20px;
        margin-bottom: 50px;
    }
}

.foot2 {
    background-color: #B6B640;
    color: #fff;
}

.foot2 p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
    padding: 10px;
}

.projects-video {
    margin-bottom: 50px;
}




/* aboutus */


.about .banner {
    background-image: url(images/about-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.banner h2 {
    font-size: 32px;
    color: #fff;
    text-align: center;
    font-weight: 800;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    padding-top: 80px;

}

.banner a {
    color: #fff;
    position: relative;
    top: 70px;
    text-decoration: none;

}

.banner a:hover {
    color: #939436;


}

.banner a span {
    color: #B6B640;
}

.about .abt-section .image img {
    width: 100%;
}

.abt-section .data h6 {
    font-size: 16px;
    color: #939436;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 35px;
}

.abt-section p {
    font-size: 13px;
    color: #787878;
    font-weight: 500;
    text-align: justify;
    line-height: 30px;
}

.abt-section .points {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.abt-section .points p {
    font-size: 13px;
    color: #939436;
    margin-bottom: 0;
}

.abt-section {
    margin: 50px 0;
}

.about .all-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about .card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    gap: 20px;
}

.about .card h2 {
    font-size: 13px;
    text-align: center;
}

.about .card img {
    width: 75px;
}

.about .why-choose h5 {
    text-align: center;
    color: #939436;
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 40px;
}

.about .why-choose {
    margin: 100px 0;
}

/* Slider Container */
.about .slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* Increased to give the slider more space */
    margin: 0 auto;
    overflow: hidden;
}

/* Slider wrapper with flex for sliding effect */
.about .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Individual slide settings */
.about .slide {
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

/* Content for the text in slides */
.about .content {
    flex: 1;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Styling for the heading */
.about .content h2 {
    color: #939436;
    font-size: 18px;
    /* Increased font size for better visibility */
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

/* Paragraph styling */
.about .content p {
    font-size: 13px;
    color: #787878;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
    padding-left: 100px;
}

/* Image settings */
.about img {
    width: 80%;
    height: auto;
    object-fit: cover;
    max-width: 500px;
}

/* Flex to center the image vertically */
.about .img-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Styling */
.about button {
    position: absolute;
    top: 50%;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 16px;
    color: #849652;
    font-size: 24px;
    z-index: 1000;
    transition: transform 0.2s;
}

.about button:hover {
    transform: scale(1.2);
}

/* Left and Right button positioning */
.about .prev {
    left: 10px;
    transform: translateY(-50%);
}

.about .next {
    right: 10px;
    transform: translateY(-50%);
}



@media (max-width: 580px) {
    .about .content h2 {
        font-size: 16px;
        /* Further reduce heading size */
    }

    .about .content p {
        font-size: 12px;
        padding-left: 0;
        /* Further reduce paragraph size */
    }

    .about button svg {
        width: 30px;
    }

    .about .slide {
        flex-direction: column;
    }

    .about .slide {
        min-width: 107%;

        padding: 0px;
    }

    .abt-section {
        margin: 20px 0;
    }

    .banner h2 {
        font-size: 28px;
        padding-top: 50px;
    }

    .about .banner {
        height: 40vh;
    }

    .about .all-card {
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .abt-section .data h6 {
        font-size: 12px;

    }

    .about .content {
        padding: 20px;
    }

}

/* products */

.products .banner {
    background-image: url(images/products-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* .products {
    margin: 50px 0;
} */

.products img {
    width: 100%;
}

.products h3 {
    font-size: 14px;
    color: #5B5B5B;
    font-weight: 700;
}

.products h5 {
    font-size: 16px;
    color: #939436;
    font-weight: 800;
}

.products p {
    font-size: 12px;
    color: #464646;
    line-height: 35px;
    margin-bottom: 0;
}

.products .details {
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.view-more {
    text-decoration: none;
    padding: 8px 20px;
    font-size: 14px;
    border: 1px solid #B6B640;
    color: #fff;
    font-weight: 500;
    background-color: #939436;
    width: fit-content;
}

.view-more:hover {
    border: 1px solid #B6B640;
    color: #939436;
    background-color: #fff;
}

.pro-1 {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .products .banner {
        height: 40vh;
    }

    .pro-1.wpro {
        display: flex;
        flex-direction: column-reverse;
    }

    .products h5 {
        font-size: 14px;
    }

    .products .details {
        margin-bottom: 30px;
    }

    .pro-1 {
        padding: 25px 0;
    }

}

/* products details page */

.product-single-page .banner {
    background-image: url(images/single-products-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.product-single-page h1 {
    color: #939436;
    font-size: 15px;
    /* Increased font size for better visibility */
    margin-bottom: 20px;
    font-weight: 700;
}

.product-single-page p {
    font-size: 12px;
    color: #464646;
    line-height: 35px;
}

.mackado-super-plast {
    margin: 50px 0;
}


.product-single-page img {
    width: 85%;
}

.product-single-page .mackado-super-plast h3 {
    text-align: center;
    color: #464646;
    font-size: 15px;
    /* Increased font size for better visibility */
    margin-bottom: 20px;
    font-weight: 700;

}

.product-single-page thead {

    background-color: #B6B640;
    color: #fff;
    font-size: 14px;
}

.product-single-page tbody tr:nth-child(even) {
    background-color: #F7F7F7;
    font-size: 13px;
    color: #5B5B5B;
}

.product-single-page tbody tr:nth-child(odd) {
    background-color: #EFEFEF;
    font-size: 13px;
    color: #5B5B5B;

}

.product-single-page table th,
td {
    text-align: center;
}

.product-single-page table {
    border-color: #fff !important;
    border-collapse: separate !important;
}

.product-single-page .table>:not(caption)>*>* {
    padding: .9rem .5rem !important;
}

.img-table.container {
    margin-top: 100px;
}

@media (max-width: 768px) {
    .product-single-page .banner {
        height: 40vh;
    }

    .product-single-page .banner a span {
        color: #B6B640;
        font-size: 12px;
    }

    .product-single-page .banner h2 {
        font-size: 24px;
        padding-top: 50px;
    }

    .product-single-page h1 {
        font-size: 12px;
    }

    .picture {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .product-single-page .mackado-super-plast h3 {
        margin-top: 20px;
        font-size: 11px;
    }

    .product-single-page thead {

        background-color: #B6B640;
        color: #fff;
        font-size: 12px;
    }

    .product-single-page tbody tr:nth-child(even) {
        background-color: #F7F7F7;
        font-size: 11px;
        color: #5B5B5B;
    }

    .product-single-page tbody tr:nth-child(odd) {
        background-color: #EFEFEF;
        font-size: 11px;
        color: #5B5B5B;

    }

}

/* service */
.service .banner {
    background-image: url(images/service-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.service h4 {
    text-align: center;
    color: #464646;
    font-size: 16px;
    /* Increased font size for better visibility */
    margin: 20px 0;
    font-weight: 800;
    text-transform: uppercase;
}

.service h6 {
    text-align: center;
    color: #464646;
    font-size: 13px;
    /* Increased font size for better visibility */
    margin-bottom: 40px;
    font-weight: 400;
}

.serv img {
    width: 100%;
}

.service .serv h1 {
    color: #939436;
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 400;
}

.service p {
    font-size: 12px;
    color: #464646;
    line-height: 35px;
    margin-bottom: 0;
}

.service .para {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .service .banner {
        height: 40vh;
    }

    .service h1 {
        padding-top: 20px;
    }
}

/* contacts */
.contacts .banner {
    background-image: url(images/contacts-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contacts .contact-details h2 {
    color: #B6B640;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    /* Increased font size for better visibility */
}

.contacts .contact-details h3 {
    color: #464646;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    /* Increased font size for better visibility */
}

.contacts .contact-details .address {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.contacts .contact-details h4 {
    color: #464646;
    font-size: 14px;
    font-weight: 700;
}

.contacts .contact-details p {
    color: #464646;
    font-size: 13px;
    line-height: 30px;
    margin-bottom: 0;
}

.contacts .connections {
    margin: 50px 0;
}

.contacts .scoial-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacts .contact-details h5 {
    color: #464646;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contacts .contact-details .icons svg {
    width: 35px;
    height: auto;
}

.contacts .contact-details .icons svg:hover {
    scale: 1.08;
}

.contacts .contact-details {
    margin: 50px 0;
}

.contacts .inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.contacts .send {
    background-color: #939436;
    color: #fff;
    text-decoration: none;
    width: 100%;
    text-align: center;
    padding: 12px;
}

.contacts .send:hover {
    background-color: #ffffff;
    color: #939436;
    border: 1px solid #939436;
}

.contacts h6 {
    color: #939436;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.contacts form p {
    text-align: center;
    padding-bottom: 20px;
}

.contacts form input::placeholder {
    font-size: 14px;
    color: #6C6C6C;
    padding: 10px;

}

.contacts form input {
    border: 1px solid #9b9b9b;
    height: 50px;
}

.contacts .cont-form {
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    flex-direction: column;
    padding: 50px;

}

.contacts .map iframe {
    margin: 50px 0;
}

@media (max-width: 768px) {
    .contacts .banner {
        height: 40vh;
    }

    .contacts .contact-details h3 {
        font-size: 16px;
    }

    .contacts .connections {
        margin: 30px 0;
    }

    .contacts .cont-form {
        padding: 20px;
        margin-top: 50px;
    }

    .contacts .contact-details {
        margin: 20px 0;
    }
}

/* videos */
.video .banner {
    background-image: url(images/VIDEO-BANNER.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.video .video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
}

.video .video-item {
    flex: 1 1 calc(33.33% - 20px);
    box-sizing: border-box;
}

.video iframe {
    width: 350px;
    height: 200px;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .video .video-item {
        flex: 1 1 calc(50% - 20px);
        /* 2 videos per row on smaller screens */
    }
}

@media (max-width: 768px) {
    .video .banner {
        height: 40vh;
    }

    .video .video-grid {
        margin: 20px 0;
    }

    .video .video-item {
        flex: 1 1 calc(100% - 20px);
    }

    .video iframe {
        width: 100%;
        height: 200px;
    }
}

/* gallery */
.gallery .banner {
    background-image: url(images/gallery-banner-images.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.gallerys {
    margin: 50px 0;
}

.gallerys .g-images {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.gallerys img {
    width: 330px;
    height: 200px;
}

/*  */
.gallerys .image-wrapper {
    position: relative;
    max-width: 600px;
}


/* Gradient overlay */
.gallerys .image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* Text over the image */
.gallerys .image-wrapper .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

/* Caption under the image */
.gallerys .caption {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .gallery .banner {
        height: 40vh;
    }

    .gallerys img {
        width: 100%;
        height: auto;
    }

    .gallerys .g-images {
        gap: 20px;

    }

    .gallerys {
        margin: 20px 0;
    }

}

/* testimonials */
.testi .banner {
    background-image: url(images/testi-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    height: 60vh;
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.testimonials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.testimonials .testimonial-card {
    display: flex;
    width: 47%;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 10px;
}



.testimonial p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 10px;
    text-align: start;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testi .banner {
        height: 40vh;
    }

    .testimonials .testimonial-card {
        width: 100%;
        flex-direction: column-reverse;
    }

    
}

.fixed-contacts {
    position: fixed;
    width: auto;
    height: auto;
    bottom: 200px;
    right: 10px;
    background-color: #1FAF38;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.4);
    z-index: 100;
    font-size: 18px;
    text-decoration: none;
}

.fixed-contacts svg {
    width: 70%;
}