* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Arial, Helvetica, sans-serif;
}


p,
li {
    line-height: 1.6;
    font-size: 18px;
}

h2 {
    font-size: 36px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.container {
    width: 1200px;
    margin: 0 auto;
}


nav {
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-section > article {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
    color: #000;
}

nav ul li a:hover {
    background-color: #575757;
    border-radius: 5px;
    color: #fff;
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    width: 200px;
}

nav ul li ul li a {
    padding: 10px 15px;
    display: block;
}

.banner-section {
    width: 100%;
}

.banner-section img {
    width: 100%;
    object-fit: cover;
}

.Highlight-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.Highlight-card {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.Highlight-card div {
    flex: 1 1 30%;
    margin: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;

}

.Highlight-card h3 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
}

.Highlight-card h4 {
    font-size: 28px;
    color: #c84600;
}

.Highlight-card p {
    font-size: 16px;
    color: #666;
}

.Highlight-card span {
    color: #ffcc00;
}

.Highlight-card p>i {
    margin-right: 5px;
    font-size: 50px;
    color: #c84600;
}

.aboutus-section {
    padding: 50px 0;
}

.aboutus-section p {
    font-size: 18px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.training-section {
    padding: 50px 0;
    background-color: #f7f7f7;
    opacity: 1;
    background-image: radial-gradient(#121dea 0.5px, transparent 0.5px), radial-gradient(#101be8 0.5px, #efeff7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.training-section>article {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.training-section>article>aside {
    flex-basis: 40%;
}

.training-section>article>aside img {
    width: 100%;
    border-radius: 8px;
    height: 300px;
}

.training-section>article>aside h3 {
    font-size: 28px;
    color: #000;
    margin: 20px 0 10px;
}

.training-section>article>aside .button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: transparent;
    border: none;
}

.training-section>article>aside .text {
    font-size: 1.3em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c84600;
}

.training-section>article>aside .svg {
    padding-top: 5px;
    height: 100%;
    width: fit-content;
}

.training-section>article>aside .svg svg {
    width: 50px;
    height: 30px;
}

.training-section>article>aside .button:hover .svg svg {
    animation: jello-vertical 0.9s both;
    transform-origin: left;
}

@keyframes jello-vertical {
    0% {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.accreditations-section {
    padding: 50px 0;
}

.accreditations-section>article {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.accreditations-section>article img {
    width: 80%;
}

.knowledge-partner-section {
    padding: 0px 0 50px;
}

.knowledge-partner-section>article {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.knowledge-partner-section>article img {
    width: 100%;
}

.gain-section {
    padding: 50px 0;
    background-color: #e5e5f7;
    opacity: 1;
    background-image: radial-gradient(#444cf7 0.2px, transparent 0.2px), radial-gradient(#444cf7 0.2px, #e5e5f7 0.2px);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}

.gain-section>article {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.gain-section>article>aside:first-child {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.gain-section :is(h2, h3) {
    color: #011341;
    text-align: start;
    margin-bottom: 0;
}

.gain-section :is(p, li) {
    color: #3f475e;
}

.gain-section ul {
    margin-top: 10px;
}

.gain-section li {
    list-style: none;
    display: flex;
    gap: 10px;
}

.gain-section li::before {
    content: '\f5a1';
    color: #c84600;
    font-family: 'fontawesome';
}

.css-button-rounded--sky {
    min-width: 130px;
    /* height: 40px; */
    color: #fff;
    padding: 10px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    border: 2px solid #4433ff;
    background: #4433ff;
    text-decoration: none;
    text-align: center;
}

.css-button-rounded--sky:hover {
    background: #fff;
    color: #4433ff
}

.testimonial-section {
    padding: 50px 0;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    display: flex;
    background-color: #00143f;
    opacity: 1;
    background-image: radial-gradient(#545a7e 0.6000000000000001px, transparent 0.6000000000000001px), radial-gradient(#545a7e 0.6000000000000001px, #00143f 0.6000000000000001px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    gap: 20px;
    position: relative;
}

.testimonial-slide img {
    border-radius: 50%;
    border: 5px solid #0e0762;
}

.testimonial-slide>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide p {
    font-size: 1.2em;
    color: white;
    position: relative;
}

.testimonial-slide h4 {
    margin-top: 10px;
    font-size: 1.8em;
    color: rgb(204, 194, 244);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.contact-section {
    padding: 50px 0;
    background-color: #f7f7f7;
}

.contact-section>article {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.contact-section>article>aside:first-child {
    flex-basis: 60%;
}

.contact-section>article>aside:last-child {
    flex-basis: 40%;
}

.contact-details {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 20px 0;
}

.contact-details div {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}


ul {
    list-style: none;
}

li::after {
    content: "";
    display: block;
    height: 0px;
    transition: height 0.3s ease-in-out;
    pointer-events: none;
}

li:hover::after {
    height: 10px;
}

.example-2 {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 20px 0;
}

.example-2 .icon-content {
    margin: 0 10px;
    position: relative;
}

.example-2 .icon-content .tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 14px;
    transition: all 0.3s ease;
}

.example-2 .icon-content:hover .tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

.example-2 .icon-content a {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #4d4d4d;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover {
    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.example-2 .icon-content a svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
}

.example-2 .icon-content a:hover {
    color: white;
}

.example-2 .icon-content a .filled {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

.example-2 .icon-content a:hover .filled {
    height: 100%;
}

.example-2 .icon-content a[data-social="spotify"] .filled,
.example-2 .icon-content a[data-social="spotify"]~.tooltip {
    background-color: #0088cc;
}

.example-2 .icon-content a[data-social="pinterest"] .filled,
.example-2 .icon-content a[data-social="pinterest"]~.tooltip {
    background-color: #3b5998;
}

.example-2 .icon-content a[data-social="dribbble"] .filled,
.example-2 .icon-content a[data-social="dribbble"]~.tooltip {
    background: linear-gradient(45deg,
            #405de6,
            #5b51db,
            #b33ab4,
            #c135b4,
            #e1306c,
            #fd1f1f);
}

.example-2 .icon-content a[data-social="telegram"] .filled,
.example-2 .icon-content a[data-social="telegram"]~.tooltip {
    background-color: #128c7e;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #4433ff;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-details a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    margin-left: 10px;
}

.copy-right {
    background-color: #00143f;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}