* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

body {
    background: #ffffff !important;
}

/* Header Section */
.navbar {
    padding: 18px 0;
}

.navbar-nav .nav-item {
    margin: 0 25px;
}

.navbar-nav .nav-link {
    font-size: 20px !important;
}

.navbar-nav .nav-link:hover {
    color: #eb7000 !important;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding-top: 10px !important;
    padding-right: 20px !important;
    border-top: 4px solid #eb7000 !important;
}

.dropdown-item {
    font-size: 21px !important;
    font-weight: 600 !important;
    color: #666666 !important;
    padding: 10px 30px !important;
}

.dropdown-item:hover {
    background: none !important;
    color: #eb7000 !important;
}

.btn-start {
    background: #eb7000 !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 40px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-right: 100px !important;
    transition: 0.3s ease;
}

.btn-start:hover {
    background: #ffca9b !important;
    color: #000 !important;
    transform: rotate(4deg);
}

/* Media Query */
@media (max-width : 919px) {
    .btn-start {
        display: none !important;
    }
}


/* Hero Section */
.hero {
    background: url("images/banner-bg-2.webp") no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .welcome {
    color: #eb7000 !important;
}

.hero h1 {
    font-size: 75px;
    font-weight: 700;
}

.hero .paragraph {
    color: #777;
    width: 90%;
    font-weight: 600;
    margin: 20px 0;
    font-size: 22px;
}

.btn-main {
    background: #eb7000 !important;
    color: #fff !important;
    margin-right: 20px !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    transition: 0.3s ease;
}

.btn-main:hover {
    background: #fbaf6d !important;
    color: #000 !important;
    transform: rotate(4deg);
}

.btn-outline {
    border: 2px solid #eb7000 !important;
    color: #000 !important;
    margin-left: 20px !important;
    padding: 15px 30px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fbaf6d !important;
    color: #000 !important;
    border: 2px solid #fbaf6d !important;
    transform: rotate(4deg);
}

.hero-students {
    margin-top: 35px;
}

.student-avatars .avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 4px 4px #dad9d9;
    object-fit: cover;
    margin-left: -18px;
}

.student-avatars .avatar:first-child {
    margin-left: 0;
}

.student-text h2 {
    color: #eb7000;
    font-size: 40px !important;
    font-weight: 700;
    margin: 0 50px !important;
}

.student-text p {
    margin: 0 50px !important;
    color: #000;
    font-weight: 500;
    font-size: 18px !important;
}

.student-img {
    max-width: 100%;
    margin-top: 15% !important;
}

/* Media Query */
@media (max-width: 1199px) {
    .hero {
        padding-top: 200px !important;
    }

    .hero .btn-main {
        width: 100% !important;
    }

    .hero .btn-outline {
        margin-left: 0% !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
}



/* Partner Section */
.partners {
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: partnersScroll 10s linear infinite;
}

.partners-track img {
    height: 100px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.partners-track img:hover {
    filter: none;
    opacity: 1;
}

@keyframes partnersScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* About Section */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
}

.about-img1 {
    grid-row: 1 / span 2;
    border-radius: 10px;
    overflow: hidden;
}

.about-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.about-img1:hover img {
    transform: scale(1.05);
}

.about-card {
    background: #fef4ec;
    border: 1px solid #c0bfbf;
    padding: 55px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-card .icon {
    background: #f47c00;
    color: #fff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 10px;
    font-size: 35px;
    transition: all 0.4s ease;
}

.about-card:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

.about-img2 {
    border-radius: 10px !important;
    border-bottom-right-radius: 50% !important;
    overflow: hidden;
}

.about-img2 img {
    width: 100%;
    height: 300px;
    transition: 0.4s;
}

.about-img2:hover img {
    transform: scale(1.05);
}

.about-subtitle {
    color: #eb7000;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-title {
    font-size: 58px;
    font-weight: 700;
}

.about-text {
    color: #77707c;
    font-size: 22px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #000;
}

.about-list i {
    color: #eb7000;
    font-size: 25px;
}

.about-btn {
    background: #eb7000 !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    transition: 0.3s;
}

.about-btn:hover {
    background: #fbaf6d !important;
    color: #000 !important;
    transform: rotate(4deg);
}


/* Experience Section */
.experience {
    background: #f5f3f0;
}

.experience-item {
    padding: 40px 20px;
    position: relative;
}

.experience-item h2 {
    color: #eb7000;
    font-size: 60px;
    font-weight: 700;
    transition: 0.3s;
}

.experience-item p {
    font-weight: 500;
    font-size: 22px;
    color: #222;
    transition: 0.3s;
}

.experience-item:hover h2 {
    transform: scale(1.15);
}

.experience-item:hover p {
    color: #eb7000;
}


/* Education Section */
.education {
    background: url("images/education-bg.webp") no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 600px !important;
    position: relative;
}

.education .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0d0d0db3, #0d0d0d73, rgba(255, 102, 0, 0.329));
}

.education .container {
    z-index: 2;
}

/* Courses Section */
.course .sub {
    color: #eb7000;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.btn-orange {
    background: #eb7000 !important;
    color: #fff !important;
    border: none !important;
    padding: 13px 25px !important;
}

.btn-orange:hover {
    background: #fbaf6d !important;
    color: #000 !important;
}

.course-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: linear-gradient(to top,
            rgba(255, 106, 0, 0.947),
            rgba(0, 0, 0, 0.414),
            rgba(0, 0, 0, 0.708));
}

