/*

Theme Name : Roshni Beauty & Hair Care

//========== INDEX ==========//
1.Common CSS
2.Loader CSS
3.Header CSS
4.Banner CSS
5.Featured CSS
6.About Us CSS
7.Services CSS
8.Why Choose CSS
9.Portfolio CSS
10.Call To Action CSS
11.Courses CSS
12.Testimonial CSS
13.Gallery CSS
14.Footer CSS
15.Scroll To Top CSS
16.About Us Page CSS
17.Services Page CSS
18.Contact Us Page CSS
19.Courses Page CSS
20.Portfolio Page CSS
21.Founder Page CSS

*/

/*========== Common CSS Start ==========*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary_color: #784b97;
    --secondary_color: #572a57;
    --dark_color: #2b2a29;
    --bg_color: #f7f7f7b5;
    --common_color: #6D6A75;
    --white_color: #ffffff;
    --black_color: #000000;
    --red_color: #BA2D2D;
    --green_color: #319609;
    --yellow_color: #ffc107;
    --title_font: "Outfit", serif;
    --common_font: "Rubik", serif;
    --section_space: 120px;
    --gutter: 30px;
}

main {
    position: relative;
    width: 100%;
}

body.fixed {
    overflow: hidden;
}

body {
    background-image: url('../images/body-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-x: hidden;
}

body, p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--common_color);
    font-family: var(--common_font);
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

p a,
a {
    color: var(--primary_color);
    text-decoration: none !important;
    transition: 0.3s;
}

p a:hover,
a:hover {
    color: var(--dark_color);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title_font);
    color: var(--dark_color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h1:last-child, 
h2:last-child, 
h3:last-child, 
h4:last-child, 
h5:last-child, 
h6:last-child {
    margin-bottom: 0;
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title p {
    max-width: 900px;
    margin: 0 auto;
}

.sub-title {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary_color);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-title:before {
    content: '';
    flex-shrink: 0;
    display: inline-block;
    width: 27px;
    aspect-ratio: 1/1;
    background-image: url('../images/makeup-icon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.text-center .sub-title {
    justify-content: center;
}

.h1-title {
    font-size: 64px;
    line-height: 1.2;
    color: var(--dark_color);
    font-weight: 700;
    margin-bottom: 46px;
}

.h2-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark_color);
}

.h1-title span,
.h2-title span {
    display: inline-block;
    color: var(--primary_color);
    position: relative;
}

.h1-title span:before,
.h2-title span:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 0.055;
    background-image: url('../images/Line.svg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.h3-title {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark_color);
    margin-bottom: 15px;
}

.h4-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--dark_color);
}

.back-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.animate-bg {
    position: relative;
    overflow: hidden;
}

.animate-bg .back-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}

.animate-bg:hover .back-img {
    transform: scale(1.1) rotate(3deg);
}

.container {
    position: relative;
    z-index: 5;
}

.form-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.form-box>label {
    display: block;
    width: 100%;
}

.form-radio {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
}

.form-radio input {
    margin-right: 5px;
}

.form-box .sec-btn {
    margin-left: auto;
}

.form-input {
    width: 100%;
    height: 50px;
    background: var(--white_color);
    border-radius: 0;
    border: 1px solid var(--common_color);
    outline: none;
    padding: 5px 25px;
    color: var(--common_color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 40px;
}

.form-input::placeholder {
    opacity: 1;
    color: var(--common_color);
}

textarea.form-input {
    resize: none;
    height: 120px;
    padding: 15px 25px;
    border-radius: 20px;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-box.form-element i {
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translate(0,-50%);
    font-size: 14px;
    pointer-events: none;
}

.form-input.error {
    border-color: var(--red_color);
}

.error-message {
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: -20px;
    color: var(--red_color);
}

.success-message {
    color: var(--green_color);
    border: 1px solid var(--green_color);
    padding: 5px 10px;
    margin-top: 30px;
    display: block;
    width: 100%;
}

.error-message-wp {
    color: var(--red_color);
    border: 1px solid var(--red_color);
    padding: 5px 10px;
    margin-top: 30px;
    display: block;
    width: 100%;
}

.for-des {
    display: block !important;
}

.for-mob {
    display: none !important;
}

section {
    position: relative;
}

.sec-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
    max-width: 100%;
    height: 60px;
    background: var(--primary_color);
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--common_font);
    color: var(--white_color);
    font-weight: 500;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 10px 30px;
    box-shadow: var(--primary_color_shadow);
    outline: none;
    border: none;
    transition: 0.5s;
}

.sec-btn.outline {
    background: transparent;
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
}

.sec-btn:hover,
.sec-btn.outline:hover {
    color: var(--white_color);
}

.sec-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary_color);
    border-radius: 5px;
    color: var(--primary_color);
    transform: scale(0);
    opacity: 0;
    transition: 0.5s;
    z-index: 0;
}

.sec-btn:hover:before {
    transform: scale(1);
    opacity: 1;
}

.sec-btn.outline:before {
    background: var(--primary_color);
}

.sec-btn span {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.sec-btn i {
    vertical-align: middle;
}

.arrow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    aspect-ratio: 1/1;
    background: transparent;
    border: 1px solid var(--white_color);
    border-radius: 50%;
    font-size: 18px;
    color: var(--white_color);
    transition: 0.3s;
}

.arrow-btn:hover {
    background: var(--primary_color);
    color: var(--white_color);
    transform: rotate(-45deg);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    color: var(--primary_color);
    text-transform: capitalize;
    font-weight: 600;
    font-family: var(--title_font);
    transition: 0.3s;
}

.link-btn:hover {
    color: var(--dark_color);
}

.link-btn i {
    font-size: 16px;
    transition: 0.3s;
}

.link-btn:hover {
    gap: 10px;
}

.download-btn {
    width: 60px;
    aspect-ratio: 1/1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary_color);
    border-radius: 8px;
    font-size: 22px;
    transition: 0.3s;
}

.download-btn:hover {
    background: var(--primary_color);
    color: var(--white_color);
}

.download-btn i {
    animation: fade_in 1s linear infinite alternate;
}

@keyframes fade_in {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.common-btn-wp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.common-btn-wp.center {
    justify-content: center;
}

.whatsapp-btn {
    display: inline-block;
    font-size: 40px;
    line-height: 1;
    color: var(--green_color);
    vertical-align: middle;
}

.whatsapp-btn:hover {
    --hover_color: color-mix(in srgb, var(--green_color), black 30%);
    color: var(--hover_color);
}

.back-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    width: 100% !important;
    height: auto !important;
    filter: none !important;
    z-index: -1;
}

.swiper-pagination {
    position: relative;
    bottom: 0 !important;
    top: auto !important;
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.swiper-pagination-bullet {
    margin: 0 !important;
    width: 10px;
    height: 10px;
    background: var(--primary_color);
}

.swiper-button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 50px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 8px;
    font-size: 20px;
    background: var(--primary_color);
    color: var(--white_color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: 0.3s;
}

.swiper-button:hover {
    background: var(--secondary_color);
}

.swiper-button.swiper-button-next {
    left: auto;
    right: 0;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: inherit;
}

.modal-dialog-scrollable {
    height: 100%;
}

.modal-dialog {
    max-width: 800px;
    width: calc(100% - 60px);
    margin: auto;
}

.modal-body {
    padding: 30px;
}

.modal-header {
    padding: 15px 30px;
}

.btn-close {
    outline: none !important;
    box-shadow: none !important;
}

.shape {
    position: absolute;
    width: 100%;
    max-width: clamp(6.25rem, 5.388vw + 2.909rem, 9.375rem);
    max-height: clamp(6.25rem, 5.388vw + 2.909rem, 9.375rem);
    animation: spin 1s linear infinite alternate;
    pointer-events: none;
    z-index: 0;
    object-fit: contain;
    object-position: center;
}

@keyframes spin {
    to {
        transform: rotate(5deg);
    }
}

.shape.left-bottom {
    left: -15px;
    bottom: 30px;
}

.shape.left-top {
    left: -15px;
    top: 30px;
}

.shape.right-top {
    right: -15px;
    top: -50px;
}

.shape.right-bottom {
    right: -15px;
    bottom: 30px;
}

.bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-noise.jpg');    
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.06;
    mix-blend-mode: luminosity;
    border-radius: inherit;
    z-index: 0;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/inner-banner-bg-pattern.png');    
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    opacity: 0.15;
    border-radius: inherit;
    z-index: 0;
}

.main-inner-banner {
    padding-top: 140px;
    position: relative;
}

.inner-banner-content {
    padding: 50px 0;
}

.inner-banner-content .h1-title {
    margin-bottom: 30px;
}

.inner-banner-img {
    width: 750px;
    max-width: 811px;
}

.breadcrumb-box {
    margin-top: 30px;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

.breadcrumb-box ul {
    margin: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 30px;
    padding: 5px 20px 5px;
    background: var(--primary_color);
    border-radius: 40px;
}

.breadcrumb-box ul li {
    color: var(--white_color);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 10px;
}

.breadcrumb-box ul li:not(:last-child):after {
    content: '\f101';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    line-height: 1;
}

.breadcrumb-box ul li a {
    color: inherit;
    text-transform: inherit;
    transition: 0.3s;
}

.breadcrumb-box ul li a:hover {
    color: var(--white_color);
    text-decoration: underline !important;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.button-group .whatsapp-btn {
    font-size: 50px;
}

/* Common CSS Responsive Start */
@media screen and (max-width: 1499px) {
    :root {
        --section_space: 100px;
    }
    .inner-banner-img {
        width: 700px;
    }
}

