body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */

.default-btn {
    padding-top: 20px;
}



/* header start */

.navbar-custom {


    position: relative;

    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
    background: transparent;

    transition: top 0.3s, background-color 0.3s;

}

.navbar-brand img {
    width: 120px;
}

.nav-link,
.navbar-brand,
.dropdown-item {
    color: white !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

.offcanvas-end {
    background-color: #ffffff;
}

.sticky-scroll {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.black-logo{
    display: none !important;
}

.sticky-scroll .white-logo{
    display: none !important;
}

.sticky-scroll .black-logo{
    display: block !important;
}

.sticky-scroll .navbar-nav a{
    color: #000000 !important;
}

.sticky-scroll .header-btn a {
    border: 1px solid #000000;
    color: #000000;
}

.sticky-scroll .header-btn i {
    color: #000000;
}

.sticky-scroll .navbar-toggler span{
    color: #000000 !important;
}

.offcanvas-body {

    display: flex !important;
    justify-content: left !important;
}


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

.navbar-nav a {
    color: #ffffff !important;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 16px;
    font-weight: 500;

    transition: color 0.3s ease;
    position: relative;

    /* text-align: center !important; */
}


.navbar-nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F0A535;
    transition: width 0.3s ease;
}

.navbar-nav a:hover {
    color: #F0A535 !important;
}

.navbar-nav a:hover::after {
    width: 100%;
}



.navbar-nav .active a {
    color: #F0A535 !important;
}




.navbar-toggler span {
    color: #ffffff !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;

}





.header-btn {
    display: flex;
    justify-content: end;
}

.header-btn a {
    /* background-color: #F0A535; */
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 5px 17px 5px 17px;
    /* color: #2f455c; */
    border-radius: 50px;
    text-align: end !important;
    font-size: 14px;
    font-weight: 500;


}

.header-btn i {
    color: #ffffff;
    padding: 7px;

}


.header-btn a:hover {
    /* background-color: #2f455c; */
    /* background: transparent;
    border: 1px solid #F0A535; */
    color: #ffffff;

}






@media(max-width:992px) {
    .offcanvas-body {
        display: flex !important;
        justify-content: left !important;
    }

    .header-btn {
        display: none;
    }

    .header-right-section {
        display: none;
    }

    .navbar-nav .active {
        background-color: transparent !important;

    }

    .navbar-nav a {
        color: #000000 !important;
    }

    .navbar-nav .active a {
        color: #000000 !important;
    }
}


@media(max-width:432px) {
    .navbar-brand img {
        width: 100px;
    }
}



/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */



/* banner start */

.banner-section {
    background-image: url(..//image/banner-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.7);
    /* background: rgba(30, 48, 99, 0.8); */
    /* background: rgba(240, 165, 53, 0.8); */
    width: 100%;
    height: 100%;
}

.banner-content-row{
    height: 730px;
    display: flex;
    justify-content: left;
}

.banner-content h2 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 400;
    text-align: left;
    /* font-family: "Fugaz One", sans-serif; */
    /* font-family: "Playwrite IE", cursive; */
    font-family: "Fugaz One", sans-serif;
}

.banner-content span{
    color: #F0A535;
}

.banner-content p {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 30px;
    text-align: left;
}


.banner-btn {
    display: inline-block;
    padding: 7px 25px;
    background: #F0A535;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.banner-btn i {
    margin-right: 8px;
}

.banner-btn:hover {
    background: transparent;
    border: 2px solid #F0A535;
    color: #F0A535;
    transform: translateY(-3px);
}


.banner-btn-outline {
    background: transparent;
    border: 2px solid #F0A535;
    color: #F0A535;
}

.banner-btn-outline:hover {
    background: #F0A535;
    color: #fff;
}




@media(max-width:768px) {

    .banner-content h2{
        font-size: 45px;
    }

    .banner-content p{
        font-size: 15px;
    }
}


@media(max-width:432px) {

    .banner-content-row{
        height: 550px;
    }

    .banner-content h2 {
        font-size: 40px;
        text-align: center;
    }

    .banner-content p{
        text-align: center;
    }

    .banner-btns{
        display: flex;
        justify-content: center;
    }

    .banner-btn{
        padding: 8px 17px;
        font-size: 14px;
        font-weight: 400;
    }
}


@media(max-width:375px) {

    .banner-content h2{
        font-size: 35px;
    }

}


/* banner end */




/* footer start */


.footer-section {
    padding-bottom: 15px;
    /* background-color: #e6e5e5; */
    background-color: #fafafa;

    /* border-top-left-radius: 50px;
    border-top-right-radius: 50px; */
}

.footer-bg {

    padding-top: 50px;
    /* padding-bottom: 10px; */
    border-radius: 15px;
}

/* .footer-row{
    border-bottom: 1px solid #ffffff;
} */



.footer-logo img {
    width: 120px;
}

.footer-about p {
    margin-top: 15px;
    color: #383938;
    font-size: 15px;
    font-weight: 400;
}

.social-icon {
    padding-top: 5px;
}

.social-icon a {
    font-size: 20px;
    color: #383938;
    padding: 0px 25px 0px 0px;

    transition: all 0.4s ease-in-out;
    opacity: 1;
    display: inline-block;
}

.social-icon a:hover {

    /* opacity: 0.6; */
    transform: translateY(-5px);
    color: #F0A535;
}




.footer-menu ul {
    padding: 0px;
}

.footer-menu li {
    list-style: none;
    margin: 10px;
    margin-left: 0px;

}

.footer-menu h2 {
    color: #000000;

    font-weight: 600;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    padding-bottom: 10px;

}

.footer-menu a {
    color: #383938;

    font-weight: 400;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;

}

.footer-menu a:hover {
    color: #F0A535;
}

.copy-right {
    display: flex;

    justify-content: space-between;
    padding-top: 25px;
    /* padding: 30px 20px 0px 20px; */
}

.copy-right p {

    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #383938;

}

.copy-right a {
    color: #383938;
}





@media(max-width:768px) {
    .footer-menu {
        padding: 20px;
    }

    .footer-content {
        padding: 20px;
    }
}

@media(max-width:432px) {
    .footer-menu h2 {
        font-size: 18px;
    }

    .footer-menu li {
        margin: 5px;
        margin-left: 0px;
    }

    .footer-menu a {
        font-size: 15px;
    }

    .copy-right {
        display: flex;
        flex-direction: column;
    }

    .copy-right p {
        font-size: 13px;
    }

    .footer-section {
        padding-bottom: 0px;
    }
}

/* footer end */



/* course start */

.course-head-title h2{
    font-size: 45px;
    font-weight: 500;
    color: #1E3063;
    text-align: center;
}

.course-head-title span{
    color: #F0A535;
    font-family: "Fugaz One", sans-serif;
}

.course-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    background: #ffffff;
    height: 100%;
    transition: 0.4s ease;
}

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