.tag {
    background: #eb7000;
    padding: 5px 18px !important;
    font-size: 16px !important;
    border-radius: 5px;
    font-weight: 600;
    position: absolute;
    text-transform: uppercase;
    top: 40px;
    left: 30px;
}

.arrow {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: #eb7000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transform: rotate(45deg);
    transition: 0.4s;
}

.course-card:hover .arrow {
    transform: translateX(10px) rotate(90deg);
    width: 70px;
    height: 70px;
    font-size: 40px;
    background: #fb8516;
}

.course-info {
    display: flex;
    gap: 10%;
    font-size: 17px;
    margin-top: 15px;
    padding-bottom: 35px;
    flex-wrap: wrap;
    border-bottom: 1px solid #fea756;
}

.course-info i {
    color: #fea756;
    font-size: 25px;
}

.course-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.teacher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.teacher img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.price {
    border: 2px solid #fea756;
    padding: 5px 16px;
    border-radius: 8px;
    font-size: 30px;
    font-weight: bold;
}

/* Media Query */
@media (max-width: 991px) {
    .course-card {
        height: 100% !important;
    }
}


/* Why-Us Section */
.why-us {
    background: #fef4ec;
    padding: 150px 0;
}

.sub-title {
    color: #eb7000;
    font-weight: 600;
    letter-spacing: 1px;
}

.title {
    font-weight: 700 !important;
    margin: 15px 0;
}

.desc {
    color: #666;
    font-size: 20px;
    margin-bottom: 20px;
}

.why-img {
    position: relative;
}

.why-img img {
    width: 100%;
    height: 650px;
    border-radius: 200px 10px 10px 10px;
}

.exp-circle {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.192);
}

.exp-circle h2 {
    color: #eb7000;
    font-weight: 700;
    font-size: 70px;
}

.exp-circle p {
    font-size: 17px;
    font-weight: 600;
}

.why-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.why-box .icon {
    width: 90px;
    height: 90px;
    background: #eb7000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 35px;
    transition: 0.3s;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box:hover .icon {
    transform: rotate(15deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.189);
}


/* Process Section */
.process {
    background: #fef4ec;
    padding: 80px 150px !important;
}

.process .sub-title {
    color: #eb7000;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 18px;
}

.process .main-title {
    font-weight: 700;
    font-size: 42px;
    margin: 15px 0;
}

.process .desc {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.process-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    transition: 0.4s;
    overflow: hidden;
}

.process-img {
    width: 200px;
    height: 270px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.process-content .number {
    color: #ff6a00;
    font-weight: 700;
    font-size: 25px;
}

.process-content h4 {
    font-weight: 600;
    margin: 8px 0;
}

.process-content p {
    color: #666;
    font-size: 18px !important;
}

.process-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.189);
    background: #fff;
}

.process-box:hover img {
    transform: scale(1.1);
}


/* Pricing Section */
.pricing {
    padding: 150px !important;
}

.pricing .sub-title {
    color: #eb7000;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 18px;
}

