h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
    font-weight: 600;
}

/* ====== Header Style =======*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 100px;
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-gss img {
    width: 270px;
}

nav {
    display: flex;
    gap: 45px;
    align-items: center;
}

nav a {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 20px;
}

nav a:hover {
    color: #3DA2DA;
}

.login-btn {
    border: 2px solid #3DA2DA;
    padding: 5px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #3DA2DA;
    color: #fff;
}

/* Hamburger Icon */
#nav-icon4 {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

#nav-icon4 span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
    top: 0px;
}

#nav-icon4 span:nth-child(2) {
    top: 9px;
}

#nav-icon4 span:nth-child(3) {
    top: 18px;
}

#nav-icon4.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

#nav-icon4.open span:nth-child(2) {
    opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Styles */

@media (max-width: 576px) {
    header {
        padding: 12px 20px 12px 0px;
    }
}

@media (max-width: 768px) {
    #nav-icon4 {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        left: 0;
        display: flex !important;
    }


}

.new-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin-top: 10px;
    gap: 20px;
}

.new-list li {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-section {
     height: 100vh; 
    background: #F0F7FB;
    padding-top: 120px !important;
    display: flex;
    align-items: center;
}

.hero-section .hero-content h1 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 60px;
    margin-bottom: 20px;
}

.hero-section .hero-content h2 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 48px;
    color: #111827;
}

.hero-section .hero-content p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 24px;
    color: #4B5563;
}

a.get {
    background: #3DA2DA;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    text-transform: capitalize;
    margin-bottom: 10px;
    height: fit-content;
}

a.get.get-alt {
    border: #3DA2DA;
    background: transparent;
    color: #3DA2DA;
    border: 1px solid;
    margin-left: 10px;
}

.hero-image {
    /*width: 550px;*/
    /*height: 550px;*/
    width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.time li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

/* skills */

.skills {
    padding: 50px 0;
}

.skills h2 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
}

.skill-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skill-box h1 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    color: #3DA2DA;
}

