/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}
.display-1{
	font-size: 4rem;
	}
	.fs-5 {
    font-size: 1.1rem !important;
}
.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/
.main-navbar {
    background: #001d6f;
    position: relative;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.navbar-brand object {
    display: block;
}

.navbar .navbar-nav {
    gap: 8px;
}

.navbar .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 30px;
    transition: .3s;
	text-transform:uppercase;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: #24cf8b;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 8px;
    vertical-align: middle;
}

.custom-dropdown {
    background: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 12px;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.custom-dropdown .dropdown-item {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 15px;
    border-radius: 10px;
    transition: .3s;
}

.custom-dropdown .dropdown-item:hover {
    background: #24cf8b;
    color: #ffffff;
    padding-left: 22px;
}

.navbar-call {
    align-items: center;
    gap: 18px;
}

.call-icon {
    background: transparent;
    color: #ffffff;
    width: auto;
    height: auto;
}

.call-icon i {
    font-size: 34px;
}

.call-text {
    padding-right: 25px;
    border-right: 1px solid rgba(255,255,255,.5);
}

.call-text span {
    display: block;
    color: rgba(255,255,255,.6);
    font-size: 16px;
}

.call-text strong {
    color: #24cf8b;
    font-size: 18px;
    font-weight: 600;
}

.search-icon {
    color: #ffffff;
    font-size: 34px;
}

.search-icon:hover {
    color: #24cf8b;
}


.text-white-50{
    color: rgba(255,255,255,.65) !important;
    font-size: 14px;
}

.text-secondary{
    color: #24cf8b !important;
    font-size: 18px;
    font-weight: 700;
}

.border-end{
    border-right: 1px solid rgba(255,255,255,.25) !important;
}

#phone-tada a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#phone-tada a::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid #24cf8b;
    border-radius: 50%;
    animation: phonePulse 1.6s infinite;
}

#phone-tada .fa-phone-alt {
    animation: phoneShake 1.5s infinite;
}

.phone-msg {
    top: 38px;
    left: 10px;
}

