@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&display=swap');
/* Base Styles */
:root {
    --bs-primary: #32679a;
    --bs-primary-dark: #1e40af;
    --bs-dark: #1e293b;
    --bs-light: #f8fafc;
    --bs-success: #10b981;
    --light-gray: #f1f1f1;
}
/**{*/
/*    font-family: "Satoshi", sans-serif !important;*/
/*}*/
body {
    font-family: "Urbanist", sans-serif;
    color: var(--bs-dark);
    line-height: 1.6;
}
img{
    object-fit: cover;
    object-position: center;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}
input:focus, textarea:focus, select:focus, button:focus {
    outline: none !important;
    box-shadow: none !important;
}
.text-gradient-primary {
    background: linear-gradient(90deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--bs-primary);
}
.section-title.text-start:after {
    left: 0;
    transform: none;
}
.certification-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.certification-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bs-success);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}
.icon-box i{
    color: deepskyblue;
}
.bg-primary-light {
    background-color: rgba(37, 99, 235, 0.1);
}
.partner-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.course-features li {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 15px;
}
.course-features i {
    margin-right: 10px;
    color: var(--bs-primary);
    width: 20px;
    text-align: center;
}
.price .original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 14px;
}
.stats-section {
    position: relative;
    overflow: hidden;
    background: var(--bs-primary);
}
.stat-item {
    padding: 30px;
    background: azure;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px 1px rgba(0,0,0,0.05);
}
.stat-item span{
    color: orange;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.stat-label {
    color: #555;
    font-size: 19px;
}
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.rating {
    color: #f59e0b;
    margin-bottom: 0px;
}
.testimonial-text {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-info h5 {
    margin-bottom: 5px;
    font-size: 16px;
}
.author-info p {
    font-size: 14px;
    color: var(--bs-gray);
    margin-bottom: 0;
}
.webinar-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-date {
    background: var(--bs-primary);
    color: white;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.date-day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.date-month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.webinar-details {
    padding: 20px;
    flex-grow: 1;
}
.webinar-details h5 {
    margin-bottom: 15px;
}
.webinar-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.webinar-meta li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.webinar-meta i {
    margin-right: 8px;
    color: var(--bs-primary);
    width: 16px;
    text-align: center;
}
.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.blog-card:hover .card-image img {
    transform: scale(1.05);
}
.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bs-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.blog-content {
    padding: 20px;
}
.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--bs-gray);
}
.blog-meta i {
    margin-right: 5px;
}
.blog-meta span {
    margin-right: 15px;
}
.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.grayscale:hover {
    filter: grayscale(0);
    opacity: 1;
}
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-7 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.btn-primary {
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
/*.btn-primary:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);*/
/*}*/
.btn-outline-primary {
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Responsive Adjustments */
@media (max-width: 1199.98px) {
    .display-3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 991.98px) {
    .display-3 {
        font-size: 2.5rem;
    }
    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .py-7 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
@media (max-width: 767.98px) {
    .display-3 {
        font-size: 2.2rem;
    }
    .display-5 {
        font-size: 1.8rem;
    }
    .hero-section {
        min-height: auto;
        padding: 100px 0;
    }
    .section-title:after {
        width: 60px;
    }
    .stat-number {
        font-size: 36px;
    }
}



/*Main Sliders*/
.slider-container {
    position: relative;
    overflow: hidden;
}
.slider-content {
    padding: 20px 100px;
    color: #333;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .slider-content {
        padding: 30px;
    }
}
.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* opacity: 0.3; */
}
.slider-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    color: #2c3e50;
}
.slider-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: left;
    color: #555;
}
.btn-slider {
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 500;
    margin-right: 5px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.btn-explore {
    background-color: #3498db;
    color: white;
    border: 2px solid #3498db;
}
.btn-explore:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    color: white;
}
.btn-brochure {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}
.btn-brochure:hover {
    background-color: #3498db;
    color: white;
}
.btn-video {
    background-color: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
}
.btn-video:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: white;
}
.btn-video i {
    margin-right: 8px;
}
.brands-container {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    height: 50px;
}
.brands-track {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: space-around;
    width: 200%;
    animation: scroll 20s linear infinite;
}
.brand-logo {
    height: 30px;
    margin: 0 20px;
    opacity: 0.7;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}
.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ratings-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
}
.student-avatars {
    display: flex;
    margin-right: 20px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}
.avatar:first-child {
    margin-left: 0;
}
.rating {
    display: flex;
    align-items: flex-start;
}
.rating-stars {
    color: #f39c12;
    margin-right: 10px;
    display: flex;
    margin-top: 7px;
}
.rating-text {
    font-weight: 600;
    color: #2c3e50;
}
.certification-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.certification-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.btn-primary {
    position: relative;
    overflow: hidden;
}
.btn-primary:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}
.btn-primary:focus:after,
.btn-primary:hover:after {
    animation: ripple 1s ease-out;
}
.social-links a{
    height: 40px;
    display: inline-flex;
    width: 40px;
    text-decoration: none;
    background: #dc3545;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
}
@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(50, 50);
        opacity: 0;
    }
}
/* Floating animation for hero CTA */
.hero-section .btn {
    animation: float 6s ease-in-out infinite;
}
.hero-section .btn-outline-light {
    animation-delay: 0.5s;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@media (max-width: 575.98px) {
    .display-3 {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
}
.carousel-mobile{
    display: none;
}
.carousel {
    width: 100%;
    padding: 0px 0px;
    overflow: hidden;
    position: relative;
}
/* Large monitors (≥1440px) */
.carousel-item {
    height: 700px;
}

/* Standard laptops / Desktops (1200px – 1439px) */
@media (max-width: 1439px) {
    .carousel-item {
        height: 600px;
    }
}

/* Small laptops / Tablets landscape (992px – 1199px) */
@media (max-width: 1199px) {
    .carousel-item {
        height: 500px;
    }
}

/* Tablets portrait / Large phones (768px – 991px) */
@media (max-width: 991px) {
    .carousel-item {
        height: 400px;
    }
}

/* Small devices / Mobiles landscape (576px – 767px) */
@media (max-width: 767px) {
    .carousel-item {
        height: 350px;
    }
}

/* Extra small devices / Mobiles portrait (≤575px) */
@media (max-width: 575px) {
    .carousel-item {
        height: 300px;
    }
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}
.logo-slide {
    flex: 0 0 auto;
    margin: 0 5px;
    display: flex;
    padding: 0px 10px;
    background: #fff;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 3px #d1d1d1;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}