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

svg {
    height: 30px;
    width: 30px;
}

.wrapping-container {
    display: flex;
    min-height: 100%;
    height: 100%;
    flex-direction: column;
}

.glossary {
    flex: 0 0 auto;
}

.container {
    margin: auto;
    width: 1275px;
    max-width: 100%;
}

.header-lead {
    flex: 1 0 auto;
}


.thanksBox {
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at 30% 70%, rgb(136,154,141,0.5), transparent 70%), 
                radial-gradient(circle at 70% 30%, rgb(184,199,191,0.5), transparent 60%);
    padding: 6rem 0;
}

.thanksBox::after {
    border-radius: 50%;
    content: "";
    position: absolute;
    opacity: 0.3;
    z-index: 1;
    height: 300px;
    top: 50%;
    transform: translateY(-50%);
    left: -150px;
    border: 1px solid rgb(136,154,141,0.5);
    width: 300px;
}

.thanksBox .master-sessions {
    position: relative;
    display: flex;
    background: linear-gradient(135deg, 
                rgba(255,255,255,0.15), 
                rgba(255,255,255,0.05));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
    border-left: 2px solid rgb(136,154,141);
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.1),
        0 1px 0 rgba(255,255,255,0.1) inset;
    transform: perspective(1000px) rotateX(2deg);
    padding: 4rem 3rem;
}

.thanksBox .master-sessions:hover > div:first-child::before {
    width: 20px;
}