@media screen and (max-width: 1399px) {
    .h1-title {
        font-size: 55px;
    }
    .h2-title {
        font-size: 40px;
    }
    .h3-title {
        font-size: 22px;
    }
    .h4-title {
        font-size: 20px;
    }
    .main-inner-banner {
        padding-top: 120px;
    }
    .inner-banner-img {
        width: 600px;
    }
}

@media screen and (max-width: 1199px) {
    :root {
        --section_space: 90px;
    }
    body, p {
        font-size: 15px;
    }
    .sub-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .h1-title {
        font-size: 47px;
        margin-bottom: 30px;
    }
    .h2-title {
        font-size: 35px;
        margin-bottom: 1rem;
    }
    .h3-title {
        font-size: 20px;
    }
    .h4-title {
        font-size: 18px;
    }
    .sec-btn {
        padding: 10px 25px;
        height: 55px;
    }
    .link-btn {
        font-size: 16px;
    }
    .arrow-btn {
        width: 50px;
        font-size: 16px;
    }
    .download-btn {
        width: 55px;
    }
    .inner-banner-img {
        width: 48vw;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --section_space: 80px;
    }
    html, body {
        overflow-x: hidden;
    }
    .for-des {
        display: none !important;
    }    
    .for-mob {
        display: block !important;
    }
    .shape {
        display: none;
    }
    .common-btn-wp {
        gap: 20px;
    }
    .sec-title {
        margin-bottom: 40px;
    }    
    .form-box .sec-btn {
        margin: 0 auto;
    }
    .sec-btn {
        padding: 10px 20px;
        height: 50px;
        font-size: 15px;
    }
    .download-btn {
        width: 50px;
    }
    .button-group .whatsapp-btn {
        font-size: 45px;
    }
    .swiper-button {
        width: 40px;
        font-size: 16px;
    }
    .main-inner-banner {
        padding: 110px 0 30px 0;
    }
    .inner-banner-content {
        padding: 0;
        text-align: center;
    }
    .inner-banner-img {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
    .inner-banner-img img {
        width: 600px;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --section_space: 60px;
    }
    .h1-title {
        font-size: 45px;
    }
    .h2-title {
        font-size: 35px;
    }
}

@media screen and (max-width: 575px) {
    .container, 
    .container-fluid, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        padding-right: var(--gutter);
        padding-left: var(--gutter);
    }
    .h1-title {
        font-size: clamp(35px, 8vw, 45px);
    }
    .h2-title {
        font-size: 30px;
    }
    .main-inner-banner {
        padding-top: 100px;
    }
    .inner-banner-content .h1-title {
        margin-bottom: 20px;
    }
    .breadcrumb-box {
        margin-top: 20px;
    }
    .breadcrumb-box ul {
        gap: 7px;
        min-height: 35px;
        padding: 6px 15px 5px;
    }
}

@media screen and (max-width: 400px) {
    .container, 
    .container-fluid, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl, 
    .container-xxl {
        --container-space: calc(var(--gutter) / 2);
        padding-right: var(--container-space);
        padding-left: var(--container-space);
    }
    .row {
        --bs-gutter-x: calc(var(--gutter) / 2);
    }
    .modal-dialog {
        width: calc(100% - 30px);
    }
    .h1-title {
        font-size: clamp(30px, 8vw, 40px);
    }
    .h2-title {
        font-size: 28px;
    }
    .modal-header {
        padding: 15px 20px;
    }
    .modal-body {
        padding: 20px;
    }
    .form-box {
        margin-bottom: 20px;
    }
    .form-input {
        padding: 5px 20px;
    }
    .form-box.form-element i {
        right: 20px;
    }
    textarea.form-input {
        padding: 15px 20px;
    }
    .sec-title {
        margin-bottom: 30px;
    }   
    .breadcrumb-box ul li {
        font-size: 14px;
    } 
}
/* Common CSS Responsive End */
/*========== Common CSS End ==========*/

