body {
    background-color: white;
}

/* ***************************EXTRA CSS****************************************************** */

/* ********************************************************************************************* */
/* .slider-container {
    height: 600px;
    width: 100%;
    margin: 50px auto;
    overflow: hidden;
    background-color: black;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
} */

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }

    .slider-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        height: 200px;
    }

    .slider-container {
        height: 200px;
    }
}

/* Images div css***************************************** */
.product-showcase {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.product-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.product-container {
    position: relative;
    width: 30%;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 220px;
    transition: transform 0.5s ease;
}

.product-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 1200px) {
    .col-md-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 992px) {
    .col-md-2 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    #new_head {
        font-size: 24px;
    }

    .product-card-1 {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #new_head {
        font-size: 20px;
    }

    .product-card-1 {
        padding: 8px;
    }

    #details-new {
        font-size: 14px;
        padding: 5px 10px;
    }
}

@media (max-width: 350px) {
    .col-md-2 {
        flex: 0 0 100%;
        width: 100%;
    }

    #new_head {
        font-size: 18px;
    }

    .product-card-1 {
        padding: 6px;
    }

    #details-new {
        font-size: 12px;
        padding: 3px 8px;
    }
}

.product-name {
    font-size: 18px;
    color: yellow;
}

.product-desc {
    font-size: 14px;
    color: white;
}

.product-container:hover .product-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.product-container:hover .product-image {
    transform: scale(1.1);
}

/* Orange lines */
.orange-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: orange;
}

.line-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: orange;
}

@media (max-width: 768px) {
    .product-row {
        flex-direction: column;
    }

    .product-container {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Endz Products Images *************************************************************************************** */
/* Featuers Product Images *************************************************************************************** */

/* <!-- Why Choose us Section *************************************************************** --> */
.zhost-why-choose-section {
    background: linear-gradient(135deg, #111, #222);
    padding: 5rem 0;
}

.zhost-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    margin-bottom: 3.5rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.zhost-section-title:hover {
    color: #ff0000;
}

.zhost-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #ff0000;
    transform: scaleX(0.7);
    transition: transform 0.4s ease;
}

.zhost-section-subtitle {
    color: #ff0000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.zhost-feature-box {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.zhost-feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.zhost-feature-box:hover:before {
    opacity: 1;
}

.zhost-feature-box:hover {
    transform: translateY(-10px) scale(1.05);
}

.zhost-feature-box img {
    max-height: 150px;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 15px;
    transition: transform 0.4s ease;
}

.zhost-feature-box:hover img {
    transform: scale(1.1);
}

.zhost-logo-label {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .zhost-feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .zhost-section-title {
        font-size: 2rem;
    }

    .zhost-section-subtitle {
        font-size: 1rem;
    }

    .zhost-feature-box {
        padding: 15px;
    }

    .zhost-feature-box img {
        max-height: 100px;
    }
}

@media (max-width: 576px) {
    .zhost-section-title {
        font-size: 1.8rem;
    }

    .zhost-logo-label {
        font-size: 0.8rem;
    }
}

/* Animation */
.zhost-fade-in {
    animation: zhostFadeIn 1s ease-in-out;
}

@keyframes zhostFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Arrivals ****************************************************** */

/* Whatsapp Icon *************************************************************************************************  */

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 40px;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    animation: whatsapp-bounce 1.5s infinite alternate;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    transform: scale(1.15);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

@keyframes whatsapp-bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}


/* OUR MISSION SECTION *************************************************************************************************/
:root {
    --primary-color: #000;
    --accent-color: #ff0000;
    --text-light: #ffffff;
    --text-dark: #f0f0f0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 2rem;
}

.section-title:hover {
    color: #ff0000;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.mission-box {
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    padding: 40px 25px;
    border-radius: 15px;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mission-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mission-box:hover:before {
    opacity: 1;
}

.mission-box:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--text-light);
    background: rgba(255, 0, 0, 0.2);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.4s ease;
}

