/**
* Template Name: Clinic
* Template URL: https://bootstrapmade.com/clinic-bootstrap-template/
* Updated: Jul 23 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --secondary-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #102D47;
    --white: #ffffff;
    --black: #000000;

}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.btn-linear {
    background-image: linear-gradient(to right, #FF512F, #F09819);
    color: var(--white) !important;
    padding: 15px;
    font-weight: 600;
}

.btn-linear1 {
    background-image: linear-gradient(to right, #FF512F, #F09819);
    color: var(--white) !important;
    width: 600px;
    height: 60px;
    font-size: 20px;
    padding-top: 13px;
}

.btn-linear1:hover {
    transform: translateY(10px);
    transition: 0.5s ease-in-out;
}


@media(max-width:576px) {
    .btn-linear1 {
        background-image: linear-gradient(to right, #FF512F, #F09819);
        color: var(--white) !important;
        width: 318px;
        height: 56px;
        font-size: 19px;
        padding-top: 13px;
    }
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--secondary-color);
    background-color: var(--background-color);
    font-family: var(--secondary-font);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--primary-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--primary-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-title h6 {
    color: var(--primary-color);
    font-weight: 600;
}

.section-title h3 {
    color: var(--black);
    font-weight: 600;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--secondary-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
    background-color: var(--primary-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    width: 150px;
    height: 52px;
}



.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--primary-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--white);
        border: 1px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--primary-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--primary-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*** Footer ***/
.footer {
    /* background-color: var(--secondary-color); */
    background: url(../img/bg-color.jpeg);

}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--white);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer a {
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary-color);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary-color);
}

