
/*--------------------------------------------------------------
# Courses Hero Section
--------------------------------------------------------------*/

.width_div {
    width: 95%;
    margin: 0 auto;
}

.courses-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 15px 0 60px;
}

.courses-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.courses-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .courses-hero .hero-text h1 {
        font-size: 2rem;
    }
}

.courses-hero .hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #888;
}

.courses-hero .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .courses-hero .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.courses-hero .hero-stats .stat-item {
    text-align: center;
}

.courses-hero .hero-stats .stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.courses-hero .hero-stats .stat-item .label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.courses-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.courses-hero .hero-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.courses-hero .hero-buttons .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--button_text_color);
}

.courses-hero .hero-buttons .btn.btn-primary:hover {
    background-color: #0b6ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.courses-hero .hero-buttons .btn.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.courses-hero .hero-buttons .btn.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--button_text_color);
    transform: translateY(-2px);
}

.courses-hero .hero-features {
    display: flex;
    gap: 2rem;
}

.courses-hero .hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.courses-hero .hero-features .feature i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.courses-hero .hero-features .feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--default-color);
}

.courses-hero .hero-image {
    position: relative;
}

.courses-hero .hero-image .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.courses-hero .hero-image .main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.courses-hero .hero-image .floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.courses-hero .hero-image .floating-cards .course-card {
    position: absolute;
    background: var(--back_color);
    border-radius: 15px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
    top: 30%;
    left: -10%;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
    top: 50%;
    right: 1%;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
    bottom: 0%;
    left: -5%;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(13, 131, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.courses-hero .hero-image .floating-cards .course-card .card-content h6 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
}

.courses-hero .hero-image .floating-cards .course-card .card-content span {
    font-size: 0.8rem;
    color: #999;
}

.courses-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.courses-hero .hero-background .bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.courses-hero .hero-background .bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 131, 253, 0.05);
}

.courses-hero .hero-background .bg-shapes .shape.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.courses-hero .hero-background .bg-shapes .shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 30%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/*--------------------------------------------------------------
# Featured Reword Section
--------------------------------------------------------------*/
.reword_section .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.reword_section .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 131, 253, 0.08);
    border-radius: 50px;
    transition: 0.3s;
}

.reword_section .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.reword_section .stat-item:hover .stat-icon {
    background-color: var(--accent-color);
}

.reword_section .stat-item:hover .stat-icon i {
    color: var(--button_text_color);
}

.reword_section .stat-item .stat-content {
    flex-grow: 1;
}

.reword_section .stat-item .stat-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.reword_section .stat-item .stat-content p {
    font-size: 0.875rem;
    color: #999;
    margin: 0;
}

@keyframes float-badge {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
    background: var(--accent-color);
    color: var(--button_text_color);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
    color: var(--button_text_color);
    position: relative;
    z-index: 2;
}

.call-to-action .btn-cta {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--button_text_color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--button_text_color);
    position: relative;
    z-index: 2;
}

.call-to-action .btn-cta:hover {
    background-color: var(--button_text_color);
    color: var(--accent-color);
}

.call-to-action .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.call-to-action .shape svg {
    width: 100%;
    height: 100%;
}

.call-to-action .shape svg path {
    fill: rgba(255, 255, 255, 0.5);
}

.call-to-action .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.15;
    transform: rotate(-15deg);
    animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    opacity: 0.08;
    transform: rotate(15deg);
}

.call-to-action .dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--button_text_color);
}

.call-to-action .dots svg {
    width: 100%;
    height: 100%;
}

.call-to-action .dots-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: 10%;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 15%;
    opacity: 0.15;
    transform: rotate(-10deg);
}

@keyframes shapes-float {
    0%, 100% {
        transform: scale(0.8) rotate(45deg) translateY(0);
    }
    50% {
        transform: scale(0.8) rotate(45deg) translateY(-20px);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.about-description {
    color: #888;
}

.feature-list-wrapper {
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
}

.profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
}

.contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--back_color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-info .contact-label {
    color: #999;
    font-size: 0.875rem;
    margin: 0;
}

.contact-info .contact-number {
    font-weight: 600;
    margin: 0;
}

.image-wrapper {
    position: relative;
}

.image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--back_color);
}