/*==========Loader CSS Start==========*/
.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100dvh;
    background: var(--white_color);
    z-index: 99999999;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader:before {
    content: '';
    display: block;
    width: 230px;
    height: 84px;
    background-image: url('../images/rbhc-logo.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: 1.5s ease 0s infinite beat;
}

@keyframes beat {
  0%, 50%, 100% { transform: scale(1, 1); }
  30%, 80% { transform: scale(0.92, 0.95); }
}
/*==========Loader CSS End==========*/

/*========== Header CSS Start ==========*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.header-top {
    width: 100%;
    height: 40px;
    background: var(--secondary_color);
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.site-header.sticky-header .header-top {
    margin-top: -40px;
}

.header-top-wp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-top-contact {
    display: flex;
    align-items: center;
    gap: 27px;
}

.header-top-contact a {
    color: var(--white_color);
    transition: 0.3s;
}

.header-top-contact a:hover {
    color: color-mix(in srgb, var(--primary_color), white 50%);
}

.header-top-contact a i {
    vertical-align: middle;
    margin-right: 7px;
    font-size: 14px;
}

.header-top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1/1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 14px;
    color: var(--white_color);
    transition: 0.3s;
}

.header-top-social a:hover {
    background: var(--primary_color);
    color: var(--white_color);
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 40px;
}

.black-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
    z-index: 90;
    display: none;
    background-color: var(--black_color);
}

.site-branding {
    width: 200px;
    flex-shrink: 0;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.header-menu-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    color: var(--common_color);
    font-weight: 500;
    font-family: var(--title_font);
}

.main-navigation ul li a:hover,
.main-navigation ul li.active>a {
    color: var(--primary_color);
}

.main-navigation ul li.sub-items>a {
    padding-right: 15px;
    position: relative;
}

.main-navigation ul li.sub-items:hover>a {
    color: var(--primary_color);
}

.main-navigation ul li.sub-items>a:after {
    content: "\f078";
    position: absolute;
    top: 55%;
    right: 0;
    transform: translate(0, -50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--common_color);
    font-size: 12px;
    line-height: 1;
    transition: 0.3s;
}

.main-navigation ul li.sub-items:hover>a:after,
.main-navigation ul li.sub-items>a:hover:after {
    color: var(--primary_color);
    transform: translate(0, -50%) rotate(-180deg);
}

.main-navigation ul li.sub-items.active>a:after {
    color: var(--primary_color);
}

.main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    width: 260px;
    height: auto;
    background: var(--white_color);
    border-radius: 8px;
    box-shadow: 1px 1px 60px rgba(0, 0, 0, 0.1);
    display: none;
    transition: 0.3s;
    overflow: hidden;
    z-index: 150;
}

.main-navigation ul li:hover ul.sub-menu {
    display: block;
    animation: swip_up 0.3s linear 1;
}

@keyframes swip_up {
    from {
        transform: translate(0, 20px);
        opacity: 0;
    }

    to {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.main-navigation ul li ul.sub-menu li {
    display: block;
    text-align: left;
    margin: 0;
    border-bottom: 1px solid #ebebeb;
}

.main-navigation ul li ul.sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation ul li ul.sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding: 5px 15px;
    transition: 0.3s;
}

.main-navigation ul li ul.sub-menu li a:hover,
.main-navigation ul li ul.sub-menu li.active>a,
.main-navigation ul li ul.sub-menu li a.active {
    background: var(--primary_color);
    color: var(--white_color);
}

.toggle-button {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    outline: none !important;
    border-radius: 0;
    z-index: 110;
}

.toggle-button::before, .toggle-button::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--dark_color);
    transition: transform 0.3s, top 0.3s 0.3s, bottom 0.3s 0.3s;
}

.toggle-menu .toggle-button::before, 
.toggle-menu .toggle-button::after {
    background-color: var(--primary_color);
    transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s;
}

.toggle-button::before {
    top: 6px;
}

.toggle-button::after {
    bottom: 6px;
}

.toggle-menu .toggle-button::before {
    top: calc(50% - 1px);
    transform: rotate(45deg);
}

.toggle-menu .toggle-button::after {
    bottom: calc(50% - 1px);
    transform: rotate(-45deg);
}

.toggle-button span {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    background: var(--dark_color);
    transform: translate(0, -50%);
    transition: opacity 0.3s 0.3s;
}

.toggle-menu .toggle-button span {
    opacity: 0;
    transition: opacity 0.3s;
}

.black-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.5;
    z-index: 90;
    display: none;
    background-color: var(--black_color);
}

.header-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.header-btn a:not(.whatsapp-btn) {
    width: 40px;
    aspect-ratio: 1/1;
    background: var(--primary_color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--white_color);
}

.header-btn a:not(.whatsapp-btn):hover {
    background: var(--secondary_color);
    color: var(--white_color);
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .site-branding {
        width: 180px;
    }
    .header-menu-box ul,
    .main-navigation {
        gap: 30px;
    }
    .header-box {
        height: 80px;
    }
}
@media screen and (max-width: 1199px) {
    .header-box {
        gap: 30px
    }
    .site-branding {
        width: 150px;
    }
    .header-menu-box ul, 
    .main-navigation {
        gap: 20px;
    }
}
@media screen and (max-width: 991px) {
    .site-header .container {
        max-width: 100%;
        padding: 0 30px;
    }
    .header-menu {
        position: fixed;
        top: 0;
        left: auto;
        right: -500px;
        width: 300px;
        height: 100vh;
        background: var(--white_color);
        padding: 80px 30px 30px;
        opacity: 0;
        pointer-events: none;
        overflow: auto;
        overflow-x: hidden;
        scrollbar-color: transparent transparent;
        transition: 0.8s;
        z-index: 99;
    }  
    .toggle-menu .header-menu {
        right: 0;
        opacity: 1;
        pointer-events: unset;
    }
    .header-menu::-webkit-scrollbar {
        width: 3px;
    }
    .header-menu::-webkit-scrollbar-thumb {
        background: var(--dark_color);
    }
    .header-menu::-webkit-scrollbar-track {
        background: #cccccc;
    }  
    .main-navigation ul:not(.main-navigation ul ul) {
        display: block;
        margin-bottom: 4vh;
    }
    .main-navigation ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 4vh;
        position: relative;
        left: -30px;
        opacity: 0;
        transition: 0.5s;
    }
    .main-navigation.toggle-menu ul li {
        left: 0;
        opacity: 1;
    }
    .main-navigation.toggle-menu ul li:nth-child(1) {
        transition-delay: 0.8s;
    }
    .main-navigation.toggle-menu ul li:nth-child(2) {
        transition-delay: 0.9s;
    }
    .main-navigation.toggle-menu ul li:nth-child(3) {
        transition-delay: 1s;
    }
    .main-navigation.toggle-menu ul li:nth-child(4) {
        transition-delay: 1.1s;
    }
    .main-navigation.toggle-menu ul li:nth-child(5) {
        transition-delay: 1.2s;
    }
    .main-navigation.toggle-menu ul li:nth-child(6) {
        transition-delay: 1.3s;
    }
    .main-navigation.toggle-menu ul li:nth-child(7) {
        transition-delay: 1.4s;
    }
    .main-navigation.toggle-menu ul li:nth-child(8) {
        transition-delay: 1.5s;
    }
    .main-navigation.toggle-menu ul li:nth-child(9) {
        transition-delay: 1.6s;
    }
    .main-navigation.toggle-menu ul li:nth-child(10) {
        transition-delay: 1.7s;
    }
    .main-navigation.toggle-menu ul li:nth-child(11) {
        transition-delay: 1.8s;
    }
    .main-navigation.toggle-menu ul li:nth-child(12) {
        transition-delay: 1.9s;
    }
    .main-navigation.toggle-menu ul li:nth-child(13) {
        transition-delay: 2s;
    }
    .main-navigation.toggle-menu ul li:nth-child(14) {
        transition-delay: 2.1s;
    }
    .main-navigation.toggle-menu ul li:nth-child(15) {
        transition-delay: 2.2s;
    }
    .main-navigation ul li:last-child {
        margin-bottom: 0;
    }
    .main-navigation ul li a {
        font-size: 18px;
    }
    .main-navigation ul li a:before {
        display: none;
    }
    .main-navigation ul li.sub-items>a {
        position: unset;
    }
    .main-navigation ul li.sub-items>a:after {
        pointer-events: none;
        top: 8px;
        transform: none;
    }
    .main-navigation ul li ul.sub-menu,
    .main-navigation ul li:hover ul.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        display: block;
        animation: none;
        padding: 0;
        padding-left: 0;
        margin-top: 10px;
        transition: 0s;
        display: none;
    }
    .main-navigation ul li ul.sub-menu li {
        border: none;
        padding: 0;
        margin-bottom: 10px;
    }
    .main-navigation ul li ul.sub-menu li:last-child {
        margin-bottom: 0;
    }
    .main-navigation li a {
        font-size: 18px;
    }
    .main-navigation ul li ul.sub-menu li a {
        padding: 0;
        font-size: 16px;
        display: inline-block;
        padding-left: 15px;
        color: var(--common_color);
    }
    .main-navigation ul li ul.sub-menu li a:hover {
        background: transparent;
        color: var(--primary_color);
    }
    .main-navigation ul li ul.sub-menu li a:before {
        content: '\f054';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 12px;
        display: block;
        position: absolute;
        top: 5px;
        width: auto;
        height: auto;
        background: transparent;
        transform: none;
        left: 0;
        color: inherit;
        opacity: 1;
        border-radius: 0;
    }
    .main-navigation ul li.sub-items:hover>a:after {
        transform: none;
    }
    .main-navigation ul.active-sub-menu li.sub-items>a {
        color: var(--primary_color);
    }
    .main-navigation ul.active-sub-menu li.sub-items>a:after {
        color: var(--primary_color);
        transform: rotate(-180deg);
    }
    .main-navigation ul.active-sub-menu li.sub-items>a:before {
        width: 100%;
        opacity: 1;
    }
    .header-mob-btn {
        margin-top: 4vh;
        opacity: 0;
        transition: 0.5s;
    }
    .main-navigation.toggle-menu .header-mob-btn {
        opacity: 1;
        transition-delay: 1.5s;
    }
    .header-top-contact {
        margin-top: 4vh;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
    }
    .header-top-contact a {
        color: var(--dark_color);
    }
    .header-top-contact a:hover {
        color: var(--primary_color);
    }
    .header-top-social a {
        background: rgba(0,0,0,0.1);
        color: var(--dark_color);
    }
    .header-top-social a:hover {
        background: var(--primary_color);
        color: var(--white_color);
    }
}
@media screen and (max-width: 767px) {
    .header-box {
        height: 70px;
    }
}
@media screen and (max-width: 575px) {
    .site-branding {
        width: 130px;
    }
}
@media screen and (max-width: 400px) {
    .site-header .container {
        padding: 0 15px;
    }
    .header-menu {
        width: 260px;
    }
}
/* Responsive End */
/*========== Header CSS End ==========*/

/*========== Banner CSS Start ==========*/
.main-banner {
    padding-top: 172px;
    position: relative;
}

.main-banner:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
}

