.wrapper-viewport {
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    display: flex;
}

header,footer {
    width: 100%;
}

header {
    left: 0;
    position: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    top: 0;
    background: linear-gradient(120deg, 
        rgb(230,170,170) 0%, 
        rgb(230,170,170,0.5) 100%
    );
    width: 100%;
}

footer .info_item {
    margin-bottom: 15px;
    position: relative;
    margin-right: 30px;
}

footer .info_item svg {
    height: 18px;
    margin-right: 10px;
    top: 3px;
    position: relative;
    fill: rgb(230,170,170);
    width: 18px;
}

footer .head-info {
    margin-bottom: 15px;
}

footer .nav-lesson h5 {
    font-weight: 600;
    color: #000000;
    position: relative;
    margin-bottom: 25px;
    font-size: 18px;
}

footer .nav-main a:hover {
    color: rgb(230,170,170);
    transform: translateX(5px);
}

footer .subscribe_holder {
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.02);
}

footer .input_holder {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

footer .input_holder input[type="email"]:focus {
    border-color: rgb(230,170,170);
    outline: none;
}

footer .join-wrap:hover {
    background-color: rgb(202,140,140);
}

footer .copy-notice {
    margin-top: 50px;
}

.welcome {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, rgb(230,170,170,0.5) 50%, rgb(202,140,140,0.5) 100%);
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.welcome .main-begin {
    width: 500%;
    display: flex;
    height: 100%;
    animation: split-carousel 30s ease infinite;
}

.welcome .start-head {
    width: 20%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.welcome .start-head::before {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(0deg, transparent 95%, rgb(230,170,170,0.5) 100%),
        linear-gradient(90deg, transparent 95%, rgb(230,170,170,0.5) 100%);
    z-index: 2;
    opacity: 0.5;
    content: '';
    background-size: 20px 20px;
}

.welcome .info-panel::after {
    height: 6px;
    animation: line-animate 6s ease-in-out infinite;
    right: 0;
    transform-origin: right;
    position: absolute;
    background: rgb(230,170,170);
    bottom: 0;
    width: 50%;
    content: '';
}

.welcome .info-panel p {
    position: relative;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.welcome .info-panel .help-query:hover {
    color: #ffffff;
}

.welcome .info-panel .help-query:hover::before {
    width: 300%;
    height: 300%;
}

.cookieUsagePromptBar {
    transition: transform 0.3s ease-in-out;
    position: fixed;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    background: rgb(254,201,201);
    z-index: 90;
    bottom: 0;
    border-top: 3px solid rgb(230,170,170);
}

.cookieUsagePromptBar h5 {
    font-weight: 600;
    color: rgb(230,170,170);
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin-bottom: 8px;
}

.privacy-opt:hover {
    box-shadow: 0 0 10px rgb(202,140,140,0.5);
    background: rgb(202,140,140);
}

.cookieUsagePromptBar p a {
    text-decoration: underline;
    color: rgb(230,170,170);
    transition: color 0.3s ease;
}

#dataProtectionBox:checked ~ .cookieUsagePromptBar {
    opacity: 0;
    visibility: hidden;
}

.education-history .student-testimonials {
    justify-content: space-between;
    align-items: center;
    gap: 0;
    display: flex;
    z-index: 2;
    transform-style: preserve-3d;
    flex-direction: row;
    position: relative;
}

.education-history .img-text::after {
    width: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgb(230,170,170,0.5) 100%
    );
    transition: opacity 0.6s ease;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    border-radius: 25px;
    height: 100%;
    opacity: 0.4;
}

.education-history .exp-table::before {
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgb(202,140,140,0.5) 0%,
        transparent 70%
    );
    transition: transform 0.8s ease;
    content: "";
    left: -50%;
    transform: scale(0);
    opacity: 0.1;
    position: absolute;
    top: -50%;
}

.education-history .exp-table:hover .name::after {
    width: 100%;
}

