@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import 'bootstrap/dist/css/bootstrap.min.css';




*,
*::after,
*::before{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat';
}

 

.apply-btn{
     background-color: #0053ed;
    color: white !important;
    padding: 9px 30px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.page-content {
margin-top: 70px;
padding: 20px 100px;
}

/* Hero Slider Styles */
.navbar {
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}

.page-content {
margin-top: 80px;
padding: 20px 100px;
}

/* Hero Slider Styles */
.hero-slider {
position: relative;
width: 100%;
height: auto;
max-height: 600px;
overflow: hidden;
margin-bottom: 20px;
margin-top:10px;
border-radius: 10px;
}

.slides {
display: flex;
width: 500%;
height: auto;
transition: transform 0.5s ease-in-out;
}

.slide {
width: 20%;
height: auto;
position: relative;
}

.slide img {
width: 100%;
height: auto;
object-fit: fill;

}

.slide-content {
position: absolute;
bottom: 50px;
left: 50px;
color: white;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
max-width: 500px;
}

.slide-content h2 {
font-size: 2.5rem;
margin-bottom: 10px;
}

.slide-content p {
font-size: 1.2rem;
margin-bottom: 20px;
}

.btn {
display: inline-block;
padding: 12px 30px;
background: #ff6b6b;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s;
}

.btn:hover {
background: #ff5252;
}


/* Navigation Arrows */
.slider-nav {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
padding: 0 20px;
box-sizing: border-box;
}

.nav-arrow {
background: rgba(0,0,0,0.5);
color: white;
border: none;
padding: 15px 20px;
cursor: pointer;
border-radius: 50%;
font-size: 1.2rem;
transition: background 0.3s;
}

.nav-arrow:hover {
background: rgba(0,0,0,0.8);
}

/* Dots Indicator */
.slider-dots {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
}

.dot {width: 30px;height: 5px;border-radius: 50px;background: #aeb6bb;cursor: pointer;transition: background 0.3s;}

.dot.active {
background: white;
}

/* Responsive Design */
@media (max-width: 768px) {

.page-content {
margin-top: 50px;
padding: 20px ;
}

.dot {
width: 12px;
height: 6px;

}

.slides{
width: 500%;
}
.slide-content {
left: 20px;
bottom: 30px;
max-width: 300px;
}

.slide-content h2 {
font-size: 1.8rem;
}

.slide-content p {
font-size: 1rem;
}

.btn {
padding: 10px 20px;
}

.nav-arrow {
padding: 5px 11px;
font-size: 0.7rem;
}
}

@media (max-width: 480px) {
.hero-slider {
height: auto;
}

.slide-content {
left: 15px;
bottom: 20px;
max-width: 250px;
}

.slide-content h2 {
font-size: 1.4rem;
}

.slide-content p {
font-size: 0.9rem;
}

.slider-dots {
bottom: 10px;
}
}

/* Hero next content Styles */

.courses-section {
text-align: center;
padding: 60px 20px;

}

.section-title {
font-size: 2rem;
color: #0754a4;
font-weight: 700;
margin-bottom: 40px;
}

.courses-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
}

.course-card {
width: 340px;
height: 50%;
background: #0077b6;
color: #fff;
border-radius: 10px;
padding: 125px 20px 170px 20px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
position: relative;
transition: all 0.3s ease;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
}

.course-card.yellow {
background: #ffcc00;
color: #000;
}

.course-card.blue {
background: #0d6efd;
color: #fff;
}

.course-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.course-image {
width: 180px;
height: 180px;
background: #ffffff00;
border-radius: 50%;
margin: auto;
display: flex;
align-items: center;
justify-content: center;
position: relative;
top: -30px;
z-index: 1;
}

.course-image img {
width: 170x;
height: 170px;
}

.course-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
font-weight: 700;
}

.course-card h3 span {
font-size: 1rem;
font-weight: 600;
}

.course-card p {
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 25px;
text-align: justify;
}

.arrow {
font-size: 1.5rem;
font-weight: bold;
background: #fff;
color: #0077b6;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
display: inline-block;
transition: 0.3s;
}

.course-card.yellow .arrow {
color: #000;
}

.course-card:hover .arrow {
background: #0077b6;
color: #fff;
}

.course-card.yellow:hover .arrow {
background: #000;
color: #fff;
}

@media (max-width: 992px) {
.courses-container {
flex-direction: column;
align-items: center;
}
}

.main-section {
width: 1200px;
display: flex;
gap: 20px;

}

/* Notification Box */
.notification-box {
background: #fff;
border-radius: 20px 20px 0px 0px;
max-width: 100%;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
padding: 0px;
}

.notification-box h3 {
background: #e21818;
color: #fff;
padding: 19px;
text-align: center;
font-size: 19px;
font-weight: 400;
}

