
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
@media (max-width: 768px) {
    .bg-breadcrumb {
        padding: 40px 0;
        background-size: contain; /* Adjust background size for smaller screens */
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        font-size: 14px; /* Adjust font size for breadcrumb links */
    }
}

/* Media Query for extra small screens (max-width: 576px) */
@media (max-width: 576px) {
    .bg-breadcrumb {
        padding: 30px 0;
        background-size: contain; /* Further adjust background size */
    }

    .bg-breadcrumb .breadcrumb .breadcrumb-item a {
        font-size: 12px; /* Further adjust font size for breadcrumb links */
    }
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color:rgb(255, 140, 0)
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
    
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: rgb(251, 138, 9);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.copyright i {
    color: #ccc; /* Copyright symbol color */
}

.copyright i:hover {
    color: #ffcc00; /* Change color on hover */
}
/*** copyright end ***/


/* 
.btn {
    color: #007bff; 
}


.btn:active {
    color: #ff5722; 
}


.btn:visited {
    color: #4caf50; 
} */
.btn i {
    color: #007bff; /* Replace with your desired default color */
    transition: color 0.3s; /* Optional: Smooth transition for color change */
   
}

/* Color change on hover */
.btn:hover i {
    color: #ff5722; /* Replace with your desired hover color */
   
}
.scroll-text {
    display: inline-block;
    color: #2c3e50; /* Text color */
    font-size: 18px; /* Font size */
    font-weight: bold; /* Font weight */
    font-style: italic; /* Font style */
}
@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px; /* Icon size */
    color: #007bff; /* Primary color */
    text-decoration: none; /* Remove underline */
}
.social-icons a:hover {
    color: #0056b3; /* Darker color on hover */
}
.social-icons {
    gap: 15px; /* Space between icons */
}
.navbar-nav {
    display: flex;
    justify-content: space-around; /* This spaces the items evenly */
    flex-grow: 1; /* Allows the container to grow and take available space */
}
.nav-item {
    margin: 0 10px; /* Optional: Adds margin between each nav item */
}
.footer-items {
    color: var(--bs-primary);
}
.footer-items p {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 5px 0; 
}
.footer-items i {
   
    margin-right: 15px; /* Increased space for larger icons */
    color: #007bff; /* Icon color */
    font-size: 1.5em; /* Larger icon size */
}
.footer-items p:hover {
    color: #ffae00; /* Highlight color on hover */
}
/* Courses Section Styles */
.courses {
    background-color: #f8f9fa;
}

.courses h4 {
    font-size: 1.5rem;
    color: #053465;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.courses h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
}

.courses p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.courses .row {
    margin-bottom: 50px;
}

.courses img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.courses h2 {
    font-size: 1.75rem;
    color: #343a40;
    margin-bottom: 15px;
}

.courses p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8; /* Ensures enough space between lines */
    margin-bottom: 15px; /* Provides space below each paragraph */
    white-space: nowrap; /* Prevents text from breaking into a new line */
    overflow: hidden; /* Prevents text from overflowing the container */
    text-overflow: ellipsis; /* Adds ellipsis (...) if the text overflows */
}

.courses p strong {
    font-weight: 600;
    color: #343a40;
    display: inline-block;
    padding: 2px 0;
}

.courses .col-md-8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.courses .col-md-4 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.syllabus-list {
    list-style-type: disc; /* Adds bullet points */
    margin-left: 20px; /* Indents the list from the left */
    padding-left: 20px; /* Adds padding inside the list container */
    color: #6c757d; /* Sets the color for list items */
}

.syllabus-list li {
    font-size: 1rem; /* Adjusts font size */
    margin-bottom: 8px; /* Adds space between list items */
}
.course-info {
    display: flex;
    gap: 20px; /* Space between the two boxes */
    margin-top: 20px; /* Space above the info boxes */
}

/* Style for course boxes */
.course-box {
    background-color: #ffffff; /* White background */
    border: 1px solid #dee2e6; /* Border color */
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Padding inside the box */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for a lift effect */
}