.education-history .employee-summary {
    font-weight: 400;
    padding-left: 2rem;
    line-height: 1.7;
    position: relative;
    font-size: 15px;
    color: #000000;
    font-style: italic;
    border-left: 3px solid rgb(230,170,170,0.5);
}

.appPanel::before {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 1;
    width: 100%;
    content: "";
    opacity: 0.05;
    background: repeating-linear-gradient(
        45deg,
        rgb(230,170,170,0.5) 0,
        rgb(230,170,170,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    top: 0;
}

.appPanel .edu-philosophy {
    background: linear-gradient(145deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 
                0 5px 15px rgba(0,0,0,0.03);
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
    animation: fadeUpIn 1s forwards ease-out;
    transform: translateY(20px);
    opacity: 0;
    animation-delay: 0.5s;
    position: relative;
}

.appPanel li span::after {
    content: "";
    height: 1px;
    opacity: 0.2;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(230,170,170,0.5) 0%, transparent 100%);
    width: 100%;
    left: 0;
    position: absolute;
}

.experience-trial::before {
    left: 0;
    transform: translateZ(-10px);
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    content: "";
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.05) 15px,
        transparent 15px,
        transparent 30px
    );
}

.experience-trial .container div {
    animation: buttonContainer 0.5s ease-out 0.4s both;
    justify-content: center;
    margin-top: 1.5rem;
    align-items: center;
    display: flex;
    transform: translateZ(30px);
}

.experience-trial .container div span:hover::before {
    opacity: 1;
    transform: scale(1);
}

.experience-trial .help-query {
    font-size: 16px;
    border-radius: 10px;
    background: #ffffff;
    justify-content: center;
    font-weight: 700;
    align-items: center;
    display: inline-flex;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.9rem 2.5rem;
    color: rgb(230,170,170);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
}

.experience-trial .help-query:hover span {
    transform: scale(1.05);
}

.client-experience::after {
    animation: float 18s ease-in-out infinite alternate-reverse;
    z-index: 0;
    filter: blur(40px);
    border-radius: 50% 50% 40% 60% / 40% 40% 60% 50%;
    opacity: 0.07;
    height: 15vw;
    right: -5%;
    position: absolute;
    content: "";
    bottom: -5%;
    background: radial-gradient(circle, rgb(230,170,170) 0%, rgba(rgb(230,170,170,0.5), 0) 70%);
    width: 15vw;
}

.client-experience h2:hover::after {
    transform: translateX(20px) scaleX(1.2);
}

.client-experience .student-testimonials {
    transform-style: preserve-3d;
    transform: translateZ(0) rotateY(0deg);
    position: relative;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                0 1px 5px rgba(rgba(0, 0, 0, 0.5), 0.03);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.85, 0.4, 1), 
                box-shadow 0.4s cubic-bezier(0.2, 0.85, 0.4, 1);
    backface-visibility: hidden;
    background: #ffffff;
}

.client-experience .student-testimonials:hover img {
    border-color: rgba(rgb(202,140,140,0.5), 0.3);
    transform: scale(1.05);
}

.client-experience .student-testimonials h4::after {
    height: 2px;
    left: 0;
    content: "";
    width: 0;
    bottom: -5px;
    background: linear-gradient(90deg, rgb(202,140,140) 0%, rgba(rgb(202,140,140,0.5), 0.3) 100%);
    position: absolute;
    transition: width 0.4s cubic-bezier(0.2, 0.85, 0.4, 1);
}

.client-experience a:hover {
    box-shadow: 0 8px 25px rgba(rgb(202,140,140,0.5), 0.3);
    transform: translateY(-3px);
}

.client-experience a:hover::before {
    left: 100%;
}

