@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #167fff;
    --secondary: #283c50;
    --container-bg: #fbfbfb;
    --white: #fff;
    --black: #000;
    --font-family: 'Inter', sans-serif;
    --shadow-light: 0 2px 6px 0 rgba(0, 0, 0, 0.158);
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
}

h2 {
    font-size: 32px !important;
}

p {
    margin-bottom: 0px;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.507);
}

.container {
    max-width: 1320px !important;
}

.btn-primary {
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #1f76ff, #9405ff, #9c01fb, #f44b1e);
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-position: 100% 0;
}

.biz-text {
    color: #f97700;
    background: linear-gradient(90deg, #1382ff, #9702ff);
    font-weight: 500;
}

.nav-item {
    margin-right: 1rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--primary);
}

.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 2rem;
    opacity: 1;
}

.rotate-0 {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.gradient-text {
    background: linear-gradient(90deg, #ae10cd, #ed462c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border {
    border: 1px solid #dee2e6a8 !important;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--white) !important;
    font-size: 30px !important;
    width: 40px !important;
    height: 40px !important;
}

.swiper-button-prev::after, 
.swiper-button-next::after {
    font-size: 30px !important;
}

.features-container {
    margin-top: 30px;
}

.features-box {
    padding: 40px;
}

.features-img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.features-title {
    font-weight: 400;
    font-size: 18px;
}

.course-slide-item {
    background: var(--white);
    cursor: pointer;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow-light);
}

.course-title {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
    border-radius: 10px;
    text-align: center;
}

.course-slide-item:hover {
    opacity: 0.8;
}

.dark-container {
    background-color: var(--container-bg);
}

.pkg-title {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pkg-course {
    color: var(--secondary);
    font-size: 14px;
}

.pkg-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.enroll-btn {
    width: 70%;
}

.number-card {
    background-color: var(--white);
    box-shadow: 0 4px 60px -1px rgb(0 0 0 / 8%);
}

.number-card h4 {
    font-size: 28px;
    font-weight: 600;
}

.number-card p {
    font-size: 14px;
}

.number-card:hover {
    background-image: linear-gradient(180deg, #167FFF 0%, #0056D6 100%) !important;
    color: var(--white) !important;
    cursor: pointer;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.team-slide-item{
    background: var(--white);
    cursor: pointer;
    border: 1px solid #f1f1f1; 
    border-radius: 10px;
    padding: 10px;
    will-change: transform;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-slide-item:hover {
    opacity: 0.8;
    transform: scale(1.02) !important;
}

.team-content h5{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.team-content p{
    font-size: 14px;
    text-align: center;
}

.video-item {
    position: relative;
}

.video-item .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.video-item .video-btn:hover {
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-btn svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.why-icon {
    margin-right: 20px;
    border-radius: 50px;
    padding: 5px;
    box-shadow: -7px -7px 15px rgb(255 255 255 / 69%), 10px 10px 15px rgba(70, 70, 70, 0.12);
    flex-shrink: 0;
}

.why-icon img {
    width: 65px;
    min-width: 65px;
    height: 65px;
    padding: 10px;
}

.why-title {
    margin-bottom: 15px;
}

.why-subtitle {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.why-item {
    padding: 10px 0;
}

.why-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-content p {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 0;
}

/* Testimonial Styles */
.testimonial-card {
    background: #080ce414;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 10px 40px;
    /* box-shadow: var(--shadow-light); */
    transition: all 0.3s ease;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    margin: 0;
}

.testimonial-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary);
    opacity: 0.5;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary);
}

.testimonial-content svg {
    color: rgb(255, 123, 0);
}


.certificate-slide-item{
    background: var(--white);
    cursor: pointer;
    border: 1px solid #f1f1f1; 
    border-radius: 10px;
    padding: 10px;
    will-change: transform;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.certificate-slide-item:hover {
    opacity: 0.8;
    transform: scale(1.02) !important;
}

.certificate-content h5{
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.site-footer{
    background: #100f13e3;
}

.footer-logo{
    max-width: 230px;
    width: 100%;
}

.social-icons a {
    color: var(--white) !important;
}

.footer-course-links h5, .footer-quick-links h5{
    font-size: 20px;
    font-weight: 600;
}

.list-unstyled li a {
    font-size: 15px;
    color: var(--white);
    transition: all ease-in-out 0.3s;
}

.list-unstyled li a:hover {
    color: var(--primary);
    transform: translateX(10px);
    transition: all ease-in-out 0.3s;
}

.copyright-text{
    font-size: 14px;
    text-align: start;
}

.watermark-text{
    text-align: end;
    font-size: 14px;
}

.feature-1, .feature-2, .feature-3 {
    border-right: 1px solid #e9e9e9;
}

@media (max-width: 768px) {
    h2 {
        font-size: 26px !important;
    }
    .features-container {
        margin-top: 0px;
    }
    .features-box {
        padding: 10px;
    }
    .features-img {
        width: 45px;
        height: 45px;
        margin-bottom: 5px;
    }
    .features-title {
        font-size: 13px;
        font-weight: 500;
    }
    .pkg-title {
        font-size: 16px;
    }
    
    .pkg-course {
        font-size: 12px;
    }
    
    .pkg-price {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .enroll-btn {
        width: 100%;
        font-size: 14px;
    }
    .why-title {
        text-align: center;
    }

    .why-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }

    .why-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .why-icon img {
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .why-content h5 {
        font-size: 16px;
    }

    .why-content p {
        font-size: 13px;
    }
    .testimonial-card {
        padding: 20px;
        margin: 15px 5px 30px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-info h5 {
        font-size: 15px;
    }

    .author-info p {
        font-size: 13px;
    }

    .footer-course-links, .footer-quick-links{
        margin-top: 30px;
    }
    
    .copyright-text{
        font-size: 13px;
        text-align: start;
    }
    
    .watermark-text{
        text-align: start;
        font-size: 13px;
    }

    .feature-1, .feature-2 {
        border-bottom: 1px solid #e9e9e9;
    }
}