.copyright a:hover {
    color: var(--light);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 75px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/abstract-bg-1.webp") no-repeat center center;
    background-size: cover;
    opacity: 0.08;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero .hero-content {
        padding: 60px 30px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero .hero-content {
        padding: 40px 20px;
    }
}

.hero .content-wrapper {
    max-width: 600px;
}

.hero .hero-title {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-title {
        font-size: 2.2rem;
    }
}

.hero .hero-title .typed {
    color: var(--primary-color);
    position: relative;
}

.hero .lead {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}



.hero .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero .hero-actions {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

.hero .hero-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero .hero-actions .btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.hero .hero-actions .btn.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.hero .hero-actions .btn.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid color-mix(in srgb, var(--primary-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.hero .social-links {
    display: flex;
    gap: 9px;
}


.hero .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

@media (max-width: 991px) {
    .hero .hero-image {
        min-height: auto;
        padding: 40px 30px;
    }
}

.hero .image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero .hero-main-image {
    border-radius: 50%;
    width: 421px;
    height: 421px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    left: 86px;
    top: 62px;
    z-index: 2;
}

@media(max-width:576px) {

    .hero .hero-main-image {
        width: 421px;
        height: 294px;
        left: 8px !important;
        top: 62px;
        z-index: 2;
    }

    .hero .image-overlay {
        position: absolute;
        top: 52px;
        left: 8px !important;
        right: -9px !important;
        bottom: -63px;
        background: linear-gradient(45deg, var(--primary-color),
                color-mix(in srgb, var(--primary-color), transparent 30%));
        border-radius: 50%;
        z-index: 1;
    }

    .hero .hero-image {
        min-height: auto;
        padding: 0 30px;
    }
}

.hero .image-overlay {
    position: absolute;
    top: 52px;
    left: 83px;
    right: -9px;
    bottom: -63px;
    background: linear-gradient(45deg, var(--primary-color),
            color-mix(in srgb, var(--primary-color), transparent 30%));
    border-radius: 50%;
    z-index: 1;
}

.hero .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.hero .floating-card {
    position: absolute;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--black), transparent 90%);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero .floating-card {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .hero .image-overlay {
        position: absolute;
        top: 52px;
        left: 83px;
        right: 82px;
        bottom: -63px;
        background: linear-gradient(45deg, var(--primary-color),
                color-mix(in srgb, var(--primary-color), transparent 30%));
        border-radius: 50%;
        z-index: 1;
    }
}

.hero .floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .hero .floating-card i {
        font-size: 1.2rem;
    }
}

.hero .floating-card span {
    font-weight: 600;
    color: var(--default-color);
}

.hero .floating-card.card-1 {
    top: 19%;
    left: 9%;
    animation-delay: 0s;
}

@media (max-width: 768px) {
    .hero .floating-card.card-1 {
        top: 5%;
        left: -5%;
    }
}

.hero .floating-card.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .hero .floating-card.card-2 {
        top: 70%;
        right: -10%;
    }
}

.hero .floating-card.card-3 {
    bottom: 15%;
    left: -5%;
    animation-delay: 4s;
}

@media (max-width: 768px) {
    .hero .floating-card.card-3 {
        bottom: 10%;
        left: 0%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* counter ===========================================/ */
.counter {
    margin-top: 10px;
}

.counter .icon {
    font-size: 30px;
    color: #000000;
}

@media (max-width: 576px) {
    .counter .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.counter .stats-grid .stat-item {
    text-align: center;
}

.counter .stats-grid .stat-item .stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--black);
    display: block;
    line-height: 1;
}

.counter .stats-grid .stat-item .stat-number::after {
    content: "+";
    font-size: 1.5rem;
    margin-left: 2px;
}

.counter .stats-grid .stat-item .stat-label {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.counter .stats-grid .stat-item .stat-label1 {
    font-size: 0.95rem;
    color: grey;
    margin-top: 0.5rem;
    font-weight: 400;
}

@media (max-width: 992px) {
    .counter .stats-grid {
        margin: 2rem 0;
    }
}

/* counter ===========================================/ */


/* service= ====================================== */
.service .card {
    padding: 25px;
}

.service .skill-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.service .skill-header i {
    font-size: 28px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        color-mix(in srgb, var(--primary-color), transparent 90%);
    border-radius: 12px;
}

.service .skill-header h3 {
    font-size: 20px;
    margin: 0;
    color: var(--primary-color);
}

.service .ankor a {
    color: var(--primary-color);
}



/* service= ====================================== */



/* program======================================= */

.program .course-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid red;
    box-shadow: 0 5px 25px color-mix(in srgb, var(--primary-color), transparent 90%);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program .course-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

.program .course-name h5 {
    color: var(--secondary-color) !important;
    transition: 0.05s ease-in-out;
    font-weight: 500;
}

.program .course-name h5:hover {
    color: var(--primary-color);
    transition: 0.05s ease-in-out;
    font-weight: 600;
}

.program .course-image:hover img {
    transform: scale(1.05);
}

.program .price {
    color: var(--primary-color);
    font-weight: 700;
}

.program .course-image .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--black);
    padding: 4px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
}

.program .course-content {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.program h3 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.program h3 a:hover {
    color: var(--primary-color);
}

.program p {
    color: color-mix(in srgb, var(--secondary-color), transparent 20%);
    font-size: 14px;
    line-height: 1.6;
    /* margin-bottom: 20px; */
}

.program .instructor {
    display: flex;
    align-items: center;
    gap: 12px;
    /* margin-bottom: 20px; */
}

.program .instructor .instructor-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.program .instructor .instructor-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.program .instructor .instructor-info span {
    font-size: 12px;
    color: color-mix(in srgb, var(--secondary-color), transparent 40%);
}

.program .course-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    /* padding-top: 15px; */
    border-top: 1px solid color-mix(in srgb, var(--secondary-color), transparent 90%);
}

.program .course-stats .rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.program .course-stats .rating i {
    color: #ffc107;
    font-size: 12px;
}

.program .course-stats .rating span {
    color: color-mix(in srgb, var(--secondary-color), transparent 30%);
    font-size: 12px;
    margin-left: 8px;
    font-weight: 500;
}

.program .course-stats .students {
    display: flex;
    align-items: center;
    gap: 5px;
}

.program .course-stats .students i {
    color: var(--primary-color);
    font-size: 14px;
}

.program .course-stats .students span {
    color: color-mix(in srgb, var(--secondary-color), transparent 30%);
    font-size: 12px;
    font-weight: 500;
}

.program .icon i {
    font-weight: 600;
}

.program .more-courses {
    margin-top: 50px;
}

.program .more-courses .btn-more {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program .more-courses .btn-more:hover {
    background: var(--primary-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .program .course-image {
        height: 200px;
    }

    .program .course-content {
        padding: 11px;
    }

    .program h3 {
        font-size: 18px;
    }

    .program .course-stats {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* program======================================= */


/* < !-- features=================================================--> */
.feature .badge {
    padding: 10px 10px 10px 10px;
    background-color: #ff6b0052;
    color: var(--primary-color);
}

.feature .heading {
    font-size: 20px;
    font-weight: 600;
}

.feature .paragraph {
    color: rgb(131, 131, 128);
}

/* < !-- features=================================================--> */


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    /* background-color: var(--secondary-color); */
    background: url(../img/bg-color.jpeg);

}

.testimonials .critic-reviews {
    margin-bottom: 60px;
}

.testimonials .critic-reviews .critic-review {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonials .critic-reviews .critic-review .review-quote {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}


.testimonials .critic-reviews .critic-review p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-style: italic;
}

.testimonials .critic-reviews .critic-review .critic-info .critic-name {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 16px;
}

.testimonials .critic-reviews .critic-review:hover {
    transform: translateY(-10px);
}


.testimonials .testimonials-container .swiper-wrapper {
    height: auto !important;
    padding-bottom: 20px;
}

.testimonials .testimonials-container .testimonial-item {
    background-color: var(--surface-color);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    height: 100%;
    /* border-top: 3px solid var(--primary-color); */
}

.testimonials .testimonials-container .testimonial-item .stars {
    margin-bottom: 15px;
    display: flex;
}

.testimonials .testimonials-container .testimonial-item .stars i {
    color: #FFD700;
    margin-right: 3px;
    font-size: 16px;
}

.testimonials .testimonials-container .testimonial-item p {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.6;
}

@media(max-width:576px) {
    .testimonials .testimonials-container .testimonial-item p {
        font-size: 14px;
        margin-bottom: 20px;
        color: var(--white);
        line-height: 1.6;
    }
}


@media(max-width:768px) {
    .testimonials .testimonials-container .testimonial-item p {
        font-size: 16px;
        margin-bottom: 20px;
        color: var(--white);
        line-height: 1.6;
    }
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid color-mix(in srgb, var(--primary-color), transparent 80%);
    margin-right: 15px;
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--white);
}

.testimonials .testimonials-container .testimonial-item .testimonial-profile div h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--white), transparent 30%);
    margin: 0;
    font-weight: normal;
}