.tariff-option {
    background: linear-gradient(135deg, rgb(254,201,201) 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tariff-option::before {
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgb(230,170,170,0.5) 0%, transparent 40%);
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    z-index: 1;
}

.tariff-option .annual-plan h2::after {
    background: rgb(230,170,170);
    width: 80px;
    transform: translateX(-50%);
    position: absolute;
    height: 3px;
    content: "";
    left: 50%;
    bottom: -10px;
}

.tariff-option .plan-rates {
    height: 100%;
    position: relative;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    border-radius: 10px;
    display: block;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tariff-option .learning-fees h3 {
    font-size: calc(19px * 1.2);
    position: relative;
    color: #000000;
    font-weight: 700;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.tariff-option .rate-options::before {
    width: 0;
    content: "";
    background: rgb(230,170,170);
    transition: width 0.3s ease;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.tariff-option .img-text::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    content: "";
}

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

.secure-citadel h2 {
    color: #ffffff;
    font-weight: 600;
    font-size: 32px;
}

.secure-citadel ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.secure-citadel ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    font-size: 17px;
    color: #ffffff;
}

.secure-citadel div {
    margin: 20px 0;
}

.meet-us {
    position: relative;
    background: linear-gradient(135deg, rgb(230,170,170) 0%, #000000 100%);
    overflow: hidden;
    padding: 150px 0;
    color: #ffffff;
}

.meet-us {
    padding: 100px 0;
}



.meet-us .container {
    position: relative;
    z-index: 5;
}

.meet-us h2::before {
    width: 100px;
    height: 1px;
    left: 50%;
    background-color: rgb(230,170,170);
    position: absolute;
    bottom: -20px;
    transform: translateX(-50%);
    content: "";
}

.meet-us .study-space:first-child {
    animation: card-in-left 1s ease-out forwards;
    transform-origin: right center;
}

.meet-us .study-space:first-child {
    animation: card-in-top 1s ease-out forwards;
}

.meet-us .study-space p {
    opacity: 1;
    line-height: 1.8;
    text-align: center;
    padding: 0 40px;
    margin: 0;
    font-size: 17px;
    color: #ffffff;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.meet-us .study-space:hover::before {
    transform: skewY(-2deg);
}

.meet-us .study-space h3::before {
    height: 1px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    position: absolute;
    background-color: rgb(202,140,140);
    width: 30px;
}

.meet-us .study-space:last-child::before {
    border-left: 1px solid rgb(202,140,140,0.5);
}

.meet-us .study-space:last-child::before {
    border-top: 1px solid rgb(202,140,140,0.5);
    border-left: none;
}



.meet-us .container::before {
    border-radius: 20px;
    position: absolute;
    opacity: 0.2;
    border: 1px solid rgb(230,170,170,0.5);
    width: 200px;
    transform: rotate(45deg);
    content: "";
    height: 200px;
    left: -100px;
    animation: float-element 10s ease-in-out infinite;
    top: -100px;
}

header:after {
    left: 0;
    pointer-events: none;
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-image: 
        linear-gradient(to right, 
            transparent 20%, 
            rgba(255, 255, 255, 0.05) 40%, 
            rgba(255, 255, 255, 0.05) 60%, 
            transparent 80%
        ),
        linear-gradient(to bottom, 
            transparent 20%, 
            rgba(255, 255, 255, 0.05) 40%, 
            rgba(255, 255, 255, 0.05) 60%, 
            transparent 80%
        );
    background-size: 100px 100px;
}

header .nav-start:before {
    border-radius: 50%;
    width: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) translateX(-40px);
    position: absolute;
    opacity: 0.5;
    height: 20px;
    top: 50%;
    left: 0;
    content: '';
}

header .nav-lesson {
    position: relative;
    align-items: center;
    display: flex;
    gap: 30px;
}

header .nav-lesson:hover:before {
    opacity: 0.7;
}

header .head-bar:before {
    border-radius: 50%;
    height: 6px;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    width: 6px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    position: absolute;
    left: -12px;
    transition: all 0.3s ease;
    background: #ffffff;
}

header .head-bar:hover:before {
    left: -20px;
    opacity: 1;
}

header .top-header {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px;
    display: flex;
    align-items: center;
}

header .top-header:hover:before {
    opacity: 1;
}

header .top-header:hover:after {
    animation: circuit 3s infinite;
    opacity: 1;
}

header .top-header:hover svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.program-details::after {
    animation: floatAnimation 15s infinite alternate ease-in-out;
    background-color: rgb(230,170,170,0.5);
    right: -50px;
    filter: blur(80px);
    z-index: 0;
    position: absolute;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    top: -50px;
    content: "";
}

.program-details .info-panel h2:hover {
    transform: translateX(10px);
}

.program-details .info-panel .description {
    border-left: 2px solid rgb(230,170,170);
    color: #000000;
    position: relative;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.7;
}

.program-details .img-text {
    opacity: 0.2;
    top: 0;
    z-index: 1;
    position: absolute;
    transition: opacity 0.5s ease, transform 0.5s ease;
    height: 100%;
    width: 100%;
    left: 0;
}

.program-details .img-text::after {
    bottom: 0;
    background: linear-gradient(225deg, rgb(202,140,140,0.5) 0%, transparent 100%);
    right: 0;
    height: 40%;
    width: 80%;
    z-index: 1;
    position: absolute;
    content: "";
}



.program-details .info-panel::after {
    height: 100px;
    width: 100px;
    position: absolute;
    top: -40px;
    content: "";
    animation: rotateAnimation 30s infinite linear reverse;
    border: 2px dashed rgb(230,170,170,0.5);
    z-index: -1;
    right: -60px;
    border-radius: 50%;
}

.program-details .info-panel .description:last-child::before {
    height: 100%;
    content: "";
    left: 0;
    background-position: center;
    top: 0;
    background-size: cover;
    filter: brightness(0.5) contrast(1.2);
    border-radius: 12px;
    z-index: -1;
    width: 100%;
    position: absolute;
}

.program-results {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(254,201,201) 0%, #ffffff 100%);
}

.program-results::after {
    right: -50%;
    opacity: 0.03;
    z-index: 0;
    transform: rotate(-15deg);
    position: absolute;
    width: 100%;
    background: rgb(230,170,170,0.5);
    pointer-events: none;
    height: 100%;
    content: "";
    top: -50%;
}

.program-results .info-panel {
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.05),
        -8px -8px 20px rgba(255, 255, 255, 0.8),
        inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    padding: 40px;
    flex: 1;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
}

.program-results li {
    transition: transform 0.3s ease;
    transform: translateX(0);
    margin-bottom: 18px;
}

.program-results li:hover p {
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.05),
        -8px -8px 20px rgba(255, 255, 255, 1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.9);
}