.course-image {
    overflow: hidden;
}

.course-image img {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 20px;
}

.course-name h5 {
    font-size: 20px;
    font-weight: 500;
    color: #1E3063;
    margin-bottom: 10px;
}

.course-duration{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.course-duration i{
    color: #F0A535;
    font-size: 14px;
}

.course-duration span{
    font-size: 14px;
    color: #555;
}

.course-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.course-btn {
    padding-top: 10px;
}

.course-btn .btn{
    font-weight: 400;
    font-size: 16px;
    background-color: #F0A535;
    padding: 8px 28px;
    border-radius: 50px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    transition: 0.4s;
}

.course-btn .btn:hover{
    border: 1px solid #F0A535;
    background: transparent;
    color: #F0A535;
}

.more-course-btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F0A535;
    color: #ffffff;
    padding: 8px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.4s ease;
}

.more-course-btn:hover{
    background: transparent;
    border: 1px solid #F0A535;
    color: #F0A535;
}

@media(max-width:432px){
    .course-head-title h2{
        font-size: 30px;
    }

    .course-name h5{
        font-size: 18px;
    }
}

@media(max-width:376px){
    .course-image img{
        height: 190px;
    }
}

/* course end */



/* about start */

.about-section {
    padding: 50px 0px;
}



.about-btn {
    padding-top: 10px;
}

.about-btn a {
    padding: 7px 26px 7px 26px;
    background-color: #F0A535;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 500;
}

.about-btn a:hover {
    border: 1px solid #F0A535;
    color: #F0A535;
    background: transparent;
}