.pricing .main-title {
    font-weight: 700;
    font-size: 42px;
    margin: 15px 0;
}

.pricing .title-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.price-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    border-top: 4px solid #fdd2af;
    position: relative;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.195);
}

.price-card.popular {
    background: linear-gradient(#fef4ec, #fef4ec, #fdd2af);
    border-top: 4px solid #eb7000;
}

.badge-pop {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #eb7000;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.price-card ul li {
    margin: 18px 0;
    font-size: 19px;
    font-weight: 600;
    color: #555;
}

.price-card ul i {
    color: #eb7000;
    font-size: 25px;
    margin-right: 10px;
}

.price2 {
    font-size: 32px;
    font-weight: bold;
    margin: 20px 0;
}

.price2 span {
    font-size: 55px;
    font-weight: 700;
    color: #eb7000;
}

.price2 small {
    font-size: 20px;
    color: #77707c;
    font-weight: lighter !important;
    margin: 20px 0;
}

.pricing-btn {
    display: block;
    text-align: center;
    background: #eb7000 !important;
    color: #fff !important;
    width: 100%;
    border: none !important;
    font-weight: bold !important;
    padding: 12px !important;
    border-radius: 8px !important;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.pricing-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120% !important;
    width: 30% !important;
    height: 100% !important;
    background: #ffd5ab !important;
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.price-card:hover .pricing-btn::before {
    left: 100% !important;
}


/* Future Section */
.future {
    background: url("images/future-bg.webp") center/cover no-repeat fixed;
    height: 650px;
    position: relative;
    color: #fff;
}

.future .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.601);
}

.future .container {
    z-index: 2;
    max-width: 700px;
}

.future h2 {
    font-weight: 700;
    margin-top: 40px;
}

.discover-btn {
    background: #eb7000 !important;
    color: #fff !important;
    padding: 15px 30px !important;
    margin-top: 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    transition: 0.3s;
}

.discover-btn:hover {
    transform: rotate(5deg);
    background: #f5b27d !important;
    color: #000 !important;
}


/* FAQ Section */
.faq-sub {
    color: #eb7000 !important;
    font-weight: bold !important;
    letter-spacing: 2px !important;
    font-size: 18px !important;
}

.faq-title {
    font-weight: 700 !important;
    font-size: 42px !important;
    margin: 15px 0;
}

.contact-link {
    color: #000;
    font-size: 20px !important;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #eb7000;
    padding-bottom: 3px;
}

.contact-link:hover {
    color: #eb7000 !important;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px #e2e0e3d5;
}

.accordion-button {
    background: #fff;
    font-weight: 600;
    padding: 40px 20px !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
    background: linear-gradient(90deg, #eb7000, #f8af71) !important;
}

.accordion-body {
    background: #f8f8f8 !important;
    color: #666 !important;
    font-size: 22px !important;
    padding: 30px !important;
}

.accordion-button:hover {
    background: #e9e9e9;
}

.accordion-button::after {
    background-image: none;
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: rotate(0deg);
    transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #fff;
}


/* Blog Section */
.blog {
    padding: 100px 0 !important;
}

.blog .sub-title {
    color: #eb7000;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 18px;
}

.blog .main-title {
    font-weight: 700;
    font-size: 42px;
    margin: 15px 0;
}

.blog .title-desc {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    padding: 30px 25px 0 25px !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.222);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: 0.6s;
}

.category {
    position: absolute;
    top: 0;
    left: 20px;
    background: #eb7000;
    color: #fff;
    padding: 8px 22px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 18px !important;
    font-weight: 600 !important;
    z-index: 2;
}

.blog .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(172, 172, 172, 0.299);
    opacity: 0;
    transition: 0.4s;
}

.blog-card:hover img {
    transform: scale(1.1) rotate(2deg);
}

.blog-card:hover .overlay {
    opacity: 1;
}

.blog-content {
    padding: 25px 0 !important;
}