.program-results svg {
    position: relative;
    z-index: 1;
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
}

.program-results svg path {
    fill: rgb(230,170,170);
    transition: fill 0.3s ease;
}

.program-results .info-panel > div {
    flex-direction: column;
    display: flex;
    gap: 10px;
}

.contact-panel {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.contact-panel .container {
    padding: 0 20px;
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
}

.contact-panel .connect-reach {
    display: flex;
    position: relative;
    flex-direction: column;
}

.contact-panel .connect-list h3::after {
    content: '';
    left: 0;
    background: rgb(202,140,140);
    height: 2px;
    position: absolute;
    width: 100%;
    bottom: -10px;
}

.contact-panel .connect-list div svg {
    width: 18px;
    margin-right: 10px;
    vertical-align: middle;
    height: 18px;
    display: inline-block;
}

.contact-panel .reach-request {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-radius: 12px;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: grid;
    padding: 40px;
}

.contact-panel .reach-request input#email {
    grid-column: span 1;
}

.contact-panel .reach-request input::placeholder {
    opacity: 0.6;
    color: #000000;
}

.contact-panel .reach-request .query-info {
    grid-column: span 2;
    display: flex;
    align-items: center;
}

.contact-panel .reach-request .query-info input[type="checkbox"]:checked {
    border-color: rgb(202,140,140);
    background-color: rgb(202,140,140);
}

.contact-panel .reach-request .query-info label {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
}

.contact-panel .reach-request .query-info label a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgb(202,140,140);
}

.statistical-details {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(254,201,201) 0%, rgba(240, 240, 250, 0.9) 100%);
    padding: 100px 0 80px;
}