.thanksBox h5 {
    background-clip: text !important;
    transform: translateY(20px);
    position: relative;
    margin: 0;
    line-height: 1.4;
    font-size: 22px;
    -webkit-background-clip: text !important;
    opacity: 0;
    color: transparent;
    background: linear-gradient(to right, #000000, rgb(136,154,141));
    color: #000000;
    animation: fadeSlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    z-index: 2;
    font-weight: 700;
}

.thanksBox a::after {
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    background: rgb(136,154,141);
    width: 0;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    height: 1px;
}

.leadership-experience::before {
    top: -10%;
    height: 120%;
    position: absolute;
    background: rgb(136,154,141,0.5);
    left: -10%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
    animation: pulse 8s infinite alternate;
    transform: rotate(-15deg);
    width: 70%;
    content: "";
}

.leadership-experience .student-feedback:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.leadership-experience .image-box-wrap::after {
    left: 0;
    width: 100%;
    top: 0;
    background: linear-gradient(45deg, rgb(184,199,191,0.5) 0%, transparent 70%);
    position: absolute;
    content: "";
    height: 100%;
    border-radius: 10px;
}

.leadership-experience .emp-achievements {
    background: #ffffff;
    padding: 2rem;
    z-index: 3;
    position: relative;
    transform: translateY(30px) rotate(2deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.leadership-experience .name::after {
    transform: scaleX(0.6);
    content: "";
    bottom: -8px;
    position: absolute;
    transition: transform 0.3s ease;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(136,154,141) 0%, rgb(184,199,191) 100%);
    transform-origin: left;
    left: 0;
}

.leadership-experience .student-feedback:hover .emp-achievements > div:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
}

.leadership-experience .work-achievements {
    line-height: 1.6;
    position: relative;
    font-style: italic;
    font-size: 12px;
    font-weight: 400;
    padding-left: 1.5rem;
    color: #000000;
}

.welcome-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.welcome-page .learn-team::before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.welcome-page .student-journey > div {
    animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform: translateZ(20px);
    transform-style: preserve-3d;
    opacity: 0;
    position: relative;
}

.welcome-page .student-journey > div:nth-child(1) {
    animation-delay: 0.3s;
}

.welcome-page .student-journey > div:nth-child(3) {
    animation-delay: 0.7s;
}

.welcome-page p::before {
    transform: scaleX(0);
    content: "";
    transform-origin: left;
    top: 50%;
    animation: scaleIn 0.6s ease forwards 1.2s;
    background: rgb(136,154,141);
    height: 2px;
    position: absolute;
    width: 20px;
    left: -30px;
}

.welcome-page .title_style_header {
    margin-bottom: 2rem;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
    line-height: 1.2;
    letter-spacing: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.6s;
    font-size: calc(41px * 1.2);
}



.welcome-page .learn-team:hover .student-journey {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: perspective(1000px) rotateX(4deg);
}

.newsletter::before {
    opacity: 0.03;
    background: repeating-linear-gradient(
        45deg,
        rgb(184,199,191,0.5) 0px,
        rgb(184,199,191,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    height: 100%;
    pointer-events: none;
    top: 0;
    position: absolute;
    width: 100%;
    left: 0;
    content: "";
}

.newsletter .container {
    padding: 0 1.5rem;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    position: relative;
}

.newsletter .master-sessions::before {
    background: linear-gradient(to right, transparent 0%, #ffffff 50%, transparent 100%);
    border-radius: 8px;
    filter: blur(5px);
    content: "";
    position: absolute;
    opacity: 0.5;
    inset: 8px;
}

.newsletter h3 {
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
    max-width: 85%;
    color: #000000;
    font-size: 21px;
    font-weight: 600;
    transform: translateZ(10px);
}

.newsletter .input_holder {
    align-items: stretch;
    margin-top: 2.5rem;
    position: relative;
    display: flex;
    gap: 1rem;
}

.newsletter .input_holder div {
    position: relative;
    flex: 1;
}

.newsletter .input_holder input[type="email"]:focus {
    transform: translateY(-2px);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03),
                -8px -8px 16px rgba(255, 255, 255, 0.8),
                inset 2px 2px 4px rgba(0, 0, 0, 0.1),
                inset -2px -2px 4px rgba(255, 255, 255, 0.5);
    outline: none;
}

.newsletter .input_holder input[type="email"]::placeholder {
    transition: opacity 0.3s ease;
    opacity: 0.5;
    color: rgba(0, 0, 0, 0.5);
}

.newsletter .input_holder input[type="email"]:focus::placeholder {
    opacity: 0.3;
}

.newsletter .sub-texts::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    transition: all 0.5s ease;
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.newsletter .sub-texts:hover {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15),
                -8px -8px 20px rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.newsletter .sub-texts:hover::before {
    left: 100%;
}

.modalTrackingConsent {
    background: rgb(136,154,141);
    bottom: 0;
    padding: 20px 0;
    transform: translateY(100%);
    animation: slideUp 0.5s forwards;
    position: fixed;
    width: 100%;
    border-top: 3px solid rgb(136,154,141);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    z-index: 90;
    transition: transform 0.3s ease-in-out;
}

.manage-cookies {
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
}

.modalTrackingConsent p {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 13px;
    color: #ffffff;
}

.cookie-control svg {
    height: 80px;
    width: 80px;
    transition: transform 0.3s ease-in-out;
    fill: rgb(184,199,191);
}

.cookie-control:hover svg {
    transform: scale(1.1);
}

.cookie-screen:hover {
    box-shadow: 0 0 20px rgb(136,154,141);
}

.cookie_button.safe-cookies {
    color: #ffffff;
    border: 2px solid rgb(136,154,141);
    background: rgba(0, 0, 0, 0.5);
}

.cookie_button.safe-cookies:hover {
    box-shadow: 0 0 15px rgb(136,154,141);
    background: rgba(0, 0, 0, 0.5);
}

.modalTrackingConsent p a {
    text-decoration: none;
    color: rgb(184,199,191);
    transition: color 0.3s ease;
}

.modalTrackingConsent p a:hover {
    color: rgb(136,154,141);
}

header .container {
    position: relative;
    width: 100%;
    margin: 0;
    max-width: 100%;
    padding: 0;
    z-index: 1;
}

header .header-nav {
    align-items: stretch;
    height: 100%;
    display: flex;
}

header .nav-block svg {
    transition: all 0.3s ease;
    width: 150px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    height: auto;
}

header .first-section {
    padding: 1.2rem 3%;
    position: relative;
    align-items: center;
    gap: 0.5rem;
    width: 65%;
    display: flex;
    justify-content: flex-start;
}

header .top-sitewrap {
    background: #ffffff;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
    color: #000000;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-size: 17px;
    position: relative;
}

header .top-sitewrap:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-item::before {
    height: 100%;
    background: linear-gradient(135deg, rgb(136,154,141,0.5), rgba(0, 0, 0, 0.5) 80%);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    content: "";
}

.pricing-item .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.indv-cost {
    position: relative;
}

.pricing-item h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
    transform: perspective(1000px) translateZ(20px);
    position: relative;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-item .cost-deals {
    margin: 0 auto 60px;
    transform: perspective(1000px) translateZ(10px);
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
    font-size: 18px;
    text-align: center;
    max-width: 800px;
}

.pricing-item .price-deals {
    display: block;
    text-decoration: none;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-item .bundle-rate::before {
    width: 80px;
    background: rgb(184,199,191);
    opacity: 0.1;
    position: absolute;
    height: 80px;
    border-radius: 50%;
    top: -40px;
    content: "";
    right: -40px;
    transition: transform 0.5s ease-out;
}

.pricing-item .bundle-rate::after {
    background: linear-gradient(90deg, rgb(184,199,191), transparent);
    transition: transform 0.5s ease-out;
    height: 3px;
    width: 100%;
    transform: scaleX(0.7);
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: left;
}

.pricing-item .price-deals h4 {
    position: relative;
    font-size: calc(22px + 2px);
    display: inline-block;
    font-weight: 600;
    margin: 0 0 20px;
    color: #ffffff;
}

.pricing-item .price-deals p {
    margin-bottom: 25px;
    opacity: 0.8;
    scrollbar-width: thin;
    color: #ffffff;
    line-height: 1.6;
    scrollbar-color: rgb(184,199,191) transparent;
    max-height: 240px;
    font-size: calc(18px - 1px);
    overflow-y: auto;
    padding-right: 10px;
}

.pricing-item .edu-rates::before {
    height: 2px;
    content: "";
    bottom: -10px;
    position: absolute;
    transition: transform 0.3s ease;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
    background: rgb(184,199,191);
    width: 60px;
}

.pricing-item .price-deals:hover .bundle-rate::before {
    opacity: 0.05;
    transform: scale(3);
}

.pricing-item .price-deals:hover h4::after {
    width: 100%;
}

.course-structure {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(230,229,208) 0%, rgba(245, 248, 252, 0.9) 100%);
}

.course-structure::after {
    animation: float 15s infinite ease-in-out;
    background: radial-gradient(circle, rgb(184,199,191) 0%, transparent 70%);
    opacity: 0.15;
    content: "";
    position: absolute;
    filter: blur(30px);
    height: 200px;
    right: -50px;
    top: -50px;
    border-radius: 50%;
    width: 200px;
}

.course-structure h2 {
    max-width: 90%;
    font-weight: 700;
    font-size: 37px;
    transform-origin: left center;
    line-height: 1.3;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    margin-bottom: 3rem;
    color: #000000;
}

.course-structure h2::after {
    left: 0;
    transform-origin: left;
    width: 80px;
    height: 3px;
    animation: expand 1.2s 0.5s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    content: "";
    background: linear-gradient(90deg, rgb(136,154,141) 0%, transparent 100%);
    position: absolute;
    transform: scaleX(0);
    bottom: -12px;
}

.course-structure .image-box-wrap::before {
    content: "";
    right: 0;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%
    );
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
}

.course-structure .content-wrapper {
    overflow-y: auto;
    scrollbar-width: thin;
    max-height: 350px;
    scrollbar-color: rgb(184,199,191) rgba(rgb(184,199,191,0.5), 0.1);
    padding: 1.5rem;
    position: relative;
    border-left: 1px solid rgba(rgb(184,199,191,0.5), 0.2);
}

.course-structure .description {
    line-height: 1.7;
    position: relative;
    font-size: 14px;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.launch-now {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(130deg, rgb(184,199,191) 0%, rgb(136,154,141) 50%, rgb(184,199,191) 100%);
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
}

.launch-now::after {
    width: 200%;
    left: -50%;
    animation: pulseRadial 10s ease-in-out infinite alternate;
    opacity: 0.1;
    z-index: -1;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
    position: absolute;
    content: '';
    top: -50%;
}

.launch-now .master-sessions::before {
    z-index: -1;
    opacity: 0.3;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.1) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.1) 50%, transparent 50.5%);
    background-size: 40px 40px;
    position: absolute;
    animation: pulseGrid 4s linear infinite alternate;
}