.blog-content h4 {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.blog-card:hover .blog-content h4 {
    color: #eb7000 !important;
}

.blog-content p {
    color: #888;
    font-size: 25px !important;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.blog-meta i {
    color: #eb7000;
    margin-right: 5px;
}


/* Download Section */
.download {
    background: url(images/download-bg.webp) center/cover no-repeat;
    padding: 150px 0;
    position: relative;
}

.download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000081;
}

.download .container {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.download-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #fff;
    padding: 12px 22px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.app-btn i {
    font-size: 26px;
}

.app-btn small {
    display: block;
    font-size: 11px;
}

.app-btn span {
    font-weight: 600;
}

.app-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: #ffffff7b;
    transform: skewX(-20deg);
    transition: .5s;
}

.app-btn:hover::before {
    left: 100%;
}

.app-btn:hover {
    color: #eb7000;
    border-color: #eb7000;
}


/* Footer Section */
.footer {
    background: #feefe3;
    color: #444;
}

.footer-logo {
    height: 60px;
}

.newsletter {
    display: flex;
    gap: 10px;
}

.newsletter input {
    flex: 1;
    padding: 15px 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.newsletter button {
    background: #eb7000;
    color: #fff;
    border: none;
    font-weight: 600 !important;
    padding: 12px 45px !important;
    border-radius: 8px;
    transition: .3s;
}

.newsletter button:hover {
    background: #f5b27d !important;
    color: #000 !important;
}

.newsletter-text {
    margin-top: 10px !important;
    font-size: 18px !important;
    color: #666 !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.footer-links li {
    margin: 8px 0;
    font-weight: 600 !important;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 20px !important;
    transition: .3s;
}

.footer-links a:hover {
    color: #eb7000;
    padding-left: 5px;
}

.social-links {
    list-style: none;
    padding: 0;
    font-size: 20px !important;
    margin: 35px 0;
}

.social-links li {
    margin: 15px 0;
    font-weight: 500;
}

.social-links a {
    text-decoration: none;
    color: #666;
    transition: .3s;
}

.social-links i {
    margin-right: 10px;
    color: #eb7000;
}

.social-links a:hover {
    color: #eb7000;
}

.footer-bottom {
    background: #1f1f25;
    color: #fff;
    margin-top: 40px;
    padding: 30px 0;
}

.footer-policy a {
    color: #ccc;
    margin-left: 15px;
    text-decoration: none;
    transition: .3s;
}

.footer-policy a:hover {
    color: #eb7000;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 25px;
    background: #eb7000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    box-shadow: 0 0 3px 3px #3a1b016f;
    z-index: 999;
}

.scroll-top:hover {
    background-color: #fff;
    color: #eb7000;
    box-shadow: 0 0 3px 3px #1c1c1ca0;
}





/* ************** */
/*   About Page   */
/* ************** */
.about-page {
    background: url(images/about-page-bg.webp) center/cover;
    background-position: bottom center;
    background-repeat: repeat-x;
    background-size: 995px auto;
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fef4ecdd;
}

.about-page .container {
    position: relative;
    z-index: 2;
}

.about-page h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 35px;
}

.breadcrumb-links2 {
    font-weight: 600;
    letter-spacing: 1px;
}

.breadcrumb-links2 a {
    text-decoration: none;
    font-family: sans-serif;
    font-size: 20px !important;
    color: #666;
    text-transform: uppercase;
    transition: 0.3s;
}

.breadcrumb-links2 a:hover {
    color: #eb7000;
}

.breadcrumb-links2 .active {
    color: #eb7000;
}

/* Building Section */
.building {
    background: url(images/building-bg.webp) center/cover no-repeat;
    padding: 150px 0 0 0;
    margin-bottom: 250px !important;
    position: relative;
}

.building::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000bd, #00000079, #eb720067);
    top: 0;
    left: 0;
}

.building .container {
    position: relative;
    z-index: 2;
}

.discover-btn {
    background: #eb7000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
}

.discover-btn:hover {
    background: #ff8f26;
}

.video-play2 {
    position: relative;
    display: inline-block;
}

.video-play2 a {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px !important;
    color: #eb7000;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.video-play2 a:hover {
    transform: scale(1.1);
}

.video-play2::before,
.video-play2::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.video-play2::after {
    animation-delay: 1s;
}

@keyframes pulse {

    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }

}

