﻿/*****services******/
/*****services******/
/*.serviceBox {
    font-family: 'Montserrat', sans-serif;
    height: 300px;
    text-align: center;
    padding: 15px 25px 25px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .serviceBox:before,
    .serviceBox:after {
        content: '';
        background: linear-gradient(#da75e5,#da75e5,#7131bf,#7131bf);
        height: 900px;
        border-radius: 50%;
        transform: translateY(-50%);
        position: absolute;
        left: 2px;
        right: 2px;
        top: 50%;
        z-index: -1;
    }

    .serviceBox:after {
        background: #fff;
        border-radius: 0;
        height: 100%;
        box-shadow: 0 0 3px rgba(0,0,0,0.6);
        transform: translateY(0);
        top: 0;
        left: 10px;
        right: 10px;
    }

    .serviceBox .service-icon {
        font-size: 50px;
        background: linear-gradient(#da75e5,#7131bf);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        .serviceBox .service-icon:after {
            content: '';
            background-color: #e7e7e7;
            height: 4px;
            width: 50px;
            margin: 0 auto 15px;
            border-radius: 5px;
            display: block;
            clear: both;
        }

    .serviceBox .title {
        color: #555;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px;
    }

    .serviceBox .description {
        color: #777;
        font-size: 13px;
        line-height: 24px;
        margin: 0 10px;
    }

    .serviceBox.blue:before {
        background: linear-gradient(#4ae2d6,#4ae2d6,#00b5e2,#00b5e2);
    }

    .serviceBox.blue .service-icon {
        background: linear-gradient(#4ae2d6,#00b5e2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .serviceBox.yellow:before {
        background: linear-gradient(#ffd747,#ffd747,#ff6905,#ff6905);
    }

    .serviceBox.yellow .service-icon {
        background: linear-gradient(#ffd747,#ff6905);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .serviceBox.darkblue:before {
        background: linear-gradient(#70def9,#70def9,#8370ff,#8370ff);
    }

    .serviceBox.darkblue .service-icon {
        background: linear-gradient(#70def9,#8370ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@media only screen and (max-width:990px) {
    .serviceBox {
        margin: 0 0 30px;
    }
}*/

/* Section */



/* SERVICES SECTION */
.services-section {
    padding: 20px 20px;
    text-align: center;
    background: #111; /* Dark background */
}

    /* Header */
    .services-section .services-header h2 {
        font-size: 34px;
        margin-bottom: 20px;
        text-transform: uppercase;
        background: linear-gradient(90deg, #00d4ff, #ff6600);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }

    /* Service Grid */
    .services-section .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 50px auto 0 auto;
    }

    /* Service Card */
    .services-section .service-card {
        border-radius: 18px;
        padding: 40px 25px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        color: #fff;
        cursor: pointer;
        border: 3px solid transparent;
        background-clip: padding-box;
    }

        /* Gradient border effect */
        .services-section .service-card::before {
            content: "";
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 20px;
            background: linear-gradient(45deg, #ff0057, #ff8a00, #40e0d0, #600037, #ff0057);
            background-size: 400% 400%;
            z-index: -1;
            animation: gradientBorder 6s linear infinite;
        }

        .services-section .service-card:hover {
            transform: translateY(-12px) scale(1.05);
        }

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Unique Background Colors + Shadows */
.services-section .gradient-blue {
    background: #000;
    box-shadow: 0 8px 25px rgba(33, 147, 176, 0.5);
}

.services-section .gradient-pink {
    background: #000;
    box-shadow: 0 8px 25px rgba(255, 120, 160, 0.5);
}

.services-section .gradient-orange {
    background: #000;
    box-shadow: 0 8px 25px rgba(255, 100, 90, 0.5);
}

.services-section .gradient-violet {
    background: #000; /* Violet-Magenta */
    box-shadow: 0 8px 25px rgba(142, 45, 226, 0.5);
}

/* Icon styling */
.services-section .service-icon {
    margin-bottom: 20px;
}

    .services-section .service-icon img {
        width: 80px;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 5px 10px rgba(0,0,0,0.4));
    }

.services-section .service-card:hover .service-icon img {
    transform: scale(1.2) rotate(6deg);
}

/* Card Title & Description */
.services-section .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.services-section .service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .services-section .services-header h2 {
        font-size: 28px;
    }

    .services-section .service-card {
        padding: 30px 20px;
        margin-top: 2rem;
    }
}































.mission{
width: 100%;
height:auto;
}