.statistical-details::after {
    position: absolute;
    border-radius: 50%;
    bottom: -50px;
    filter: blur(80px);
    opacity: 0.15;
    background: linear-gradient(to right, rgb(202,140,140,0.5), transparent);
    z-index: 0;
    height: 300px;
    content: "";
    width: 300px;
    right: -50px;
}

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

.statistical-details .statistics-benefits {
    transform-style: preserve-3d;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    transform: translateZ(0) translateY(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    overflow: hidden;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 30px 20px;
    justify-content: center;
    background: #ffffff;
    flex-direction: column;
}

.statistical-details .statistics-benefits:hover::after {
    opacity: 1;
}

.statistical-details .statistics-benefits p {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: calc(46px * 1.2);
    -webkit-text-fill-color: transparent;
    transform: perspective(500px) translateZ(0);
    font-weight: 700;
    color: rgb(230,170,170);
    background: linear-gradient(135deg, rgb(230,170,170) 0%, rgb(202,140,140) 100%);
    -webkit-background-clip: text !important;
    position: relative;
    background-clip: text !important;
    margin: 0;
}



@media (max-width: 767px) {footer .transcript {
    padding: 50px 0 30px;
}footer .send-request {
    flex-direction: column;
    gap: 15px;
}footer .info_item {
    margin-right: 0;
    margin-bottom: 20px;
}footer .subscribe_holder {
    padding: 20px;
}footer .copy-notice {
    margin-top: 30px;
}
}



@media (max-width: 768px) {.welcome {
    min-height: 500px;
}.welcome .info-panel {
    width: 90%;
    padding: 2.5rem;
}.welcome .info-panel h1 {
    font-size: calc(41px * 0.9);
}.welcome .page-first::before {
    background: linear-gradient(
            135deg,
            #000000 20%,
            rgb(202,140,140,0.5) 40%,
            transparent 80%
        );
}
}


@media only screen and (max-width: 1200px) {.cookie-apply {
    flex-direction: column;
    align-items: center;
}.edu-track {
    margin-bottom: 15px;
}.data-policy {
    margin-right: 0;
    text-align: center;
    margin-bottom: 15px;
}.privacy-opt {
    width: 100%;
    margin-left: 0;
    max-width: 200px;
    margin-bottom: 10px;
}
}



@media (max-width: 768px) {.appPanel h2 {
    font-size: calc(37px * 0.8);
    margin-bottom: 2rem;
}.appPanel .edu-philosophy {
    padding: 1.75rem;
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 15px), 
            calc(100% - 15px) 100%, 
            0 100%
        );
}.appPanel li span {
    font-size: 13px;
}.appPanel::after {
    height: 200px;
    width: 200px;
    top: -5%;
    right: -10%;
}
}



@media (min-width: 992px) {.experience-trial {
    padding: 8rem 4rem;
}.experience-trial::after {
    height: 150%;
    width: 150%;
}.experience-trial h6 {
    font-size: calc(21px * 1.5);
    margin-bottom: 3.5rem;
    max-width: 70%;
}.experience-trial .container div {
    margin-top: 2rem;
}.experience-trial .help-query {
    font-size: calc(16px * 1.1);
    padding: 1.1rem 3.5rem;
}
}



@media (max-width: 480px) {.experience-trial {
    padding: 3.5rem 1rem;
}.experience-trial h6 {
    line-height: 1.6;
    font-size: calc(21px * 0.9);
}.experience-trial .help-query {
    padding: 0.7rem 1.8rem;
    font-size: calc(16px * 0.9);
}}



@media (max-width: 576px) {.client-experience {
    padding: 2.5rem 0;
}.client-experience h2 {
    font-size: calc(29px * 0.7);
}.client-experience .student-testimonials {
    padding: 1.25rem;
}.client-experience .student-testimonials img {
    width: 40px;
    height: 40px;
}.client-experience .student-testimonials h4 {
    font-size: calc(22px * 0.8);
}.client-experience .student-testimonials .description {
    font-size: calc(14px * 0.9);
}.client-experience a {
    width: 100%;
    text-align: center;
}}