.principle-box {
    background: #fef4ec;
    border-radius: 10px;
    padding: 50px !important;
    margin-top: 80px;
    transform: translateY(150px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.building .icon {
    font-size: 85px;
    color: #eb7000;
}

.border-end {
    border-right: 1px solid #cfc5bd !important;
}


/* Team Section */
.team {
    padding: 180px 0 !important;
    background: #f6f6f6;
}

.team-subtitle {
    color: #eb7000;
    letter-spacing: 2px;
    font-weight: 600;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
}

.team-text {
    color: #666;
    margin-bottom: 25px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: rotate(-3deg) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-img {
    position: relative;
}

.team-img img {
    border-radius: 10px;
}

.team-social {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: 0.4s;
}

.team-card:hover .team-social {
    bottom: 25px;
    opacity: 1;
}

.team-social a {
    width: 60px;
    height: 60px;
    background: #eb7000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #fc8e26ed;
    color: #000;
}

.team-info {
    margin-top: 20px;
}

.team-info h5 {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 5px;
}

.team-info span {
    color: #777;
    font-size: 21px;
    font-weight: 600 !important;
}





/* ****************** */
/*   Course Page   */
/* ****************** */
/* Why-Us Section */
.why-img2 {
    position: relative;
}

.why-img2 img {
    width: 100%;
    height: 650px;
    border-radius: 10px 10px 250px 10px;
}

.exp-circle2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 230px;
    height: 230px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.192);
}

.exp-circle2 h2 {
    color: #eb7000;
    font-weight: 700;
    font-size: 70px;
}

.exp-circle2 p {
    font-size: 17px;
    font-weight: 600;
}





/* ****************** */
/*   Course Details   */
/* ****************** */
.course-details {
    background: #f9f9f9;
}

.course-highlight li {
    padding: 8px 0;
    transition: 0.3s;
    cursor: pointer;
}

.course-highlight li i {
    color: #e65c00;
    font-size: 25px !important;
    margin-right: 8px;
}

.course-highlight li:hover {
    transform: translateX(8px);
    color: #e65c00;
}

.course-sidebar {
    top: 100px;
}

.course-info2 li {
    padding: 15px 0;
    font-size: 22px !important;
    color: #666 !important;
}

.course-info2 i {
    color: #e65c00;
    font-size: 22px !important;
    margin-right: 10px;
}

.instructor img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Testimonial Section */
.testimonial-section {
    background: #f7f7f7;
    padding: 80px 0 200px 0;
    text-align: center;
}

.testimonial-section .subtitle {
    color: #e65c00 !important;
    letter-spacing: 1px;
}

.testimonial-section p.top-text {
    color: #908e8e;
    max-width: 750px !important;
    margin: 15px auto 50px !important;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
    border-left: 8px solid #e65c00;
}

.testimonial-card .quote {
    font-size: 80px;
    color: #e65c00;
    position: absolute;
    right: 40px;
    top: 20px;
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 23px !important;
    color: #8f8e8e;
    font-weight: 500;
    width: 800px !important;
    margin-bottom: 50px !important;
}

.testimonial-user {
    display: flex;
    align-items: center;
    border-top: 3px solid #e65c00;
    margin-top: 20px;
    padding-top: 20px;
}

.testimonial-user img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #e65c00;
    margin-right: 25px;
}

.testimonial-user h6 {
    margin: 0;
    font-size: 25px !important;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 18px;
    font-weight: 600;
    color: #888;
}

.carousel-indicators [data-bs-target] {
    background-color: #e65c00 !important;
    width: 25px !important;
    height: 25px !important;
    border-radius: 50%;
    margin-right: 5px !important;
}

.carousel-indicators {
    bottom: -150px !important;
}

/* Media Query */
@media (max-width : 1199px) {
    .testimonial-card p {
        width: 600px !important;
        margin-bottom: 50px !important;
    }
}

@media (max-width : 991px) {
    .testimonial-card p {
        width: 450px !important;
        margin-bottom: 50px !important;
    }
}

@media (max-width : 767px) {
    .testimonial-card p {
        font-size: 18px !important;
        font-weight: 300px !important;
        width: 350px !important;
        margin-bottom: 50px !important;
    }
}





/* *********************** */
/*   Single Post Section   */
/* *********************** */
.single-post {
    padding: 60px 0;
    background: #f8f8f8;
}

.post-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.post-image img {
    width: 100%;
    transition: 0.4s;
}

.post-image:hover img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #e65c00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
}

.post-content {
    margin-top: 25px;
}

