/* About Us Section */
.about-us-section {
    padding: 100px 20px !important;
    background: linear-gradient(135deg, #2d4d92, #2d4d929f) !important;
    text-align: center !important;
    overflow: hidden !important;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.section-title {
    font-size: 2.5rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding-top: 30px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 8px !important;
}

.section-title::after {
    content: "" !important;
    width: 80px !important;
    height: 4px !important;
    background: #ffffff !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 2px !important;
}

.about-content {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 20px !important;
}

.about-text {
    flex: 1 !important;
    width: 80vw !important;
    text-align: left !important;
    animation: fadeInLeft 1s ease-in-out !important;
}

.about-text p {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    line-height: 1.8 !important;
    text-align: justify !important;
    margin-bottom: 20px !important;
}

.highlight {
    color: #25c0fd !important;
    font-weight: 600 !important;
}

/* Statistics Section */
.about-stats {
    width: 20vw !important;
    padding-left: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    animation: fadeInRight 1s ease-in-out !important;
}

.stat-card {
    background: #fff !important;
    padding: 15px !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    flex: 1 !important;
    min-width: 180px !important;
    max-width: 250px !important;
    border-top: 5px solid #25c0fd !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.stat-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2) !important;
}

.stat-number {
    font-size: 2.5rem !important;
    color: #25c0fd !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    transition: 0.3s ease !important;
}

.stat-label {
    font-size: 1rem !important;
    color: #666 !important;
    font-weight: 500 !important;
}

/* Responsive Styles */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .about-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .about-text {
        text-align: center !important;
    }

    .about-text p {
        font-size: 1rem !important;
    }

    .about-stats {
        gap: 15px !important;
    }

    .stat-card {
        min-width: 160px !important;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .about-us-section {
    padding: 100px 0px !important;
}
    .section-title {
        font-size: 2rem !important;
    }

    .about-content {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .about-text {
        max-width: 100% !important;
        /*padding: 0 15px !important;*/
    }

    .about-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

  .about-stats {
    width: 100vw !important;
    padding-left: 0px !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    animation: fadeInRight 1s ease-in-out !important;
}

    .stat-card {
        width: 80% !important;
        max-width: 250px !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .stat-label {
        font-size: 0.9rem !important;
    }
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0 !important;
        transform: translateY(-20px) !important;
    }

    100% {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0 !important;
        transform: translateX(-20px) !important;
    }

    100% {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0 !important;
        transform: translateX(20px) !important;
    }

    100% {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
}





/* Contact Page  */


/* Our Promise Section */
.our-promise-section {
    padding: 100px 20px !important;
    background: linear-gradient(135deg, #00509e, #00509e) !important;
    text-align: center !important;
    color: white !important;
    animation: fadeInUp 1s ease-in-out !important;
}

.containner {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.promise-title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    padding-top: 30px !important;
}

.promise-title span {
    color: #25c0fd !important;
}

.promise-text {
    font-size: 1.3rem !important;
    text-align: justify !important;
    line-height: 1.7 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    opacity: 0.9 !important;
}

.promise-text strong {
    color: #25c0fd !important;
}

.custom-shape-divider-top-1740212294 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    line-height: 0 !important;
}

.custom-shape-divider-top-1740212294 svg {
    position: relative !important;
    display: block !important;
    width: calc(100% + 1.3px) !important;
    height: 89px !important;
}

.custom-shape-divider-top-1740212294 .shape-fill {
    fill: #00509e !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promise-title {
        font-size: 2.3rem !important;
    }

    .promise-text {
        font-size: 1.1rem !important;
    }
}

/* Fade-in Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0 !important;
        transform: translateY(20px) !important;
    }

    100% {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}





#product-carousel-container {
    position: relative !important;
    padding: 70px 100px !important;
    width: 100vw !important;  
    height: 500px !important;  
    margin: auto !important;
    background-color: #ffffff !important;
}
.item-head{
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-left: 50px !important;
}
#product-carousel {
    height: 50vw !important;
    height: 400px !important;
    margin: 0px auto !important;
    list-style: none !important;
    position: relative !important;
    background-color: #ffffff00 !important;

    li {
        position: absolute;
        left: 50%;
        top: 0;
        width: 20% !important;
        height: 100% !important;
        padding: 0 !important;
        cursor: pointer !important;
        transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
        z-index: 1 !important;

        &.item-1 {
            z-index: 2;
            transform: translateX(-50%) scale(1) translate3d(0, 0, 0);
        }

        &.item-2 {
            z-index: 1;
            transform: translateX(-50%) scale(0.7) translate3d(240%, -10%, 0);
        }

        &.item-3 {
            z-index: 0;
            transform: translateX(-50%) scale(0.5) translate3d(180%, -31%, 0);
        }

        &.item-4 {
            z-index: 0;
            transform: translateX(-50%) scale(0.5) translate3d(-180%, -31%, 0);
        }

        &.item-5 {
            z-index: 1;
            transform: translateX(-50%) scale(0.7) translate3d(-240%, -10%, 0);
        }

        &:after {
            content: '' !important;
            position: absolute;
            top: 0 !important;
            left: 50%;
            display: block !important;
            width: 100% !important;
            height: 100% !important;
            background: url(https://www.7up.com/images/bottle-shadow.png) no-repeat 50% 85% !important;
            background-size: 100% auto !important;
            transform: translateX(-50%) !important;
            transition: 0.25s !important;
        }

        &:hover {
            img {
                transform: translateY(-15px);
            }

            &:after {
                width: 90%;
            }
        }

        &:not(:hover) {
            img {
                transition: transform .075s ease-out !important;
            }

            &:after {
                transition: .075s !important;
            }          
        }
    

     img {
            width: 200px !important;
            height: 350px !important;
            /* margin-top: 50% !important; */
            transition: transform .25s ease-in !important;
        }
    }
}