.testimonials .testimonials-container .swiper-pagination {
    /* margin-top: 20px; */
    position: relative;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--primary-color), transparent 70%);
    opacity: 1;
}

.testimonials .testimonials-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

.testimonials .overall-rating {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: inline-block;
}

.testimonials .overall-rating .rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 10px;
}

.testimonials .overall-rating .rating-stars {
    margin-bottom: 15px;
}

.testimonials .overall-rating .rating-stars i {
    color: #FFD700;
    font-size: 22px;
    margin: 0 3px;
}

.testimonials .overall-rating p {
    color: var(--secondary-color);
    font-size: 15px;
    margin-bottom: 15px;
}

.testimonials .overall-rating .rating-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.testimonials .overall-rating .rating-platforms span {
    font-size: 14px;
    color: var(--primary-color);
    background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
    padding: 5px 15px;
    border-radius: 20px;
}

@media (max-width: 992px) {
    .testimonials .section-header h2 {
        font-size: 28px;
    }

    .testimonials .critic-reviews .critic-review {
        margin-bottom: 30px;
    }

    .testimonials .testimonials-container .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {

    .testimonials .testimonials-container .testimonial-item {
        margin-bottom: 0;
    }
}



@media (max-width: 768px) {


    .testimonials .section-header h2 {
        font-size: 24px;
    }

    .testimonials .overall-rating {
        padding: 30px;
    }

    .testimonials .overall-rating .rating-number {
        font-size: 36px;
    }

    .testimonials .overall-rating .rating-stars i {
        font-size: 18px;
    }
}

/* <!-- blog======================================================== --> */
.blog .date {
    color: var(--primary-color);
    font-weight: 600;
}

.blog .heading {
    font-weight: 600;
    color: #000;
    font-size: 18px;
}

.blog .paragraph {
    color: #aca9a9f8;
    font-size: 16px;

}

.blog .research {
    background-color: #ff6b0052;
    color: var(--primary-color);
    padding: 3px 10px 3px 10px;
    border-radius: 10px;
}

.blog .uiux {
    background-color: #65fef452;
    color: #00f2ff;
    padding: 3px 10px 3px 10px;
    border-radius: 10px;
}

.blog .right .img img {
    height: 260px;
}

/* <!-- blog======================================================== --> */

/* teach with us ======================================== */
.teachwithus {
    margin-top: 70px;
}

.teachwithus .card {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.teachwithus h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.teachwithus input {
    outline: none;
}

/* teach with us ======================================== */
.contact {
    margin-top: 70px;
}

.contact h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.contact .number {
    background-color: #dce1d69e;
    padding: 8px;
    border-radius: 10px;
}

.contact .mail {
    background-color: #dce1d69e;
    padding: 8px;
    border-radius: 10px;
}

.contact .address {
    background-color: #dce1d69e;
    padding: 8px;
    border-radius: 10px;
}


/* about-one================================================= */
.about-one {
    margin-top: 75px;
    background-image: linear-gradient(to right, #ffd6a845, #ffd190);
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media(max-width:576px) {
    .about-one {
        margin-top: 61px;
        background-image: linear-gradient(to right, #ffd6a845, #ffd190);
        height: 321px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-one h1 {
        font-size: 30px !important;
        font-weight: 700;
    }
}

.about-one h1 {
    font-size: 60px;
    font-weight: 700;
}

.about-one span {
    color: var(--primary-color);
}

.about-one .btn.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    font-size: 20px;
}

.about-one .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

@media (max-width: 991px) {
    .about-one .hero-image {
        min-height: auto;
        padding: 40px 30px;
    }
}



/* about-one========================================================= */





.about-two .image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.about-two .hero-main-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    position: relative;
    z-index: 2;
}

.about-two .image-overlay {
    position: absolute;
    top: 96px;
    left: 126px;
    right: 105px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--primary-color), color-mix(in srgb, var(--primary-color), transparent 30%));
    border-radius: 20px;
    z-index: 1;
}

.about-two p {
    font-size: 15px;
}


/* programs========================================= */
.programs {
    margin-top: 90px;

    margin-bottom: 20px;
}

/* programs=============================================== */



@media(max-width:1100px) {
    .hero .hero-main-image {
        width: 329px;
        height: 338px;
        left: 86px;
        top: 62px;
    }

    .feature .heading {
        font-size: 18px;
        font-weight: 600;
    }

    .blog .uiux {
        background-color: #65fef452;
        color: #00f2ff;
        padding: 3px 4px 5px 6px;
        border-radius: 10px;
    }

    .blog .research {
        background-color: #ff6b0052;
        color: var(--primary-color);
        padding: 3px 3px 3px 4px;
        border-radius: 10px;
    }
}

.bg-color {
    background: url(../img/bg-color.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



/* facebook================================================================= */

.facebook {
    margin-top: 70px;
}

.facebook .one {
    height: 1133px;
    background: url(../img/bg-color.jpeg);

}


/* googlemy-three-============================================= */


@media(max-width:576px) {
    .googlemy-three h1 {
        font-size: 23px;
        font-weight: 600;
    }

    .googlemy-three {
        height: 200px;
    }
}

.googlemy-five .card {
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.googlemy-five .card img {
    width: 90px;
    height: 87px;
    border-radius: 50%;
}


.googlemy-six .card {
    height: 350px;
    background-color: rgb(255, 255, 255);
}

.googlemy-six .one {
    position: relative;
    left: 195px;
    top: -20px;
    text-align: center;
    color: #ebdf00;
    font-size: 22px;
    /* font-weight: 700; */
    width: 150px;
    height: 35px;
    border-radius: 10px;
}

.googlemy-six img {
    width: 143px;
    height: 143px;
}

.googlemy-six .worth {
    display: flex;
    justify-content: center;
}

.googlemy-six .worth h4 {
    width: 237px !important;
    height: 50px;
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:576px) {
    .googlemy-six .one {
        position: relative;
        left: 94px;
        top: -11px;
        text-align: center;
        color: #ebdf00;
        font-size: 22px;
        /* font-weight: 700; */
        width: 150px;
        height: 40px;
    }
}

.googlemy-seven {
    /* background: url(../img/bg-color.jpeg); */
    background: url(../img/bg-color.jpeg);

    height: 600px;
}



/* googlemy-three======================================= */
@media(max-width:768px) {

    .facebook .one {
        height: 1135px;
    }

    .googlemy-six .one {
        background-color: red;
        position: relative;
        left: 90px;
        top: -11px;
        text-align: center;
        color: #ffff;
        font-size: 22px;
        font-weight: 700;
        width: 150px;
        height: 40px;
    }

    .googlemy-seven {
        height: 887px !important;
    }

    .googlemy-nine {
        /* height: 638px !important; */
    }

    .googleadd .one {
        height: 1257px !important;
    }

    .googleadd-seven {
        height: 960px !important;
    }

    .wordpress .one {
        height: 1177px !important;
    }

    .googlemy .one {
        height: 1062px !important;
    }

    .googlemy-eight .card-img {
        height: 329px !important;
        width: 324px !important;
    }

    .googlemy-three h1 {
        font-size: 34px !important;
        font-weight: 600;
    }
}

@media(max-width:576px) {
    .facebook .one {
        height: 1400px;
        /* background: url(../img/bg-color.jpeg); */
    }

    .googlemy-seven {
        background: url(../img/bg-color.jpeg);
        height: 1000px !important;
    }

    .googlemy-nine {
        /* background: url(../img/bg-color.jpeg); */
        height: 1508px !important;
    }

    .googleadd .one {
        height: 1316px !important;
        background: url(../img/bg-color.jpeg);
    }

    .googleadd-seven {
        background: url(../img/bg-color.jpeg);
        height: 1094px;
    }

    .wordpress .one {
        height: 1288px !important;
        background: url(../img/bg-color.jpeg);
    }

    .wordpress-three {
        background: url(../img/bg-color.jpeg);
        height: 313px !important;
    }

    .googlemy .one {
        height: 1183px;
        background: url(../img/bg-color.jpeg);
    }



}


@media(max-width:1100px) {
    .hero .hero-main-image {
        width: 329px;
        height: 338px;
        left: 86px;
        top: 62px;
    }

    .feature .heading {
        font-size: 18px;
        font-weight: 600;
    }

    .blog .uiux {
        background-color: #65fef452;
        color: #00f2ff;
        padding: 3px 4px 5px 6px;
        border-radius: 10px;
    }

    .blog .research {
        background-color: #ff6b0052;
        color: var(--primary-color);
        padding: 3px 3px 3px 4px;
        border-radius: 10px;
    }

    .facebook .one {
        height: 1213px !important;
    }

    .googlemy-six .one {
        background-color: red;
        position: relative;
        left: 111px;
        top: -11px;
        text-align: center;
        color: #ffff;
        font-size: 22px;
        font-weight: 700;
        width: 150px;
        height: 40px;
    }

    .googlemy-nine {
        /* height: 467px; */
    }

    .googleadd .one {
        height: 1156px;
    }

    .googleadd-seven {
        height: 679px;
    }

    .wordpress .one {
        height: 1224px !important;
        background: url(../img/bg-color.jpeg);
    }

    .googlemy .one {
        height: 1004px !important;
    }
}

.bg-color {
    background: url(../img/bg-color.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.timer {
    position: sticky;
    bottom: 0;

}

.timer span {
    /* border: 1px solid red; */
    padding: 5px;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    background-color: blanchedalmond;
}

.book-now-button a {
    text-decoration: none;
    display: block;
    width: 500px;
    height: 53px;
    background: var(--primary-color);
    text-align: center;
    line-height: 52px;
    font-size: 22px;
    font-family: verdana;
    color: #fff;
    position: relative;
    border-radius: 15px;
}

.book-now-button a span {
    position: relative;
    z-index: 1;
}

.book-now-button a:before {
    background: #ffffff3c;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    animation: progress 3s linear infinite;
    border-radius: 15px;
}

@keyframes progress {
    to {
        width: 100%;
    }
}

@media(max-width:576px) {
    .googlemy-eight .card-img {
        height: 289px !important;
        width: 370px;
    }
}


.googlemy-eight .card-img {
    height: 370px;
    width: 370px;
    border-radius: 50%;
    background-color: rgb(224, 224, 224);
    background-image: url(../img/trainer.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/*** FAQs Start ***/
.googlemy-ten .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--white);
    background: rgb(23, 22, 53);
    font-size: 18px;
}

.googlemy-ten .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--black);
    background: var(--white);
}




@media(max-width:576px) {
    .btn {
        width: 330px !important;
    }
}

.btn {
    /* reset */
    -webkit-appearance: none;
    border: 0;
    outline: 0;
    /* styles */
    position: relative;
    background: linear-gradient(-45deg,
            #FF6B00,
            #FF6B00,
            #d45c56,
            #ff1e00,
            #ff745c);
    background-size: 400% 400%;
    animation: gradientBG 4.5s ease infinite;
    color: rgb(255, 255, 255) !important;
    border-radius: 10px;
    font-size: 1.3rem;
    transition: 0.3s;
    width: 450px;
    height: 53px;
    padding-top: 9px;
    border: 2px solid white;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.googleadd {
    margin-top: 70px;
}


.googleadd-seven {
    background: url(../img/bg-color.jpeg);
    height: 630px;
}


@media(max-width:576px) {
    .googleadd-seven {
        background: url(../img/bg-color.jpeg);
        height: 1094px !important;
    }
}



@media(max-width:576px) {
    .googleadd-seven {
        background: url(../img/bg-color.jpeg);
        height: 1094px !important;
    }
}

.googleadd .one {
    height: 1142px;
    background: url(../img/bg-color.jpeg);
}


/* googlemy====================================== */
.googlemy {
    margin-top: 70px;
}

.googlemy .one {
    height: 1040px;
    /* background: url(../img/bg-color.jpeg); */
    background: url(../img/bg-color.jpeg);
}

/* googlemy======================================= */

/* googlemy-three-============================================= */
.googlemy-three {
    /* background: url(../img/bg-color.jpeg); */
    background: url(../img/bg-color.jpeg);

    height: 240px;
}

.googlemy-three h1 {
    font-size: 45px;
    font-weight: 600;
}

@media(max-width:576px) {
    .googlemy-three h1 {
        font-size: 23px;
        font-weight: 600;
    }

    .googlemy-three {
        height: 200px;
    }
}

/* googlemy-three======================================= */

.googlemy-five .card {
    /* height: 260px; */
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.googlemy-five .card img {
    width: 90px;
    height: 87px;
    border-radius: 50%;
}

.googlemy-six .card {
    height: 350px;
    background-color: rgb(255, 255, 255);
}

.googlemy-six .one {
    position: relative;
    left: 195px;
    top: -20px;
    text-align: center;
    color: #ebdf00;
    font-size: 22px;
    /* font-weight: 700; */
    width: 150px;
    height: 35px;
    border-radius: 10px;
}

.googlemy-six img {
    width: 143px;
    height: 143px;
}

.googlemy-six .worth {
    display: flex;
    justify-content: center;
}

.googlemy-six .worth h4 {
    width: 237px !important;
    height: 50px;
    border: 1px solid black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:576px) {
    .googlemy-six .one {
        position: relative;
        left: 94px;
        top: -11px;
        text-align: center;
        color: #ebdf00;
        font-size: 22px;
        /* font-weight: 700; */
        width: 150px;
        height: 40px;
    }
}


.googlemy-seven {
    /* background: url(../img/bg-color.jpeg); */
    background: url(../img/bg-color.jpeg);

    height: 600px;
}


.googlemy-eight .card-img {
    height: 370px;
    width: 370px;
    border-radius: 50%;
    background-color: rgb(224, 224, 224);
    background-image: url(../img/trainer.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.googlemy-nine {
    /* background: url(../img/bg-color.jpeg); */
    background: url(../img/bg-color.jpeg);

    /* height: 520px; */
}


/*** FAQs Start ***/
.googlemy-ten .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--white);
    background: rgb(23, 22, 53);
    font-size: 18px;
}

.googlemy-ten .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--black);
    background: var(--white);
}




/* wordpress-three-============================================= */

.wordpress {
    margin-top: 70px;
}

.wordpress-three {
    background: url(../img/bg-color.jpeg);
    height: 280px;
}

.wordpress .one {
    height: 1107px;
    background: url(../img/bg-color.jpeg);
}

/* wordpress-three======================================= */



/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--primary-color);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate-form {
    background-color: var(--primary-color);
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}

.timer h5 {
    font-size: 20px !important;
    font-weight: 600;
}

.timer .segment .value {
    font-size: 12px;
}

.timer .label {
    font-size: 12px;
}

@media(max-width:576px) {
    .timer h4 {
        font-size: 12px !important;
    }

    .timer h5 {
        font-size: 12px !important;
    }
}



@media (min-width: 576px) and (max-width: 768px) {
    .googlemy-nine {
        height: 1508px !important;
    }

    .googlemy-seven {
        height: 989px !important;
    }
}