.image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--button_text_color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}

.image-wrapper .experience-badge h3 {
    color: var(--button_text_color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

@keyframes experience-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/
h3.our_services {
    text-align: center;
    margin: 25px 0;
}

.card_body_2 {
    background-color: var(--accent-color);
}

.card_body_2 .service_tile,
.card_body_2 .serviice_para {
    color: var(--button_text_color) !important;
}

/* Flip Cards */
.flip-card-container {
    perspective: 1000px;
    height: 350px;
    max-width: 400px;
    margin: 0 auto;
}

.card_box {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card-container:hover .card_box {
    transform: rotateY(180deg);
}

.card_body_1,
.card_body_2 {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.card_body_1 {
    background-color: white;
    border-bottom: 4px solid var(--accent-color);
}

.card_body_2 {
    transform: rotateY(180deg);
    border-bottom: 4px solid var(--accent-color);
}

.service_tile {
    color: var(--accent-color);
    font-weight: 600;
}

.serviice_para {
    color: #6c757d;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-body .Button_ho a {
    background-color: var(--accent-bg-color);
}
.card-body .Button_ho a:hover {
    background-color: var(--back_color);
    color: var(--accent-bg-color);
}
.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
}

.text-primary {
    color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta_section {
    margin-top: 50px;
    margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.carousel-control-prev svg,
.carousel-control-next svg {
    color: #000;
}

.Testimonials_section {
    margin: 50px 0;
}

.Testimonials_left {
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
}

.carousel-control-next {
    right: -60px !important;
}

.carousel-control-prev {
    left: -55px !important;
}

.Testimonials_right ul li button {
    padding: 5px;
}

.Testimonial_svg {
    width: 150px;
    height: 100px;
}

/*--------------------------------------------------------------
# Common Layout
--------------------------------------------------------------*/
.section_about,
.courses_services,
.courses-hero .hero-content {
    padding: 0 2%;
}

.courses_services {
    text-align: center;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .Testimonial_svg {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .cta_section {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    
    .Testimonial_svg {
        width: 100px;
        height: 70px;
    }
    
    .image-wrapper .main-image {
        margin-left: 0;
    }
    
    .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
    }
    
    .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .call-to-action .container {
        padding: 3rem 1.5rem;
    }
    
    .call-to-action .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .call-to-action .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .call-to-action .shape-3 {
        width: 100px;
        height: 100px;
    }
    
    .call-to-action .dots-1 {
        width: 150px;
        height: 150px;
    }
    
    .call-to-action .dots-2 {
        width: 120px;
        height: 120px;
    }
    
    .section_about div.about {
        display: none;
    }
    
    .section_about .image-wrapper {
        margin: 0;
    }
    
    .carousel-control-next {
        right: -10px !important;
    }
    
    .carousel-control-prev {
        left: -10px !important;
    }
}

@media (max-width: 768px) {
    .courses-hero .hero-features {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .courses-hero {
        text-align: center;
    }
    
    .courses-hero .hero-stats {
        justify-content: center;
    }
    
    .courses-hero .hero-features {
        justify-content: center;
    }
    
    .Testimonials_section {
        margin: 30px 0;
    }
}

@media (max-width: 576px) {
    .Testimonial_svg {
        width: 70px;
        height: 50px;
    }
    
    .courses-hero .hero-buttons {
        width: 80%;
        margin: 0 auto;
    }
    
    .courses-hero .hero-buttons {
        flex-direction: column;
    }
    
    .reword_section .stat-item {
        padding: 1.5rem;
    }
    
    .call-to-action .container {
        border-radius: 0;
    }
    
    .Testimonials_section {
        margin: 20px 0;
    }
}