.launch-now h3 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: floatTitle 6s ease-in-out infinite;
    text-align: center;
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
    position: relative;
    letter-spacing: 3px;
    color: #ffffff;
}

.launch-now h3::after {
    left: 0;
    width: 100%;
    animation: titleScan 3s ease-in-out infinite;
    content: '';
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    position: absolute;
    height: 100%;
    opacity: 0;
    top: 0;
}

.launch-now .contact-details::before {
    content: '';
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
    position: absolute;
    opacity: 0;
    background: linear-gradient(
        170deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    top: 0;
    left: 0;
}

.launch-now .contact-details::after {
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    position: absolute;
    left: -100px;
    transition: all 0.6s ease;
    width: 20px;
    transform: rotate(35deg);
    z-index: 2;
    content: '';
    top: -50%;
}

.launch-now .contact-details:hover::before {
    opacity: 1;
}

.our-background {
    overflow: hidden;
    background: rgb(230,229,208);
    padding: 100px 0;
    position: relative;
}

.our-background .container {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.our-background h2 {
    font-size: 35px;
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    color: #000000;
    text-align: center;
}

.our-background .knowledge-track {
    gap: 30px;
    flex-direction: column;
    position: relative;
    display: flex;
}

.our-background .timeline-hist {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-left: 4px solid rgb(184,199,191);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.our-background .timeline-hist::after {
    height: 20px;
    width: 20px;
    animation: pulse 4s infinite;
    top: 30px;
    border: 2px solid rgb(184,199,191,0.5);
    border-radius: 50%;
    content: "";
    right: 30px;
    position: absolute;
}

.our-background .timeline-hist h3 {
    display: inline-block;
    margin-bottom: 20px;
    color: rgb(184,199,191);
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.our-background .timeline-hist h3::before {
    bottom: -8px;
    transition: width 0.3s ease;
    width: 30px;
    content: "";
    background: currentColor;
    position: absolute;
    height: 2px;
    left: 0;
}

.our-background .timeline-hist:first-child {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards 0.2s;
}



.our-background::after {
    content: "";
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    opacity: 0.03;
    width: 100%;
    position: absolute;
}

.our-background .container::after {
    bottom: -100px;
    background: radial-gradient(circle, rgb(136,154,141,0.5) 0%, transparent 70%);
    left: -100px;
}

.contact-information::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgb(230,229,208);
    opacity: 0.85;
}

.contact-information .inquiry-widget {
    grid-column: 3 / 11;
    position: relative;
    margin-top: 80px;
    background: #ffffff;
    grid-row: 1 / 2;
    overflow: hidden;
    border-radius: 24px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-information .inquiry-widget div {
    flex-direction: column;
    display: flex;
    padding: 20px;
    align-items: center;
    text-align: center;
}

.contact-information .inquiry-widget svg path {
    fill: rgb(184,199,191);
}

.contact-information .inquiry-widget a {
    color: rgb(184,199,191);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-information form {
    padding: 60px;
    max-width: 700px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 60%;
    background: #ffffff;
    margin: 0 auto;
}

.contact-information form h3::after {
    height: 3px;
    bottom: -15px;
    left: 50%;
    position: absolute;
    background: rgb(184,199,191);
    width: 70px;
    content: '';
    transform: translateX(-50%);
}

.contact-information form input[type="text"]:focus,
.contact-information form input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgb(184,199,191,0.5);
    border-color: rgb(184,199,191);
    outline: none;
}

.contact-information form input::placeholder {
    color: #000000;
}

.contact-information .feedback-support input[type="checkbox"] {
    transition: all 0.3s ease;
    flex-shrink: 0;
    height: 22px;
    appearance: none;
    margin-right: 15px;
    width: 22px;
    -webkit-appearance: none;
    border: 2px solid rgb(230,229,208);
    position: relative;
    border-radius: 10px;
    cursor: pointer;
}

.contact-information .feedback-support label {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}

.contact-information .feedback-support a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    color: rgb(184,199,191);
}

.contact-information .connect-panel:hover {
    background: rgb(136,154,141);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.confidential-zone {
    height: 100%;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    padding: 40px;
}

.confidential-zone h2 {
    border-bottom: 1px solid rgb(136,154,141,0.5);
    font-size: 32px;
    margin-bottom: 20px;
    color: rgb(136,154,141);
    margin-top: 30px;
    font-weight: 600;
    padding-bottom: 8px;
}

.confidential-zone ul, .confidential-zone ol {
    margin: 20px 0;
    padding-left: 0;
    padding: 20px 0;
    list-style-position: inside;
    border-left: 3px solid rgb(184,199,191);
}

.confidential-zone section {
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background: rgb(230,229,208);
}

.confidential-zone a {
    font-weight: 600;
    transition: color 0.3s ease-in-out;
    text-decoration: none;
    color: rgb(184,199,191);
}

.confidential-zone a:hover {
    text-decoration: underline;
    color: rgb(136,154,141);
}

footer .glossary {
    background-color: #2c3e50;
    position: relative;
    padding: 100px 0 30px;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

footer .pitch-comp {
    z-index: 1;
    position: relative;
}

footer .assist-experts {
    gap: 15px;
    margin: -70px auto 60px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    display: grid;
    position: relative;
}

footer .info_item {
    border-radius: 10px;
    padding: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100px;
    background-color: #ffffff;
    display: flex;
}

footer .info_item:hover {
    transform: translateY(0);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

footer .info_item svg {
    margin-right: 15px;
    z-index: 1;
    width: 22px;
    flex-shrink: 0;
    position: relative;
    fill: rgb(184,199,191);
    height: 22px;
}

footer .info_item a:hover {
    color: rgb(184,199,191);
}

footer .nav-header, footer .subscribe_holder {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 27px;
    padding: 30px;
    transition: all 0.3s ease;
}

footer .nav-header svg {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

footer .first-section h5 {
    grid-column: 1 / -1;
    position: relative;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 20px;
    padding-bottom: 10px;
}

footer .head-mainbar {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 27px;
    padding: 20px;
    transition: all 0.3s ease;
}

footer .head-mainbar a {
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    text-decoration: none;
}

footer .head-mainbar a:hover {
    color: #ffffff;
    padding-left: 5px;
}

footer .subscribe_holder h5 {
    font-weight: 600;
    color: #ffffff;
    font-size: 20px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 15px;
}

footer .subscribe_holder p {
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgb(184,199,191);
}

footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

footer .sub-texts {
    padding: 15px;
    background-color: rgb(184,199,191);
    color: #ffffff;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

footer .music-edu {
    color: rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-block;
    font-size: 15px;
}

.data-insights::after {
    content: "";
    right: -5%;
    height: 25rem;
    width: 25rem;
    background: radial-gradient(circle, rgb(136,154,141,0.5) 0%, transparent 70%);
    opacity: 0.4;
    bottom: -10%;
    z-index: 1;
    position: absolute;
    filter: blur(30px);
}

.data-insights h3::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(184,199,191) 0%, rgb(136,154,141) 100%);
    transform: translateX(-50%);
    left: 50%;
    width: 80px;
    bottom: -10px;
    height: 3px;
    content: "";
}

.data-insights ul {
    list-style: none;
    padding: 0;
    display: grid;
    perspective: 1000px;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.data-insights .statistics-tracks::before {
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
    transition: transform 0.8s ease;
    left: 0;
    position: absolute;
    background: linear-gradient(45deg, transparent 15%, rgba(255,255,255,0.4) 30%, transparent 40%);
    transform: translateX(-100%);
}

.data-insights .statistics-tracks:hover {
    transform: perspective(800px) rotateX(0) translateZ(5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
}

.data-insights .statistics-tracks:hover span {
    transform: translateY(-2px);
}

.data-insights .statistics-tracks p {
    font-size: calc(32px * 1.2);
    -webkit-background-clip: text !important;
    margin: 0;
    position: relative;
    font-weight: 700;
    opacity: 0;
    background-clip: text !important;
    animation: fadeUp 0.5s forwards 0.2s;
    background: linear-gradient(90deg, rgb(184,199,191), rgb(136,154,141));
    color: transparent;
    display: inline-block;
    transform: translateY(10px);
    color: rgb(184,199,191);
}


@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (min-width: 768px) {.thanksBox .master-sessions {
    border-radius: 0 20px 20px 0;
    margin-left: 5rem;
    padding: 5rem 4rem;
}.thanksBox .master-sessions::before {
    border: 1px solid rgb(184,199,191,0.5);
    position: absolute;
    z-index: 1;
    right: -30px;
    width: 200px;
    opacity: 0.5;
    top: -50px;
    height: 200px;
    content: "";
    border-radius: 50%;
}.thanksBox h5 {
    font-size: calc(22px * 1.1);
}.thanksBox p {
    max-width: 90%;
}
}



@media (max-width: 767px) {.thanksBox {
    padding: 4rem 0;
}.thanksBox .master-sessions {
    padding: 3rem 2rem;
    gap: 2rem;
}.thanksBox h5 {
    font-size: calc(22px * 0.9);
}.thanksBox::after,
    .thanksBox .master-sessions::before {
    display: none;
}
}



@media (max-width: 768px) {.leadership-experience .student-feedback {
    grid-template-columns: 1fr;
}.leadership-experience .image-box-wrap {
    height: 300px;
}}



@media (max-width: 768px) {.welcome-page .student-journey {
    clip-path: polygon(
      0 0,
      100% 0,
      99% 98%,
      1% 100%
    );
    padding: 2.5rem;
    transform: perspective(600px) rotateX(0.5deg);
}.welcome-page .title_style_header {
    font-size: 41px;
    margin-bottom: 1.5rem;
}.welcome-page p {
    font-size: 17px;
}.welcome-page h3 {
    padding-left: 15px;
    font-size: calc(16px * 1.1);
}.welcome-page h3::before {
    width: 3px;
}
}



@media (max-width: 991px) {.newsletter {
    padding: 3.5rem 0;
}.newsletter .master-sessions {
    padding: 2.5rem;
    transform: perspective(1000px) rotateX(1deg);
}.newsletter h3 {
    max-width: 100%;
    font-size: calc(21px * 0.9);
}
}



@media (max-width: 767px) {.newsletter {
    padding: 3rem 0;
}.newsletter .master-sessions {
    transform: none;
    padding: 2rem;
}.newsletter h3 {
    font-size: calc(21px * 0.85);
    margin-bottom: 1.5rem;
}.newsletter h3::after {
    width: 50px;
}.newsletter .input_holder {
    flex-direction: column;
    margin-top: 2rem;
}.newsletter .input_holder input[type="email"] {
    padding: 1rem 1.2rem;
}.newsletter .sub-texts {
    width: 100%;
    padding: 1rem;
}
}


@media only screen and (max-width: 1200px) {.modalTrackingConsent {
    padding: 15px 0;
}.manage-cookies {
    padding: 15px 5%;
}
}


@media only screen and (max-width: 800px) {.cookie-control {
    display: none;
}.manage-cookies {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.modalTrackingConsent h5 {
    font-size: 22px;
    margin-bottom: 5px;
}.user-dialog {
    margin-bottom: 15px;
}.cookie-screen {
    margin: 10px 0;
    min-width: 100%;
}}



@media (max-width: 767px) {header {
    background: rgb(230,229,208);
}header::before {
    height: auto;
    top: 0;
    width: 100%;
    bottom: 50%;
}header .header-nav {
    flex-direction: column;
    align-items: center;
}header .nav-block {
    width: 100%;
    padding: 0.8rem 0;
}header .nav-block svg {
    width: 120px;
}header .first-section {
    padding: 0.8rem 0;
    justify-content: center;
    width: 95%;
    flex-wrap: wrap;
    gap: 0.6rem;
}header .first-section::before {
    width: 100%;
    height: 1px;
    left: 0;
    background: linear-gradient(to right, transparent, rgb(184,199,191,0.5), transparent);
    top: 0;
}header .top-sitewrap {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0.9rem;
}
}



@media screen and (min-width: 992px) and (max-width: 1199px) {.pricing-item .access-rates {
    grid-template-columns: repeat(3, 1fr);
}.pricing-item {
    padding: 100px 0 80px;
}
}



@media screen and (max-width: 767px) {.pricing-item .access-rates {
    max-width: 400px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.pricing-item {
    padding: 60px 0 40px;
}.pricing-item h2 {
    font-size: calc(35px - 4px);
}.pricing-item .cost-deals {
    margin-bottom: 40px;
    font-size: calc(18px - 1px);
}.pricing-item .bundle-rate {
    padding: 25px 20px;
}
}



@media (prefers-reduced-motion: reduce) {.pricing-item::after {
    animation: none;
}.pricing-item .price-deals:hover .bundle-rate {
    transform: none;
}.pricing-item .price-deals:hover .bundle-rate::before {
    transform: none;
}}



@media (min-width: 992px) {.course-structure {
    padding: 160px 0 120px;
}.course-structure h2 {
    max-width: 70%;
    margin-bottom: 4rem;
    font-size: calc(37px * 1.2);
}.course-structure .training-map {
    gap: 5rem;
}.course-structure .image-box-wrap {
    height: 450px;
}.course-structure .content-wrapper {
    max-height: 450px;
    padding: 0 2rem 0 3rem;
}.course-structure .description {
    line-height: 1.8;
    font-size: calc(14px * 1.05);
}.course-structure h2::after {
    width: 150px;
}.course-structure .image-box-wrap::after {
    height: 50%;
    width: 50%;
}
}



@media screen and (max-width: 992px) {.launch-now {
    padding: 100px 0;
}.launch-now .master-sessions {
    padding: 50px 30px;
    max-width: 90%;
}.launch-now h3 {
    margin-bottom: 50px;
    letter-spacing: 2.5px;
    font-size: calc(28px * 0.9);
}.launch-now h3::before {
    width: 70px;
    bottom: -18px;
}.launch-now .contact-details {
    font-size: calc(15px * 0.95);
    padding: 16px 40px;
}
}



@media screen and (max-width: 576px) {.launch-now {
    padding: 60px 0;
}.launch-now .master-sessions {
    padding: 30px 20px;
}.launch-now h3 {
    font-size: calc(28px * 0.7);
    letter-spacing: 1.5px;
    margin-bottom: 40px;
}.launch-now h3::before {
    width: 50px;
    bottom: -12px;
}.launch-now .contact-details {
    font-size: calc(15px * 0.85);
    letter-spacing: 1px;
    padding: 12px 30px;
}}



@media (max-width: 768px) {.our-background {
    padding: 60px 0;
}.our-background h2 {
    margin-bottom: 40px;
    font-size: calc(35px * 0.9);
}.our-background .timeline-hist {
    padding: 25px;
}.our-background .timeline-hist h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 15px;
}
}



@media (max-width: 1200px) {.contact-information .inquiry-widget {
    grid-column: 2 / 12;
}.contact-information form {
    width: 70%;
}
}



@media (max-width: 992px) {.contact-information .inquiry-widget {
    margin: 60px 20px 0;
    grid-column: 1 / 13;
}.contact-information form {
    width: 80%;
    padding: 50px 40px;
}
}



@media (max-width: 768px) {.contact-information .inquiry-widget h3 {
    font-size: calc(28px * 0.9);
    padding: 30px;
}.contact-information .inquiry-request {
    padding: 150px 20px 80px;
}.contact-information form {
    width: 100%;
    padding: 40px 30px;
}.contact-information form h3 {
    margin-bottom: 35px;
    font-size: calc(28px * 0.9);
}
}



@media only screen and (max-width: 800px) {.confidential-zone {
    padding: 30px 15px;
}.confidential-zone h1 {
    font-size: calc(20px - 10px);
}.confidential-zone h2 {
    font-size: calc(20px - 5px);
}.confidential-zone ul, .confidential-zone ol {
    padding-left: 10px;
}.confidential-zone li {
    font-size: calc(13px - 2px);
}}



@media (max-width: 767px) {footer .glossary {
    padding: 70px 0 30px;
}footer .assist-experts {
    margin-bottom: 40px;
    margin-top: 0;
}footer .info_item {
    padding: 15px 20px;
    height: auto;
}footer .info_item:nth-child(even) {
    transform: none;
}footer .nav-header, footer .subscribe_holder {
    padding: 25px 20px;
}footer .first-section h5, footer .subscribe_holder h5 {
    margin-bottom: 15px;
}footer .cert-block {
    margin-top: 40px;
}
}



@media (max-width: 992px) {.data-insights {
    padding: 4rem 0;
}.data-insights ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}.data-insights .statistics-tracks {
    padding: 1.25rem;
}
}



@media (max-width: 576px) {.data-insights {
    padding: 2.5rem 0;
}.data-insights h3 {
    font-size: calc(32px * 0.8);
}.data-insights ul {
    margin: 0 auto;
    max-width: 300px;
    grid-template-columns: 1fr;
}.data-insights .statistics-tracks {
    transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.data-insights .statistics-tracks:hover {
    transform: translateY(-5px);
}.data-insights .statistics-tracks p {
    font-size: calc(32px * 0.9);
}
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



@keyframes slideRight {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}



@keyframes scaleIn {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}



@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



@keyframes moveGradient {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(70%, 70%);
    }
    100% {
        transform: translate(0, 100%);
    }
}



@keyframes growUp {
    0% {
        transform: translateY(-50%) scaleY(0);
    }
    100% {
        transform: translateY(-50%) scaleY(1);
    }
}



@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



@keyframes pulseRadial {
    0% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.05;
        transform: scale(1);
    }
}



@keyframes rotateQuantumGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}



@keyframes titleScan {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 0.5;
        transform: translateX(100%);
    }
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

