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

.head-edu {
    flex: 1 0 auto;
}

header,footer {
    width: 100%;
}

header {
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background-color: #ffffff;
    z-index: 1000;
    border-bottom: 2px solid rgb(201,200,177);
}

.plan-list .price-view {
    margin-bottom: 3rem;
    order: 1;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 800px;
}

.plan-list .discount-price {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    order: 2;
}

.plan-list .fee-plans {
    z-index: 1;
    display: flex;
    word-break: break-word;
    flex-direction: column;
    position: relative;
    overflow-wrap: break-word;
    padding: 2rem;
    flex-grow: 1;
}

.plan-list .fee-plans h3::after {
    height: 2px;
    left: 0;
    position: absolute;
    background: rgb(125,113,111);
    content: "";
    transition: width 0.3s ease;
    width: 40px;
    bottom: 0;
}

.plan-list .img-preview {
    height: 200px;
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
}

.plan-list .plan-details:nth-child(odd) .learn-sub {
    flex-direction: column-reverse;
}

.plan-list .plan-details:nth-child(3n+3) {
    border-top: 3px solid #000000;
}

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

.company-overview h1::after {
    content: "";
    bottom: -12px;
    height: 4px;
    background: linear-gradient(to right, rgb(168,155,153), rgb(125,113,111));
    width: 0;
    animation: expandLine 1.2s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    position: absolute;
}

.company-overview .community-team:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 10, 0.1), 
                0 10px 20px rgba(0, 0, 0, 0.08),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
    transform: translateY(-5px) scale(1.01);
}

.company-overview .community-team h4::after {
    content: "";
    height: 2px;
    left: 0;
    background: rgb(125,113,111);
    width: 40px;
    transition: width 0.4s ease;
    position: absolute;
    bottom: -8px;
}

.site-map .get-help::before {
    height: 100%;
    width: 100%;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
}

.site-map .head-pagebar:hover svg {
    transform: scale(1.05);
}

.site-map .edu-links {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

.site-map .header-mainbar h5 {
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.site-map .nav-lead:not(:last-child) {
    margin-bottom: 1rem;
}

.site-map .nav-lead a::before {
    left: 0;
    height: 2px;
    content: '';
    transition: width 0.3s ease;
    bottom: 0;
    position: absolute;
    background-color: rgb(168,155,153);
    width: 0;
}

.site-map .subscribe_holder p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ffffff;
}

.site-map .input_holder input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.site-map .sub-grids:hover {
    background-color: rgb(168,155,153,0.5);
}

.site-map .contest-info {
    padding: 6rem 0 2rem;
    position: relative;
    background-color: rgb(125,113,111);
    margin-top: 0;
    text-align: center;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.course-program .knowledge-base::before {
    width: 100%;
    left: 0;
    z-index: 5;
    position: absolute;
    background: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.6) 70%,
                transparent 100%);
    top: 0;
    content: '';
    height: 100%;
}

.course-program .container {
    width: 100%;
    z-index: 10;
    justify-content: flex-end;
    display: flex;
    grid-column: 1 / 3;
    grid-row: 1;
    height: 100%;
    padding: 0;
    position: relative;
    align-items: center;
}

.course-program .tech-skills h3 {
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
    color: rgb(168,155,153);
    font-size: 37px;
}

.course-program .tech-skills h3 {
    font-size: calc(37px * 0.9);
}

.course-program .tech-skills .reach-grid:hover::before {
    left: 0;
}

.course-program .tech-skills .reach-grid:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(rgb(168,155,153), 0.2);
}

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

header .nav-mainbar {
    padding: 5px 0;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}

header .nav-mainbar:hover:after {
    transform: scaleX(1);
}

