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

.app-store {
    flex: 0 0 auto;
}

.app-store {
    padding: 5rem 0 2rem;
    position: relative;
    color: #ffffff;
}

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

header,footer {
    width: 100%;
}

header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    position: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    z-index: 100;
    left: 0;
    transition: all 0.5s ease;
}

.data-summary::after {
    width: 100%;
    z-index: 1;
    content: "";
    opacity: 0.3;
    position: absolute;
    background-image: 
        linear-gradient(0deg, transparent 95%, rgb(217,199,200,0.5) 95%, rgb(217,199,200,0.5) 100%, transparent 100%),
        linear-gradient(90deg, transparent 95%, rgb(217,199,200,0.5) 95%, rgb(217,199,200,0.5) 100%, transparent 100%);
    left: 0;
    top: 0;
    background-size: 20px 20px;
    height: 100%;
}

.data-summary h2::before,
.data-summary h2::after {
    position: absolute;
    width: 60px;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: rgb(217,199,200);
    content: "";
}

.data-summary h2::before {
    right: calc(100% + 20px);
}

.data-summary .statistics-edge {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 150px;
    padding: 20px;
    z-index: 3;
    border-radius: 50%;
    height: 150px;
    display: flex;
    position: relative;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.data-summary .statistics-edge:hover::before {
    opacity: 1;
}

.data-summary .statistics-edge:nth-child(2) {
    --rotation: 36deg;
}

.data-summary .statistics-edge:nth-child(4) {
    --rotation: 108deg;
}

.data-summary .statistics-edge:nth-child(6) {
    --rotation: 180deg;
}

.data-summary .statistics-edge:nth-child(8) {
    --rotation: 252deg;
}

.data-summary .statistics-edge:nth-child(10) {
    --rotation: 324deg;
}

.data-summary .statistics-edge span {
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    font-size: calc(13px * 0.85);
    text-align: center;
}

.data-summary .statistics-edge:hover {
    z-index: 10;
    transform: scale(1.1);
}

.data-summary svg path {
    fill: rgb(185,163,164);
}

.data-summary .statistics-edge:hover svg {
    transform: rotate(45deg);
}

.data-summary ul.items-2,
.data-summary ul.items-3,
.data-summary ul.items-4 {
    max-width: 800px;
    margin: 0 auto;
}

.data-summary ul.items-7,
.data-summary ul.items-8,
.data-summary ul.items-9,
.data-summary ul.items-10 {
    max-width: 1200px;
    margin: 0 auto;
}

header .container {
    position: relative;
    padding: 1rem 2rem;
}

header .head-mainwrap {
    z-index: 2;
    justify-content: space-between;
    display: flex;
    position: relative;
    align-items: center;
}

header .header-mentor {
    display: flex;
    position: relative;
    align-items: center;
    gap: 2rem;
}

header .top-guide {
    color: #ffffff;
    font-size: 12px;
    padding: 0.5rem 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

header .top-guide::before {
    width: 0;
    content: "";
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, rgb(217,199,200), rgb(185,163,164));
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
}

header .site-info svg {
    transition: all 0.3s ease;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    height: 40px;
}

.find-us {
    isolation: isolate;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
    background: rgb(242,230,231);
}

.find-us::after {
    animation: blobMovement 20s ease-in-out infinite alternate;
    opacity: 0.1;
    content: "";
    top: -20%;
    background: rgb(185,163,164,0.5);
    z-index: -2;
    position: absolute;
    filter: blur(80px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 60%;
    height: 80%;
    right: -10%;
}

.find-us .online-questions {
    display: grid;
    background: #ffffff;
    position: relative;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    gap: 40px;
    border-radius: 23px;
}

.find-us .online-questions::after {
    bottom: 0;
    background: radial-gradient(circle at bottom right, rgb(217,199,200,0.5) 0%, transparent 60%);
    z-index: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    opacity: 0.05;
    left: 0;
    content: "";
}


.find-us h3 svg path {
    fill-opacity: 0.9;
    transition: all 0.3s ease;
}

.find-us .edu-tutor {
    line-height: 1.8;
    font-size: 17px;
    position: relative;
    margin: 0 40px 30px;
    grid-column: 1 / -1;
    color: #000000;
}

.find-us .reach-team {
    z-index: 2;
    display: flex;
    padding: 0 40px 40px;
    flex-direction: column;
    grid-column: span 2;
    position: relative;
    gap: 20px;
}

.find-us .reach-team span {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 15px 20px;
    background: rgb(242,230,231);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.find-us .reach-team span:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(8px);
}

.find-us .reach-team span svg {
    stroke-width: 0.8;
    stroke: rgb(217,199,200);
    width: 22px;
    fill: rgb(217,199,200);
    transition: all 0.3s ease;
    height: 22px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
    margin: 0 12px;
}

.find-us .reach-team span p {
    flex: 1;
    color: #000000;
    margin: 0;
    font-weight: 600;
}

.find-us .reach-team span span::before {
    display: none;
}

.find-us .reach-team span span a {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: rgb(217,199,200);
    transition: all 0.3s ease;
}

.find-us .reach-team span span a:hover svg {
    transform: rotate(15deg);
    stroke: rgb(185,163,164);
    fill: rgb(185,163,164);
    opacity: 1;
}

.find-us .reach-team span span a:hover {
    color: rgb(185,163,164);
}

.find-us .reach-team span span a:hover::after {
    background: rgb(185,163,164);
    width: 100%;
}

.find-us .chat-form {
    padding: 30px;
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(242,230,231), rgba(255, 255, 255, 0.9));
}

.find-us .chat-form h4 {
    color: rgb(217,199,200);
    font-size: 18px;
    position: relative;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
}


.find-us .chat-form h4 svg path {
    transition: all 0.3s ease;
}

.find-us .chat-form h4::after {
    height: 2px;
    background: rgb(217,199,200);
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    content: "";
    width: 30px;
    bottom: -5px;
}

.find-us .chat-form span svg {
    width: 18px;
    fill: rgb(217,199,200);
    stroke: rgb(242,230,231);
    transform-origin: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    stroke-width: 0.5;
    height: 18px;
    margin-right: 10px;
}

.find-us .chat-form span svg path {
    transition: all 0.3s ease;
    fill-opacity: 0.8;
}

.find-us .chat-form span:last-child {
    border-bottom: none;
}

.course-program-details {
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e0e6ed 100%);
    position: relative;
    padding: 7rem 0;
}

