:root {
    --primary-color: #0030ff;
    --secondary-color: #ff9902;
    --text-color: #222;
    --text-light: #777;
    --white: #fff;
    --background-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md,
.col-lg-6 {
    padding: 0 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md {
    flex: 1;
    min-width: 250px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.main_menu {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand img {
    height: 75px;
    filter: brightness(0) invert(0);
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.banner-area {
    min-height: 640px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-area .banner-bg {
    width: 100%;
    height: 640px;
    background-color: #b0b0b0;
    background-image: url("../canvas/quiet_leader_business_portrait_4.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-area .banner-text {
    padding: 0 47% 0 5%;
}

.banner-area .banner-text h1 {
    color: var(--text-color);
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-area .banner-text h1 span {
    color: var(--secondary-color);
}

.banner-area .banner-text p {
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
}

.secondary-btn {
    color: var(--text-color);
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all .5s;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid var(--secondary-color);
    background: transparent;
}

.secondary-btn:hover {
    color: var(--white);
    background: var(--secondary-color);
}

.secondary-btn:hover span:before {
    margin-left: 14px;
    color: var(--white);
}

.secondary-btn span:before {
    content: "→";
    font-size: 14px;
    margin-left: 10px;
    transition: .2s;
}

.banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.1) 0%, rgba(255, 153, 2, 0.1) 100%);
    z-index: 1;
}

.banner-text {
    position: relative;
    z-index: 2;
}

.banner-bg {
    position: relative;
    z-index: 0;
}

.navbar {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.secondary-btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 153, 2, 0.2);
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.secondary-btn:hover::before {
    left: 100%;
}

.ftco-footer-widget {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.ftco-footer-widget:hover {
    transform: translateY(-5px);
}

.ftco-footer-social li a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ftco-footer-social li a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.block-23 ul li {
    transition: transform 0.2s ease;
}

.block-23 ul li:hover {
    transform: translateX(5px);
}

.about_section {
    padding-bottom: 210px;
    padding-top: 150px;
    background-image: linear-gradient(135deg, rgba(0, 48, 255, 0.05) 0%, rgba(255, 153, 2, 0.05) 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .about_section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about_section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .about_section {
        padding-top: 100px;
        padding-bottom: 120px;
    }
}

.about_section .about_content p {
    font-size: 16px;
    line-height: 28px;
    margin-top: 0;
    margin-bottom: 37px;
    color: var(--text-light);
}

.about_section .about_images2 {
    position: relative;
}

@media (min-width: 768px) and (max-width: 991px) {
    .about_section .about_images2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about_section .about_images2 {
        margin-bottom: 40px;
    }
}

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

.about_section .about_images2 .image_1 img {
    width: 100%;
}

.about_section .about_images2 .image_2 {
    margin-top: 0px;
    margin-left: 0px;
    position: absolute;
    right: -30px;
    bottom: -60px;
}

@media (max-width: 767px) {
    .about_section .about_images2 .image_2 {
        left: auto;
        bottom: 0;
        top: auto;
        right: 0;
        text-align: right;
        bottom: -30px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about_section .about_images2 .image_2 {
        left: auto;
        bottom: 0;
        top: auto;
        right: -10px;
        text-align: right;
        bottom: -30px;
    }
}

.about_section .about_images2 .image_2 img {
    width: 100%;
}

@media (max-width: 767px) {
    .about_section .about_images2 .image_2 img {
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .about_section .about_images2 .image_2 img {
        width: 50%;
    }
}

.section_header span {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 18px;
    display: block;
}

.section_header h3 {
    font-size: 50px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section_header h3 {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section_header h3 {
        font-size: 36px;
        line-height: 42px;
    }
}

.boxed-button5 {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    border: 1px solid transparent;
    text-align: center;
    color: var(--white) !important;
    text-transform: capitalize;
    transition: 0.5s;
    border-radius: 50px;
    padding: 22px 44px;
    cursor: pointer;
    background: transparent;
    color: var(--secondary-color) !important;
    border: 1px solid var(--secondary-color);
    text-decoration: none;
}

.boxed-button5:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    text-decoration: none;
}

@media (max-width: 767px) {
    .boxed-button5 {
        padding: 12px 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .boxed-button5 {
        padding: 12px 24px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .boxed-button5 {
        padding: 16px 32px;
    }
}

.cards-section {
    padding: 125px 0;
    background: var(--white);
}

.main_title {
    text-align: center;
    margin-bottom: 80px;
}

.main_title h2 {
    font-family: "Poppins", sans-serif;
    font-size: 46px;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main_title p {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    line-height: 26px;
    color: var(--text-color);
    margin-bottom: 0px;
    max-width: 720px;
    margin: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-item {
    box-shadow: 0px 12px 32px 0px rgba(153, 153, 153, 0.11);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 35px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 18px 40px 0px rgba(153, 153, 153, 0.15);
}

.card-img {
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.card-item:hover .card-img img {
    transform: scale(1.08);
}

.card-body {
    padding: 28px 32px;
    background: var(--white);
}

.card-body h4 {
    font-size: 21px;
    color: var(--text-color);
    margin-bottom: 18px;
    transition: all 0.3s ease;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    line-height: 1.4;
}

.card-body p {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 26px;
    color: var(--text-light);
    font-family: "Open Sans", sans-serif;
}

.card-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.card-btn:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.card-btn:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.card-btn:hover:after {
    width: 100%;
}

.chooseus-section {
    background: #1a1a1a;
    padding-top: 95px;
    padding-bottom: 55px;
    position: relative;
}

.chooseus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.8) 0%, rgba(255, 153, 2, 0.8) 100%);
    z-index: 1;
}

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

.chooseus-section.schedule-page .section-title {
    text-align: center;
}

.chooseus-section.schedule-page .choose-item {
    text-align: center;
}

.chooseus-section .section-title {
    margin-bottom: 58px;
    text-align: center;
}

.section-title h2 {
    color: #f8f8f8;
    font-size: 52px;
    font-weight: 650;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title p {
    color: #f8f8f8;
    margin-bottom: 0;
    font-size: 16px;
}

.choose-item {
    margin-bottom: 45px;
    text-align: center;
    transition: transform 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-10px);
}

.choose-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.choose-item h5 {
    font-size: 22px;
    color: #f8f8f8;
    font-weight: 550;
    text-transform: uppercase;
    margin-top: 22px;
    margin-bottom: 28px;
}

.choose-item p {
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.6;
}

.spad {
    padding-top: 110px;
    padding-bottom: 110px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.align-items-center {
    align-items: center;
}

.offset-lg-1 {
    margin-left: 8.333333%;
}

.banner-bg-about {
    width: 100%;
    height: 640px;
    background-color: #b0b0b0;
    background-image: url("../canvas/introvert_leadership_coaching_1.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.site-section {
    padding: 2.7em 0;
}

@media (min-width: 768px) {
    .site-section {
        padding: 5.2em 0;
    }
}

.section-title-underline {
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.section-title-underline span {
    display: inline-block;
    border-bottom: 5px solid var(--secondary-color);
    padding-bottom: 10px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.text-content p {
    margin-bottom: 1.6rem;
    line-height: 1.9;
    color: var(--text-light);
    font-size: 16px;
}

.justify-content-center {
    justify-content: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.bg-black {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%) !important;
    position: relative;
}

.bg-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.1) 0%, rgba(255, 153, 2, 0.1) 100%);
    z-index: 1;
}

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

.about-profile p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.text-white {
    color: #fff !important;
}

.quote-style-29281 {
    border-left: 10px solid var(--secondary-color);
    padding-left: 30px;
    margin: 30px 0;
    background: rgba(255, 153, 2, 0.05);
    padding: 25px 30px;
    border-radius: 5px;
}

.quote-style-29281 p {
    color: #fff !important;
    font-style: italic;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

.ml-auto {
    margin-left: auto;
}

.content-image-section {
    padding: 85px 0;
    background-color: var(--background-light);
}

.content-image-section .main-title {
    font-size: 44px;
    margin-bottom: 35px;
    color: var(--text-color);
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.image-text-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    align-items: center;
}

.text-block {
    flex: 1;
    padding-right: 35px;
}

.text-block p {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}

.embed-container {
    flex: 1;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.embed-container-21by9 {
    padding-top: 44.85%;
}

.embed-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.embed-container:hover .embed-item {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .content-image-section {
        padding: 55px 0;
    }
    
    .image-text-wrapper {
        flex-direction: column;
    }
    
    .text-block {
        padding-right: 0;
        margin-bottom: 35px;
    }
    
    .content-image-section .main-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}

.gallery_area {
    padding: 120px 0 90px;
    background: var(--white);
}

.single-gallery {
    position: relative;
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.single-gallery:hover {
    transform: translateY(-5px);
}

.single-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.single-gallery .content {
    max-height: 36px;
    max-width: 36px;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 3;
}

.single-gallery .content i {
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0;
    transition: all 0.4s ease;
}

.single-gallery .overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 0.4s ease;
    z-index: 2;
}

.single-gallery:hover {
    cursor: pointer;
}

.single-gallery:hover .overlay {
    background: rgba(0, 48, 255, 0.8);
}

.single-gallery:hover .content {
    background: transparent;
    top: 50%;
}

.single-gallery:hover .content i {
    opacity: 1;
}

.single-gallery:hover img {
    transform: scale(1.1);
}

.gallery_area .main_title {
    text-align: center;
    margin-bottom: 80px;
}

.gallery_area .main_title h2 {
    font-size: 72px;
    color: rgba(0, 48, 255, 0.1);
    opacity: 0.3;
    margin: 0;
    line-height: 60px;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
}

.gallery_area .main_title h1 {
    color: var(--text-color);
    margin-top: -40px;
    font-size: 48px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.gallery_area .main_title p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-light);
    margin-bottom: 0px;
    max-width: 570px;
    margin: auto;
}

.section_gap {
    padding: 120px 0;
}

@media (max-width: 767px) {
    .section_gap {
        padding: 60px 0;
    }
    
    .gallery_area {
        padding: 60px 0 40px;
    }
    
    .gallery_area .main_title {
        margin-bottom: 30px;
    }
    
    .gallery_area .main_title h2 {
        font-size: 40px;
    }
    
    .gallery_area .main_title h1 {
        font-size: 28px;
    }
    
    .content-image-section .main-title {
        font-size: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .gallery_area {
        padding: 80px 0 50px;
    }
    
    .gallery_area .main_title {
        margin-bottom: 50px;
    }
    
    .gallery_area .main_title h1 {
        font-size: 36px;
    }
}

.fa-search-plus:before {
    content: "🔍";
    font-style: normal;
    font-size: 24px;
}

.contact-wrapper {
    padding: 110px 0;
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.05) 0%, rgba(255, 153, 2, 0.05) 100%);
    position: relative;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../canvas/reserved_executive_strategy_session_4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

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

@media (max-width: 991px) {
    .contact-wrapper {
        padding: 75px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 85px;
}

@media (max-width: 991px) {
    .section-header {
        margin-bottom: 42px;
    }
}

.section-header h4 {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .section-header h4 {
        margin-bottom: 12px;
        font-size: 14px;
    }
}

.section-header h2 {
    font-size: 44px;
    margin-top: 12px;
    margin-bottom: 22px;
    color: var(--text-color);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
    .section-header h2 {
        margin-bottom: 6px;
        margin-top: 0px;
        font-size: 32px;
    }
}

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

.contact_details {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact_details .detail_item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact_details .detail_item:hover {
    transform: translateX(10px);
}

.contact_details .detail_item:last-child {
    margin-bottom: 0;
}

.contact_details .detail_item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 24px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 600;
    width: 45px;
    height: 45px;
    background: rgba(255, 153, 2, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact_details .detail_item:hover i {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact_details .detail_item h6 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
}

.contact_details .detail_item h6 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_details .detail_item h6 a:hover {
    color: var(--secondary-color);
}

.contact_details .detail_item p {
    font-size: 15px;
    line-height: 24px;
    padding: 3px 0px;
    color: var(--text-light);
    margin: 0;
}

.contact_form_main {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact_form_main .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact_form_main .form-group .form-control {
    height: 55px;
    line-height: 55px;
    color: var(--text-color);
    border: 2px solid #e8e8e8;
    font-family: "Open Sans", sans-serif;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact_form_main .form-group .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 2, 0.1);
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.contact_form_main .form-group .form-control::placeholder {
    color: #aaa;
    font-size: 14px;
    opacity: 1;
}

.contact_form_main .form-group textarea {
    resize: none;
    min-height: 150px;
    padding-top: 15px;
    line-height: 1.6;
}

.contact_form_main .form-group textarea.form-control {
    height: 145px;
}

.contact_form_main .submit-button {
    margin-top: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.submit-button {
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
    padding: 16px 45px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    outline: none !important;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 2, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .contact_form_main {
        padding: 30px 25px;
        margin-top: 30px;
    }
    
    .contact_details {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .contact_form_main {
        padding: 25px 20px;
    }
    
    .contact_details {
        padding: 25px 20px;
    }
    
    .contact_details .detail_item {
        padding-left: 50px;
        margin-bottom: 25px;
    }
    
    .contact_details .detail_item i {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.thankyou-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.03) 0%, rgba(255, 153, 2, 0.03) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.thankyou-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('canvas/calm_confident_professional_2.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 1;
}

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

.thankyou-content {
    background: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s ease-out 0.3s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.checkmark {
    width: 40px;
    height: 20px;
    border: 4px solid var(--white);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: checkmarkDraw 0.4s ease-out 0.8s both;
}

@keyframes checkmarkDraw {
    from {
        width: 0;
        height: 0;
    }
    to {
        width: 40px;
        height: 20px;
    }
}

.thankyou-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.thankyou-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-family: "Poppins", sans-serif;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.thankyou-message {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.next-steps {
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.next-steps h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-item {
    background: var(--background-light);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 2, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-item:hover::before {
    left: 100%;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: "Poppins", sans-serif;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.additional-info {
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.05) 0%, rgba(255, 153, 2, 0.05) 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.additional-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.additional-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.9s both;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 48, 255, 0.3);
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 48, 255, 0.4);
    color: var(--white);
    text-decoration: none;
}

.secondary-btn-outline {
    background: transparent;
    color: var(--secondary-color);
    padding: 16px 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.secondary-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.secondary-btn-outline:hover::before {
    left: 0;
}

.secondary-btn-outline:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 2, 0.3);
    text-decoration: none;
}

@media (max-width: 991px) {
    .thankyou-section {
        padding: 80px 0;
    }
    
    .thankyou-content {
        padding: 40px 30px;
    }
    
    .thankyou-title {
        font-size: 36px;
    }
    
    .thankyou-subtitle {
        font-size: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .thankyou-content {
        padding: 30px 20px;
    }
    
    .thankyou-title {
        font-size: 28px;
    }
    
    .thankyou-subtitle {
        font-size: 18px;
    }
    
    .thankyou-message {
        font-size: 16px;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 25px;
        height: 12px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .additional-info {
        padding: 25px 20px;
    }
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.align-self-center {
    align-self: center;
}

.ftco-footer {
    font-size: 17px;
    padding: 7.5em 0;
    z-index: 0;
    position: relative;
    background-image: url("../canvas/introspective_leadership_style_5.webp");
    background-size: cover;
    background-position: center;
}

.ftco-footer .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .85;
    background: var(--primary-color);
}

.ftco-footer .ftco-footer-widget h2 {
    font-weight: normal;
    color: var(--white);
    margin-bottom: 22px;
    font-size: 25px;
    font-weight: 720;
}

.ftco-footer .ftco-footer-widget ul li a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ftco-footer .ftco-footer-widget ul li a:hover {
    color: var(--white);
}

.ftco-footer .ftco-footer-widget ul li a span {
    color: var(--white);
}

.ftco-footer p {
    color: rgba(255, 255, 255, 0.75);
}

.ftco-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.ftco-footer a:hover {
    color: var(--white);
}

.ftco-footer .ftco-heading-2 {
    font-size: 18px;
    font-weight: 420;
    color: var(--white);
}

.ftco-footer-social {
    list-style: none;
}

.ftco-footer-social li {
    list-style: none;
    margin: 0 11px 0 0;
    display: inline-block;
}

.ftco-footer-social li a {
    height: 52px;
    width: 52px;
    display: block;
    float: left;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    position: relative;
    text-decoration: none;
}

.ftco-footer-social li a span {
    position: absolute;
    font-size: 27px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ftco-footer-social li a span:before {
    content: "T";
}

.ftco-footer-social li:nth-child(2) a span:before {
    content: "F";
}

.ftco-footer-social li:nth-child(3) a span:before {
    content: "I";
}

.ftco-footer-social li a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.float-md-left {
    float: left;
}

.float-lft {
    float: left;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.ml-md-5 {
    margin-left: 3rem;
}

.text-center {
    text-align: center;
}

.d-block {
    display: block;
}

.block-23 ul {
    padding: 0;
}

.block-23 ul li,
.block-23 ul li > a {
    display: table;
    line-height: 1.6;
    margin-bottom: 16px;
}

.block-23 ul li span {
    color: rgba(255, 255, 255, 0.75);
}

.block-23 ul li .icon,
.block-23 ul li .text {
    display: table-cell;
    vertical-align: top;
}

.block-23 ul li .icon {
    width: 42px;
    font-size: 19px;
    padding-top: 3px;
    color: var(--white);
}

.block-23 ul li .icon:before {
    content: "->";
}

.block-23 ul li .icon.icon-phone:before {
    content: "->";
}

.block-23 ul li .icon.icon-envelope:before {
    content: "->";
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .banner-area .banner-text {
        padding: 50px 5%;
        order: 2;
    }

    .banner-area .banner-bg {
        height: 350px;
        order: 1;
    }

    .banner-area .banner-text h1 {
        font-size: 36px;
    }

    .col-md {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .ml-md-5 {
        margin-left: 0;
    }

    .float-md-left {
        float: none;
    }
}

@media screen and (max-width: 575px) {
    .banner-area .banner-bg {
        height: 300px;
    }

    .banner-area .banner-text h1 {
        font-size: 28px;
    }

    .container {
        padding: 0 10px;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: flex;
    }

    .navbar-nav {
        display: flex;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .main_title h2 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .cards-section {
        padding: 60px 0;
    }
    
    .chooseus-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .spad {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .choose-item img {
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 576px) {
    .main_title h2 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section_header h3 {
        font-size: 24px;
    }
    
    .section_header span {
        font-size: 20px;
    }
    
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.contact-wrapper {
    padding: 110px 0;
    background: linear-gradient(135deg, rgba(0, 48, 255, 0.05) 0%, rgba(255, 153, 2, 0.05) 100%);
    position: relative;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../canvas/reserved_executive_strategy_session_4.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

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

@media (max-width: 991px) {
    .contact-wrapper {
        padding: 75px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 85px;
}

@media (max-width: 991px) {
    .section-header {
        margin-bottom: 42px;
    }
}

.section-header h4 {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .section-header h4 {
        margin-bottom: 12px;
        font-size: 14px;
    }
}

.section-header h2 {
    font-size: 44px;
    margin-top: 12px;
    margin-bottom: 22px;
    color: var(--text-color);
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
    .section-header h2 {
        margin-bottom: 6px;
        margin-top: 0px;
        font-size: 32px;
    }
}

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

.contact_details {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact_details .detail_item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 35px;
    transition: transform 0.3s ease;
}

.contact_details .detail_item:hover {
    transform: translateX(10px);
}

.contact_details .detail_item:last-child {
    margin-bottom: 0;
}

.contact_details .detail_item i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 24px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 600;
    width: 45px;
    height: 45px;
    background: rgba(255, 153, 2, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact_details .detail_item:hover i {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact_details .detail_item h6 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
    font-family: "Poppins", sans-serif;
}

.contact_details .detail_item h6 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact_details .detail_item h6 a:hover {
    color: var(--secondary-color);
}

.contact_details .detail_item p {
    font-size: 15px;
    line-height: 24px;
    padding: 3px 0px;
    color: var(--text-light);
    margin: 0;
}

.contact_form_main {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact_form_main .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact_form_main .form-group .form-control {
    height: 55px;
    line-height: 55px;
    color: var(--text-color);
    border: 2px solid #e8e8e8;
    font-family: "Open Sans", sans-serif;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.contact_form_main .form-group .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 2, 0.1);
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.contact_form_main .form-group .form-control::placeholder {
    color: #aaa;
    font-size: 14px;
    opacity: 1;
}

.contact_form_main .form-group textarea {
    resize: none;
    min-height: 150px;
    padding-top: 15px;
    line-height: 1.6;
}

.contact_form_main .form-group textarea.form-control {
    height: 145px;
}

.contact_form_main .submit-button {
    margin-top: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.submit-button {
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
    padding: 16px 45px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    outline: none !important;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 153, 2, 0.3);
}

.submit-button:active {
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .contact_form_main {
        padding: 30px 25px;
        margin-top: 30px;
    }

    .contact_details {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .contact_form_main {
        padding: 25px 20px;
    }

    .contact_details {
        padding: 25px 20px;
    }

    .contact_details .detail_item {
        padding-left: 50px;
        margin-bottom: 25px;
    }

    .contact_details .detail_item i {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Font Awesome Icons Styles */
.fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-home:before {
    content: "->";
}

.fa-phone:before {
    content: "->";
}

.fa-envelope:before {
    content: "->";
}