.mission-box:hover .mission-icon {
    background: var(--accent-color);
    transform: rotateY(180deg);
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.mission-box:hover .mission-title {
    color: var(--accent-color);
}

.mission-text {
    text-align: left;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    word-break: break-word;
    color: #fff;
}

@media (min-width: 768px) {
    .mission-text {
        font-size: 1.05rem;
        max-width: 95%;
    }
}

@media (min-width: 992px) {
    .mission-text {
        font-size: 1.1rem;
        max-width: 90%;
    }
}




.zhost-section {
    background: linear-gradient(135deg, #111, #222);
    padding: 5rem 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-md-4 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .mission-box {
        padding: 30px 20px;
    }

    .mission-icon {
        font-size: 40px;
        width: 70px;
        height: 70px;
        line-height: 70px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* *****************************************GITHUB CSS******************************************************** */

/* General Styling */
.box {
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    animation: slideIn 1s ease-in-out;
}

hr {

    animation: fadeIn 1s ease-in-out;
}

.contact-info {
    font-size: 16px;
    line-height: 1.5;
    color: black;
}

.contact-info p {
    margin-bottom: 15px;
}


/* Animation Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Media Queries for Responsiveness */
@media only screen and (max-width: 768px) {
    .box {
        padding: 15px;
    }

    .contact-info {
        font-size: 14px;

    }
}

@media only screen and (max-width: 480px) {
    .box {
        padding: 10px;
    }

    .contact-info p {
        font-size: 12px;
        color: black;
    }

    .contact-info {
        font-size: 12px;
        color: black;
    }

}

@media only screen and (max-width: 280px) {
    .box {
        padding: 7px;
    }

    .contact-info p {
        font-size: 9px;
        color: black;
    }

    .contact-info {
        font-size: 9px;
        color: black;
    }

}

/* Main Container */
#main {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    gap: 20px;
}


.box h2 {
    margin-top: 0;
    color: #333;
}

/* SUBSCRIPTION************************************************************** */
/* General Styles */


/* Main Container */
.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
}

/* Subscription Section */
.subscription-section {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.subscription-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscription-section input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.subscription-section button {
    padding: 10px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.subscription-section button:hover {
    background-color: darkred;
}

.subscription-section p {
    margin-top: 10px;
    font-size: 16px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;

    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s;
}


/* News & Updates Section */
.news-updates-section {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.news-update {
    display: flex;
    flex-direction: column;
}

.news-update h3 {
    margin: 0;
}

.news-update p {
    margin: 5px 0;
}

/* Tags Section */
.tags-section {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    display: block;
    padding: 10px;
    border: 1px solid red;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.tags a:hover {
    background-color: white;
    color: red;
    border-radius: 8px;

}

/* Responsive Design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .subscription-section,
    .news-updates-section,
    .tags-section {
        flex: 1 1 100%;
    }
}

/* Social Icons Styling */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;

    color: #f00;
    font-size: 24px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hover Animation */
.social-icon:hover {
    transform: scale(1.1);
    background-color: #f00;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);

}

@keyframes iconEntrance {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icon {
    animation: iconEntrance 1s ease-out;
}

/* *****************************************GITHUB CSS******************************************************** */
/* CONTACT US ********************************************************* */
/* Main Container */
#main {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    gap: 20px;
}

/* Feedback Form */
form {
    display: flex;
    flex-direction: column;
}

form input,
form select,
form textarea {
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form button {
    padding: 10px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: red;
}

/* Responsive Design */
@media (max-width: 768px) {
    #main {
        flex-direction: column;
    }
}

/* Map Container Styling */
#map-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 5 auto;
    justify-content: space-around;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Zoom Controls Styling */
#zoom-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#zoom-controls button {
    width: 40px;
    height: 40px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
}

#zoom-controls button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    #map-container {
        height: 400px;
        margin: 5px auto;
    }

    #zoom-controls button {
        display: none;
    }

}

@media (max-width: 440px) {
    #map-container {
        width: 100%;
        height: 300px;
        box-shadow: none;
    }

    #zoom-controls button {
        display: none;
    }

}

@media (max-width: 280px) {
    #map-container {
        width: 100%;
        height: 200px;
        box-shadow: none;
    }

    #zoom-controls button {
        display: none;
    }

}

/* Animations */
.box {
    animation: slideUp 1s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* *************************Factory View****************************************************************** */
.factory-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.factory-header h1 {
    font-size: 2.5rem;
    color: #ff6600;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-in-out;
}

.factory-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.factory-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.factory-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.factory-details h2 {
    font-size: 2rem;
    color: #333;
}

.factory-details ul {
    list-style: none;
    padding: 0;
}

.factory-details li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .factory-header h1 {
        font-size: 2rem;
    }

    .factory-header p {
        font-size: 1rem;
    }
}

.main-factory {
    width: 100vw;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-factory img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}

@media (max-width: 768px) {
    .main-factory {
        height: 60vh;
    }
}