.about-image-col{
    display: flex;
    align-items: center;
}

.about-image img {
    border-top-right-radius: 100px;
}

.about-content h2 {
    font-size: 45px;
    font-weight: 500;
    color: #1e3063;
}

.about-content span {
    color: #F0A535;
    font-family: "Fugaz One", sans-serif;
}

.about-content p {
    color: #666;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
}


@media(max-width:992px) {
    .about-content {
        padding-top: 30px;
    }
}


@media(max-width:432px) {
    .about-section {
        padding-top: 27px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 14px;
        text-align: left;
    }
}

/* about end */



/* testimonials start */

.testimonials-section{
    padding-top: 50px;
    padding-bottom: 0px;
    background-color: #ffffff;
}

.testimonials-top-left{
    text-align: center;
}



.testimonials-top-left p{
    color: #000000;
}

.testimonials-top-left h2{
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
    color: #1e3063;
    text-align: center;


}

.testimonials-top-left span{
    color: #F0A535;
    font-family: "Fugaz One", sans-serif;
}


.testimonials-top-right{
    text-align: end;
}



.testimonial-item {
    margin-top: 50px !important;
    
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    border: 1px solid #828282;
    margin: 15px 5px 15px 5px;
    position: relative;
}

.testimonial-user{
    position: absolute;
    top: -10%;
}


.testimonial-item img {
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
.testimonial-name {
   
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #000000;
    font-family: "Poppins", sans-serif;
}

.testimonial-text {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #252525;
}

.stars {
    font-size: 20px;
    color: #ffe234;
}



@media(max-width:432px){
   
    .testimonials-section{
        padding-top: 10px !important;
    }

    .testimonials-top-left h2 {
        font-size:30px;
        text-align: center;
        padding-top: 10px;
    }

    .testimonials-top-right{
        text-align: center;
    }

    .testimonials-top-left p{
        font-size: 15px;
    }
}

/* testimonials end */






/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #1E3063;
}
/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 45px;
    height: 45px;
    background: #F0A535;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    z-index: 999;
}
/* end */


/* pages banner start */

.breadcrumb-section {
    position: relative;
    background: url(..//image/college-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    color: #fff;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* background: rgba(30, 48, 99, 0.85); */
    /* background: rgba(240, 165, 53, 0.8); */
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Fugaz One", sans-serif;
    color: #F0A535;
}

.breadcrumb-content p {
    font-size: 16px;
}

.breadcrumb-content a {
    color: #fff;
    text-decoration: none;
    
}

.breadcrumb-content a:hover {
    color: #F0A535; 
}

/* pages banner start */




/* contact pafge start */

.contact-section {
    background: #ffffff;
}


.contact-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    border-bottom: 4px solid #F0A535;
}

.contact-card i {
    font-size: 28px;
    color: #F0A535;
    margin-bottom: 10px;
}

.contact-card h5 {
    color: #000;
    margin-bottom: 5px;
}

.contact-card p {
    color: #555;
}


.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.contact-form-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 15px;
    color: #fff;
}

.contact-form-box h4 {
    margin-bottom: 20px;
    color: #000;
}


.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
}


.contact-btn {
    background: #F0A535;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #fff;
    color: #000;
}


.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 490px;
    border-radius: 15px;
    border: 0;
}


@media (max-width: 576px) {
    .map-box iframe {
        min-height: 250px;
    }
}

/* contact page end */




/* featured-colleges slider  start*/