#product-carousel-nav {
    .carousel-nav {
        position: absolute !important;
        top: 45% !important;
        width: 20px !important;
        height: 20px !important;
        border-top: 2px solid green !important;
        border-right: 2px solid green !important;
        border-bottom: none !important;
        border-left: none !important;
        background-color: transparent !important;
        outline: 0 !important;
        cursor: pointer !important;

        &.prev {
            left: 150px !important;
            transform: rotate(-135deg) !important;
        }

        &.next {
            right: 150px !important;
            transform: rotate(45deg) !important;
        }
    }
}

#carousel-dots {
    position: absolute !important;
    left: 0% !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 2 !important;

    ul {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 50px !important;

        li {
            display: inline-block !important;
            margin: 0 8px !important;
            width: 10px !important;
            height: 10px !important;
            background-color: #ccc !important;
            border-radius: 100% !important;
            cursor: pointer !important;

            &.active {
                background-color: green !important;
            }
        }
    }
}

#product-carousel li.item-1:hover {
    transform: translateX(-50%) scale(1.4) translate3d(0, 0, 0) !important;
    transition: transform 1s ease-in-out !important;
  }
  
  
  
  
  @media (max-width: 1200px) {
    #product-carousel-container {
        padding: 50px 50px !important;
    }
    #product-carousel li {
        width: 25% !important;
    }
    #product-carousel-nav .carousel-nav {
        width: 15px !important;
        height: 15px !important;
    }
}

@media (max-width: 992px) {
    #product-carousel-container {
        padding: 40px 30px !important;
    }
    #product-carousel li {
        width: 30% !important;
    }
    #product-carousel-nav .carousel-nav {
        width: 12px !important;
        height: 12px !important;
    }
}

@media (max-width: 768px) {
    #product-carousel-container {
        padding: 30px 20px !important;
        height: 450px !important;
    }
    #product-carousel {
        height: auto !important;
    }
    #product-carousel li {
        width: 40% !important;
    }
    #product-carousel img {
        width: 150px !important;
        height: 300px !important;
    }
    #product-carousel-nav .carousel-nav {
        top: 50% !important;
        width: 10px !important;
        height: 10px !important;
    }
}

@media (max-width: 576px) {
    #product-carousel-container {
        padding: 20px 10px !important;
    }
    #product-carousel li {
        width: 50% !important;
    }
    #product-carousel img {
        width: 120px !important;
        height: 200px !important;
    }
    #product-carousel-nav .carousel-nav {
        width: 8px !important;
        height: 8px !important;
    }
    #product-carousel-nav {
    .carousel-nav {
      &.prev {
            left: 20px !important;
        }
      &.next {
            right: 20px !important;
        }
}
}

#product-carousel li.item-1:hover {
    transform: translateX(-50%) scale(1.2) translate3d(0, 0, 0) !important;
    transition: transform 1s ease-in-out !important;
  }


}

@media (max-width: 400px) {
    #product-carousel-container {
        padding: 10px !important;
    }
    #product-carousel li {
        width: 60% !important;
    }
    #product-carousel img {
        width: 100px !important;
        height: 200px !important;
    }
    #product-carousel-nav .carousel-nav {
        width: 6px !important;
        height: 6px !important;
    }
}