header .head-expert:before {
    content: '';
    -webkit-mask-composite: xor;
    border-radius: 10px;
    top: 0;
    width: 100%;
    opacity: 0;
    left: 0;
    transition: opacity 0.3s ease;
    mask-composite: exclude;
    background: linear-gradient(to right, rgb(168,155,153), rgb(125,113,111)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    height: 100%;
    border: 2px solid transparent;
    position: absolute;
}

.user-testimonials .review-corner {
    padding: 1.75rem;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05);
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.user-testimonials .review-corner div {
    z-index: 1;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
}

.user-testimonials a {
    padding: 0.75rem 2rem;
    overflow: hidden;
    display: inline-block;
    margin-top: 3rem;
    font-size: 14px;
    background: linear-gradient(135deg, rgb(168,155,153) 0%, rgb(125,113,111) 100%);
    box-shadow: 0 5px 15px rgba(rgb(168,155,153,0.5), 0.2);
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    font-weight: 600;
    position: relative;
}

.stay-updated .container {
    padding: 0 2rem;
    max-width: 1200px;
    transform-style: preserve-3d;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

.stay-updated h4 {
    line-height: 1.3;
    color: var(--newsletter-text-color);
    max-width: 800px;
    transform: translateZ(30px);
    text-shadow: 0 4px 12px var(--newsletter-shadow);
    margin: 0;
    font-weight: 600;
    font-size: min(2.2rem, 5vw);
    position: relative;
}

.stay-updated .input_holder span:first-child {
    flex: 1;
    min-width: 0;
}

.stay-updated .input_holder input[type="email"]:focus {
    transform: scale(var(--input-focus-scale)) translateZ(20px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stay-updated .input_holder input[type="submit"]:active {
    transform: scale(0.98) translateZ(5px);
}

.stay-updated .input_holder input[type="submit"]::before {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    content: "";
    transform: scale(0);
    height: 200%;
    top: -50%;
    width: 200%;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    left: -50%;
    position: absolute;
}

.data-analysis .extra-statistics {
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    border-radius: 11px 0 0 11px;
    background: linear-gradient(to right, rgb(168,155,153,0.5) 0%, transparent 100%);
    position: relative;
    padding: 3rem;
}

.data-analysis .statistics-highlights {
    display: flex;
    padding: 0;
    border-radius: 11px;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(50% - 2rem);
    align-items: flex-start;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.data-analysis .statistics-highlights span {
    display: flex;
    padding: 2.5rem;
    flex: 1;
    color: #000000;
    font-size: 13px;
    align-items: center;
    font-weight: 400;
}

.leadership-profile::before {
    position: absolute;
    width: 100%;
    background: 
    radial-gradient(circle at 20% 30%, rgb(168,155,153,0.5) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgb(125,113,111,0.5) 0%, transparent 30%);
    top: 0;
    animation: pulse 20s infinite alternate;
    content: "";
    height: 100%;
    left: 0;
}

.leadership-profile .img-preview {
    grid-area: photo;
    height: 280px;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateZ(40px);
    box-shadow: 
    10px 10px 20px rgba(0, 0, 0, 0.5),
    -5px -5px 30px rgb(168,155,153,0.5);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 90% 100%, 0 100%);
}

.leadership-profile .review-corner:hover > span:not(.name) {
    transform: translateZ(35px) translateY(-5px);
}

.secure-retreat h1 {
    margin-bottom: 30px;
    grid-column: span 2;
    color: rgb(168,155,153);
    z-index: 2;
    position: relative;
    font-weight: 700;
    font-size: 38px;
}

.secure-retreat ol {
    list-style-type: decimal;
}

.secure-retreat > div {
    padding: 30px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgb(168,155,153,0.5);
    z-index: 2;
    background-color: rgb(201,200,177);
}

.ty-block-id {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(168,155,153,0.5), rgb(125,113,111,0.5));
    position: relative;
}

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

.ty-block-id .study-training::before {
    position: absolute;
    top: 0;
    width: 6px;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    content: "";
    background: linear-gradient(to bottom, rgb(168,155,153), rgb(125,113,111));
    transform-origin: left center;
    transform: scaleY(0);
}

.ty-block-id a:hover {
    transform: translateX(5px);
}

.ty-block-id a:hover p {
    color: rgb(168,155,153);
}

.ty-block-id a::before {
    opacity: 0.3;
    position: absolute;
    width: 100%;
    content: "";
    pointer-events: none;
    left: -100%;
    transform: skewX(-15deg);
    background: linear-gradient(90deg, #ffffff, rgb(125,113,111,0.5), #ffffff);
    top: 0;
    height: 100%;
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-disclaimer p {
    margin-bottom: 0;
    font-size: 15px;
    color: #000000;
}

#cookie-notice-box:checked ~ .cookieNoticePromptPanel {
    visibility: hidden;
    opacity: 0;
}

.cookie_button.digital-cookies:hover {
    border-color: rgb(168,155,153);
    color: #ffffff;
    background-color: rgb(168,155,153);
}


.ideal-participants {
    z-index: 1;
    background-color: rgb(201,200,177);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.ideal-participants .study-training::after {
    animation-delay: 6s;
    bottom: 30%;
}

.ideal-participants h3 {
    position: relative;
    font-size: 34px;
    color: rgb(168,155,153);
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3.5rem;
}

.ideal-participants ul {
    margin: 0;
    gap: 1.2rem;
    display: flex;
    list-style: none;
    padding: 0;
    flex-direction: column;
}

.ideal-participants ul li::after {
    left: 0;
    content: '';
    transform: translateX(-100%);
    background: linear-gradient(90deg, 
        transparent, 
        rgb(168,155,153,0.5) 20%, 
        transparent 80%);
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    opacity: 0;
    transition: transform 0.5s ease;
    position: absolute;
}

.ideal-participants ul li:hover svg path {
    fill: rgb(125,113,111);
    animation: flashIcon 1s ease;
}

.title-screen {
    background: linear-gradient(135deg, rgb(201,200,177) 0%, rgb(125,113,111,0.5) 100%);
    flex-direction: column;
    display: flex;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.title-screen .img-preview::after {
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
    top: 0;
    content: "";
    left: 0;
    width: 100%;
    position: absolute;
}

.title-screen .metadata-block {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(30, 30, 40, 0.85) 100%
    );
    backdrop-filter: blur(10px);
    max-width: 550px;
    position: relative;
    margin-top: 2rem;
    padding: 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    border-left: 3px solid rgb(168,155,153);
    animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.2);
}

.title-screen svg:hover path {
    fill: rgb(125,113,111);
}

.title-screen svg:hover text {
    fill: rgb(168,155,153);
}

.title-screen .reach-grid::before {
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(125,113,111) 0%,
        rgb(168,155,153) 100%
    );
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    content: "";
    z-index: -1;
    transition: opacity 0.3s ease;
}

.contact-panel::before {
    top: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(rgb(168,155,153), 0.05) 49%, rgba(rgb(168,155,153), 0.05) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(rgb(125,113,111), 0.05) 49%, rgba(rgb(125,113,111), 0.05) 51%, transparent 52%);
    position: absolute;
    content: "";
    width: 100%;
    z-index: 0;
    height: 100%;
    left: 0;
    background-size: 40px 40px;
}

.contact-panel input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    outline: none;
    background: #ffffff;
    border-left-color: rgb(125,113,111);
}

.contact-panel .help-reach {
    margin-top: 10px;
    align-items: flex-start;
    gap: 12px;
    display: flex;
}

.contact-panel .help-reach input[type="checkbox"]:checked::after {
    left: 50%;
    border-right: 2px solid #ffffff;
    width: 5px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 40%;
    border-bottom: 2px solid #ffffff;
    position: absolute;
    content: "";
}

.contact-panel .reach-grid:hover {
    background: rgb(125,113,111);
}

.contact-panel .reach-grid:hover::after {
    width: 300%;
    height: 300%;
}

.contact-panel svg path {
    transition: all 0.3s ease;
    fill: rgb(168,155,153);
}

.contact-panel svg:hover path {
    fill: rgb(125,113,111);
}



@media (min-width: 768px) {.plan-list .skill-plans {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}.plan-list .price-view {
    text-align: left;
    flex: 0 0 30%;
    order: 2;
    margin-bottom: 0;
}.plan-list .price-view h2 {
    text-align: left;
}.plan-list .price-view h2::after {
    left: 0;
    transform: none;
}.plan-list .value-fees {
    margin: 0;
    text-align: left;
}.plan-list .discount-price {
    order: 1;
    flex: 0 0 65%;
    grid-template-columns: repeat(2, 1fr);
}
}



@media (max-width: 767px) {.company-overview {
    padding: 4rem 0;
}.company-overview h1 {
    font-size: calc(46px * 0.9);
}.company-overview .community-team {
    padding: 2rem;
    margin-bottom: 2rem;
}.company-overview .community-team h4 {
    font-size: 22px;
}.company-overview .community-team div {
    font-size: calc(18px * 0.95);
    max-height: 200px;
}}



@media (max-width: 576px) {.site-map .head-pagebar,
    .site-map .header-mainbar,
    .site-map .subscribe_holder {
    padding: 2.5rem 1.5rem;
}.site-map .contest-info {
    padding: 2.5rem 0 1.5rem;
}.site-map .info_item {
    padding: 0.5rem 0;
}.site-map .info_item p,
    .site-map .info_item a {
    justify-content: center;
}}



@media (max-width: 480px) {.course-program .knowledge-base {
    height: 300px;
}.course-program .tech-skills {
    padding: 2rem 1.5rem;
}.course-program .tech-skills h3 {
    padding-left: 1rem;
}.course-program .tech-skills p {
    padding-left: 1rem;
}.course-program .tech-skills .reach-grid {
    margin-left: 1rem;
}}



@media (min-width: 992px) {.user-testimonials {
    padding: 7rem 3rem;
}.user-testimonials h2 {
    max-width: 70%;
    font-size: calc(34px * 1.1);
}.user-testimonials .alumni-testimonials {
    gap: 3rem;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}.user-testimonials .review-corner {
    padding: 2.25rem;
}.user-testimonials .review-corner img {
    height: 70px;
    width: 70px;
}
}



@media (min-width: 768px) {.stay-updated .study-training {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
}.stay-updated h4 {
    max-width: 60%;
}.stay-updated .input_holder {
    max-width: 50%;
}
}



@media (max-width: 1024px) {.data-analysis .top-statistics {
    max-width: 100%;
}.data-analysis .statistics-highlights h4 {
    padding: 2rem;
    font-size: calc(31px * 1.3);
}.data-analysis .statistics-highlights span {
    padding: 2rem;
}
}



@media (max-width: 992px) {.leadership-profile {
    padding: 80px 0;
}.leadership-profile .review-corner {
    transform: none;
    grid-template-areas:
      "img-preview"
      "name"
      "career-box"
      "career-details";
    gap: 15px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
}.leadership-profile .career-details,
  .leadership-profile .img-preview,
  .leadership-profile .name,
  .leadership-profile .review-corner > span:not(.name) {
    transform: none;
}.leadership-profile .review-corner:hover .career-details,
  .leadership-profile .review-corner:hover .img-preview,
  .leadership-profile .review-corner:hover .name,
  .leadership-profile .review-corner:hover > span:not(.name) {
    transform: none;
}.leadership-profile .img-preview {
    margin: 0 auto;
    height: 240px;
    width: 90%;
}.leadership-profile .career-details {
    padding: 30px;
}.leadership-profile .name,
  .leadership-profile .review-corner > span:not(.name) {
    text-align: center;
    margin: 0 auto;
    width: 90%;
}
}



@media (max-width: 992px) {.ideal-participants {
    padding: 4rem 0;
}.ideal-participants h3 {
    font-size: calc(34px * 0.9);
}.ideal-participants ul {
    gap: 1rem;
}.ideal-participants ul li {
    padding: 1.1rem 1.3rem;
}
}



@media (max-width: 576px) {.title-screen .study-training {
    padding: 3rem 1rem;
}.title-screen h1 {
    font-size: calc(42px * 0.8);
    text-align: center;
}.title-screen h1::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}.title-screen h1:not(:empty)::after {
    animation: scale-in-center 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}.title-screen .metadata-block {
    border-top: 3px solid rgb(168,155,153);
    text-align: center;
    border-left: none;
    padding: 1.5rem;
}.title-screen svg {
    width: 80px;
    height: 80px;
}.title-screen .learning-intro::before,
    .title-screen .learning-intro::after {
    width: 15%;
}.title-screen .reach-grid {
    font-size: calc(20px * 0.9);
    padding: 0.8rem 1.8rem;
}}



@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

@keyframes beamScan {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    20%, 35% {
        opacity: 0.8;
    }
    80%, 100% {
        opacity: 0;
        transform: translateY(100%);
    }
}



@keyframes flashIcon {
    0% {
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}



@keyframes fade-up {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