@keyframes phonePulse {
    0% {
        transform: scale(.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.search-icon {
    color: #ffffff;
    font-size: 30px;
}

.search-icon:hover {
    color: #24cf8b;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        top: 120%;
        transform: translateY(15px);
        transition: .3s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        top: 100%;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #001d6f;
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        margin-bottom: 8px;
    }

    .custom-dropdown {
        box-shadow: none;
        border-radius: 10px;
        margin-bottom: 10px;
    }
}



.about-profile-page {
    background: #f8fbff;
}

.about-profile-img img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.about-profile-page h1 {
    color: #001d6f;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-profile-page p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.mv-box {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    border-left: 6px solid #24cf8b;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.mv-box i,
.value-box i {
    font-size: 42px;
    color: #2448bf;
    margin-bottom: 18px;
}

.mv-box h3,
.value-box h4 {
    color: #001d6f;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-section-title h2 {
    color: #001d6f;
    font-size: 36px;
    font-weight: 800;
}

.value-box {
    height: 100%;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.value-box:hover {
    background: #001d6f;
    transform: translateY(-8px);
}

.value-box:hover i,
.value-box:hover h4,
.value-box:hover p {
    color: #ffffff;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.facility-item {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
    transition: .3s;
}

.facility-item i {
    color: #24cf8b;
    font-size: 28px;
}

.facility-item span {
    color: #001d6f;
    font-weight: 700;
    font-size: 16px;
}

.facility-item:hover {
    background: #24cf8b;
    transform: translateY(-5px);
}

.facility-item:hover i,
.facility-item:hover span {
    color: #ffffff;
}

@media(max-width: 991px) {
    .facility-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-profile-page h1 {
        font-size: 32px;
    }
}

@media(max-width: 575px) {
    .facility-list {
        grid-template-columns: 1fr;
    }
}



.testimonial-page{
    background:#f8fbff;
}

.testimonial-page h1{
    color:#001d6f;
    font-weight:800;
    font-size:48px;
}

.testimonial-page p{
    color:#666;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    height:100%;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-bottom:5px solid #24cf8b;
}

.quote-icon{
    margin-bottom:20px;
}

.quote-icon i{
    font-size:42px;
    color:#24cf8b;
}

.testimonial-card p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:30px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #24cf8b;
}

.testimonial-user h4{
    color:#001d6f;
    margin-bottom:4px;
    font-weight:700;
}

.testimonial-user span{
    color:#777;
    font-size:15px;
}

@media(max-width:768px){

    .testimonial-page h1{
        font-size:34px;
    }

    .testimonial-card{
        padding:25px;
    }

}


.course-category-section {
    background: #f8fbff;
}

.course-category-section h1 {
    color: #001d6f;
    font-size: 44px;
    font-weight: 800;
}

.course-category-section p {
    color: #666;
    max-width: 720px;
    margin: auto;
}

.course-category-card {
    height: 100%;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.course-category-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background: #24cf8b;
    top: 0;
    left: 0;
}

.course-category-card:hover {
    transform: translateY(-10px);
    background: #001d6f;
}

.course-category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-category-icon i {
    font-size: 42px;
    color: #2448bf;
}

.course-category-card h3 {
    color: #001d6f;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 18px;
}

.course-category-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.course-category-card a {
    display: inline-block;
    padding: 12px 28px;
    background: #24cf8b;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
}

.course-category-card a i {
    margin-left: 8px;
}

.course-category-card:hover h3,
.course-category-card:hover p {
    color: #ffffff;
}

.course-category-card:hover .course-category-icon {
    background: #ffffff;
}

.course-category-card:hover a {
    background: #ffffff;
    color: #001d6f;
}

@media(max-width: 768px) {
    .course-category-section h1 {
        font-size: 32px;
    }
}


.lab-course-page {
    background: #f8fbff;
}

.lab-course-page h1 {
    color: #001d6f;
    font-size: 44px;
    font-weight: 800;
}

.lab-course-page p {
    color: #666;
    max-width: 780px;
    margin: auto;
}

.course-syllabus-accordion {
    max-width: 950px;
    margin: auto;
}

.syllabus-item {
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    overflow: hidden;
}

.syllabus-btn {
    width: 100%;
    border: none;
    background: #ffffff;
    color: #001d6f;
    padding: 24px 28px;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.syllabus-btn span {
    display: flex;
    align-items: center;
    gap: 14px;
}

.syllabus-btn span i {
    color: #24cf8b;
    font-size: 28px;
}

.syllabus-btn .fa-angle-down {
    transition: .3s;
}

.syllabus-item.active .syllabus-btn {
    background: #001d6f;
    color: #ffffff;
}

.syllabus-item.active .syllabus-btn span i {
    color: #24cf8b;
}

.syllabus-item.active .fa-angle-down {
    transform: rotate(180deg);
}

.syllabus-content {
    display: none;
    padding: 30px;
    background: #ffffff;
}

.syllabus-item.active .syllabus-content {
    display: block;
}

.course-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 18px;
}

.course-info span {
    background: #eef4ff;
    color: #001d6f;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 15px;
}

.syllabus-content p {
    max-width: 100%;
    margin-bottom: 20px;
    line-height: 1.8;
}

.syllabus-content h4 {
    color: #001d6f;
    font-weight: 700;
    margin-bottom: 15px;
}

.syllabus-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.syllabus-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
}

.syllabus-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #24cf8b;
    font-weight: 800;
}

.course-btn {
    display: inline-block;
    background: #24cf8b;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

.course-btn i {
    margin-left: 8px;
}

.course-btn:hover {
    background: #001d6f;
    color: #ffffff;
}

@media(max-width: 768px) {
    .lab-course-page h1 {
        font-size: 32px;
    }

    .syllabus-btn {
        font-size: 18px;
        padding: 20px;
    }

    .syllabus-content {
        padding: 22px;
    }
}



.contact-page {
    background: #f8fbff;
}

.contact-page h1 {
    color: #001d6f;
    font-size: 44px;
    font-weight: 800;
}

.contact-info-box,
.contact-form-box {
    height: 100%;
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.contact-info-box h3,
.contact-form-box h3 {
    color: #001d6f;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e5e9f2;
}

.contact-info-item i {
    color: #24cf8b;
    font-size: 24px;
    margin-top: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: #333;
    font-size: 17px;
    margin: 0;
    text-decoration: none;
}

.contact-form-box .form-control {
    height: 55px;
    border: 1px solid #dce3f0;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 15px;
}

.contact-form-box textarea.form-control {
    height: auto;
}

.contact-form-box .form-control:focus {
    border-color: #24cf8b;
    box-shadow: none;
}

.contact-submit-btn {
    border: none;
    background: #24cf8b;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.contact-submit-btn:hover {
    background: #001d6f;
}

.map-box iframe {
    width: 100%;
    height: 420px;
    border-radius: 20px;
}


.floating-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    overflow: visible;
}

.float-btn {
    width: 58px;
    height: 58px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding-left: 18px;
    border-radius: 30px 0 0 30px;
    text-decoration: none;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

.float-btn i {
    font-size: 24px;
    min-width: 24px;
}

.float-btn span {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transition: .3s;
}

.float-btn:hover {
    width: 190px;
    color: #ffffff;
}

.float-btn:hover span {
    opacity: 1;
}

/* Individual colors */
.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #001d6f;
}

.float-btn.mail {
    background: #24cf8b;
}

.navbar-brand object{
    pointer-events:none;
}


  .thank-you-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .thank-you-box {
            max-width: 600px;
            width: 100%;
            background: #ffffff;
            text-align: center;
            padding: 50px 35px;
            border-radius: 22px;
            box-shadow: 0 15px 45px rgba(0,0,0,.10);
        }

        .thank-you-icon {
            width: 90px;
            height: 90px;
            background: #24cf8b;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 45px;
            margin: 0 auto 25px;
        }

        .thank-you-box h1 {
            color: #001d6f;
            font-size: 42px;
            margin-bottom: 15px;
        }

        .thank-you-box p {
            color: #666;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .thank-you-btn {
            display: inline-block;
            background: #24cf8b;
            color: #ffffff;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 700;
            transition: .3s;
        }

        .thank-you-btn:hover {
            background: #001d6f;
            color: #ffffff;
        }
		
		
		.home-contact-section {
    background: #f0f6ff;
}

.home-contact-section h1 {
    color: #001d6f;
    font-size: 44px;
    font-weight: 800;
}

.home-contact-section p {
    color: #666;
    line-height: 1.8;
}

.home-contact-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.home-contact-info {
    height: 100%;
    background: #001d6f;
    padding: 35px;
    border-radius: 20px;
    color: #ffffff;
}

.home-contact-info h3,
.home-contact-form h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.home-contact-info h3 {
    color: #ffffff;
}

.contact-small-text {
    color: rgba(255,255,255,.75) !important;
    margin-bottom: 25px;
}

.contact-info-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.contact-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: #24cf8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #ffffff;
    font-size: 22px;
}

.contact-info-card h4 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-card a {
    color: rgba(255,255,255,.82);
    font-size: 16px;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: #24cf8b;
}

.contact-action-row {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.whatsapp-action {
    background: #25D366;
}

.call-action {
    background: #24cf8b;
}

.contact-action:hover {
    background: #ffffff;
    color: #001d6f;
}

.home-contact-form {
    height: 100%;
    background: #f8fbff;
    padding: 35px;
    border-radius: 20px;
}

.home-contact-form h3 {
    color: #001d6f;
}

.home-contact-form .form-control {
    height: 56px;
    border: 1px solid #dce3f0;
    border-radius: 12px;
    padding: 12px 18px;
    color: #333;
    background: #ffffff;
    font-size: 15px;
}

.home-contact-form textarea.form-control {
    height: auto;
}

.home-contact-form .form-control:focus {
    border-color: #24cf8b;
    box-shadow: 0 0 0 3px rgba(36,207,139,.12);
}

.home-contact-btn {
    border: none;
    background: #24cf8b;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    transition: .3s;
}

.home-contact-btn:hover {
    background: #001d6f;
    color: #ffffff;
}

.home-contact-btn i {
    margin-left: 8px;
}

@media(max-width: 991px) {
    .home-contact-wrapper {
        padding: 20px;
    }

    .home-contact-section h1 {
        font-size: 34px;
    }

    .home-contact-info,
    .home-contact-form {
        padding: 25px;
    }
}

@media(max-width: 575px) {
    .home-contact-section h1 {
        font-size: 30px;
    }

    .contact-action {
        width: 100%;
        justify-content: center;
    }
}


.service-details{
    background:#f8fbff;
}

.service-box{
    background:#ffffff;
    padding:40px;
    margin-bottom:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.service-box img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.service-box h2{
    color:#001d6f;
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.service-box p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.service-box ul{
    list-style:none;
    padding:0;
}

.service-box ul li{
    padding-left:30px;
    position:relative;
    margin-bottom:10px;
    color:#333;
}

.service-box ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#24cf8b;
    font-weight:700;
}

@media(max-width:768px){

    .service-box{
        padding:25px;
    }

    .service-box h2{
        font-size:28px;
        margin-top:20px;
    }

}




/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.project-img img {
    transition: .5s;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: .5s;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-img img {
    transform: scale(1.05);
}

.project-item:hover .project-content a {
    transform: translateY(-5px);
    transition: .5s;
}

/*** Project End ***/

.read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--bs-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.read-more-btn i {
    margin-left: 8px;
    transition: all 0.4s ease;
}

.read-more-btn:hover {
    background: var(--bs-secondary);
    color: #ffffff;
    transform: translateY(-3px);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.read-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 18px;
    background: #24cf8b;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: .4s;
}

.read-more-btn i {
    margin-left: 6px;
}

.project-content a:hover .read-more-btn {
    background: #ffffff;
    color: var(--bs-primary);
}

.project-content a{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    width:470px;      /* same width */
    height:190px;     /* same height */

    background:#2448bf;
    border-radius:15px;
    padding:20px;
}

/* Default */
.project-content a{
    background:#2949c7;
    border-radius:20px;
    transition:all .4s ease;
}

.project-content h4{
    color:#2dd18a;
    transition:all .4s ease;
}

/* Hover */
.project-item:hover .project-content a{
    background:transparent !important;
    box-shadow:none !important;
}

.project-item:hover .project-content h4{
    color:#ffffff !important;
    background:rgba(41,73,199,.75);
    padding:10px 15px;
    border-radius:10px;
    display:inline-block;
}

/* Course Details */
.project-item:hover .project-content p{
    color:#2949c7 !important;
    font-weight:600;
}

/* Button keep visible */
.project-item:hover .read-more-btn{
    background:#2dd18a;
    color:#fff;
}

.project-item:hover .project-content h4,
.project-item:hover .project-content p{
    color:#fff !important;
    text-shadow:
        0 2px 10px rgba(0,0,0,.9);
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/
.blog-content{
	
	padding-top: 50px;
	
	}
	
	
/*** FAQs Start ***/
	
	.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-title {
    text-align: center;
    margin-bottom: 45px;
}

.faq-title h5 {
    color: #2448bf;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-title h2 {
    color: #111633;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
}

.faq-item {
    background: #f3f6fc;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    outline: none;
    background: #f3f6fc;
    color: #444;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 28px;
    font-weight: 400;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 25px 22px;
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.faq-item.active {
    border: 2px solid #c7dcf8;
}

.faq-item.active .faq-question {
    background: #ffffff;
    color: #2448bf;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    color: #24cf8b;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-title h2 {
        font-size: 34px;
    }
}

/*** FAQs End ***/













.facility-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.facility-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    border-left:5px solid #24cf8b;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.facility-item:hover{
    transform:translateX(10px);
}

.facility-icon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:50%;
    background:#2448bf;
    display:flex;
    align-items:center;
    justify-content:center;
}

.facility-icon i{
    color:#fff;
    font-size:32px;
}

.facility-content h4{
    margin-bottom:8px;
    font-size:22px;
    font-weight:700;
}

.facility-content p{
    margin:0;
    color:#666;
}

@media(max-width:768px){
    .facility-list{
        grid-template-columns:1fr;
    }
}


.testimonial-item{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
    transition:.3s;
    margin:15px;
}

.testimonial-item:hover{
    transform:translateY(-8px);
}

.quote-icon{
    font-size:40px;
    color:#24cf8b;
    margin-bottom:15px;
}

.testimonial-text{
    font-size:16px;
    line-height:1.8;
    color:#666;
    min-height:120px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:25px;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    border:3px solid #24cf8b;
}

.testimonial-user h5{
    margin:0;
    color:#2448bf;
    font-weight:700;
}

.testimonial-user span{
    color:#777;
    font-size:14px;
}

.rating{
    color:#ffc107;
    margin-top:5px;
}

.testimonial-carousel .owl-item {
    transform: scale(0.85);
    opacity: 0.55;
    transition: all .4s ease;
}

.testimonial-carousel .owl-item.center {
    transform: scale(1);
    opacity: 1;
    z-index: 5;
}

.testimonial-item {
    min-height: 430px;
}

.testimonial-user img {
    width: 65px !important;
    height: 65px !important;
    min-width: 65px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #24cf8b;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}













.what-we-do-alt {
    background: #eaf3ff;
}

.work-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    position: relative;
}

.work-flow-item {
    position: relative;
    background: #ffffff;
    padding: 30px 18px;
    border-radius: 16px;
    text-align: center;
    border-bottom: 4px solid #24cf8b;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    transition: .4s;
}

.work-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #2448bf;
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.work-flow-item i {
    font-size: 42px;
    color: #2448bf;
    margin: 25px 0 18px;
}

.work-flow-item h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}

.work-flow-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.work-flow-item:hover {
    background: #2448bf;
    transform: translateY(-8px);
}

.work-flow-item:hover i,
.work-flow-item:hover h4,
.work-flow-item:hover p {
    color: #ffffff;
}

.work-flow-item:hover .work-number {
    background: #24cf8b;
}

@media(max-width: 991px) {
    .work-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media(max-width: 575px) {
    .work-flow {
        grid-template-columns: 1fr;
    }
}

	
	.download-brochure-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2dd18a;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
	margin-top:20px;
    transition:all .3s ease;
    box-shadow:0 5px 20px rgba(45,209,138,.3);
}

.download-brochure-btn i{
    font-size:20px;
}

.download-brochure-btn:hover{
    background:#2448bf;
    color:#fff;
    transform:translateY(-3px);
}

.download-brochure-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:100%;
    max-width:320px;

    padding:15px 25px;
    background:#2dd18a;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;

    white-space:nowrap;
}



/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/