/* Additional styling for course description and info */
/* Style for course description paragraphs */
.course-description {
    text-align: justify; /* Ensure text is justified for better readability */
    margin-bottom: 15px; /* Space below the paragraph */
    line-height: 1.6; /* Line height for better readability */
    font-size: 1rem; /* Font size */
    color: #333; /* Darker text color for contrast */
    overflow: visible; /* Ensure the text is not clipped */
}

.course-info {
    display: flex;
    gap: 20px; /* Space between the info boxes */
    margin-top: 20px; /* Space above the info boxes */
}

.info-box {
    background-color: orange; /* Light background color */
    border: 1px solid #dee2e6; /* Border color */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 15px; /* Padding inside the boxes */
    font-size: 1.3rem; /* Font size for text */
    color: #343a40; /* Text color */
    flex: 1; /* Allows boxes to grow and fill space evenly */
}
@media (max-width: 768px) {
    .course-info {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: flex-start; /* Align items to start */
    }

    .info-box {
        width: 100%; /* Full width for each info box */
        margin-bottom: 10px; /* Space below each box */
    }
}

@media (max-width: 576px) {
    .info-box {
        padding: 8px; /* Slightly smaller padding */
        font-size: 0.9rem; /* Smaller font size for smaller screens */
    }
}

/* Style for course titles */
/* Style for course titles */
.course-title {
    font-size: 1.8rem; /* Adjust the font size */
    font-weight: 600; /* Make the text bold */
    color: #0056b3; /* Change text color */
    margin-bottom: 15px; /* Space below the heading */
       
    
}
/* Style for the description container */
.course-description-container {
    padding: 15px; /* Add padding around the content */
    background-color: #f9f9f9; /* Optional: Background color for better visibility */
    border: 1px solid #ddd; /* Optional: Border to define the container */
    border-radius: 5px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow for depth */
}

/* Style for paragraphs inside the container */
.course-description {
    text-align: justify; /* Justify text for better readability */
    margin-bottom: 15px; /* Space below the paragraph */
    line-height: 1.6; /* Line height for readability */
    font-size: 1rem; /* Font size */
    color: #333; /* Text color for contrast */
    overflow: visible; /* Ensure text is not clipped */
    white-space: normal; /* Allow text to wrap naturally */
}

.footer-item p {
    display: flex;
    align-items: flex-start; /* Aligns the icon to the top of the text */
    margin-bottom: 15px; /* Adjust spacing between items */
}

.contact-icon {
    font-size: 20px; /* Adjust the size of the icons */
    color: rgb(251, 168, 14); /* Blue color for the icons */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
    margin-top: 10px; /* Adds some space to better align with the text */
}

.contact-icon:hover {
    color: #0056b3; /* Darker blue on hover */
}

.contact-add-item {
    display: flex; /* Use flexbox */
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
}

.contact-icon {
    display: flex; /* Ensure the icon container uses flexbox */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
}
.course-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 20px;
}

.course-table th, .course-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    padding-left: 30px;
 
}

.course-table thead tr {
    background-color: #f2f2f2;
}

.course-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.course-table tbody tr:hover {
    background-color: #f1f1f1;
}
.logo-container {
    overflow: hidden; /* Ensure the animation stays within the container */
}

.logo {
    animation: moveSideToSide 3s infinite alternate;
}

@keyframes moveSideToSide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(20px); /* Adjust the distance to your preference */
    }
}
/* Add this CSS to your stylesheet */

/* Add this CSS to your stylesheet */


/* Container with background image */
.background-container {
    background-image: url('/img/bgs.png'); /* Replace with the path to your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    color: #fff; /* Adjust text color for readability */
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('/img/bgs.png'); /* Replace with the path to your background image */
    padding: 20px;
    border-radius: 8px;
}

/* Main heading styling */
.main-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

/* Course list styling */
.course-list h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.course-list ul {
    list-style-type: none;
    padding: 0;
}

.course-list ul li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Contact info styling */
.contact-info {
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info address {
    font-size: 18px;
}

.contact-info a {
    color: #00aaff; /* Adjust link color */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
