:root {
    --primary-color: #1a73e8;
    --primary-color-2: #4968c2;
    --primary-color-3: #639bd8;
    --secondary-color: #f23276;
    --text-color: #031F42;
}

* {
    font-family: "Outfit", sans-serif;
    transition: all .05s;
    color: #031F42;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-weight: 600;
}


img.logo-main {
    width: 120px;
    height: auto;
}

a {
    text-decoration: none !important;
}

.btn-button {
    display: inline-flex;
    line-height: 1;
    padding: 12px 28px;
    background-color: #1a73e8;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 50px;
    border: 2px solid #1a73e8;
    transition: all 0.5s;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.btn-button.button-yellow {
    color: #000;
    background-color: #FFD25D;
    border: 2px solid #FFD25D;
}

.btn-button.button-yellow:hover {
    background-color: transparent;
    border: 2px solid #000;
    color: #000;
}

.btn-button i {
    color: inherit;
    line-height: normal;
    font-size: 20px;
    transition: all 0.5s;
}

.btn-button:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-sec {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}

section {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
}

.hero-banner {
    background-color: #F1F3F9;
    position: relative;
    padding-top: 30px;
    padding-bottom: 100px;
    overflow: hidden;
    z-index: 1;
}

h1.heading {
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 30px;
}

.subheading {
    color: #1a73e8;
    font-size: 18px;
    font-weight: 400;
    display: block;
    margin-bottom: 10px;
}

.highlight {
    font-size: inherit;
    font-family: inherit;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight.under-vector::before {
    content: '';
    background-image: url(java-img/title-vector.png);
    width: 100%;
    height: 20px;
    bottom: 0;
    left: 0;
    background-position: center;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.banner-content {
    padding-top: 55px;
}

.hero-bg-round {
    width: 500px;
    height: 509px;
    margin-right: 25px;
    margin-bottom: 24px;
    background-color: #FFD25D;
    border-radius: 67% 33% 35% 65% / 37% 35% 65% 63%;
}

.banner-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

img.hero-shape-img {
    position: absolute;
    width: auto;
    height: auto;
    z-index: -1;
}

img.hero-shape-img.hero-shape-img-1 {
    top: 0;
    left: 0;
    animation: leftRight 4s linear 0s infinite alternate none running;
}

img.hero-shape-img.hero-shape-img-2 {
    right: 0;
    bottom: 0;
    animation: TopDown 4s linear 0s infinite alternate none running;
}

img.hero-shape-img.hero-shape-img-3 {
    left: 5%;
    top: 22%;
}

img.hero-shape-img.hero-shape-img-4 {
    top: 10%;
    left: 10%;
    animation: TopDown 4s linear 0s infinite alternate none running;
}

img.hero-shape-img.hero-shape-img-5 {
    bottom: 10%;
    left: 10%;
    animation: leftRight 3s linear 0s infinite alternate none running;
}

img.hero-shape-img.hero-shape-img-6 {
    top: 0;
    right: 0;
}

@keyframes leftRight {
    0% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes TopDown {
    0% {
        transform: translateY(50px);
    }

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

img.banner-hero-boy {
    position: absolute;
    bottom: 0;
    right: 20%;
    width: auto;
    height: auto;
}

section.fun-fact {
    padding: 40px 0;
    background-color: var(--primary-color);
}

.fun-fact-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.fun-fact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.funFact-card {
    display: flex;
    align-items: center;
}

.fun-fact-body {
    flex: 1;
}

h5.fun-title {
    color: #fff;
}

p.fun-text {
    color: #ffffff91;
    margin-bottom: 0;
}

h2.section-title {
    font-size: 50px;
    font-weight: 600;
    position: relative;
    margin-bottom: 20px;
}

.learn-card {
    border-radius: 20px;
    border: 1px solid rgba(3, 31, 66, 0.1);
    padding: 23px 23px 15px 23px;
    display: block;
    transition: all 0.3s 0s ease-out;
    background-color: #ffffff;
    height: 100%;
}

.learn-card:hover {
    transform: translateY(-10px);
    border: 1px solid var(--primary-color);
}

.learn-icon {
    width: 55px;
    height: 55px;
    overflow: hidden;
    margin-bottom: 20px;
}

.learn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h6.learn-title {
    font-size: 18px;
    font-weight: 500;
}

p.learn-text {
    color: #85878C;
    font-weight: 400;
}

.lrn-bn-title {
    color: #031F42;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}

.lrn-bn-sub {
    color: #1A73E8;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.learn-enquiry-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learn-bn-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
}

.learn-bn-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.learn-cen-sec {
    display: flex;
    align-items: center;
    gap: 20px;
}

.learn-enquiry-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-radius: 4rem;
    background-color: #f2f3f9;
    background-image: url(java-img/learn-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.certificate-card {
    background-color: #E2EFE4;
    padding: 30px 20px 20px 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    z-index: 1;
}

.certificate-banner-tittle {
    font-size: 30px;
    margin-bottom: 20px;
    width: 60%;
}

.certificate-banner-tittle span.highlight {
    color: #000;
    font-weight: 800;
}

img.card-banner-img {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.5s;
    z-index: -1;
}

.certificate-card.cer-card-2 {
    background-color: #FFF3F4;
}

.certificate-card:hover img.card-banner-img {
    scale: 1.1;
}

img.java-certificate-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h2.section-title.font-semi {
    font-size: 46px;
}

h2.section-title.font-semi {
    font-size: 72px;
    font-weight: 800;
}

section.testimonials-section {
    background-color: #F8F8FA;
}

.testimonial-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #f9f9f9;
    padding: 20px 0;
}

.testimonial-marquee-track {
    display: flex;
    gap: 30px;
    animation: scroll-testimonials 30s linear infinite;
}

.testimonial-marquee-wrapper:hover .testimonial-marquee-track {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    width: 412px;
    position: relative;
}

.testimonial-card::before {
    content: "\f255";
    font-family: bootstrap-icons !important;
    position: absolute;
    font-size: 60px;
    color: rgb(81 101 226 / 12%);
    right: 10px;
    top: 0px;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.profile-img {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
}

.profile-details {
    text-align: left;
}










/* Scroll activated */

.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

/* ---------------------------- */


.slick-prev::before,
.slick-next::before {
    color: var(--primary-color) !important;
    font-size: 28px !important;
}

section.testimonials {
    padding: 100px 0;
    background-image: url(java-img/testimonials.jpg);
    background-size: cover;
}

h2.section-big-title {
    text-transform: uppercase;
    line-height: 100px;
    margin: 0 0 14px;
    font-size: 90px;
    color: #fff;
    font-weight: 700;
}

section.testimonials h2.section-title {
    color: #fff;
    font-size: 26px;
}

.card.testimonial-card {
    min-height: 300px;
    background: #ffffff;
    padding: 20px;
    border: none;
    border-radius: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.testimonial-user-profile {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

p.testimonial-text {
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 18px;
    min-height: 140px;
}

h6.user-name {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    text-align: left;
}

small.user-position {
    color: rgb(255 255 255 / 65%);
}

.testimonial-star {
    background: #fff;
    padding: 15px;
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-star:after {
    position: absolute;
    bottom: -13px;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #fff transparent transparent;
}

.testimonial-star i {
    color: rgb(255 193 7);
    font-size: 20px;
}

img.course-certificate-img {
    width: 100%;
    height: auto;
}

h5.footer-heading {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

p.footer-text {
    font-size: 16px;
    color: #e1e1e1;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 10px;
}

a.social-icons i {
    color: #fff;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all 0.5s;
}

a.social-icons,
a {
    text-decoration: none;
}

a.social-icons i:hover {
    color: var(--primary-color);
    background-color: #fff;
}

ul.contact-details-footer {
    list-style: none;
    padding-left: 2rem;
}

ul.contact-details-footer li {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    padding-bottom: 15px;
}

ul.contact-details-footer li a,
ul.contact-details-footer li i {
    color: #fff;
}

p.text-footer {
    color: #ffffffa3;
}

h4.sec-heading {
    font-size: 22px;
    font-weight: 700;
}

.learn-bn-content {
    flex: 1;
}


img.logo.aff-logo {
    width: 70px;
}

.aff-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.affiliation-nav {
    font-size: 13px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.logo-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.learn-card {
    padding: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-banner {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .banner-content {
        padding-top: 20px;
    }

    img.logo-main {
        width: 80px;
        height: auto;
    }

    .subheading {
        font-size: 16px;
    }

    h1.heading {
        font-size: 50px;
        margin-bottom: 20px;
        font-weight: 800;
    }

    h4.banner-text-semi {
        font-size: 15px;
    }

    img.hero-shape-img.hero-shape-img-6 {
        top: 0;
        right: 0px;
        width: 200px;
    }

    img.banner-hero-boy {
        width: 200px;
        right: 0;
    }

    .hero-bg-round {
        width: 100px;
        height: 100px;
        margin: 0;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
    }

    .btn-sec {
        flex-wrap: wrap;
    }

    .btn-button {
        font-size: 14px;
        padding: 10px 25px;
        width: 100%;
    }

    .banner-content a.btn-button {
        width: 200px;
    }

    .banner-content .btn-sec {
        justify-content: flex-start;
        z-index: 1;
        position: relative;
    }

    img.hero-shape-img.hero-shape-img-4 {
        top: 0;
        left: auto;
        right: 0;
    }

    img.hero-shape-img.hero-shape-img-5 {
        bottom: auto;
        right: auto;
        left: 0;
        width: auto;
        top: 50%;
    }

    .banner-img {
        min-height: auto;
        padding-top: 20px;
    }

    img.hero-shape-img.hero-shape-img-1 {
        width: 60px;
    }

    img.hero-shape-img.hero-shape-img-2 {
        right: 0;
        width: 40px;
        bottom: auto;
        top: 0;
    }

    img.hero-shape-img.hero-shape-img-3 {
        display: none;
    }

    h2.section-title {
        font-size: 25px;
    }

    .learn-enquiry-banner {
        padding: 10px 20px;
        display: grid;
        gap: 20px;
        border-radius: 10px;
        justify-content: center;
    }

    .lrn-bn-sub {
        font-size: 14px;
    }

    .lrn-bn-title {
        font-size: 15px;
        font-weight: 700;
    }

    .learn-btns .btn-button {
        justify-content: center;
    }

    h5.fun-title {
        color: #fff;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .funFact-card {
        margin-bottom: 20px;
    }

    section {
        padding: 30px 0;
    }

    h2.section-title.font-semi {
        font-size: 25px;
        font-weight: 800;
    }

    .certificate-card {
        padding: 20px;
        margin-bottom: 20px;
        z-index: 1;
        min-height: auto;
    }

    img.card-banner-img {
        width: 150px;
    }

    .certificate-banner-tittle {
        font-size: 20px;
        width: 100%;
    }

    .certificate-content {
        width: 100%;
    }

    .btn-button i {
        font-size: 16px;
    }

    .testimonial-marquee-track {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: auto;
        background: white;
        padding: 15px;
        width: auto;
        text-align: justify;
    }

    .testimonial-marquee-wrapper {
        height: 500px;
    }

    h5.footer-heading {
        font-size: 16px;
    }

    ul.contact-details-footer {
        padding-left: 0;
    }

    ul.contact-details-footer li {
        font-size: 15px;
        padding-bottom: 10px;
    }

    img.logo.aff-logo {
        width: 70px;
        height: 50px;
        object-fit: contain;
    }

    .learn-icon {
        margin: 0 auto;
        min-height: 80px;
    }

    h6.learn-title {
        font-size: 15px;
        font-weight: 500;
    }

    p.learn-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    @keyframes scroll-testimonials {
        0% {
            transform: translateY(0%);
        }

        100% {
            transform: translateY(-100%);
        }
    }
}