.banner-content {
    margin-top: 150px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 32px;
}

.banner-btn {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--common_color);
    text-align: left;
}

.banner-call:hover {
    color: var(--common_color);
}

.banner-call .icon {
    width: 60px;
    aspect-ratio: 1/1;
    background: var(--white_color);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--primary_color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.banner-call:hover .icon {
    background: var(--primary_color);
    color: var(--white_color);
}

.banner-call .text span {
    display: block;
    color: var(--dark_color);
    font-weight: 700;
}

.banner-img {
    width: 102%;
    position: relative;
    left: 70px;
}

.banner-img-slider {
  position: relative;
  aspect-ratio: 1/1.2654320;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

#slide-word {
    position: relative;
}

#slide-word:after {
    content: '';
    display: inline-block;
    width: 0.08em;
    height: 1em;
    background: var(--primary_color);
    vertical-align: sub;
    animation: blink 1s infinite;
    margin-left: 5px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .main-banner {
        padding-top: 130px;
    }
    .banner-content {
        margin-top: 80px;
    }
}
@media screen and (max-width: 1199px) {
    .banner-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }    
    .banner-img {
        left: 30px;
    }
}
@media screen and (max-width: 991px) {
    .banner-content {
        margin-top: 0;
        text-align: center;
    }
    .banner-content .sub-title {
        justify-content: center;
    }
    .banner-btn {
        justify-content: center;
    }
    .banner-call {
        font-size: 16px;
    }
    .banner-call .icon {
        width: 50px;
        font-size: 18px;
    }
    .banner-img {
        left: 0;
        width: 100%;
        max-width: 400px;
        margin: auto;
        margin-top: 40px;
    }
    .banner-content .h1-title {
        width: 80%;
        margin-inline: auto;
    }
}
@media screen and (max-width: 767px) {
    .banner-img {
        max-width: 320px;
    }
    .banner-content .h1-title {
        width: 90%;
    }
}
@media screen and (max-width: 575px) {
    .main-banner {
        padding-top: 120px;
    }
    .banner-content .h1-title {
        width: 100%;
    }
}
@media screen and (max-width: 400px) {
    .main-banner {
        padding-top: 110px;
    }
    .banner-content .sub-title:before {
        display: none;
    }
    .banner-content p {
        font-size: 15px;
    }
}
/* Responsive End */
/*========== Banner CSS End ==========*/

/*========== Featured CSS Start ==========*/
.main-featured {
    margin-top: -62px;
    position: relative;
    z-index: 6;
}

.featured-box {
    width: 100%;
    height: 100%;
    background: var(--white_color);
    box-shadow: 0 0 60px rgba(0,0,0,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding: 20px 30px;
    gap: 15px;
    transition: 0.3s;
}

.featured-box:hover {
    background: var(--primary_color);
}

.featured-box .icon {
    width: 60px;
    flex-shrink: 0;
}

.featured-box .icon img {
    width: 100%;
    transition: 0.3s;
}

.featured-box:hover .icon img {
    filter: brightness(0) invert(1);
}

.featured-box .h4-title {
    margin-bottom: 10px;
}

.featured-box:hover .h4-title,
.featured-box:hover p {
    color: var(--white_color);
    transition: 0.3s;
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .featured-box {
        padding: 20px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .main-featured .container {
        max-width: 100%;
        padding: 0 24px;
    }
}
@media screen and (max-width: 1199px) {
    .main-featured {
        margin-top: -52px;
    }
    .featured-box {
        padding: 15px;
        border-radius: 15px;
        gap: 10px;
    }
    .featured-box .icon {
        width: 50px;
    }
    .featured-box .h4-title {
        margin-bottom: 7px;
    }
}
@media screen and (max-width: 991px) {
    .main-featured {
        margin-top: -40px;
    }
    .main-featured .row {
        row-gap: 1.5rem;
    }
}
/* Responsive End */
/*========== Featured CSS End ==========*/

/*========== About Us CSS Start ==========*/
.main-about-us {
    margin: var(--section_space) 0;
}

.about-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
}

.about-img.lg {
    aspect-ratio: 1/1.8;
}

.about-img:not(:last-child) {
    margin-bottom: 24px;
}

.about-content {
    padding-left: 26px;
}

.about-content ul {
    column-count: 2;
    list-style: none;
    margin: 0 0 -15px;
    padding: 0;
    column-gap: 10px;
}

.about-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: var(--dark_color);
}

.about-content ul li:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 0;
    width: 20px;
    aspect-ratio: 1/1;
    background-image: url('../images/check-icon.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-btn {
    margin-top: 30px;
}

/* Responsive Start */
@media screen and (max-width: 1199px) {
    .about-content {
        padding-left: 0;
    }
}
@media screen and (max-width: 991px) {
    .about-content {
        margin-top: 40px;
    }
    .about-content .h2-title {
        max-width: 500px;
    }
}
@media screen and (max-width: 575px) {
    .about-content ul {
        column-count: 1;
    }
}
@media screen and (max-width: 400px) {
    .about-img:not(:last-child) {
        margin-bottom: 15px;
    }
    .about-img {
        border-radius: 15px;
    }
}
/* Responsive End */
/*========== About Us CSS End ==========*/

/*========== Services CSS Start ==========*/
.main-services {
    padding: 0 24px;
    margin: var(--section_space) 0;
    position: relative;
}

.services-slider {
    padding: 0 23px;
}

.service-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.2822;
    overflow: hidden;
    border-radius: 20px;
}

.service-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.service-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 10;
}

.service-box-content .h3-title,
.service-box-content .h3-title a {
    color: var(--white_color);
    transition: 0.3s;
}

.service-box-content .h3-title a:hover {
    color: var(--secondary_color);
}

