:root {
    --main-color: #1a2847;
    --secondary-color: #00bfe9;
    --black-color: #000;
    --navy-blue: #2c3e50;
    --gradient: linear-gradient(90deg, #00bfe9 0%, #026e82 100%);
    --white-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;

}

section {
    margin-bottom: 50px;
}

.nav_bg_design {
    background-image: url('../images/menu-bg.png');
    width: 100%;
    /* height: 50px; */
    background-size: cover;
    background-repeat: no-repeat;
}

.desktop_logo {
    height: 100px;
}

.top-header {
    margin-right: 12px;
}

.desktop_logo a {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 50px;
    padding: 10px;
}

.top_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;

}

.top_box .top_phone_box {
    background-color: var(--main-color);
    padding: 10px;
    position: relative;
    padding-left: 25px;
}

.top_box .top_email_box {
    padding: 10px;
    margin-right: 30px;
}

.top_box .top_email_box a {
    text-decoration: none;
    color: var(--main-color);
    grid-area: 6px;
}

.top_box .top_phone_box a {

    color: var(--white-color);
    text-decoration: none;
    grid-area: 6px;
}

header {
    overflow: hidden;
}

.hero-section {
    
    min-height: 90vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.button {
    background: var(--gradient);
    color: var(--white-color);
    padding: 8px 15px;
    text-decoration: none;
    outline: none;
    border: none;
    width: fit-content;
    border-radius: 50px;
}

.banner_content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.banner_content h1 {
    font-weight: 700;
    font-size: 51px;
    color: var(--white-color);
}

.banner_content h2 {
    font-weight: 700;
    font-size: 44px;
    color: var(--white-color);
}

.banner_content h3 {
    font-weight: 700;
    font-size: 35px;
    color: var(--white-color);
}

.banner_content p {
    color: var(--white-color);
}

.banner_content .button {
    margin-top: 20px;
    width: fit-content;
}

.intro-content {
    max-width: 800px;
    margin: auto;
}

.intro-content h3 {
    font-weight: 600;
    font-size: 35px;
}

.journy-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.journy-box .rounded {
    background: var(--gradient);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 50% !important;
}

.journy-box .rounded img {
    width: 100%;
    height: auto;
}

.journy-box .img-top {
    position: relative;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journy-box .img-top .number {
    position: relative;
    text-align: center;
}

.journy-box .img-top .number h1 {
    position: absolute;
    left: 45%;
    color: var(--white-color);
    right: 48%;
    font-size: 26px;
    transform: translate(-99%, 59%);
}

.arrow_top_img {
    margin-top: -30px;
}

.journy-box .img-bottom {
    position: relative;
}

.journy-box .img-bottom .number {
    position: relative;
    text-align: center;
}

.journy-box .img-bottom .number h1 {
    position: absolute;
    left: 45%;
    color: var(--white-color);
    right: 48%;
    font-size: 26px;
    transform: translate(-99%, 59%);
}

.arrow_bottom_img {
    margin-bottom: -30px;
}

.journey_content {
    text-align: center;
    margin: 10px auto;
}

.journey_content h3 {
    font-size: 22px;
    font-weight: 600;
}

.banner_bg {
    background-image: url('../images/course_bg_1.png');
    min-height: 500px;
    width: 100%;
    margin-top: -25%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;

}

.banner_bg .img-fluid {
    position: relative;
}

.banner_bg .img-fluid img {
    width: auto;
    width: 100% !important;
    width: fit-content;
    max-height: 190px;
}

.bg-gradient {
    background: var(--gradient) !important;
}

.info-content {
    padding: 30px;
}

.info-content h1 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 30px;
}

.info-content p {
    color: var(--white-color);
}

.info-box {
    text-align: center;
    margin: auto;
}

.info-box .rounded {
    background: var(--main-color);
    padding: 15px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: center;
    position: relative;
    height: 70px;
    width: 70px;
    border-radius: 50% !important;
}

.info-box .rounded img {
    width: 100%;
    height: auto;
}

.info-box p {
    font-size: 12px;
    margin-top: 15px;
}




.contact_form {
    background: var(--white);
    /* padding: 40px 50px; */
    /* border-radius: 20px; */
    /* box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08); */
    text-align: center;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.form-wrapper {
    background-image: url('../images/banner-bg.png');
    background-size: cover;
    padding: 40px !important;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row input {
    flex: 1;
    min-width: 220px;
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: 0.3s;
}

.contact_form input:focus,
.contact_form textarea:focus {
    outline: none;
    border-color: var(--main-color);
    background-color: #fff;
}

.contact_form textarea {
    border-radius: 20px;
    resize: none;
    margin-top: 20px;
}

.form-note {
    font-size: 15px;
    color: #666;
    margin: 20px 0;
    font-weight: 500;
    text-align: justify;
    text-align: left;
    line-height: 1.6;
}

.form-note a {
    color: var(--main-color);
    text-decoration: none;
}

.btn-submit {
    display: inline-block;
    background: var(--gradient);
    color: var(--white-color);
    border: none;
    padding: 14px 50px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    opacity: 0.9;
}

.learner-section {
    background-color: var(--main-color);
    /* padding: 80px 0; */
    color: #fff;
    position: relative;
}

.wrapper-learner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.learner-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.learner-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.learner-img {
    /* width: 100%; */
    max-width: 100%;
    /* max-width: 450px; */
    /* border-radius: 8px; */
    object-fit: cover;
}

.trainer-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #000;
    position: relative;
}

.trainer-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.trainer-content p {
    font-size: 16px;
    /* line-height: 1.8; */
    margin-bottom: 15px;
}

.trainer-image {
    position: relative;
}

.photo-frame {
    position: relative;
    display: inline-block;
}

.photo-frame .frame {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.photo-frame .photo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 87%;
    /* width: 260px; */
    z-index: 1;
    border-radius: 5px;
}

.signature {
    margin-top: 20px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    z-index: 111;
    left: 50%;
    transform: translateX(-50%);
}

.signature img {
    width: 100%;
    height: auto;
}

.signature p {
    font-size: 14px;
    font-weight: 500;
    rotate: -7deg;
    color: #fff;
    margin-bottom: 33px;
    margin-top: 8px;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

.question-text {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    flex: 1;
    padding-right: 20px;
}

.icon {
    font-size: 24px;
    font-weight: 300;
    color: #666;
    transition: transform 0.3s ease;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.faq-answer.active {
    max-height: 500px;
    padding-bottom: 28px;
}

.answer-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding-right: 44px;
}

.faq-item:last-child {
    border-bottom: none;
}

footer {
    background-color: var(--main-color);
    color: #fff;
    padding-top: 80px;
    margin-top: auto;
}

.footer-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 5px solid var(--main-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.icon-wrapper i {
    font-size: 40px;
    color: #fff;
}

.contact-label {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.contact-info {
    font-size: 16px;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
}

.contact-info a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.dotted-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.footer-divider {
    border: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    margin: 0 auto 30px;
    width: 90%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 30px 0;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:first-child {
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-text {
    font-size: 15px;
    margin-right: 5px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon i {
    color: #fff;
    font-size: 16px;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #00a5bb;
}

.copyright-bar {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 18px 0;
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
}


.header_menu.phone_box {
    text-decoration: none;
    background: var(--main-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 15px !important;
}

.btn-primary {
    background-color: var(--main-color) !important;
    border-radius: 10px !important;
    outline: none !important;
    border: none !important;
}
/* Contact Information Styles */
.asr-contact-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.asr-contact-col {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.asr-contact-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.asr-contact-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
    border-color: var(--main-color);
}

.asr-contact-col:hover::before {
    transform: scaleX(1);
}

.asr-contact-col i {
    font-size: 42px;
    color: var(--main-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(0, 172, 193, 0.15) 100%);
    border-radius: 50%;
    position: relative;
}

.asr-contact-col i::before {
    position: relative;
    z-index: 1;
}

.asr-contact-col i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.asr-contact-col:hover i {
    transform: scale(1.1) rotateY(360deg);
    color: white;
}

.asr-contact-col:hover i::after {
    opacity: 1;
}

.asr-contact-text-caption {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.asr-contact-col p {
    font-size: 15px;
    color: var(--main-color);
    line-height: 1.6;
    margin: 0;
}

.asr-contact-col a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.asr-contact-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

.asr-contact-col a:hover {
    color: var(--main-color);
    letter-spacing: 0.5px;
}

.asr-contact-col a:hover::after {
    width: 100%;
}

.asr-contact-col .address {
    color: #5a6c7d;
    max-width: 280px;
    margin: 0 auto;
}

.asr-contact-col span {
    color: #5a6c7d;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .asr-contact-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .asr-contact-col {
        padding: 25px 15px;
    }

    .asr-contact-col i {
        font-size: 38px;
        width: 70px;
        height: 70px;
    }

    .asr-contact-text-caption {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .asr-contact-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .asr-contact-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .asr-contact-col {
        padding: 20px 15px;
    }

    .asr-contact-col i {
        font-size: 35px;
        width: 65px;
        height: 65px;
    }

    .asr-contact-text-caption {
        font-size: 15px;
    }

    .asr-contact-col p,
    .asr-contact-col span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .asr-contact-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .asr-contact-col {
        padding: 20px 12px;
    }

    .asr-contact-col i {
        font-size: 32px;
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .asr-contact-text-caption {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Alternative Design - Gradient Cards */
.asr-contact-col.gradient-style {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color) 100%);
    color: white;
}

.asr-contact-col.gradient-style i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.asr-contact-col.gradient-style .asr-contact-text-caption {
    color: white;
}

.asr-contact-col.gradient-style p,
.asr-contact-col.gradient-style span,
.asr-contact-col.gradient-style a {
    color: rgba(255, 255, 255, 0.95);
}

.asr-contact-col.gradient-style:hover {
    background: linear-gradient(135deg, var(--main-color) 0%, #008fa1 100%);
}

/* Alternative Design - Minimal Style */
.asr-contact-col.minimal-style {
    background: transparent;
    border: 2px dashed rgba(0, 188, 212, 0.3);
    box-shadow: none;
}

.asr-contact-col.minimal-style:hover {
    border-style: solid;
    border-color: var(--main-color);
    background: rgba(0, 188, 212, 0.03);
}