.featured-colleges {
    background: #f9f9f9;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}


.featured-section-title h2 {
    font-size: 45px;
    font-weight: 500;
    color: #1E3063;
    text-align: center;
    margin-bottom: 10px;
}

.featured-section-title span {
    color: #F0A535;
    font-family: "Fugaz One", sans-serif;
}

.featured-section-title p {
    color: #555;
    text-align: center;
    font-size: 16px;
    margin: 0;
}


.college-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.college-track {
    display: flex;
    align-items: center;
    gap: 25px;
    width: max-content;
    animation: marqueeMove 25s linear infinite;
}

.college-track:hover {
    animation-play-state: paused;
}


.college-card {
    width: 150px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: 0.4s ease;
    border-radius: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.college-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s ease;
}

.college-card:hover {
    transform: translateY(-8px);
    
}

.college-card:hover img {
    transform: scale(1.05);
}


@keyframes marqueeMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {

    .featured-section-title h2 {
        font-size: 34px;
    }

    .college-card {
        width: 130px;
        height: 130px;
    }

    .college-track {
        gap: 18px;
        animation-duration: 20s;
    }
}

@media (max-width: 576px) {

    .featured-colleges {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .featured-section-title h2 {
        font-size: 28px;
    }

    .featured-section-title p {
        font-size: 14px;
    }

    .college-card {
        width: 110px;
        height: 110px;
        padding: 10px;
    }

    .college-track {
        gap: 14px;
        animation-duration: 16s;
    }
}
/* featured colleges slider  end*/







/* mission start */


.mission-section {
    padding: 70px 0;
    background: #ffffff; 
}


.mission-content h2 {
    font-size: 45px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
}

.mission-content span {
    color: #F0A535;
}


.mission-box {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
    border-left: 4px solid #F0A535;
}


.mission-box:hover {
    transform: translateX(10px);
    background: #f1f1f1;
}


.mission-box h4 {
    margin-bottom: 10px;
    color: #111;
}

.mission-box p {
    font-size: 14px;
    color: #555;
}


.mission-images {
    position: relative;
}


.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.img-small {
    position: absolute;
    width: 220px;
    bottom: -30px;
    right: -20px;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.4s;
}


.mission-images:hover .img-small {
    transform: translateY(-10px) rotate(3deg);
}


@media (max-width: 768px) {
    .img-small {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}


@media (max-width: 432px) {
    .mission-content h2{
        font-size: 30px;
        text-align: center;
    }
}

/* mission end */





/* cta start */


.cta-wrapper {
    padding: 50px 0;
    background: #ffffff;
}


.cta-box {
    position: relative;
    padding: 80px 40px;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    background: url('../image/college-2.jpg') center/cover no-repeat;

    background-attachment: fixed;
}


.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 48, 99, 0.85);
}


.cta-box * {
    position: relative;
    z-index: 2;
}


.stroke-text {
    font-size: 60px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #F0A535;
    margin-bottom: 20px;
    
}


.cta-box h3 {
    font-size: 36px;
    margin: 10px 0 20px;
    
}


.cta-box p {
    color: #eaffea;
    margin-bottom: 30px;
}


.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


.btn-main {
    padding: 7px 22px;
    background: #F0A535;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #222;
    transform: translateY(-3px);
}

.btn-outline {
    padding: 7px 22px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #F0A535;
}


@media (max-width: 768px) {

    .cta-box {
        padding: 50px 20px;
    }

    .stroke-text {
        font-size: 35px;
        -webkit-text-stroke: 1px #F0A535;
    }

    .cta-box h3 {
        font-size: 24px;
    }

}

/* cta end */



/*  */

/* Home Form Section Start */

.home-form-section{
    background: #f8f9fc;
}

.home-contact-content{
    padding-right: 30px;
}

.contact-tag{
    display: inline-block;
    background: rgba(240, 165, 53, 0.15);
    color: #F0A535;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.home-contact-content h2{
    font-size: 45px;
    font-weight: 500;
    line-height: 1.3;
    color: #1E3063;
    margin-bottom: 20px;
}

.home-contact-content h2 span{
    color: #F0A535;
    font-family: "Fugaz One", sans-serif;
}

.home-contact-content p{
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.contact-info-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.4s;
}

.contact-info-box:hover{
    transform: translateY(-5px);
}

.contact-icon{
    width: 55px;
    height: 55px;
    background: #1E3063;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-box h5{
    font-size: 18px;
    font-weight: 600;
    color: #1E3063;
    margin-bottom: 5px;
}

.contact-info-box p{
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Form */

.home-form-card{
    background: #1E3063;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.home-form-card h3{
    color: #ffffff;
    text-align: left;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;

}

.home-form-card .form-control{
    height: 55px;
    border-radius: 12px;
    border: none;
    padding: 12px 18px;
    font-size: 15px;
    box-shadow: none;
}

.home-form-card textarea.form-control{
    height: auto;
    resize: none;
}

.home-form-card .form-control:focus{
    border: 2px solid #F0A535;
    box-shadow: none;
}

.home-form-btn{
    width: 100%;
    border: none;
    background: #F0A535;
    color: #ffffff;
    height: 55px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s ease;
}

.home-form-btn:hover{
    background: #ffffff;
    color: #1E3063;
}

@media(max-width:992px){

    .home-contact-content{
        padding-right: 0;
    }

    .home-contact-content h2{
        font-size: 38px;
    }

}

@media(max-width:576px){

    .home-contact-content h2{
        font-size: 30px;
    }

    .home-form-card{
        padding: 25px;
    }

    .home-form-card h3{
        font-size: 24px;
    }

}

/* Home Form Section End */



/* services start */


/* Services Section Start */

.services-section{
    background: #f8f9fc;
    overflow: hidden;
}

/* Heading */

.services-title-span{
    display: inline-block;
    background: rgba(240,165,53,0.15);
    color: #F0A535;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-title h2{
    font-size: 45px;
    font-weight: 500;
    color: #1E3063;
    line-height: 1.3;
}

.services-title h2 span{
    font-family: "Fugaz One", sans-serif;
    color: #F0A535;
}

.services-title p{
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-top: 15px;
}



.service-card-wrapper{
    background: #ffffff;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.4s ease;
}

.service-card-wrapper:hover{
    transform: translateY(-6px);
}

.service-image{
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

.service-image img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
}

.service-card-wrapper:hover .service-image img{
    transform: scale(1.08);
}



.service-content{
    padding: 10px 20px;
}

.service-icon{
    width: 75px;
    height: 75px;
    background: #1E3063;
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.service-content h3{
    font-size: 20px;
    font-weight: 500;
    color: #1E3063;
    margin-bottom: 20px;
}

.service-content p{
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F0A535;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
}

.service-btn:hover{
    background: #1E3063;
    color: #ffffff;
}

/* Responsive */

@media(max-width:992px){

    .services-title h2{
        font-size: 38px;
    }

    .service-content{
        padding: 0;
    }

}

@media(max-width:576px){

    .services-title h2{
        font-size: 30px;
    }

    .service-card-wrapper{
        padding: 20px;
    }

    .service-image img{
        height: 240px;
    }

    .service-content h3{
        font-size: 20px;
    }

    .service-icon{
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

}

/* Services Section End */




/* FAQ SECTION start*/

.knovix-faq-section{
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.faq-left-content h2{
    font-size: 45px;
    font-weight: 500;
    color: #1e3063;
    line-height: 1.2;
    margin-bottom: 20px;
}

.faq-left-content h2 span{
    color: #f0a535;
    font-family: "Fugaz One", sans-serif;
}

.faq-left-content p{
    color: #666;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}

.faq-tag{
    display: inline-block;
    background: rgba(240,165,53,0.15);
    color: #f0a535;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}



.knovix-accordion .accordion-item{
    border: none;
    margin-bottom: 20px;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.knovix-accordion .accordion-button{
    background: #fff;
    color: #1e3063;
    font-weight: 500;
    font-size: 18px;
    padding: 22px 25px;
    box-shadow: none !important;
}

.knovix-accordion .accordion-button:not(.collapsed){
    background: #1e3063;
    color: #fff;
}

.knovix-accordion .accordion-button::after{
    filter: brightness(0) saturate(100%);
}

.knovix-accordion .accordion-button:not(.collapsed)::after{
    filter: brightness(0) invert(1);
}

.knovix-accordion .accordion-body{
    padding: 25px;
    line-height: 30px;
    color: #666;
    background: #fff;
}



@media(max-width:991px){

    .faq-left-content h2{
        font-size: 36px;
    }

}

@media(max-width:576px){

    .faq-left-content h2{
        font-size: 30px;
    }

    .knovix-accordion .accordion-button{
        font-size: 16px;
        padding: 18px;
    }

    .knovix-accordion .accordion-body{
        padding: 20px;
    }

}

/* faq end */



/* mission & vision */

.mission-vision-section{
    background: #ffffff;
    position: relative;
    overflow: hidden;
}



.mv-card{
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 25px;
    height: 100%;
    overflow: hidden;
    transition: 0.4s ease;
    border: 2px solid rgba(30,48,99,0.08);
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.mv-card:hover{
    transform: translateY(-10px);
}

.mission-card{
    border-top: 6px solid #1e3063;
}

.vision-card{
    border-top: 6px solid #f0a535;
}

.mv-icon{
    width: 85px;
    height: 85px;
    border-radius: 20px;
    background: linear-gradient(135deg,#1e3063,#2f4c9a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vision-card .mv-icon{
    background: linear-gradient(135deg,#f0a535,#ffbf4d);
}

.mv-icon i{
    color: #fff;
    font-size: 34px;
}

.mv-card h3{
    font-size: 30px;
    font-weight: 500;
    color: #1e3063;
    margin-bottom: 20px;
    
}

.mv-card h3 span{
    color: #f0a535;
    font-family: "Fugaz One", sans-serif;
}

.mv-card p{
    color: #666;
    line-height: 30px;
    margin-bottom: 0;
    font-size: 16px;
}



.mv-card::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(240,165,53,0.08);
    right: -40px;
    top: -40px;
    border-radius: 20px;
    transform: rotate(45deg);
}

.vision-card::before{
    background: rgba(30,48,99,0.08);
}



@media(max-width:576px){

    .mv-card{
        padding: 35px 25px;
    }

    .mv-card h3{
        font-size: 25px;
    }

}

/* mission & vision end */




/* counter section */
.knovix-counter-section {
    background: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}


.knovix-counter-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(240, 165, 53, 0.08);
    border-radius: 50%;
    top: -180px;
    left: -120px;
}

.knovix-counter-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(30, 48, 99, 0.04);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}


.counter-box {
    background: rgba(240, 165, 53, 0.15);
    border-radius: 30px;
    padding: 45px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid rgba(240, 165, 53, 0.2);
}

.counter-box:hover {
    transform: translateY(-12px);
    background: #1e3063;
    box-shadow: 0 20px 40px rgba(30, 48, 99, 0.15);
}


.counter-icon {
    width: 90px;
    height: 90px;
    background: #1e3063;
    color: #f0a535;
    font-size: 34px;
    margin: 0 auto 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(8deg);
    transition: 0.4s;
}

.counter-box:hover .counter-icon {
    background: #f0a535;
    color: #1e3063;
    transform: rotate(0deg) scale(1.08);
}


.counter-box h2 {
    color: #1e3063;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1;
    transition: 0.4s;
}

.counter-box h2::after {
    content: "+";
    color: #f0a535;
    margin-left: 3px;
}


.counter-box h5 {
    color: #1e3063;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    transition: 0.4s;
}


.counter-box:hover h2,
.counter-box:hover h5 {
    color: #fff;
}


@media (max-width: 991px) {

    .counter-box {
        padding: 40px 20px;
    }

    .counter-box h2 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .knovix-counter-section {
        padding: 70px 0;
    }

    .counter-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .counter-box h2 {
        font-size: 36px;
    }

    .counter-box h5 {
        font-size: 16px;
    }
}

/* counter section end */


/* process section */

.process-section{
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}


.process-section::before{
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(240,165,53,0.08);
    border-radius: 50%;
    top: -180px;
    left: -120px;
}

.process-section::after{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(30,48,99,0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -100px;
}


.process-title{
    text-align: center;
    margin-bottom: 70px;
}

.process-title h2{
    font-size: 45px;
    color: #1e3063;
    font-weight: 500;
    margin-bottom: 15px;
}

.process-title span{
    color: #f0a535;
    font-family: "Fugaz One", sans-serif;
}

.process-title p{
    width: 60%;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* CARD */
.process-card{
    background: #fff;
    padding: 45px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(240,165,53,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.process-card:hover{
    transform: translateY(-12px);
    background: #1e3063;
}

/* STEP NUMBER */
.step-number{
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 50px;
    font-weight: 700;
    color: rgba(240,165,53,0.12);
    line-height: 1;
}

/* ICON */
.process-icon{
    width: 90px;
    height: 90px;
    background: rgba(240,165,53,0.15);
    color: #f0a535;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 30px;
    transition: 0.4s ease;
}

.process-card:hover .process-icon{
    background: #f0a535;
    color: #1e3063;
    transform: rotate(8deg);
}

/* TEXT */
.process-card h4{
    color: #1e3063;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    transition: 0.4s;
}

.process-card p{
    color: #666;
    line-height: 1.8;
    margin: 0;
    transition: 0.4s;
}

.process-card:hover h4,
.process-card:hover p{
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:991px){

    .process-title p{
        width: 80%;
    }

    .process-title h2{
        font-size: 38px;
    }
}

@media(max-width:576px){

    .process-section{
        padding: 70px 0;
    }

    .process-title{
        margin-bottom: 50px;
    }

    .process-title h2{
        font-size: 30px;
    }

    .process-title p{
        width: 100%;
        font-size: 14px;
    }

    .process-card{
        padding: 40px 25px;
    }

    .process-icon{
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .process-card h4{
        font-size: 22px;
    }
}

/* process section end */


/* course details page */


.course-detail-section{
    padding: 50px 0;
    background: #f9fafc;
}


.course-detail-content{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.course-detail-image{
    position: relative;
}

.course-detail-image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.course-badge{
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #f0a535;
    color: #1e3063;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

.course-main-content{
    padding: 45px;
}

.course-main-content h2{
    font-size: 30px;
    color: #1e3063;
    margin-bottom: 15px;
    font-weight: 500;
}

.course-short-info{
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.course-info-wrap{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.course-info-box{
    background: rgba(240,165,53,0.12);
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.course-info-box i{
    width: 55px;
    height: 55px;
    background: #1e3063;
    color: #f0a535;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.course-info-box span{
    color: #777;
    font-size: 14px;
}

.course-info-box h6{
    margin: 0;
    font-size: 18px;
    color: #1e3063;
    font-weight: 600;
}


.course-description{
    margin-bottom: 45px;
}

.course-description h3,
.course-benefits h3{
    color: #1e3063;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 500;
}

.course-description p{
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}


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

.course-benefits ul li{
    margin-bottom: 18px;
    color: #444;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-benefits ul li i{
    color: #f0a535;
    font-size: 20px;
}


.course-enquiry-box{
    background: #fff;
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}

.enquiry-title{
    margin-bottom: 30px;
}

.enquiry-title h3{
    color: #1e3063;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: "Fugaz One", sans-serif;
}

.enquiry-title p{
    color: #666;
    margin: 0;
}

.form-control,
.form-select{
    height: 58px;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding-left: 18px;
    box-shadow: none !important;
}

textarea.form-control{
    height: auto;
    padding-top: 15px;
}

.form-control:focus,
.form-select:focus{
    border-color: #f0a535;
}


.detail-btn{
    width: 100%;
    height: 58px;
    border: none;
    background: #f0a535;
    color: #ffffff;
    border-radius: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.detail-btn:hover{
    background: #1e3063;
    color: #ffffff;
}


.quick-contact{
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.quick-contact h5{
    color: #1e3063;
    margin-bottom: 18px;
    font-weight: 600;
}

.quick-contact a{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #555;
    margin-bottom: 15px;
    transition: 0.4s;
}

.quick-contact a i{
    width: 42px;
    height: 42px;
    background: rgba(240,165,53,0.15);
    color: #f0a535;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact a:hover{
    color: #1e3063;
}


@media(max-width:991px){

    .course-enquiry-box{
        margin-top: 40px;
        position: relative;
        top: 0;
    }

    .course-detail-image img{
        height: 350px;
    }

    .course-main-content h2{
        font-size: 34px;
    }
}

@media(max-width:576px){

    .course-detail-section{
        padding: 70px 0;
    }

    .course-main-content{
        padding: 30px 22px;
    }

    .course-main-content h2{
        font-size: 25px;
    }

    .course-description h3,
    .course-benefits h3{
        font-size: 25px;
    }

    .course-info-box{
        width: 100%;
    }

    .course-enquiry-box{
        padding: 35px 25px;
    }

    .enquiry-title h3{
        font-size: 28px;
    }
}
/* details page end */



/* google map */
.google-map-section{
    width: 100%;
    overflow: hidden;
}

.google-map-section iframe{
    width: 100%;
    height: 550px;
    border: 0;
    display: block;
}

@media(max-width:768px){

    .google-map-section iframe{
        height: 400px;
    }
}

@media(max-width:576px){

    .google-map-section iframe{
        height: 320px;
    }
}

/* google map */