﻿body {
}

.gradient-1 {
    background: linear-gradient(135deg, #e3f2fd, #ede7f6, #d4fcf9, #ffe0cc );
}

.gradient-2 {
    background: linear-gradient(135deg, #e0f7fa, #ffe6f0, #fff9c4, #d4fcf9 );
}

.gradient-3 {
    background: linear-gradient(135deg, #ffdede, #e1bee7, #bbdefb, #fff8e1 );
}

.gradient-4 {
    background: linear-gradient(135deg, #c8f7f4, #d6f0ff, #ffe0cc, #f3e5f5 );
}
/*slider About ENd*/
/*slider Start*/
.slider {
    padding: 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

    .slider-item img {
        width: 100%;
        height: 80vh;
        object-fit: cover;
    }

/*.gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
            z-index: 1;
            pointer-events: none;
        }*/

.caption-container {
    position: absolute;
    top: 30%;
    left: 6%;
    color: white;
    padding: 10px;
    text-align: left;
    box-sizing: border-box;
    z-index: 2;
    width: 50%;
}

    .caption-container h2 {
        font-size: 2.5rem;
        color: #fff;
        font-weight: bold;
        margin: 0;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .caption-container h6 {
        font-size: 1.2rem;
        color: #fff;
        margin-top: 10px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .caption-container a.button {
        display: inline-block;
        margin-top: 15px;
        background-color: #890C25;
        color: black;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-size: 1rem;
        color: #fff;
    }

        .caption-container a.button:hover {
            background-color: rgba(255, 255, 255, 1);
            color: #0054b5;
        }

button.prev, button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

    button.prev:hover, button.next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

@media (max-width: 768px) {
    .slider-item img {
        height: 30vh;
    }

    .caption-container {
        width: 100%;
    }

        .caption-container h2 {
            display: none;
            font-size: 1.5rem;
        }

        .caption-container h6 {
            display: none;
            font-size: 1rem;
        }

        .caption-container a.theme-btn {
            display: none;
            font-size: 0.9rem;
            padding: 8px 15px;
        }

    .gradient-overlay {
        background: none;
    }
}

.feature-style-two-item {
    background: rgba(255, 255, 255, 0.35);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.35s ease-in-out;
    border: 2px solid var(--white);
}

.course-preview-info .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #890C25;
    padding: 15px 20px;
    color: #fff;
}

.course-preview-info .content .course-includes .info {
    padding: 0px;
}

.event-style-two-item {
    display: grid;
    grid-template-columns: 0.3fr 1.5fr 0fr;
    gap: 10px!important;
    border-top: none;
    margin-top: 10px!important;
    padding-top: 10px!important;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.advisor-style-two-item .info {
    padding: 10px;
    text-align: center;
}
/*slider End*/
/*global partner start*/
.brand-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

/* Card Design */
.brand-card {
    background: #ffffff;
    height: 120px;
    width: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease;
}

/* Image inside card */
.brand-card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: 0.3s;
}

/* Hover Effect */
.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.brand-card:hover img {
    transform: scale(1.05);
}
/* Laptop */
@media (max-width: 1200px) {
    .brand-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .brand-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*global partner end*/

/*Client Start */
.client-card {
    background: #ffffff;
    height: 200px; /* Fixed height */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: 0.3s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.client-name {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-top: 0px;
    line-height:20px;
}
/*Client End */

/*Service Section Start */
.single-feature-item {
    height: 350px!important;
    padding: 20px!important;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
    margin-bottom:20px;
}

.single-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
/*Service Section End */

/*Product Section Start */
.product-card {
    background: #fff;
    height: 150px;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-card .icon i {
    font-size: 30px;
    color: #ff6b00;
    margin-bottom: 10px;
}

.product-card h6 {
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 991px) {
    .product-card {
        height: 140px;
        padding: 12px;
    }

    .product-card .icon i {
        font-size: 30px;
    }

    .product-card p {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .product-card {
        height: 130px;
        padding: 10px;
    }

    .product-card .icon i {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .product-card p {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .product-card {
        height: 120px;
        padding: 8px;
        border-radius: 10px;
    }

    .product-card .icon i {
        font-size: 30px;
    }

    .product-card p {
        font-size: 14px;
    }
}
/*Product Section End */



.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0c1e35;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #ff6b00;
    display: block;
    margin: 15px auto 0;
}

.expertise-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.expertise-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6b00;
    font-weight: bold;
}

/*why choose us*/

.why-choose-us {
    background: #ffffff;
    padding: 50px 0;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0d6efd;
    margin: 0 auto 50px;
}

/* BOX STYLE */
.why-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px 15px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: #0d6efd;
}

/* ICON */
/* ICON WITH GRADIENT BACKGROUND */
.icon-box {
    width: 60px;
    height: 60px;
    font-size: 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;

    /* Multicolor Gradient */
    background: linear-gradient(135deg, 
        #667eea, 
        #764ba2, 
        #ff6a00, 
        #ee0979
    );

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


.why-box h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive spacing */
@media (max-width: 991px) {
    .why-box {
        margin-bottom: 20px;
    }
}