.course-program-details::after {
    opacity: 0.1;
    transform: scale(2);
    content: "";
    width: 100%;
    right: -50%;
    position: absolute;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgb(217,199,200,0.5) 0%, transparent 70%);
    z-index: 1;
    top: -50%;
}

.course-program-details .container {
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.course-program-details .learn-coding {
    display: grid;
    position: relative;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.course-program-details .media-image::before {
    opacity: 0.3;
    top: 0;
    content: "";
    background: linear-gradient(45deg, rgb(217,199,200,0.5) 0%, transparent 100%);
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.course-program-details .body-content {
    position: relative;
}

.course-program-details .body-content::before {
    opacity: 0.6;
    height: 1px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(217,199,200) 0%, transparent 100%);
    width: 150px;
    content: "";
    top: -20px;
}

.course-program-details h3::before {
    height: 100%;
    transform-origin: bottom;
    transform: scaleY(0);
    width: 3px;
    animation: growUp 1.2s forwards ease-out 0.2s;
    content: "";
    position: absolute;
    background: rgb(217,199,200);
    top: 0;
    left: 0;
}

.course-program-details p.description {
    display: none;
}

.course-program-details span.description::first-letter {
    font-weight: 700;
    color: rgb(217,199,200);
    font-size: 1.2em;
}



.course-program-details .body-content > div {
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s forwards ease-out 0.5s;
}

.thxWrap {
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(242,230,231) 0%, rgba(rgb(217,199,200), 0.1) 100%);
    position: relative;
}

.thxWrap::before {
    top: -50px;
    content: "";
    transform: rotate(45deg);
    width: 200px;
    position: absolute;
    opacity: 0.07;
    right: -50px;
    border-radius: 10px;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    height: 200px;
    background: linear-gradient(225deg, rgb(217,199,200) 0%, rgb(185,163,164) 100%);
    z-index: 1;
}

.thxWrap:hover::before {
    transform: rotate(55deg) scale(1.1);
}

.thxWrap .learn-study {
    background: #ffffff;
    padding: 40px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    box-shadow: 0 8px 32px rgba(#000000, 0.06);
    position: relative;
    border-left: 4px solid rgb(217,199,200);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.thxWrap .learn-study > div:first-child {
    position: relative;
}

.thxWrap .learn-study:hover > div:first-child::after {
    transform: scaleX(1.5);
}

.thxWrap h5 {
    position: relative;
    margin: 0 0 10px;
    line-height: 1.4;
    color: #000000;
    font-weight: 700;
    font-size: 24px;
}

.thxWrap p {
    transition: transform 0.3s ease;
    margin: 0;
    font-size: 15px;
    position: relative;
    color: #000000;
    line-height: 1.7;
}

.thxWrap a::before {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    left: 0;
    width: 100%;
    transform-origin: right;
    position: absolute;
    background: rgb(217,199,200);
}

.thxWrap .learn-study:hover > div:last-child::before {
    transform: rotate(0);
    opacity: 0.5;
}

.privacy-fortification {
    position: relative;
    background: linear-gradient(135deg, rgb(242,230,231), #ffffff 80%);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.5);
    font-family: Arial, sans-serif;
    padding: 4rem 2rem;
    overflow: hidden;
}

.privacy-fortification:hover::before {
    transform: scaleX(1);
}

.privacy-fortification::after {
    position: absolute;
    transform: skewX(-12deg) translateX(30%);
    opacity: 0.03;
    content: "";
    bottom: 0;
    z-index: 0;
    height: 100%;
    background: linear-gradient(to left, rgb(217,199,200,0.5), transparent);
    width: 50%;
    right: 0;
}

.privacy-fortification h1::after {
    position: absolute;
    bottom: 0;
    transition: width 0.4s ease-out;
    width: 80px;
    height: 3px;
    left: 0;
    content: "";
    transform-origin: left;
    background: rgb(185,163,164);
}

.privacy-fortification:hover h1::after {
    width: 120px;
}

.privacy-fortification h2:hover {
    padding-left: 1.5rem;
}

.privacy-fortification h3 {
    position: relative;
    color: #000000;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: calc(31px * 0.85);
    margin-top: 2rem;
}

.privacy-fortification h4::after {
    position: absolute;
    left: 0;
    height: 1px;
    bottom: -5px;
    width: 100%;
    content: "";
    background: linear-gradient(to right, rgb(185,163,164), transparent);
}

.privacy-fortification p:hover {
    transform: translateX(5px);
}

.privacy-fortification p strong {
    color: rgb(217,199,200);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.privacy-fortification p strong:hover::after {
    transform: scaleX(1);
}

.privacy-fortification span {
    display: block;
    margin-bottom: 1.5rem;
    border-left: 1px dashed rgb(185,163,164,0.5);
    padding-left: 1rem;
    color: #000000;
    font-size: 17px;
    line-height: 1.7;
}

.privacy-fortification li {
    color: #000000;
    padding-left: 1.5rem;
    transition: transform 0.3s ease;
    font-size: 17px;
    position: relative;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-fortification li:hover::before {
    transform: rotate(225deg);
    background-color: rgb(217,199,200);
}

.title-opener {
    position: relative;
    overflow: hidden;
    width: 100%;
    align-items: center;
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, rgb(242,230,231), rgb(217,199,200,0.5));
}

.title-opener::before {
    top: 0;
    position: absolute;
    width: 100%;
    content: "";
    z-index: 1;
    left: 0;
    background: linear-gradient(to right, rgb(217,199,200,0.5) 0%, transparent 100%);
    height: 100%;
}

.title-opener .exp-years {
    margin-bottom: 2rem;
    transform: translateY(20px);
    padding-left: 1rem;
    opacity: 0;
    border-left: 4px solid rgb(217,199,200);
    position: relative;
    animation: fadeInUp 0.8s 0.2s forwards ease-out;
}

.title-opener .learn-lead::after {
    height: 3px;
    content: "";
    width: 100%;
    position: absolute;
    transform: scaleX(0.3);
    transform-origin: left;
    background: linear-gradient(to right, rgb(185,163,164), transparent);
    bottom: -8px;
    transition: transform 0.5s ease;
    left: 0;
}

.title-opener .learning-page::before {
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.85;
    width: 100%;
    content: "";
    position: absolute;
    z-index: 1;
    background: linear-gradient(135deg, rgb(217,199,200,0.5), rgba(0, 0, 0, 0.5));
}

.title-opener .learning-page h3 {
    animation: fadeInUp 0.8s 0.8s forwards ease-out;
    font-weight: 600;
    line-height: 1.4;
    font-size: 19px;
    position: relative;
    transform: translateY(15px);
    opacity: 0;
    margin: 0;
    color: #ffffff;
}

.title-opener .learning-page h3::after {
    content: "";
    height: 3px;
    background: rgb(185,163,164);
    bottom: -12px;
    position: absolute;
    left: 0;
    width: 60px;
}

.meet-us::after {
    z-index: 2;
    background: linear-gradient(135deg, 
        rgb(217,199,200,0.5) 0%,
        transparent 65%);
    width: 100%;
    position: absolute;
    top: -50%;
    transform: rotate(-15deg);
    right: -50%;
    pointer-events: none;
    height: 200%;
    content: "";
}

.meet-us h2 {
    font-weight: 700;
    margin-bottom: 40px;
    transform: translateX(-10px);
    font-size: calc(30px * 1.2);
    display: inline-block;
    position: relative;
    color: #ffffff;
}



.meet-us .body-content {
    display: flex;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    border-left: 3px solid rgb(185,163,164);
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    opacity: 0;
    flex-direction: column;
    animation: fadeIn 1s 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.meet-us .body-content p::before {
    top: 50%;
    height: 10px;
    content: "";
    transform: translateY(-50%);
    width: 10px;
    position: absolute;
    left: -20px;
    background-color: rgb(217,199,200);
}

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

.dialogCookieSettings h5 {
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-size: 20px;
}

.cookie-view {
    align-items: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgb(217,199,200));
    margin-right: 15px;
    justify-content: center;
    display: flex;
}

.privacy-cookies {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    font-size: 14px;
    box-shadow: 0 0 15px rgb(217,199,200);
    line-height: 40px;
    background: linear-gradient(90deg, rgb(217,199,200), rgb(185,163,164));
    flex-shrink: 0;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    margin-left: 10px;
    min-width: 140px;
    border-radius: 18px;
    padding: 10px 20px;
}


.teaching-experience {
    background: rgb(242,230,231);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.teaching-experience .container {
    margin: 0 auto;
    position: relative;
    max-width: 800px;
    z-index: 2;
}

.teaching-experience .student-ratings {
    position: relative;
    border-radius: 2px;
    flex-direction: column;
    padding: 60px 40px 40px;
    display: flex;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.teaching-experience .student-ratings:hover .media-image {
    transform: rotate(-5deg);
}

.teaching-experience .name {
    color: #000000;
    margin-left: 0;
    font-size: calc(19px * 1.2);
    margin-top: 40px;
    letter-spacing: -0.5px;
    transition: transform 0.5s ease;
    font-weight: 700;
    transform: translateX(0);
}

.teaching-experience .student-ratings:hover .name {
    transform: translateX(10px);
}

.teaching-experience .student-ratings:hover span:not(.name) {
    color: rgb(217,199,200);
    transform: translateX(10px);
}

.teaching-experience .work-area {
    padding-left: 0;
    position: relative;
    font-size: 13px;
    margin-top: 40px;
    color: #000000;
    line-height: 1.8;
    transition: padding 0.5s ease;
    font-weight: 400;
}

.teaching-experience .student-ratings:hover .work-area {
    padding-left: 20px;
}

.teaching-experience .student-ratings:hover .work-area::before {
    transform: scaleX(1);
}

footer::before {
    z-index: -1;
    bottom: 0;
    right: 0;
    position: absolute;
    left: 0;
    content: "";
    opacity: 0.92;
    top: 0;
    background: linear-gradient(135deg, rgb(217,199,200,0.5) 0%, rgb(185,163,164,0.5) 100%);
}

.app-store .container {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
}

.app-store .company_holder::after {
    content: "";
    width: 1px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    top: 0;
    position: absolute;
    opacity: 0.3;
    height: 100%;
    right: 1.5rem;
}

.app-store .company_holder h3::after {
    box-shadow: 0 0 10px rgb(217,199,200);
    height: 3px;
    bottom: 0;
    position: absolute;
    background: rgb(217,199,200);
    width: 80px;
    content: "";
    left: 0;
}

.app-store .telegram-ref {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    flex: 0 0 60%;
}

.app-store .top-sitewrap {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 0;
}

.app-store .header-mentor h5 {
    padding-left: 1rem;
    font-size: 21px;
    transform: skewX(-5deg);
    font-weight: 600;
    margin: 0 0 1.5rem;
    position: relative;
    color: #ffffff;
}

.app-store .header-mentor .top-sitewrap {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-store .header-mentor .top-sitewrap a::before {
    left: -100%;
    width: 100%;
    content: "";
    transition: all 0.5s ease;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    top: 0;
    height: 100%;
}

.app-store .header-mentor .top-sitewrap a:hover::before {
    left: 100%;
}

.leaderboard {
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    background: rgba(0, 0, 0, 0.15);
    margin-top: 2rem;
    padding: 1.5rem 0;
    position: relative;
}

.leaderboard .event-cal {
    width: 100%;
    transform: skewX(-5deg);
    font-size: 13px;
    text-align: center;
    color: #ffffff;
}

.get-in-touch::before {
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgb(217,199,200,0.5) 0px,
        transparent 1px,
        transparent 10px,
        rgb(217,199,200,0.5) 11px
    );
    animation: gridMove 20s linear infinite;
    top: 0;
    content: "";
    left: 0;
    pointer-events: none;
    opacity: 0.05;
    position: absolute;
    height: 100%;
}

.get-in-touch h2 {
    font-family: Arial, sans-serif;
    text-align: center;
    font-weight: 700;
    padding-bottom: 15px;
    font-size: 34px;
    color: #ffffff;
    margin-bottom: 60px;
    position: relative;
}

.get-in-touch .connect-grid {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-radius: 18px;
}

.get-in-touch .media-image {
    min-height: 500px;
    transform: scale(1.01);
    transition: transform 0.6s ease;
    position: relative;
    flex: 1;
}

.get-in-touch .connect-map {
    flex: 1;
    padding: 50px;
    position: relative;
}

.get-in-touch .connect-map::before {
    width: 50px;
    border-top: 2px solid rgb(217,199,200,0.5);
    position: absolute;
    height: 50px;
    border-right: 2px solid rgb(217,199,200,0.5);
    opacity: 0.7;
    right: 20px;
    top: 20px;
    content: "";
}

.get-in-touch form {
    width: 100%;
}

.get-in-touch form h3 {
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    font-size: 22px;
}

.get-in-touch form input[type="text"] {
    color: #ffffff;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
    font-family: Arial, sans-serif;
    border-radius: 10px;
}

.get-in-touch .connect-card {
    align-items: flex-start;
    position: relative;
    display: flex;
    margin-bottom: 30px;
}

.get-in-touch .connect-card label {
    cursor: pointer;
    line-height: 1.5;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 35px;
    font-size: 16px;
}

.get-in-touch .connect-card input[type="checkbox"]:checked + label::before {
    background: rgb(217,199,200);
    border-color: rgb(217,199,200);
}

.get-in-touch .connect-card label a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(217,199,200);
}

.get-in-touch .connect-card label a:hover {
    text-decoration: underline;
}

.get-in-touch form .reach-inquiry {
    display: inline-block;
    background: linear-gradient(45deg, rgb(217,199,200), rgb(185,163,164));
    border: none;
    padding: 15px 35px;
    color: #ffffff;
    font-weight: 600;
    z-index: 1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    font-size: 14px;
    font-family: Arial, sans-serif;
    position: relative;
}

.get-in-touch svg {
    width: 24px;
    height: 24px;
    fill: rgb(217,199,200);
    margin-right: 15px;
}

.get-in-touch svg path {
    transition: fill 0.3s ease;
}

.plan-card::before {
    position: absolute;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(18, 46, 101, 0.85), rgba(44, 62, 80, 0.9));
    content: "";
    left: 0;
}

.plan-card .payment-deals {
    opacity: 0;
    color: #ffffff;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
    max-width: 700px;
    line-height: 1.6;
    text-align: center;
    font-size: 13px;
    position: relative;
    margin: 0 auto 60px;
}

.plan-card .tuition-grid li {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.plan-card .payment-scheme {
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    height: 100%;
    display: block;
    text-decoration: none;
    transform: translateZ(0);
}

.plan-card .payment-scheme:hover .learning-price {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 240, 240, 0.9));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-card .learning-price::before {
    position: absolute;
    top: 0;
    height: 6px;
    content: "";
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    transform: scaleX(0);
    width: 100%;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(217,199,200), rgb(185,163,164));
    left: 0;
}

.plan-card .payment-scheme:hover .study-sub h4 {
    color: rgb(217,199,200);
}

.plan-card .study-sub h4::after {
    height: 3px;
    left: 0;
    bottom: 0;
    position: absolute;
    transition: width 0.4s ease;
    background: rgb(217,199,200);
    content: "";
    width: 40px;
}

.plan-card .value-rates {
    font-weight: 700;
    position: relative;
    color: #000000;
    transition: all 0.3s ease;
    padding: 12px 25px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(240, 240, 240, 0.8), rgba(255, 255, 255, 0.9));
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 50px;
    font-size: calc(22px * 1.4);
}

.plan-card .payment-scheme:hover .value-rates::before {
    left: 100%;
}


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


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



@media (max-width: 991px) {.data-summary {
    padding: 100px 0;
}.data-summary .statistics-edge {
    width: 120px;
    height: 120px;
}.data-summary .statistics-edge span {
    font-size: calc(13px * 0.8);
}.data-summary ul {
    gap: 20px;
}
}



@media (max-width: 576px) {.data-summary {
    padding: 60px 0;
}.data-summary h2 {
    margin-bottom: 40px;
    font-size: calc(30px * 0.9);
}.data-summary .container {
    padding: 0 15px;
}.data-summary ul {
    gap: 15px;
}.data-summary .statistics-edge {
    width: calc(50% - 15px);
    height: auto;
    aspect-ratio: 1/1;
}.data-summary .statistics-edge p {
    font-size: calc(30px * 0.9);
}.data-summary .statistics-edge span {
    font-size: calc(13px * 0.75);
}
}



@media (max-width: 767px) {header {
    position: relative;
}header .head-mainwrap {
    flex-direction: column-reverse;
    gap: 1rem;
    padding: 1rem 0;
}header .site-info {
    margin-bottom: 0.5rem;
}header .header-mentor {
    padding: 0.5rem 0;
    overflow-x: auto;
    width: 100%;
    justify-content: flex-start;
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}header .header-mentor::before {
    display: none;
}header .top-guide {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}header .top-guide::before {
    display: none;
}}


@media (max-width: 767px) {.find-us {
    padding: 50px 0;
}.find-us .online-questions {
    gap: 15px;
}.find-us h3 {
    font-size: calc(34px - 0.3rem);
    margin: 25px 25px 15px;
}.find-us h3 svg {
    height: 22px;
    width: 22px;
    margin-right: 8px;
}.find-us .edu-tutor {
    margin: 0 25px 20px;
}.find-us .reach-team {
    padding: 0 25px 15px;
}.find-us .reach-team::before {
    left: 25px;
}.find-us .chat-form {
    margin: 0 25px 25px;
    padding: 25px;
}.find-us .chat-form h4 svg {
    width: 20px;
    height: 20px;
}
}



@media (min-width: 768px) {.course-program-details .learn-coding {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}.course-program-details .media-image {
    height: 500px;
    transform: perspective(1000px) rotateY(-5deg);
}.course-program-details h3 {
    font-size: 37px;
    padding-left: 1.5rem;
}.course-program-details span.description {
    column-count: 2;
}.course-program-details .body-content::after {
    width: 150px;
    height: 150px;
}
}



@media (min-width: 992px) {.course-program-details {
    padding: 9rem 0;
}.course-program-details .learn-coding {
    gap: 6rem;
}.course-program-details .media-image {
    height: 550px;
}.course-program-details span.description {
    column-gap: 3rem;
    column-count: 2;
}.course-program-details h3::before {
    width: 4px;
}.course-program-details .body-content::after {
    height: 180px;
    bottom: 20%;
    width: 180px;
    right: -5%;
}
}



@media (min-width: 768px) {.thxWrap {
    padding: 100px 0;
}.thxWrap .learn-study {
    gap: 50px;
    grid-template-columns: 1fr 1fr;
    padding: 60px;
}.thxWrap h5 {
    margin-bottom: 15px;
    font-size: calc(24px * 1.1);
}.thxWrap p {
    font-size: calc(15px * 1.05);
}.thxWrap .learn-study > div:first-child::after {
    bottom: -20px;
    width: 80px;
}
}



@media (max-width: 480px) {.thxWrap {
    padding: 40px 0;
}.thxWrap .learn-study {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    gap: 20px;
}.thxWrap h5 {
    font-size: calc(24px * 0.85);
}.thxWrap p {
    font-size: calc(15px * 0.95);
}.thxWrap .learn-study > div:first-child::after {
    width: 50px;
    bottom: -10px;
}
}



@media (max-width: 767px) {.privacy-fortification {
    padding: 2.5rem 1.25rem;
}.privacy-fortification::after {
    display: none;
}.privacy-fortification h1 {
    transform: translateX(0);
    font-size: calc(40px * 0.8);
}.privacy-fortification h2 {
    font-size: calc(31px * 0.8);
    padding-left: 0.75rem;
}.privacy-fortification h3 {
    font-size: calc(31px * 0.7);
}.privacy-fortification h4 {
    font-size: calc(31px * 0.6);
}.privacy-fortification p, .privacy-fortification span, .privacy-fortification li {
    font-size: calc(17px * 0.9);
    line-height: 1.6;
}.privacy-fortification ul {
    margin-left: 0.5rem;
}.privacy-fortification li {
    padding-left: 1.25rem;
}
}




@media (min-width: 768px) {.title-opener > div {
    padding: 3rem;
}.title-opener .learning-page > div {
    align-items: center;
    grid-template-columns: 1fr 1fr;
}.title-opener .learn-lead {
    font-size: calc(43px * 1.2);
}.title-opener .exp-years {
    margin-bottom: 3rem;
}.title-opener .learning-page {
    padding: 4rem;
}
}



@media (min-width: 992px) {.title-opener > div {
    padding: 4rem;
}.title-opener .learn-lead {
    font-size: calc(43px * 1.4);
}.title-opener .learning-page {
    margin-left: 5%;
    width: 95%;
}.title-opener .exp-years {
    border-left-width: 6px;
    padding-left: 2rem;
}
}



@media (max-width: 480px) {.title-opener > div {
    padding: 1.5rem;
}.title-opener .learn-lead {
    font-size: calc(43px * 0.7);
}.title-opener .learning-page {
    padding: 1.5rem;
}}



@media (min-width: 1200px) {.meet-us .body-content {
    margin-left: 80px;
    width: calc(100% - 80px);
}.meet-us .body-content div div {
    font-size: calc(16px * 1.05);
}
}



@media (max-width: 767px) {.meet-us {
    padding: 80px 0 100px;
}.meet-us h2 {
    font-size: calc(30px * 1.1);
    margin-bottom: 30px;
}.meet-us .body-content {
    padding: 30px;
}
}



@media (prefers-reduced-motion) {.meet-us .container,
    .meet-us .body-content,
    .meet-us h2::after {
    transform: none;
    animation: none;
    opacity: 1;
}}


@media only screen and (max-width: 800px) {.cookie-view {
    display: none;
}.data-consent {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.dialogCookieSettings h5 {
    margin-bottom: 5px;
    font-size: 19px;
}.track-accept {
    margin-bottom: 15px;
}.privacy-cookies {
    margin: 10px 0;
    min-width: 100%;
}}



@media (max-width: 1200px) {.app-store .company_holder {
    padding-right: 2rem;
    flex: 0 0 35%;
}.app-store .telegram-ref {
    flex: 0 0 65%;
}
}



@media (max-width: 992px) {.app-store {
    padding: 4rem 0 2rem;
}.app-store .container {
    flex-direction: column;
}.app-store .company_holder {
    padding-right: 0;
    flex: 0 0 100%;
    margin-bottom: 3rem;
}.app-store .company_holder::after {
    display: none;
}.app-store .telegram-ref {
    flex: 0 0 100%;
}.app-store .header-mentor {
    padding-bottom: 1.5rem;
}
}



@media (max-width: 576px) {.app-store {
    padding: 3rem 0 1rem;
}.app-store::before {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}.app-store .header-mentor {
    flex: 0 0 100%;
    padding: 0 0 2rem 0;
}.app-store .company_holder {
    margin-bottom: 2rem;
}.app-store .header-mentor .top-sitewrap a {
    padding: 0.6rem 0.8rem;
}.app-store .header-mentor .top-sitewrap a:hover {
    padding-left: 1.2rem;
}.leaderboard {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    margin-top: 1rem;
}
}



@media screen and (max-width: 991px) {.get-in-touch {
    padding: 80px 0;
}.get-in-touch .connect-grid {
    flex-direction: column;
}.get-in-touch .media-image {
    order: 1;
    min-height: 300px;
}.get-in-touch .connect-map {
    padding: 40px 30px;
    order: 2;
}
}



@media screen and (max-width: 480px) {.get-in-touch {
    padding: 40px 0;
}.get-in-touch h2 {
    font-size: calc(34px * 0.8);
}.get-in-touch form h3 {
    font-size: calc(22px * 0.9);
}.get-in-touch .connect-map::before,
    .get-in-touch .connect-map::after {
    width: 30px;
    height: 30px;
}}



@media (max-width: 991px) {.plan-card {
    padding: 80px 0;
}.plan-card h2 {
    font-size: calc(37px * 0.9);
}.plan-card .payment-deals {
    font-size: calc(13px * 0.95);
    margin-bottom: 50px;
}.plan-card .tuition-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}.plan-card .study-sub {
    padding: 30px 25px;
}
}



@media (max-width: 480px) {.plan-card {
    padding: 60px 0;
}.plan-card h2 {
    font-size: calc(37px * 0.8);
}.plan-card .payment-deals {
    margin-bottom: 35px;
    font-size: calc(13px * 0.85);
}.plan-card .study-sub {
    padding: 25px 20px;
}.plan-card .study-sub h4 {
    margin-bottom: 15px;
    padding-bottom: 12px;
}.plan-card .study-sub p {
    line-height: 1.5;
    font-size: calc(13px * 0.85);
}.plan-card .value-rates {
    font-size: calc(22px * 1.2);
    padding: 8px 18px;
}
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

@keyframes floatOrbit {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-30px, 20px);
    }
    50% {
        transform: translate(-20px, -30px);
    }
    75% {
        transform: translate(30px, -10px);
    }
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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



@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}



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