.service-box-content p {
    margin: 21px 0 30px;
    color: var(--white_color);
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-text-box {
    margin-bottom: -160px;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.service-box:hover .service-text-box {
    margin-bottom: 0;
    opacity: 1;
    pointer-events: auto;
}

.services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* Responsive Start */
@media screen and (max-width: 1199px) {
    .service-box-content {
        padding: 20px;
    }
    .service-box-content p {
        margin: 15px 0 20px 0;
    }
    .service-text-box {
        margin-bottom: -130px;
    }
    .services-btn {
        margin-top: 40px;
    }
}
@media screen and (max-width: 575px) {
    .main-services .container {
        padding: 0;
    }
    .services-slider {
        padding: 0 15px;
    }    
}
@media screen and (max-width: 400px) {
    .main-services {
        padding: 0 15px;
    }
}
/* Responsive End */
/*========== Services CSS End ==========*/

/*========== Why Choose CSS Start ==========*/
.main-why-choose-us {
    background: var(--bg_color);
    padding: var(--section_space) 0;
}

.why-choose-content {
    padding-right: 40px;
}

.why-choose-list ul {
    column-count: 2;
    list-style: none;
    margin: 0 0 -15px;
    padding: 0;
    column-gap: 10px;
}

.why-choose-list ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: var(--dark_color);
}

.why-choose-list ul li:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 0;
    width: 20px;
    aspect-ratio: 1 / 1;
    background-image: url(../images/check-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.why-choose-btn {
    margin-top: 30px;
}

.main-counter {
    position: relative;
    width: 100%;
    background: var(--white_color);
    box-shadow: 0 0 60px rgba(0,0,0,0.1);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.main-counter:before,
.main-counter:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.main-counter:after {
    width: 100%;
    height: 1px;
}

.main-counter .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: var(--white_color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    color: var(--green_color);
    z-index: 1;
    pointer-events: none;
}

.counter-box {
    text-align: center;
    padding: 40px 30px;
}

.counter-box .h2-title {
    color: var(--primary_color);
    margin-bottom: 5px;
}

.counter-box .h2-title span::before {
    display: none;
}

.counter-box p {
    font-size: 18px;
    color: var(--dark_color);
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .counter-box {
        padding: 40px 20px;
    }
}
@media screen and (max-width: 1199px) {
    .why-choose-content {
        padding-right: 0;
    }
    .counter-box {
        padding: 30px 15px;
    }
    .why-choose-list ul {
        column-gap: 0;
    }
    .counter-box p {
        font-size: 15px;
    }
}
@media screen and (max-width: 991px) {
    .main-counter {
        margin-top: 40px;
    }
}
@media screen and (max-width: 575px) {
    .why-choose-list ul {
        column-count: 1;
    }
}
/* Responsive End */
/*========== Why Choose CSS End ==========*/

/*========== Portfolio CSS Start ==========*/
.main-portfolio {
    margin: var(--section_space) 0;
}

.portfolio-list .row {
    --bs-gutter-y: 1.5rem;
}

.portfolio-box {
    width: 100%;
    aspect-ratio: 1/0.6;
    border-radius: 20px;
    overflow: hidden;
}

.portfolio-box.lg {
    aspect-ratio: 1/1.5;
}

.portfolio-box video {
    width: 110%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.portfolio-box.lg video {
    width: 100%;
}

.portfolio-content-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    gap: 10px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 1;
}

.portfolio-box.lg .portfolio-content-box {
    padding: 30px 15px;
}

.portfolio-box:hover .portfolio-content-box {
    opacity: 1;
    pointer-events: auto;
}

.portfolio-content-box * {
    color: var(--white_color);
    margin: 0;
}

/* .portfolio-content-box .arrow-btn {
    width: 40px;
    font-size: 14px;
} */

.portfolio-content-box .arrow-btn:hover {
    transform: rotate(0deg);
}

.portfolio-btn {
    margin-top: 40px;
    text-align: center;
}

/* Responsive Start */
@media screen and (max-width: 575px) {
    .portfolio-content-box p {
        display: none;
    }
}
@media screen and (max-width: 400px) {
    .portfolio-list .row {
        --bs-gutter-y: 15px;
    }
    .portfolio-box {
        border-radius: 15px;
    }
}
/* Responsive End */
/*========== Portfolio CSS End ==========*/

/*========== Call To Action CSS Start ==========*/
.main-call-to-action {
    margin-top: var(--section_space);
    position: relative;
}

.main-call-to-action>.bg-noise {
    height: 50%;
    top: auto;
    bottom: 0;
}

.call-to-action-box {
    background: var(--primary_color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.15);
}

.call-to-action-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/call-to-action-shape.svg);
    background-size: 75% 100%;
    background-position: bottom left;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.call-to-action-content,
.call-to-action-img {
    position: relative;
    z-index: 1;
}

.call-to-action-content {
    padding: 60px;
}

.call-to-action-content .h2-title {
    color: var(--white_color);
}

.call-to-action-content p {
    font-size: 18px;
    max-width: 600px;
    color: var(--white_color);
    margin-bottom: 30px;
}

.call-to-action-content .sec-btn:not(:hover) {
    background: var(--white_color);
    color: var(--primary_color);
}

.call-to-action-img {
    width: 500px;
    flex-shrink: 0;
    height: 100%;
    text-align: center;
}

.call-to-action-img img {
    width: auto;
    height: 450px;
    margin-top: -80px;
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .call-to-action-content {
        padding: 50px;
    }
}
@media screen and (max-width: 1199px) {
    .call-to-action-img {
        width: 350px;
    }
    .call-to-action-img img {
        height: 400px;
    }
    .call-to-action-content p {
        font-size: 16px;
    }
}
@media screen and (max-width: 991px) {
    .call-to-action-box {
        flex-direction: column;
        gap: 0;
    }    
    .call-to-action-content {
        text-align: center;
        padding: 40px;
        width: 100%;
    }    
    .call-to-action-content p {
        max-width: 100%;
        margin-bottom: 20px;
    }    
    .call-to-action-img img {
        margin-top: 0;
        width: 100%;
        height: auto;
    }    
    .call-to-action-img {
        width: 200px;
    }
}
@media screen and (max-width: 575px) {
    .call-to-action-content {
        padding: 30px;
    }
}
@media screen and (max-width: 400px) {
    .call-to-action-content {
        padding: 30px 15px;
    }
}
/* Responsive End */
/*========== Call To Action CSS End ==========*/

/*========== Courses CSS Start ==========*/
.main-courses {
    padding: var(--section_space) 0;
}

.courses-list .row {
    row-gap: 1.5rem;
}

.courses-box {
    position: relative;
    background: var(--white_color);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.courses-img {
    width: 100%;
    aspect-ratio: 1/0.6;
    border-radius: 15px;
}

.courses-price-box {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0 30px;
    margin-top: -25px;
}

.courses-price {
    padding: 10px 20px;
    background: var(--white_color);
    display: inline-flex;
    align-items: flex-end;
    gap: 5px;
    color: var(--dark_color);
    font-weight: 500;
    border-radius: 100px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.courses-price .h3-title {
    color: var(--primary_color);
}

.courses-price span {
    margin-top: -5px;
}

.courses-box-content {
    margin: 20px 0 30px;
}

.courses-box-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.courses-box-content ul li {
    position: relative;
    padding-left: 28px;
    color: var(--dark_color);
}

.courses-box-content ul li:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 0;
    width: 20px;
    aspect-ratio: 1/1;
    background-image: url('../images/check-icon.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.courses-box-btn {
    margin-top: auto;
}

.courses-box-btn .whatsapp-btn {
    flex-shrink: 0;
}

.courses-btn {
    margin-top: 40px;
    text-align: center;
}

.courses-box-btn {
    row-gap: 10px;
}

.courses-box-btn h6 {
    width: 100%;
    margin-bottom: 0;
}

/* Responsive Start */
@media screen and (max-width: 575px) {
    .courses-box-content ul {
        grid-template-columns: repeat(1,1fr);
    }
}
@media screen and (max-width: 400px) {
    .courses-box {
        padding: 15px;
    }
    .courses-box-btn {
        gap: 15px;
    }
    .courses-price-box {
        padding: 0 15px;
    }
}
/* Responsive End */
/*========== Courses CSS End ==========*/

/*========== Testimonial CSS Start ==========*/
.main-testimonial {
    margin: var(--section_space) 0;
}

.testimonial-img-wp {
    position: relative;
    padding-left: 40px;
}

.testimonial-img,
.testimonial-img-wp:before {
    width: 500px;
    max-width: 100%;
    aspect-ratio: 1/1;
    --testimonial_img_shape: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDg0IiBoZWlnaHQ9IjQ5NyIgdmlld0JveD0iMCAwIDQ4NCA0OTciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik00NzUuNTIxIDIwNy45NjVDNTAxLjIyMSAzMDcuNzk2IDQ2Ni42ODcgNDA1LjYyMiAzOTYuNDE0IDQ1Ni45NEMzMjYuNTQyIDUwOC4yNTkgMjIwLjkzMiA1MTIuMjY4IDEzNC4xOTUgNDU3LjM0MUM0Ny4wNTU5IDQwMi40MTQgLTIxLjIwOTQgMjg4LjE1MSA2LjA5NjcgMTg1LjkxNEMzMy4wMDEzIDg0LjA3OTIgMTU1Ljg3OSAtNS43MjgxNiAyNTkuODgzIDAuMjg1NzI1QzM2NC4yODkgNi4yOTk2MSA0NDkuODIxIDEwOC4xMzUgNDc1LjUyMSAyMDcuOTY1WiIgZmlsbD0iI0I3NkU3OSIvPgo8L3N2Zz4=');
    -webkit-mask-image: var(--testimonial_img_shape);
    mask-image: var(--testimonial_img_shape);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.testimonial-img-wp:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--secondary_color);
}

.quote-icon {
    position: absolute;
    bottom: 0;
    left: 60px;
    width: 137px;
    z-index: 1;
}

.quote-icon img {
    width: 100%;
}

.testimonial-img1,
.testimonial-img2 {
    position: absolute;
    width: 110px;
    aspect-ratio: 1/1;
    border: 5px solid var(--white_color);
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-img1 {
    right: 60px;
    bottom: 60px;
    animation: movedelement 5s linear infinite;
}

.testimonial-img2 {
    right: 0;
    top: 0;
    animation: movedelement2 10s linear infinite;
}

.testimonial-slider {
    margin-left: 40px;
}

.star-rating-wp {
    margin-bottom: 20px;
}

.star-rating {
    --font: 18px;
    --spacing: 5px;
    margin: 0;
    position: relative;
    display: inline-flex
}

.star-rating:before {
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #e5e5e5;
    letter-spacing: var(--spacing);
    font-size: var(--font)
}

.star-rating__fill {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    overflow: hidden;
    animation: fill-star 2s ease-in-out
}

.star-rating__fill:before {
    content: "\f005\f005\f005\f005\f005";
    color: var(--yellow_color);
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    letter-spacing: var(--spacing);
    font-size: var(--font)
}

.testimonial-box-content {
    margin-bottom: 20px;
}

.testimonial-slider .swiper-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
}

.testimonial-slider .swiper-navigation .swiper-button {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    margin: 0;
    margin-top: 25px;
    width: 40px;
    font-size: 14px;
}

.testimonial-img-animation {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-logo {
    position: relative;
    z-index: 10;
}

.testimonial-logo img {
    width: 250px;
}

.testimonial-img-animation .img1 {
    position: absolute;
    top: 0;
    left: 20%;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid var(--white_color);
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    animation: movedelement 5s linear infinite;
}

.testimonial-img-animation .img2 {
    position: absolute;
    top: 0;
    left: 80%;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid var(--white_color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    animation: movedelement2 8s linear infinite;
}

.testimonial-img-animation .img3 {
    position: absolute;
    top: 60%;
    right: 0;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid var(--white_color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    animation: movedelement 10s linear infinite;
}

.testimonial-img-animation .img4 {
    position: absolute;
    bottom: 0;
    left: 45%;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid var(--white_color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    animation: movedelement2 5s linear infinite;
}

.testimonial-img-animation .img5 {
    position: absolute;
    bottom: 30%;
    left: 0;
    width: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 2px solid var(--white_color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    animation: movedelement 7s linear infinite;
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }

    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }

    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes movedelement2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(-10px, -10px);
        transform: translate(-10px, -10px);
    }

    50% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }

    75% {
        -webkit-transform: translate(-10px, 5px);
        transform: translate(-10px, 5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .testimonial-img, .testimonial-img-wp:before {
        width: 450px;
    }
    .quote-icon {
        width: 100px;
    }
    .testimonial-img1, 
    .testimonial-img2 {
        width: 90px;
    }
}
@media screen and (max-width: 1199px) {
    .testimonial-slider {
        margin-left: 0;
    }
    .testimonial-img, .testimonial-img-wp:before {
        width: 350px;
    }
    .quote-icon {
        width: 80px;
    }
    .testimonial-img1, .testimonial-img2 {
        width: 80px;
    }
    .testimonial-img-animation {
        aspect-ratio: 1 / 0.7;
    }
}
@media screen and (max-width: 991px) {
    .testimonial-img-wp {
        padding-left: 30px;
        max-width: 450px;
        margin: auto;
    }    
    .testimonial-slider {
        margin-top: 40px;
        margin-bottom: -20px;
    }    
    .testimonial-box {
        text-align: center;
    }
    .testimonial-slider .swiper-navigation {
        justify-content: center;
    }
    .testimonial-img-animation {
        max-width: 500px;
        aspect-ratio: 1 / 0.5;
        margin: auto;
    }
}
@media screen and (max-width: 575px) {
    .testimonial-img {
        width: 90%;
    }
    .testimonial-img-wp:before {
        width: 85%;
    }
    .testimonial-img1, .testimonial-img2 {
        width: 20%;
    }
    .quote-icon {
        width: 20%;
        left: 15%;
    }
    .testimonial-img1 {
        right: 10%;
        bottom: 5%;
    }
    .testimonial-img-animation {
        aspect-ratio: unset;
        height: 250px;
    }
    .testimonial-logo img {
        width: 200px;
    }
}
@media screen and (max-width: 400px) {
    .testimonial-img1, .testimonial-img2 {
        border-width: 3px;
    }
    .testimonial-img-animation {
        height: 220px;
    }
    .testimonial-logo img {
        width: 160px;
    }
    .testimonial-img-animation .img1 {
        left: 15%;
        width: 45px;
    }
    .testimonial-img-animation .img2,
    .testimonial-img-animation .img3,
    .testimonial-img-animation .img4,
    .testimonial-img-animation .img5 {
        width: 45px;
    }
}
/* Responsive End */
/*========== Testimonial CSS End ==========*/

/*========== Gallery CSS Start ==========*/
.main-gallery {
    margin: var(--section_space) 0;
}

.gallery-box {
    aspect-ratio: 1/0.7;
    border-radius: 12px;
}

.gallery-slider {
    margin-bottom: 24px;
}

.gallery-slider .swiper-wrapper,
.gallery-slider-2 .swiper-wrapper {
    transition-timing-function: linear;
}

/* Responsive Start */
@media screen and (max-width: 400px) {
    .gallery-slider {
        margin-bottom: 15px;
    }
}
/* Responsive End */
/*========== Gallery CSS End ==========*/

/*========== Footer CSS Start ==========*/
.site-footer {
    position: relative;
    background: var(--bg_color);
}

.footer-shape1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 252px;
    opacity: 0.1;
    z-index: 1;
}

.footer-shape2 {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.footer-top {
    padding: 80px 0;
}

.footer-top-wp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-info {
    text-align: center;
    max-width: 860px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 230px;
}

.footer-menu {
    padding: 30px 0;
    border-top: 1px dashed rgba(0,0,0,0.3);
    border-bottom: 1px dashed rgba(0,0,0,0.3);
    width: 100%;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 80px;
}

.footer-menu ul li a {
    font-weight: 500;
    color: var(--dark_color);
}

.footer-menu ul li a:hover {
    color: var(--primary_color);
}

.footer-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.footer-contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact-box .icon {
    width: 50px;
    aspect-ratio: 1/1;
    background: var(--primary_color);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white_color);
    font-size: 20px;
    transition: 0.3s;
}

.footer-contact-box .text,
.footer-contact-box .text a {
    color: var(--common_color);
    transition: 0.3s;
}

.footer-contact-box .text a:hover {
    color: var(--primary_color);
}

.footer-contact-box.address {
    max-width: 330px;
}

.footer-bottom {
    background: var(--secondary_color);
    position: relative;
    padding: 13px 0;
    z-index: 1;
}

.footer-bottom-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-box p,
.footer-bottom-box a {
    color: var(--white_color);
}

.footer-bottom-box a:hover {
    color: var(--white_color);
    text-decoration: underline !important;
}

.footer-bottom-box i {
    color: var(--primary_color);
}

/* Responsive Start */
@media screen and (max-width: 1399px) {
    .footer-contact {
        gap: 20px;
    }
    .footer-contact-box {
        gap: 10px;
    }
    .footer-contact-box .icon {
        width: 45px;
    }
}
@media screen and (max-width: 1199px) {
    .footer-top {
        padding: 80px 0 60px 0;
    }
    .footer-menu {
        padding: 20px 0;
    }
    .footer-contact {
        flex-wrap: wrap;
        gap: 30px;
    }
}
@media screen and (max-width: 991px) {
    .footer-logo img {
        width: 200px;
    }
    .footer-menu {
        padding: 15px 0;
    }
    .footer-menu ul {
        gap: 10px 40px;
    }
    .footer-bottom {
        padding: 30px 0;
    }
    .footer-bottom-box {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .footer-contact-box.address {
        max-width: 300px;
    }    
}
@media screen and (max-width: 767px) {
    .footer-top {
        padding: 60px 0 40px 0;
    }
    .footer-contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }    
}
@media screen and (max-width: 575px) {
    .footer-contact-box {
        flex-direction: column;
        text-align: center;
        height: 100%;
    }
    .footer-contact {
        gap: 20px;
        font-size: 15px;
    } 
    .footer-shape1 {
        width: 130px;
    }   
}
@media screen and (max-width: 400px) {
    .footer-logo {
        margin-bottom: 20px;
    }
    .footer-logo img {
        width: 160px;
    }
    .footer-top-wp {
        gap: 30px;
    }
    .footer-menu ul {
        gap: 10px 30px;
    }
    .footer-contact {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-contact-box.address {
        max-width: 100%;
    }
}
/* Responsive End */
/*========== Footer CSS End ==========*/

/*========== Scroll To Top CSS Start ==========*/
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary_color);
    display: none;
    font-size: 18px;
    line-height: 40px;
    color: var(--white_color);
    border-radius: 4px;
    border: 1px solid var(--white_color);
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
    z-index: 80;
}

.scroll-to-top:hover {
    color: var(--white_color);
    background: var(--secondary_color);
}

/* Responsive Start */
@media screen and (max-width: 575px) {
    .scroll-to-top {
        bottom: 15px;
    }   
}
/* Responsive End */
/*========== Scroll To Top CSS End ==========*/

/*========== About US Page CSS Start ==========*/
/* Vision Mission CSS Start */
.main-vision-mission {
    margin: var(--section_space) 0;
}

.vision-mission-box {
    padding: 0 50px 50px 50px;
    text-align: center;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-radius: 12px;
    --icon-size: 120px;
    margin-top: calc(var(--icon-size) / 2);
    position: relative;
    top: 0;
    transition: 0.3s;
}

.vision-mission-box:hover {
    background: var(--white_color);
    top: -10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.vision-mission-box .icon {
    width: var(--icon-size);
    aspect-ratio: 1/1;
    background: var(--white_color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    position: relative;
    top: calc(var(--icon-size) * -0.5);
    margin-inline: auto;
    margin-bottom: calc(var(--icon-size) * -0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-mission-box .icon img {
    width: auto;
    height: auto;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    object-position: center;
}

.vision-mission-box p {
    font-size: 18px;
}

/* Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .vision-mission-box {
        padding: 0 30px 30px 30px;
    }
}
@media screen and (max-width: 1199px) {
    .vision-mission-box {
        --icon-size: 100px;
    }
    .vision-mission-box p {
        font-size: 16px;
    }
}
@media screen and (max-width: 991px) {
    .main-vision-mission .row {
        row-gap: 40px;
    }
}
@media screen and (max-width: 575px) {
    .vision-mission-box p {
        font-size: 15px;
    }
}
@media screen and (max-width: 400px) {
    .vision-mission-box {
        --icon-size: 80px;
        padding: 0 15px 20px 15px;
    }
}
/* Responsive CSS End */
/* Vision Mission CSS End */

/* Message From Founder CSS Start */
.main-founder-message {
    margin-top: var(--section_space);
}

.founder-img {
    text-align: center;
    position: relative;
}

.founder-img:before,
.founder-img:after {
    content: '';
    position: absolute;
    top: 15%;
    left: 35%;
    transform: rotate(-40deg) translate(-50%, -50%);
    width: 100%;
    height: 10%;
    background: linear-gradient(45deg, var(--primary_color), transparent);
    border-radius: 100px;
    z-index: 0;
}

.founder-img:after {
    top: 35%;
    left: 40%;
    background: linear-gradient(-45deg, var(--primary_color), transparent);
}

.founder-img img {
    width: auto;
    height: 750px;
    position: relative;
    z-index: 1;
}

.founder-message-box {
    margin: 80px 0;
}

.founder-message-box .h2-title {
    margin-bottom: 40px;
}

/* Responsive CSS Start */
@media screen and (max-width: 1399px) {
    .founder-img img {
        height: 700px;
    }
}
@media screen and (max-width: 1199px) {
    .founder-img img {
        height: 650px;
    }
    .founder-message-box .h2-title {
        margin-bottom: 30px;
    }    
}
@media screen and (max-width: 991px) {
    .founder-message-box {
        margin: 0;
    }
    .founder-img {
        margin-top: 40px;
        max-width: 400px;
        margin-inline: auto;
    }    
    .founder-img img {
        height: auto;
        width: 70%;
    }
}
/* Responsive CSS End */
/* Message From Founder CSS End */
/*========== About US Page CSS End ==========*/

/*========== Services Page CSS Start ==========*/
/* Service Details CSS Start */
.main-page-services {
    margin: var(--section_space) 0;
}

.services-sidebar {
    width: 100%;
    padding: 30px;
    background: var(--bg_color);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}

.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-tabs .service-tab-link {
    width: 100%;
    padding: 8px 20px 8px 8px;
    background: var(--white_color);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark_color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.services-tabs .service-tab-link:hover, 
.services-tabs .service-tab-link.active {
    background: var(--primary_color);
    color: var(--white_color);
}

.service-tab-link-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-tab-link-title img {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.services-tabs .service-tab-link:hover .service-tab-link-title img, 
.services-tabs .service-tab-link.active .service-tab-link-title img {
    border-color: var(--white_color);
}

.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
}

/* .service-tab-content-box {
    padding-left: 36px;
} */

.service-tab-content-box > img {
    border-radius: 12px;
    margin-bottom: 20px;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.service-tab-content-box .h3-title:not(:first-child) {
    margin-top: 30px;
}

.service-tab-content-box .h3-title {
    margin-bottom: 20px;
}

.service-tab-content-box ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 15px 0 30px 0;
}

.service-tab-content-box ul li {
    position: relative;
    padding-left: 28px;
    color: var(--dark_color);
}

.service-tab-content-box ul li:before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    left: 0;
    width: 20px;
    aspect-ratio: 1 / 1;
    background-image: url(../images/check-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service-offer {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    row-gap: 24px;
}

.service-offer-box {
    padding: 0 30px 30px;
    background: var(--white_color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    top: 0;
    transition: 0.3s;
    text-align: center;
    margin-top: 50px;
    height: calc(100% - 50px);
}

.service-offer-box:hover {
    top: -5px;
}

.service-offer-box .icon {
    width: 100px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    margin-top: -50px;
    border-radius: 50%;
    background-color: var(--white_color);
    border: 2px solid var(--primary_color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.service-offer-box .text .h4-title {
    margin-bottom: 10px;
}

.service-products-list-box {
    text-align: center;
}

.service-products-list .row {
    row-gap: 30px;
}

.service-product-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-product-text {
    padding: 10px 20px;
    max-width: 100%;
    background: rgba(255,255,255,0.8);
    display: inline-block;
    border-radius: 8px;
    position: relative;
    top: -23px;
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: -23px;
}

.service-tab-content-box .gallery-slider {
    position: relative;
    left: 50%;
    transform: translate(-50%);
    width: calc(100vw + 1px);
    margin-bottom: 0;
    margin-top: 60px;
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.brands-img {
    width: 100%;
    height: 100px;
    background: var(--white_color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.brands-img img {
    width: auto;
    max-height: 100%;
    height: auto;
    max-width: 100%;
}

/* Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .service-tab-content-box {
        padding-left: 0;
    }
    .services-sidebar {
        padding: 30px 20px;
    }
    .service-tab-content-box > img {
        height: 400px;
    }
}
@media screen and (max-width: 991px) {
    .services-sidebar {
        padding: 30px;
        margin-bottom: 40px;
    }
    /* .service-offer {
        grid-template-columns: repeat(2, 1fr);
    } */
    .service-tab-content-box .gallery-slider {
        margin-top: 30px;
    }
    .brands-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 767px) {
    /* .service-offer {
        grid-template-columns: repeat(1, 1fr);
    } */
    .service-tab-content-box > img {
        height: 320px;
    }
    .brands-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 400px) {
    .services-sidebar {
        padding: 30px 15px;
    }
    .service-tab-link-title img {
        width: 50px;
        height: 50px;
    }
    .services-tabs .service-tab-link {
        font-size: 16px;
    }
    .service-offer-box {
        padding: 0 20px 20px;
        margin-top: 40px;
    }
    .service-offer-box .icon {
        width: 80px;
        margin-top: -40px;
    }
    .service-tab-content-box > img {
        height: 280px;
    }
    .brands-list {
        gap: 10px;
    }
}
/* Responsive CSS End */
/* Service Details CSS End */

/* Service Booking CSS Start */
.main-service-booking {
    margin: var(--section_space) 0;
}

.service-booking-form {
    margin: auto;
    max-width: 1000px;
    padding: 50px;
    background: rgba(255,255,255,0.5);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
}

/* Responsive CSS Start */
@media screen and (max-width: 767px) {
    .service-booking-form {
        padding: 30px;
    }
}
@media screen and (max-width: 400px) {
    .service-booking-form {
        padding: 30px 15px;
    }
}
/* Responsive CSS End */
/* Service Booking CSS End */
/*========== Services Page CSS End ==========*/

/*========== Contact Us Page CSS Start ==========*/
/* Google Map CSS Start */
.google-map {
    margin: var(--section_space) 0;
}

.map-box iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.38581;
    border-radius: 20px;
}

/* Responsive CSS Start */
@media screen and (max-width: 991px) {
    .map-box iframe {
        aspect-ratio: 1/0.5;
    }
}
@media screen and (max-width: 767px) {
    .map-box iframe {
        border-radius: 10px;
    }
}
/* Responsive CSS End */
/* Google Map CSS End */

/* Get In Touch CSS Start */
.main-get-in-touch {
    margin: var(--section_space) 0;
}

.get-in-touch-content .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    margin-top: 50px;
}

.contact-form {
    padding: 50px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

/* Responsive CSS Start */
@media screen and (max-width: 1199px) {
    .contact-form {
        padding: 35px;
    }
}
@media screen and (max-width: 991px) {
    .contact-form {
        margin-top: 60px;
    }
}
@media screen and (max-width: 767px) {
    .get-in-touch-content .footer-contact {
        margin-top: 40px;
    }
    .contact-form {
        padding: 30px;
        margin-top: 40px;
    }
}
@media screen and (max-width: 575px) {
    .get-in-touch-content {
        text-align: center;
    }
    .get-in-touch-content .sub-title {
        justify-content: center;
    }
}
@media screen and (max-width: 400px) {
    .contact-form {
        padding: 30px 15px;
    }
}
/* Responsive CSS End */
/* Get In Touch CSS End */
/*========== Contact Us Page CSS End ==========*/

/*========== Courses Page CSS Start ==========*/
.main-beauty-grooming {
    margin: var(--section_space) 0;
}

.beauty-grooming-content {
    max-width: 1020px;
    margin: auto;
}

.beauty-grooming-content .h2-title {
    margin-bottom: 2.5rem;
}

.beauty-grooming-content p {
    margin-bottom: 1.5rem;
}

.beauty-grooming-img-wp {
    margin-top: 40px;
}

.beauty-grooming-img-wp .row {
    row-gap: 30px;
}

.beauty-grooming-img {
    width: 100%;
    aspect-ratio: 1/0.8;
    border-radius: 12px;
}

.page-main-courses {
    margin: var(--section_space) 0;
}

.why-learn .why-choose-content .h2-title {
    margin-bottom: 2.5rem;
}

.why-learn .why-choose-btn {
    margin-top: 40px;
}

.why-learn-video video {
    width: 100%;
    aspect-ratio: 1/0.56;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.main-course-faq {
    padding: var(--section_space) 0;
}

.faq-accordion {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-accordion-box {
    background: var(--white_color);
    box-shadow: 0 4px 50px rgba(0,0,0,0.1);
    border-radius: 14px;
    overflow: hidden;
}

.faq-accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 30px;
    cursor: pointer;
    border-radius: 15px;
    transition: 0.3s;
}

.faq-accordion-title .h4-title {
    margin-bottom: 0;
    transition: 0.3s;
}

.faq-accordion-title .icon {
    width: 30px;
    height: 30px;
    display: block;
    background: var(--primary_color);
    border-radius: 50%;
    transition: 0.3s;
    position: relative;
    flex-shrink: 0;
}

.faq-accordion-title .icon:before, .faq-accordion-title .icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 2px;
    height: 15px;
    background: var( --white_color);
    transition: 0.3s;
}

.faq-accordion-title .icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion-title:hover .h4-title {
    color: var(--primary_color);
}

.faq-accordion-title.active-faq {
    background: var(--primary_color);
}

.faq-accordion-title.active-faq .h4-title {
    color: var(--white_color);
}

.faq-accordion-title.active-faq .icon {
    background: var(--white_color);
}

.faq-accordion-title.active-faq .icon:before, .faq-accordion-title.active-faq .icon:after {
    background: var(--primary_color);
}

.faq-accordion-content {
    padding: 30px;
}

@media screen and (max-width: 991px) {
    .why-learn-video {
        margin-top: 40px;
    }
}

@media screen and (max-width: 400px) {
    .faq-accordion-title,
    .faq-accordion-content {
        padding: 15px;
    }
}
/*========== Courses Page CSS End ==========*/

/*========== Portfolio Page CSS Start ==========*/
.portfolio-cta {
    margin-bottom: var(--section_space);
}
/*========== Portfolio Page CSS End ==========*/

/*========== Founder Page CSS Start ==========*/
.main-founder-info {
    margin: var(--section_space) 0;
}

.founder-info-img {
    width: 100%;
    aspect-ratio: 1/1.3;
    border-radius: 15px;
}

.founder-info-box {
    padding-left: 46px;
}

.founder-info-box .h2-title {
    margin-bottom: 20px;
}

.founder-info-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.founder-social {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.founder-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    aspect-ratio: 1/1;
    border: 1px solid var(--primary_color);
    border-radius: 50%;
    color: var(--primary_color);
    transition: 0.3s;
}

.founder-social a:hover {
    background: var(--primary_color);
    color: var(--white_color);
}

.main-about-me {
    margin: var(--section_space) 0;
}

.about-me-content strong {
    color: var(--dark_color);
}

.about-me-content .why-choose-list ul {
    column-count: unset;
}

.main-my-expertise {
    background: var(--bg_color);
    padding: var(--section_space) 0;
}

.my-expertise-list .row {
    row-gap: 24px;
}

.my-expertise-box {
    position: relative;
    padding: 20px;
    background: var(--white_color);
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.my-expertise-img {
    width: 100%;
    aspect-ratio: 1/0.8;
    border-radius: 12px;
    margin-bottom: 15px;
}

.my-expertise-box .h4-title {
    margin-bottom: 10px;
}

.my-expertise-box .link-btn {
    margin-top: auto;
}

.main-gallery.founder-gallery {
    margin: 0;
    padding: var(--section_space) 0;
    background: var(--bg_color);
}

.main-call-to-action.founder-cta {
    margin-bottom: var(--section_space);
}

.back-to-website {
    margin-bottom: 30px;
}

.achievement-list {
    row-gap: 24px;
}

.achievements-img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
}

ul.roadmap {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
    position: relative;
    padding-block: 20px;
}

ul.roadmap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary_color);
    border-radius: 20px;
}

ul.roadmap li {
    position: relative;
}

ul.roadmap li:before {
    content: '';
    position: absolute;
    top: 4px;
    left: -36px;
    width: 15px;
    aspect-ratio: 1/1;
    background: var(--primary_color);
    border-radius: 50%;
}

ul.roadmap li:after {
    content: '';
    position: absolute;
    top: 10px;
    left: -27px;
    width: 20px;
    height: 3px;
    background: var(--primary_color);
    border-radius: 10px;
}

@media screen and (max-width: 1399px) {
    .founder-info-box {
        padding-left: 26px;
    }
}

@media screen and (max-width: 1199px) {
    .founder-info-box {
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .founder-info-box {
        text-align: center;
    }
    .founder-info-box .sub-title {
        justify-content: center;
    }
    .founder-social {
        justify-content: center;
        margin-top: 30px;
    }
    .founder-info-img {
        margin-top: 40px;
        max-width: 300px;
        margin-inline: auto;
    }
}

@media screen and (max-width: 575px) {
    .main-founder-info .banner-call {
        flex-direction: column;
        text-align: center;
    }
}
/*========== Founder Page CSS End ==========*/