.skill-box p {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.booking {
    padding-top: 50px;
    background: #F0F7FB;
}

.tab-content-container select {
    padding: 10px 20px;
    background: #F3F4F6;
    border: none;
    outline: none;
}

.card {
    border-radius: 8px !important;
}

.courses .course-heading {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.course-box {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 1px 2px 0px #0000000D;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 auto;
    background-color: #FFFFFF;
}

.course-box .course-image {
    width: 100%;
    height: 230px;
}

.course-box .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-box .course-content {
    padding: 20px;
}

.course-box .course-content h4 {
    font-size: 20px;
}

.course-box .course-content .learn {
    display: flex;
    background: #3DA2DA;
    width: fit-content;
    align-items: center;
    margin-top: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    color: white;
    border: 2px solid white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.accreditations {
    padding: 60px 0;
}

.select-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accreditations h2,
.testimonials h2,
.work h2 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}

.testimonials {
    background-color: #F0F7FB;
    padding: 60px 0;
}

.testimonial-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-content,
.section-wrapper {
    background: none !important;
}


/* ======== Testimonial ======== */
.testimonial-card {
    border: 1px solid #E5E7EB;
    box-shadow: 0px 4px 2px 0px #0000000D;
    border-radius: 12px;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 35px;
    margin: 0 10px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-card .author .author-wrap {
    height: 48px;
    width: 48px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonial-card .author .author-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .author-info h3 {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
}

.testimonial-card .author-info p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    color: #4B5563;
    padding: 0;
    margin: 0;
}

.slick-track {
    padding: 10px 0;
}

/* ======== Faq ======== */
.faq {
    padding: 60px 0;
    scroll-margin-top: 100px;
}

.courses {
    scroll-margin-top: 130px;
}

.faq h2 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.accordion {
    max-width: 800px;
    margin: auto;
}

.accordion-item {
    background: linear-gradient(90deg, #F0F7FB 0%, rgba(240, 247, 251, 0) 100%);
    margin-bottom: 15px;
    border-radius: 6px;
    overflow: hidden;
    border: 0 !important;
    box-shadow: 0px 4px 0px 0px #00000008;
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header span {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    color: #111827;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 15px 20px;
    display: none;
    color: #000000;
    font-family: Montserrat;
    font-weight: 300;
    font-size: 14px;
}

.accordion-item.active .accordion-body {
    display: block;
}

/* ======== Chat Bot ======== */

.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: #3DA2DA;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}




/* ======== Footer ======== */

footer {
    background: #1F2937;
    color: white;
    padding: 50px 0;
}

.foot-logo-container p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    color: #A1A1AA;
}

.foot.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.foot-logo-container {
    width: 40%;
}

.foot-link-container {
    display: flex;
    /*gap: 90px;*/
    width: 50%;
    justify-content: space-between;
}

.foot-link-container h4 {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    color: #FFFFFF;
}

.foot-link-container ul {
    list-style: none;
    padding: 0;
}

.socials ul {
    display: flex;
    gap: 20px;
}

.socials ul li a i {
    font-size: 18px;
    color: white;
    line-height: 36px;
}

.foot-link-container .links ul li a {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    color: #E5E7EB;
}

.man {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 850px !important;
}


@media (max-width: 768px) {
    .hero-section .hero-content h1 {
        font-weight: 600;
        font-size: 36px;
    }
    
    .man {
    position: static;
    right: 0;
    bottom: 0;
    width: 100%;
}
    
    .hero-section .hero-content p{
        font-size: 16px;
    }
    
    .new-list {
        flex-direction: column;
        padding-left: 20px;
    }

    .hero-section .hero-content h2 {
        font-weight: 600;
        font-size: 36px;
    }

    .select-form {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .select-form select {
        width: 100%;
        margin-bottom: 10px;
    }

    .tab-btn {
        width: 90% !important;
    }

    .foot-logo-container {
        width: 90%;
    }

    .foot-link-container {
        display: block;
    }
}

/* Courses */

.form-container {
    background-color: #FFFFFF;
    padding: 34px 26px;
    border-radius: 8px;
    width: 380px;
}

.form-container h3 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 24px;
}

.demo-content {
    display: flex;
    justify-content: center;
}

.demo-content ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.demo-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.work-card {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.work {
    padding: 60px 0;
}

.course-tab-container {
    background-color: #F0F7FB;
    padding: 60px 0;
}

.course-tab-container .tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.course-tab-container .tab {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E7EB;
    cursor: pointer;
}

.course-tab-container .tab.active {
    font-weight: 700;
    color: #3DA2DA;
    border-bottom: 2px solid #3DA2DA
}

.course-box {
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #0000000D;
    border: 1px solid #E5E7EB;
    padding: 20px;
    border-radius: 8px;
}

.tab-content {
    /*background: #FFFFFF;*/
    box-shadow: 0px 1px 2px 0px #0000000D;
    /*border: 1px solid #E5E7EB;*/
    padding: 30px;
    border-radius: 8px;
}

.course-box span {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
}

.course-box p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    color: #4B5563;
}

.tab-content h2 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
}

.tab1-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab1-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.tab3-content .number-list {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.tab3-content .number-list ul li {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
}

.tab4-content ul .outer-list {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 20px;
}

.inner-list {
    list-style: none;
    padding: 0;
    padding-top: 5px;
}

.inner-list li {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 16px;
}

.couse-fee {
    padding: 60px;
    background: #F0F7FB;
}

.couse-fee h4 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 30px;
}

.why-choose li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.course-fee-card {
    box-shadow: 0px 10px 15px 0px #0000001A;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 12px;
}

.course-fee-card h6 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}

.course-fee-card h5 {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    color: #3DA2DA;
    margin: 0;
}

.course-fee-card p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #4B5563;
}

.course-fee-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

@media (max-width: 576px) {

    .accreditations h2,
    .testimonials h2,
    .work h2,
    .tab-content h2,.skills h2 ,
    .faq h2 {
        font-size: 24px !important;
    }

    .booking {
        padding-top: 0;
    }
    

    .course-tab-container .tabs {
        flex-direction: column;
        align-items: self-start;
        padding-left: 10px;
    }

    .couse-fee,
    .course-tab-container,
    .tab-content {
        padding: 20px;
    }

    .couse-fee h4 {
        text-align: center;
        font-size: 24px;
    }

}

.green-mark p{
    display: flex;
    gap: 10px;
}