.post-content p {
    color: #787777;
    line-height: 1.5;
    font-size: 23px !important;
    margin-top: 50px !important;
    margin-right: 30px !important;
}

.sidebar {
    position: sticky;
    top: 20px;
}

.search-box {
    display: flex;
    margin-bottom: 30px;
}

.search-box input {
    border-radius: 5px 0 0 5px;
}

.search-box button {
    background: #e65c00;
    color: #fff;
    font-size: 20px;
    border-radius: 0 5px 5px 0;
}

.search-box button:hover {
    background: #f5b27d;
    color: #000;
    border-radius: 0 5px 5px 0;
}

.tags a {
    color: #828181;
    text-decoration: none;
    font-size: 19px !important;
    font-weight: 500;
    margin: 0 5px;
    transition: 0.3s;
}

.tags a:hover {
    color: #e65c00;
}

.single-post .social-icons a {
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-left: 8px;
    font-size: 20px;
    color: #e65c00;
    transition: 0.3s;
}

.single-post .social-icons a:hover {
    background: #e65c00;
    color: #fff;
    border-color: #e65c00;
}

.author-box {
    background: #fbeadc;
    padding: 20px;
    border-radius: 12px;
}

.author-box img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 7px solid #fff;
    margin-right: 40px;
}

.comment-section h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.comment-section p {
    color: #777;
    margin-bottom: 25px;
}

.comment-section label {
    font-weight: 500;
    font-size: 21px;
    margin-bottom: 5px;
}

.comment-section .form-control {
    border-radius: 8px;
    padding: 15px 10px !important;
}

.comment-section .form-control:focus {
    border: 3px solid #e65c00 !important;
    box-shadow: none !important;
}

.comment-section .btn {
    background: #ff7a00;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
}

.comment-section .btn:hover {
    background: #e96b00;
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-check input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.custom-check label {
    margin: 0;
    color: #444;
    font-size: 18px;
    cursor: pointer;
}

.custom-check:hover label {
    color: #ff7a00;
}

.custom-check input:checked {
    accent-color: #ff7a00;
}

.recent-post {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    transition: 0.3s;
}

.recent-post img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    margin-right: 15px;
    box-shadow: 0 15px 30px #c5c4c4;
}

.recent-post:hover {
    transform: translateX(5px);
}

.recent-post h6 {
    font-size: 22px;
    margin: 10px 20px;
}

.recent-post span {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    margin: 10px 20px;
}

.recent-post:hover h6 {
    color: #e65c00;
}


.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    color: #555;
    font-size: 19px !important;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.category-list li i {
    color: #ff7a00;
    margin-right: 8px;
}

.category-list li:hover {
    color: #ff7a00;
    transform: translateX(5px);
}

.cta-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.cta-card img {
    width: 100%;
    height: 500px;
    display: block;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.905));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.cta-overlay h2 {
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.cta-overlay p {
    font-size: 19px;
    color: #d9d7d7;
    width: 350px;
    margin-bottom: 15px;
}

.cta-overlay .btn {
    background: #ff7a00;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
}

.cta-card:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}





/* ************* */
/*   Team Page   */
/* ************* */
/* Team3 Section */
.team3 {
    padding: 80px 0;
    background: #f8f8f8;
}

.team3 .subtitle {
    color: #e65c00;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team3 h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.team3 p {
    color: #777;
    font-size: 23px;
}

.skill {
    margin-top: 40px;
}

.skill-title {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 5px;
}