@media (max-width: 767px) {.tariff-option {
    padding: 4rem 0;
}.tariff-option .learning-fees {
    padding: 1.5rem;
}.tariff-option .learning-fees h3 {
    font-size: 19px;
}.tariff-option .rate-options {
    font-size: 19px;
}.tariff-option .learning-fees p {
    line-height: 1.5;
    font-size: calc(17px * 0.9);
    max-height: 150px;
    overflow-y: auto;
}.tariff-option .img-text {
    height: 150px;
}
}



@media screen and (max-width: 768px) {.meet-us {
    padding: 80px 0;
}.meet-us h2 {
    margin-bottom: 60px;
    font-size: calc(45px * 0.8);
    letter-spacing: 3px;
}.meet-us .study-space h3 {
    letter-spacing: 1px;
    font-size: calc(23px * 0.9);
}.meet-us .study-space p {
    padding: 0 30px;
}.meet-us .container::before,
    .meet-us .container::after {
    width: 150px;
    height: 150px;
}
}



@media (max-width: 480px) {header .container {
    padding: 10px 15px;
}header .top-header svg {
    height: 30px;
}}



@media (max-width: 1024px) {.program-details {
    padding: 80px 0;
}.program-details .info-panel {
    width: 90%;
}
}



@media (max-width: 768px) {.program-details {
    padding: 60px 0;
}.program-details .info-panel {
    width: 100%;
    margin-bottom: 40px;
}.program-details .info-panel h2 {
    font-size: calc(37px * 0.9);
    margin-bottom: 20px;
}.program-details .info-panel .description:last-child {
    padding: 25px 30px;
}
}



@media (min-width: 768px) {.program-results .info-panel > div {
    flex-direction: row;
    display: flex;
    gap: 30px;
}.program-results .info-panel > div > ul {
    flex: 1;
}
}



@media (min-width: 992px) {.program-results {
    padding: 150px 0;
}.program-results .edu-philosophy {
    gap: 60px;
    align-items: center;
    flex-direction: row;
}.program-results h4 {
    font-size: calc(21px * 1.1);
}.program-results .info-panel {
    padding: 50px;
}.program-results .img-text {
    max-width: 45%;
}
}



@media screen and (min-width: 992px) {.contact-panel .connect-reach {
    gap: 50px;
    align-items: center;
    flex-direction: row;
}.contact-panel .connect-list {
    margin-bottom: 0;
    width: 30%;
    text-align: left;
}.contact-panel .connect-list h3 {
    margin-bottom: 30px;
}.contact-panel .connect-list h3::after {
    width: 50%;
}.contact-panel .connect-list div {
    display: block;
    text-align: left;
    margin: 15px 0;
}.contact-panel .reach-request {
    width: 70%;
}
}



@media screen and (max-width: 480px) {.contact-panel {
    padding: 40px 0;
}.contact-panel .connect-list div {
    text-align: left;
    display: block;
    width: 100%;
    margin: 10px 0;
}}



@media (max-width: 768px) {.statistical-details {
    padding: 70px 0 50px;
}.statistical-details h3 {
    font-size: calc(33px * 0.85);
    margin-bottom: 40px;
}.statistical-details ul {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}.statistical-details .statistics-benefits span {
    font-size: 14px;
}.statistical-details .statistics-benefits p {
    font-size: calc(46px * 1);
}
}



@keyframes split-carousel {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-20%);
    }
    40%, 56% {
        transform: translateX(-40%);
    }
    60%, 76% {
        transform: translateX(-60%);
    }
    80%, 96% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}



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



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}



@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(5%, 2%) rotate(5deg);
    }
    100% {
        transform: translate(-5%, -2%) rotate(-5deg);
    }
}



@keyframes card-in-right {
    0% {
        transform: translateX(100%) rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

@keyframes card-in-top {
        0% {
            transform: translateY(-100%);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }



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

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 20px) scale(1.2);
    }
    50% {
        transform: translate(0, 40px) scale(0.8);
    }
    75% {
        transform: translate(-30px, 20px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