.notification-box ul {
list-style: none;
padding: 0px 10px 15px;
}

.notification-box li {
border-bottom: 1px solid #ddd;
padding: 8px 0;
color: #333;
}

.slidern {
position: relative;
width: 90%;
height:377px;
max-width: 900px;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slides2 {
display: flex;
width: 500%;
transition: transform 0.5s ease-in-out;
-webkit-transition: transform 0.5s ease-in-out;
-moz-transition: transform 0.5s ease-in-out;
-ms-transition: transform 0.5s ease-in-out;
-o-transition: transform 0.5s ease-in-out;
}

.sliden {
width: 100%;
flex-shrink: 0;
position: relative;
}

.sliden .slide-img {
width: 100%;
height:auto;

display: block;
border-radius: 15px;
background-size: contain;
}

.nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.7);
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
cursor: pointer;
font-size: 20px;
color: #333;
transition: 0.3s;
}

.nav-btn:hover {
background-color: rgba(255, 255, 255, 1);
}

.prev {
left: 15px;
}

.next {
right: 15px;
}

/* Dots */
.dots {
text-align: center;
position: absolute;
bottom: 10px;
width: 100%;
}

.dotn {
height: 12px;
width: 12px;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.3s;
cursor: pointer;
}

.dotn.active {
background-color: #0b6efd;
}

/* 3 section slider */

.main-section {
display: flex;
gap: 20px;
align-items: flex-start;
}

/* Notification Box */
.notification-box {background: #fff;border-radius: 10px;max-width:100%;box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);overflow: hidden;margin-bottom: 48px;}

.notification-box h3 {
background: #e21818;
color: #fff;
padding: 10px;
text-align: center;
font-size: 16px;
}

.notification-box ul {list-style: none;padding: 10px 15px;width: 50vh;}

.notification-box li {
border-bottom: 1px solid #ddd;
padding: 8px 0;
color: #333;
}

.splide__slide .splide__image {
width: 100%;
height: auto;
}

.maincard {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: center;
    gap: 24px;
}

 /* Text styles */
    .h3-style {
        color: #E9AF00;
        transition: color 0.3s ease;
        font-size: 28px;
        font-weight: 700;
    }

    .tf__single_category.red:hover .h3-style {
        color: #000;
    }

    .blogs-title {
        color: #02569B;
        margin-bottom: 30px;
        text-align: center;
    }

    .blog-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: rgba(99, 99, 99, .2) 0px 2px 8px 0px;
        overflow: hidden;
        transition: transform 0.3s ease;
        height: 100%;
        width: 27%;
    }

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .blogs-details-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-content {
        padding: 20px;
    }

    .category-tag {
        display: inline-block;
        background: #0066B2;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 8px;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .blog-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-content h2 a {
        color: #0f2239;
        text-decoration: none;
    }

    .blog-content h2 a:hover {
        color: #0066B2;
    }

    .blog-meta {
        font-size: 13px;
        color: #888;
    }

.maincontainer{
    margin-bottom: 50px ;
}

.iconimg10 {
    width: 65vh;
    margin-top: 20px;
    position: absolute;
    right: 179px;
    z-index: -1;
    opacity: 0.6;
}


.iconimg11 {
    width: 10vh;
    margin-top: 30px;
    z-index: -1;
    transform: rotate(359deg);
    position: absolute;
    left: 136px;
    opacity: 0.6;
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
}

.iconimg12 {
    width: 10vh;
    margin-top: 30px;
    z-index: -1;
    transform: rotate(231deg);
    position: absolute;
    right: 225px;
    opacity: 0.6;
}

.iconimg13 {
    width: 10vh;
    margin-top: 30px;
    z-index: -1;
    transform: rotate(231deg);
    position: absolute;
    left: 20px;
    opacity: 0.6;
}


    /* Responsive adjustments */
    @media (max-width: 768px) {
        .main-section {
            flex-direction: column;
        }

  
        .col-md-4,
        .col-md-6 {
            width: 100%;
            margin-bottom: 20px;
        }

        .iconimg10 {
    width: 30vh;
}
.iconimg11 {
width: 9vh;
        margin-top: 30px;
        bottom: 0;
        position: absolute;
        left: 79%;
}

.iconimg12 {
width: 10vh;
        margin-top: 30px;
        position: absolute;
        left: 0;
        bottom: 288px;
    }

.iconimg13 {
        width: 9vh;
        margin-top: 30px;
        top: 191px;
        bottom: 0;
        position: absolute;
        left: 74%;
    }
.maincard {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: center;
    gap: 24px;
}

    .blog-card {
     height: 100%;
     width: 100%;
     background-color: #0053ed;
    }
    }