.progress {
    height: 10px !important;
    background: #ddd !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}

.progress-bar {
    background: linear-gradient(to right, #fbba89, #e65c00) !important;
    transition: all 1s ease !important;
    border-radius: 10px !important;
}

.team3-img-wrapper {
    position: relative;
}

.team3-img-wrapper img {
    border-radius: 20px;
    transition: 0.4s;
}

.team3-img-wrapper:hover img {
    transform: scale(1.05);
}






/* ******************* */
/*   Contact-Us Page   */
/* ******************* */
/* Touch Section */
.touch {
    padding: 60px 0;
}

.touch .touch-left {
    position: relative;
    min-height: 740px;
}

.touch .touch-image-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
}

.touch .touch-image-wrap img {
    width: 100%;
    height: 740px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.touch .touch-info-box {
    position: absolute;
    left: -90px;
    bottom: 10%;
    width: 70%;
    background: #fff;
    padding: 34px 34px 36px;
    border-radius: 0 14px 14px 0;
    border-left: 5px solid #e65c00;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.21);
    z-index: 3;
    animation: touchFloat 3.5s ease-in-out infinite;
}

.touch .touch-mini-title {
    color: #e65c00;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.touch .touch-heading {
    font-size: 45px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.touch .touch-text {
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
    margin: 0;
    max-width: 360px;
}

.touch .touch-form-box {
    background: #fef4ec;
    border-radius: 14px;
    padding: 54px 54px;
    height: 740px;
}

.touch .form-label {
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.touch .form-control {
    height: 48px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    color: #111827;
    background: #fff;
    box-shadow: none;
}

.touch textarea.form-control {
    height: 165px;
    resize: none;
    padding-top: 14px;
}

.touch .form-control:focus {
    border-color: #e65c00;
    box-shadow: 0 0 0 0.15rem rgba(239, 122, 0, 0.15);
}


@keyframes touchFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-22px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .touch .touch-left {
        min-height: auto;
        margin-bottom: 40px;
    }

    .touch .touch-image-wrap {
        max-width: 100%;
    }

    .touch .touch-image-wrap img {
        height: 500px;
    }

    .touch .touch-info-box {
        position: absolute;
        left: -40px;
        right: -40px;
        width: 70%;
        bottom: 20px;
    }

    .touch .touch-heading {
        font-size: 32px;
    }

    .touch .touch-form-box {
        padding: 35px 25px;
        width: 90%;
    }
}

@media (max-width: 576px) {
    .touch {
        padding: 40px 0;
    }

    .touch .touch-image-wrap img {
        height: 420px;
    }

    .touch .touch-info-box {
        padding: 24px 20px;
        display: none;
    }

    .touch .touch-heading {
        font-size: 26px;
    }

    .touch .touch-text {
        font-size: 15px;
    }

    .touch .touch-form-box {
        padding: 35px 25px;
        height: 100%;
    }
}


/* Office Section */
.office {
    padding: 80px 0;
}

.office .office-card {
    background: #fff;
    border-radius: 14px;
    padding: 34px 32px;
    height: 100%;
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.office .office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.office .office-icon {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background: #eb7000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
    transition: all 0.35s ease;
}

.office .office-card:hover .office-icon {
    transform: translateX(30px) rotate(20deg);
    background: #f5b27d;
    color: #000;
}

.office .office-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #222 !important;
    margin-bottom: 12px;
}

.office .office-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #7a7480;
    margin-bottom: 18px;
}

.office .office-link {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    text-decoration: none;
    border-bottom: 2px solid #eb7000;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.office .office-link:hover {
    color: #eb7000;
}

/* Contact-map Section */
.contact-map .contact-map-wrap {
    width: 100%;
    overflow: hidden;
}

.contact-map .contact-map-wrap iframe {
    width: 100%;
    height: clamp(320px, 45vw, 650px);
    border: 0;
    display: block;
}







/* ******************* */
/*   404 Page   */
/* ******************* */
/* Error Section */
.error {
    position: relative;
    z-index: 2;
    padding: 80px 15px;
}

.error .error-box {
    position: relative;
    width: min(100%, 580px);
    background: #ffffff;
    border-top: 4px solid #eb7000;
    border-radius: 0 0 22px 22px;
    padding: clamp(30px, 4vw, 60px) clamp(20px, 4vw, 55px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.error .error-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(239, 123, 0, 0.273) 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 0;
    opacity: 0.7;
}

.error .error-code,
.error .error-title,
.error .error-text,
.error .error-btn {
    position: relative;
    z-index: 1;
}

.error .error-code {
    font-size: clamp(70px, 10vw, 110px);
    font-weight: 800;
    line-height: 1;
    color: #eb7000;
    margin-bottom: 16px;
}

.error .error-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #16203b;
    margin-bottom: 18px;
}

.error .error-text {
    max-width: 470px;
    margin: 0 auto 28px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    color: #6f7386;
}

.error .error-btn {
    background: #eb7000 !important;
    color: #fff !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    transition: 0.3s;
}

.error .error-btn:hover {
    background: #fbaf6d !important;
    color: #000 !important;
    transform: rotate(4deg);
}