.mission .image-box {
    position: relative;
    width: 500px;
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: float 5s ease-in-out infinite;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    padding: 1.5rem;
    margin-left: 4rem;
}


    .mission .image-box::before {
        content: "";
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 22px;
        background: linear-gradient(135deg, #600037, #ff4b91, #600037, #ffb347);
        background-size: 300% 300%;
        z-index: -1;
        animation: borderGlow 6s ease infinite;
    }


    .mission .image-box img {
        width: 100%;
        display: block;
        border-radius: 20px;
        transition: transform 0.6s ease, filter 0.6s ease;
    }


    .mission .image-box:hover img {
        transform: scale(1.1) rotate(3deg);
        filter: brightness(1.15) contrast(1.1);
    }


@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}


@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width:768px) {
    .mission .image-box {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin-top: 4rem;
        margin-left: 0;
    }
}



/*  OUR PRODUCT */

.our-product {
    padding: 20px 20px 100px 20px;
    background: #111; /* Dark background */
    color: #fff;
    text-align: center;
}

    .our-product h2 {
        font-size: 35px;
        margin-bottom: 4rem;
        background: linear-gradient(90deg, #00d4ff, #ff6600);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }

/* GRID */
    .our-product .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

/* PRODUCT CARD */
    .our-product .product-card {
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0,0,0,0.5);
        color: #fff;
    }

        .our-product .product-card img {
            width: 100%;
            height: 20rem;
            display: block;
            border-radius: 20px;
            transition: transform 0.6s ease, filter 0.6s ease;
        }

        .our-product .product-card:hover img {
            transform: scale(1.1) rotate(3deg);
            filter: brightness(1.2) contrast(1.1);
        }

        .our-product .product-card h4 {
            padding: 15px 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }

    /* Gradient overlays for cards */
        .our-product .product-card::before {
            content: "";
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 22px;
            background: linear-gradient(45deg, #ff0057, #ff8a00, #40e0d0, #600037);
            background-size: 300% 300%;
            z-index: -1;
            opacity: 0.7;
            transition: opacity 0.4s ease;
            animation: gradientMove 6s linear infinite;
        }

        .our-product .product-card:hover::before {
            opacity: 1;
        }

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* New Attractive Gradients */
.our-product .gradient-teal {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.5);
}

.our-product .gradient-magenta {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

.our-product .gradient-sunset {
    background: linear-gradient(135deg, #ff6b6b, #ff8c42);
    box-shadow: 0 8px 25px rgba(255,107,107,0.5);
}

.our-product .gradient-purpleblue {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
    box-shadow: 0 8px 25px rgba(142,45,226,0.5);
}

/* Responsive */
@media (max-width:768px) {
    .our-product h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .our-product .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width:480px) {
    .our-product .products-grid {
        grid-template-columns: 1fr;
    }
}














.vision-mision {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

    
    .vision-mision img {
        width: 100%;
        max-width: 580px;
        border-radius: 15px;
        /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);*/
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

        .vision-mision img:hover {
            transform: scale(1.05) rotate(-2deg);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
        }


    .vision-mision .cards-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 600px;
    }


    .vision-mision .card {
        background: #1d1d1d;
        padding: 25px;
        border-radius: 15px;
        border-left: 6px solid transparent;
        transition: all 0.4s ease;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        position: relative;
        overflow: hidden;
    }

        .vision-mision .card h2 {
            display: flex;
            align-items: center;
            font-size: 24px;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .vision-mision .card p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            position: relative;
            z-index: 2;
            color: #fff;
        }


        .vision-mision .card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }


    .vision-mision .vision {
        border-left: 6px solid #3498db;
    }

        .vision-mision .vision::before {
            background: linear-gradient(135deg, rgba(52,152,219,0.15), rgba(52,152,219,0.05));
        }

        .vision-mision .vision:hover {
            box-shadow: 0 15px 50px rgba(52, 152, 219, 0.55);
            transform: translateY(-8px) scale(1.02);
        }

            .vision-mision .vision:hover::before {
                opacity: 1;
            }


    .vision-mision .mission {
        border-left: 6px solid #9b59b6;
    }

        .vision-mision .mission::before {
            background: linear-gradient(135deg, rgba(155,89,182,0.15), rgba(155,89,182,0.05));
        }

        .vision-mision .mission:hover {
            box-shadow: 0 15px 50px rgba(155, 89, 182, 0.55);
            transform: translateY(-8px) scale(1.02);
        }

            .vision-mision .mission:hover::before {
                opacity: 1;
            }


@media (max-width: 768px) {
    .vision-mision {
        flex-direction: column;
        text-align: center;
        padding:0 2rem;

    }

        .vision-mision .cards-wrapper {
            max-width: 100%;
            margin-top:2rem;
        }
}