html,body {
    scroll-snap-type: none;
    min-height: 100%;
    auto
    scroll-behavior: smooth;
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
    auto
contain
touch-action: none;
}

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


.dev_data_insights {
    z-index: 1;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: rgb(230,225,233);
}

.dev_data_insights .container {
    position: relative;
    flex-direction: column;
    display: flex;
}

.dev_data_insights h2 {
    position: relative;
    margin: 0 0 70px;
    font-size: 28px;
    padding-left: 20px;
    border-left: 5px solid rgb(201,191,208);
    text-align: left;
    font-weight: 700;
    color: #000000;
}

.dev_data_insights ul::before {
    left: 25px;
    width: 2px;
    content: "";
    height: 100%;
    top: 0;
    background: linear-gradient(to bottom, rgb(201,191,208,0.5), rgb(164,152,173,0.5));
    z-index: 0;
    position: absolute;
}

.dev_data_insights .dev_boost_statistics::after {
    width: 20px;
    border: 3px solid rgb(201,191,208);
    transform: translateY(-50%);
    background: #ffffff;
    top: 50%;
    z-index: 2;
    border-radius: 50%;
    height: 20px;
    left: -35px;
    position: absolute;
    content: "";
}

.dev_data_insights .dev_boost_statistics:nth-child(3)::after {
    background: rgb(201,191,208);
    border-color: #ffffff;
}

.dev_data_insights .dev_boost_statistics:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateX(15px);
}

.dev_data_insights .dev_boost_statistics span {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    grid-row: 1;
    position: relative;
    padding: 0 0 0 25px;
    grid-column: 2;
    position: relative;
    color: #000000;
}

.dev_data_insights svg {
    fill: rgb(201,191,208);
    height: 40px;
    transition: transform 0.3s ease;
    margin-left: 20px;
    width: 40px;
    grid-row: 1;
    grid-column: 3;
}



.dev_data_insights .dev_boost_statistics:nth-child(1) {
    animation-delay: 0.1s;
}

.dev_register_now {
    z-index: 1;
    background: linear-gradient(110deg, rgb(201,191,208) 0%, rgb(164,152,173) 100%);
    padding: 140px 0;
    overflow: hidden;
    position: relative;
}

.dev_register_now::after {
    content: '';
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(255, 255, 255, 0) 0deg,
        rgba(255, 255, 255, 0.03) 90deg,
        rgba(255, 255, 255, 0) 180deg,
        rgba(255, 255, 255, 0.03) 270deg,
        rgba(255, 255, 255, 0) 360deg
    );
    width: 200%;
    left: -50%;
    z-index: -1;
    top: -50%;
    height: 200%;
    position: absolute;
    animation: rotateConic 30s linear infinite;
}

.dev_register_now h3 {
    letter-spacing: 2px;
    perspective: 1000px;
    font-family: Arial, sans-serif;
    margin: 60px 0;
    color: #ffffff;
    transition: all 0.5s ease;
    text-align: center;
    position: relative;
    transform: rotateX(5deg);
    text-transform: uppercase;
    font-size: 34px;
    transform-style: preserve-3d;
    padding: 0 20px;
    font-weight: 700;
}

.dev_register_now h3:hover {
    transform: rotateX(0deg);
}

.dev_register_now .dev_course_faq {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 100%
    );
    transition: all 0.4s ease;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    overflow: hidden;
    font-weight: 600;
    padding: 20px 50px;
    transform: perspective(1000px) rotateX(10deg);
    color: rgb(201,191,208);
    transform-origin: bottom center;
    font-size: 14px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    z-index: 1;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.dev_trade_mark .company_holder h3 {
    text-shadow: 0 0 10px rgb(201,191,208,0.5);
    color: #ffffff;
    font-size: calc(30px * 0.9);
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    font-weight: 700;
}

.dev_trade_mark .company_holder h3 {
    position: relative;
    overflow: hidden;
}

.dev_trade_mark .dev_footer_social {
    position: relative;
    display: flex;
    flex: 0 0 65%;
    justify-content: space-between;
}

.dev_trade_mark .dev_main_nav {
    overflow: hidden;
    flex: 0 0 45%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    position: relative;
    border-radius: 11px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dev_trade_mark .dev_main_nav h5::after {
    bottom: 0;
    height: 2px;
    background: rgb(201,191,208);
    transition: width 0.3s ease, box-shadow 0.3s ease;
    left: 0;
    width: 40px;
    content: '';
    position: absolute;
}

.dev_trade_mark .dev_main_nav .dev_nav_main a:hover {
    padding-left: 5px;
    opacity: 1;
    color: #ffffff;
}

.dev_trade_mark .dev_main_nav .dev_nav_main a:hover::before {
    width: 100%;
    box-shadow: 0 0 5px rgb(201,191,208,0.5);
}

.dev_pledge_block::before {
    position: absolute;
    right: 0;
    height: 1px;
    left: 0;
    content: '';
    background: linear-gradient(90deg, transparent, rgb(201,191,208,0.5), transparent);
    top: 0;
}

footer::after {
    top: 0;
    bottom: 0;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
    content: '';
    z-index: 0;
    opacity: 0.3;
    left: 0;
    right: 0;
    position: absolute;
}

.dev_learning_process h2::after {
    transform-origin: left center;
    height: 3px;
    transform: scaleX(1);
    width: 85px;
    content: "";
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    background: rgb(201,191,208);
    bottom: -10px;
    left: 0;
}

.dev_learning_process:hover .dev_content_card {
    transform: translateY(-5px);
}

.dev_learning_process p::first-letter {
    font-size: 1.5em;
    color: rgb(201,191,208);
    font-weight: 700;
}

.dev_pricing_stack::before {
    bottom: 0;
    right: 0;
    z-index: 1;
    top: 0;
    left: 0;
    content: "";
    background: linear-gradient(135deg, rgba(34, 30, 80, 0.95), rgba(19, 31, 60, 0.85));
    position: absolute;
}

.dev_pricing_stack .dev_edu_rates {
    gap: 2rem;
    perspective: 1000px;
    list-style: none;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    margin: 0;
}

.dev_pricing_stack .dev_edu_rates li {
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.dev_pricing_stack .dev_study_costs {
    display: block;
    height: 100%;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dev_pricing_stack .dev_study_costs:hover .dev_cost_plan::before {
    transform: scaleX(1);
}

.dev_pricing_stack .dev_cost_matrix {
    height: 100%;
    flex-direction: column;
    color: #ffffff;
    padding: 2.5rem 2rem;
    display: flex;
}

.dev_pricing_stack .dev_cost_matrix h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: calc(19px * 1.2);
    margin-top: 0;
}

.dev_pricing_stack .dev_pricing_rates {
    padding: 0.75rem 1.5rem;
    justify-content: center;
    margin-top: auto;
    align-items: center;
    font-size: calc(12px * 1.3);
    align-self: flex-start;
    display: inline-flex;
    background: linear-gradient(120deg, rgb(201,191,208), rgb(164,152,173));
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    transition: all 0.3s ease;
}

.dev_tyNote .container {
    position: relative;
    padding: 0 1.5rem;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    transform: translateZ(0);
}

.dev_tyNote h2 {
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
    color: #000000;
    font-weight: 700;
    font-size: 37px;
    text-align: center;
    font-family: Arial, sans-serif;
    line-height: 1.3;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    transform: perspective(1000px) translateZ(0);
}

.dev_tyNote .dev_learn_track::before {
    animation: gradientMove 6s linear infinite;
    height: 5px;
    top: -2px;
    z-index: 1;
    background-size: 200% 100%;
    left: -2px;
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgb(201,191,208), rgb(164,152,173), rgb(201,191,208));
    right: -2px;
}

.dev_tyNote:hover .dev_learn_track {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 1px 6px rgba(rgba(0, 0, 0, 0.5), 0.07);
}

.dev_tyNote span {
    font-size: 17px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.7;
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
}

.dev_stay_updated::before {
    height: 100%;
    opacity: 0.4;
    z-index: 1;
    top: 0;
    position: absolute;
    content: "";
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(164,152,173,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(201,191,208,0.5) 0%, transparent 40%);
    left: 0;
}

.dev_stay_updated h3 {
    font-size: 21px;
    position: relative;
    color: #000000;
    margin-bottom: 2.5rem;
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.dev_stay_updated h3::after {
    transition: transform 0.3s ease;
    position: absolute;
    transform: translateX(-50%) scaleX(0.5);
    left: 50%;
    background: rgb(201,191,208);
    width: 40px;
    content: "";
    bottom: -0.8rem;
    height: 3px;
}

.dev_stay_updated input[type="submit"] {
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-size: 19px;
    overflow: hidden;
    font-weight: 600;
    transform: translateY(0);
    color: #ffffff;
    width: 100%;
    background: rgb(201,191,208);
    padding: 1rem;
    z-index: 1;
    position: relative;
    border: none;
    margin-top: 1rem;
}

.dev_reach_out_info {
    position: relative;
    background: rgb(230,225,233);
    overflow: hidden;
    padding: 80px 0;
}

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

.dev_reach_out_info .dev_msg_block {
    color: rgb(201,191,208);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 45px;
    margin: 0 0 40px 0;
}

.dev_reach_out_info .dev_reach_us {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 19px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    z-index: 3;
    overflow: hidden;
    border: 1px solid rgb(164,152,173,0.5);
}

.dev_reach_out_info .dev_msg_block svg {
    margin-right: 15px;
    fill: rgb(201,191,208);
    height: 24px;
    transition: transform 0.3s ease, fill 0.3s ease;
    width: 24px;
}

.dev_reach_out_info .dev_msg_block svg path {
    transition: fill 0.3s ease;
    fill: inherit;
}

.dev_reach_out_info .dev_help_now p svg {
    left: 15px;
    transition: transform 0.3s ease, fill 0.3s ease;
    position: absolute;
    transform: translateY(-50%);
    height: 22px;
    width: 22px;
    fill: rgb(201,191,208);
    top: 50%;
}

.dev_reach_out_info .dev_help_now p::before {
    height: 0;
    width: 3px;
    top: 0;
    background: rgb(164,152,173);
    position: absolute;
    left: -3px;
    content: '';
    transition: height 0.3s ease;
}

.dev_reach_out_info .dev_help_now p span a::after {
    content: '';
    transition: width 0.3s ease;
    position: absolute;
    bottom: -2px;
    height: 1px;
    left: 0;
    background: rgb(164,152,173);
    width: 0;
}

.dev_reach_out_info .dev_get_helpdesk svg {
    left: 0;
    height: 22px;
    top: 50%;
    width: 22px;
    transform: translateY(-50%);
    transition: transform 0.3s ease, fill 0.3s ease;
    position: absolute;
    fill: rgb(201,191,208);
}

.dev_reach_out_info .dev_learn_faq {
    gap: 10px;
    display: grid;
}

.dev_reach_out_info .dev_quick_reach svg {
    width: 18px;
    fill: rgb(164,152,173);
    left: 15px;
    transition: transform 0.3s ease, fill 0.3s ease;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    height: 18px;
}

.dev_reach_out_info .dev_quick_reach svg path {
    transition: fill 0.3s ease;
    fill: inherit;
}

.dev_reach_out_info .dev_quick_reach:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.dev_reach_out_info .dev_quick_reach:hover::after {
    width: 100%;
}

header .top_plank .dev_nav_utils div svg, header .top_plank .dev_nav_utils div svg path {
    fill: #ffffff;
}

header .top_plank .dev_nav_utils {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    line-height: 21px;
    font-size: 14px;
    padding: 15px 0 10px 0;
}

.dev_web_cookies {
    margin-right: 20px;
    flex-shrink: 0;
}

.dev_web_cookies svg {
    height: 50px;
    fill: rgb(201,191,208);
    width: 50px;
}

.dev_cookie_overlay_alert h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.dev_track_settings:hover {
    border-color: rgb(201,191,208,0.5);
    background: rgb(201,191,208,0.5);
}

.dev_cookie_overlay_alert p a:hover {
    border-bottom-color: rgb(164,152,173);
    color: rgb(164,152,173);
}

.dev_course_instructor {
    background: linear-gradient(170deg, rgb(230,225,233) 0%, rgb(201,191,208,0.5) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.dev_course_instructor .dev_feedback_track {
    position: relative;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1000px;
    align-items: center;
    display: flex;
}



.dev_course_instructor .dev_img_zoom_effect {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    margin-bottom: 30px;
    height: 240px;
    z-index: 5;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 240px;
}



.dev_course_instructor .name {
    color: #000000;
    margin-bottom: 15px;
    z-index: 3;
    background-clip: text !important;
    text-fill-color: transparent;
    transition: all 0.3s ease;
    background: linear-gradient(
        to right,
        #000000 0%,
        rgb(201,191,208) 100%
    );
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    -webkit-background-clip: text !important;
    position: relative;
    -webkit-text-fill-color: transparent;
}

.dev_course_instructor .dev_feedback_track:hover span:not(.name) {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.dev_course_instructor .dev_exp_skills::before,
.dev_course_instructor .dev_exp_skills::after {
    width: 10px;
    content: "";
    position: absolute;
    height: 10px;
}

.dev_course_instructor .dev_exp_skills::before {
    border-left: 2px solid rgb(201,191,208);
    border-top: 2px solid rgb(201,191,208);
    left: 25px;
    top: 25px;
}

.dev_our_background {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}

.dev_our_background::after {
    right: 0;
    content: "";
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 10px
  );
    position: absolute;
    pointer-events: none;
}

.dev_our_background h1 {
    transform: translateX(-20px);
    margin: 0 0 40px;
    color: #ffffff;
    display: inline-block;
    font-size: 44px;
    opacity: 0;
    animation: slide-in 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    position: relative;
    font-weight: 700;
}

.dev_our_background ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dev_our_background h4 {
    color: rgb(164,152,173);
    font-weight: 600;
    font-size: calc(23px + 2px);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0 0 15px;
}

.dev_homepage {
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.dev_homepage .dev_intro_title::before {
    top: 0;
    backdrop-filter: blur(3px) saturate(110%);
    z-index: 1;
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
    background: linear-gradient(
    135deg,
    rgb(201,191,208,0.5),
    rgb(164,152,173,0.5) 70%,
    rgba(0, 0, 0, 0.5)
  );
}

.dev_homepage .dev_learn_sessions h1 {
    letter-spacing: -0.02em;
    font-size: clamp(2rem, 5vw, 40px);
    line-height: 1.2;
    animation: slideUp 0.8s ease-out 0.2s forwards;
    color: #ffffff;
    font-weight: 700;
    transform: translateZ(30px);
    opacity: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin: 0;
}

.dev_future_members {
    position: relative;
    overflow: hidden;
    background-color: rgb(230,225,233);
    padding: 6rem 0;
}

.dev_future_members::before {
    background: 
        radial-gradient(circle at 20% 20%, #ffffff 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgb(164,152,173,0.5) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgb(201,191,208,0.5) 0%, transparent 40%);
    left: 0;
    width: 100%;
    z-index: 1;
    content: '';
    top: 0;
    opacity: 0.2;
    position: absolute;
    height: 100%;
}

.dev_future_members ul {
    margin: 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 2.5rem;
}

.dev_future_members li::before {
    content: '';
    transition: opacity 0.5s ease;
    background: 
        radial-gradient(circle at 90% 10%, rgb(201,191,208,0.5) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgb(164,152,173,0.5) 0%, transparent 30%);
    z-index: -1;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    opacity: 0.1;
    position: absolute;
}

.dev_future_members li:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgb(201,191,208,0.5);
    transform: translateY(-10px);
}

.dev_future_members li svg path {
    transition: all 0.5s ease;
}

.dev_future_members li:hover svg path {
    fill: rgb(201,191,208);
}

.dev_future_members li:nth-child(2) {
    animation-delay: 0.3s;
}

.dev_contact_form_box {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(230,225,233) 0%, rgba(16, 22, 47, 0.95) 100%);
    padding: 120px 0;
}



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

.dev_contact_form_box h2 {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 30px;
    position: relative;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    color: #ffffff;
}

.dev_contact_form_box .dev_help_help::before {
    content: "";
    top: -8px;
    border: 1px solid rgba(rgb(201,191,208), 0.2);
    left: -8px;
    position: absolute;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
    width: 100%;
}

.dev_contact_form_box .dev_img_zoom_effect::before {
    height: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6));
    width: 100%;
    top: 0;
    z-index: 1;
    left: 0;
}

.dev_contact_form_box .dev_message_message::before {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-left: 2px solid rgba(rgb(164,152,173), 0.6);
    height: 60px;
    border-bottom: 2px solid rgba(rgb(164,152,173), 0.6);
    width: 60px;
    content: "";
}

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

.dev_contact_form_box .dev_inquiry_query label::before {
    width: 22px;
    transition: all 0.3s ease;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    top: 2px;
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    left: 0;
}

.dev_contact_form_box .dev_inquiry_query label a:hover {
    color: rgb(164,152,173);
}

.dev_contact_form_box form .dev_query_inquiry::before {
    width: 100%;
    background: linear-gradient(45deg, rgb(164,152,173), rgb(201,191,208));
    content: "";
    z-index: -1;
    height: 100%;
    position: absolute;
    transition: all 0.4s ease;
    left: -100%;
    top: 0;
}

.dev_contact_form_box svg path {
    transition: fill 0.3s ease;
    fill: rgb(201,191,208);
}

header .dev_nav_learn {
    padding: 0;
    width: 100%;
}

header .dev_header_mentor {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

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

header .dev_top_info:hover {
    color: rgb(201,191,208);
}

header .dev_top_info:hover:before {
    transform: translateY(-50%) scale(1);
}

header .dev_main_master:before {
    left: 0;
    -webkit-mask-composite: xor;
    height: 100%;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    content: '';
    transition: opacity 0.3s ease;
    top: 0;
    border: 2px solid transparent;
    opacity: 0;
    width: 100%;
    mask-composite: exclude;
    background: linear-gradient(to right, rgb(201,191,208), rgb(164,152,173)) border-box;
    position: absolute;
    border-radius: 10px;
}

.dev_course_program_details .dev_future_skills {
    height: 100%;
    animation: fade-slides 30s infinite;
    transition: transform 1s ease;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    transform: scale(1.1);
}

.dev_course_program_details .dev_future_skills:nth-child(4) {
    animation-delay: -18s;
}

.dev_course_program_details .container {
    position: relative;
    margin: 0 auto;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.dev_course_program_details .dev_training_route {
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.4);
    text-align: center;
    display: flex;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    padding: 3rem;
}

.dev_course_program_details .dev_training_route p {
    line-height: 1.6;
    overflow: hidden;
    margin-bottom: 2rem;
    color: #000000;
    -webkit-box-orient: vertical;
    font-size: 12px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
}

.dev_course_program_details .dev_query_inquiry:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.dev_course_program_details .dev_query_inquiry:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.dev_course_program_details .dev_training_route .orbital-elements {
    height: 100%;
    border-radius: 50%;
    top: 0;
    width: 100%;
    pointer-events: none;
    left: 0;
    position: absolute;
}

.dev_course_program_details .dev_learn_development:has(.dev_future_skills:nth-child(3):last-child) .dev_future_skills:nth-child(1) {
    animation-delay: 0s;
}

.dev_course_program_details .dev_learn_development:has(.dev_future_skills:nth-child(3):last-child) .dev_future_skills:nth-child(3) {
    animation-delay: -20s;
}

.dev_course_program_details .dev_learn_development:has(.dev_future_skills:nth-child(4):last-child) .dev_future_skills:nth-child(3) {
    animation-delay: -15s;
}

.dev_privacy_chest h1 {
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
    margin: 20px 0;
    font-size: 29px;
}

.dev_privacy_chest h3, .dev_privacy_chest h4, .dev_privacy_chest h5, .dev_privacy_chest h6 {
    color: #000000;
    font-size: 20px;
    margin: 10px 0;
}


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



@media (max-width: 991px) {.dev_data_insights h2 {
    padding-left: 0;
    text-align: center;
    border-bottom: 3px solid rgb(201,191,208);
    border-left: none;
    padding-bottom: 15px;
}.dev_data_insights h2::after {
    transform: translateX(-50%);
    left: 50%;
}.dev_data_insights ul::before {
    left: 15px;
}.dev_data_insights .dev_boost_statistics {
    margin-left: 40px;
}.dev_data_insights .dev_boost_statistics::after {
    width: 15px;
    height: 15px;
    left: -25px;
}.dev_data_insights .dev_boost_statistics::before {
    width: 40px;
    left: -20px;
}
}



@media screen and (max-width: 992px) {.dev_register_now {
    padding: 120px 0;
}.dev_register_now .dev_learn_track::before {
    width: 130%;
    left: -15%;
}.dev_register_now h3 {
    margin: 50px 0;
    font-size: calc(34px * 0.9);
}.dev_register_now .dev_course_faq {
    padding: 18px 45px;
    margin-bottom: 50px;
    font-size: calc(14px * 0.95);
}
}



@media screen and (max-width: 576px) {.dev_register_now {
    padding: 80px 0;
}.dev_register_now .dev_learn_track::before {
    width: 110%;
    transform: skewX(-5deg);
    left: -5%;
}.dev_register_now h3 {
    font-size: calc(34px * 0.7);
    letter-spacing: 1px;
    margin: 35px 0;
}.dev_register_now h3::before {
    top: -20px;
}.dev_register_now h3::after {
    bottom: -20px;
}.dev_register_now .dev_course_faq {
    margin-bottom: 35px;
    padding: 12px 35px;
    letter-spacing: 1px;
    font-size: calc(14px * 0.85);
}}



@media (max-width: 768px) {.dev_trade_mark {
    padding: 40px 0 20px;
}.dev_trade_mark .dev_nav_main {
    flex-direction: column;
}.dev_trade_mark .dev_main_nav {
    margin-bottom: 20px;
    flex: 0 0 100%;
}.dev_trade_mark .company_holder h3 {
    font-size: calc(30px * 0.8);
}.dev_trade_mark .dev_main_nav h5 {
    font-size: calc(23px * 0.9);
}.dev_pledge_block .dev_cloud_lab {
    font-size: calc(14px * 0.9);
}
}



@media (min-width: 992px) {.dev_learning_process {
    padding: 10rem 0;
}.dev_learning_process::after {
    height: 350px;
    width: 350px;
}.dev_learning_process .dev_learn_track {
    grid-template-columns: 1fr;
    gap: 4rem;
}.dev_learning_process h2 {
    font-size: calc(34px * 1.4);
    max-width: 70%;
}.dev_learning_process .dev_content_card {
    width: 85%;
    margin-left: 4rem;
    padding: 4rem;
}.dev_learning_process p {
    line-height: 1.85;
    font-size: calc(12px * 1.05);
}
}



@media (max-width: 991px) {.dev_pricing_stack {
    padding: 3.5rem 0;
}.dev_pricing_stack h2 {
    font-size: calc(31px * 0.9);
}.dev_pricing_stack .dev_fee_options {
    margin-bottom: 2.5rem;
    font-size: 12px;
}
}



@media (max-width: 991px) {.dev_tyNote {
    padding: 4rem 0;
}.dev_tyNote h2 {
    font-size: calc(37px * 0.9);
    margin-bottom: 2.5rem;
}.dev_tyNote .dev_learn_track {
    padding: 2.5rem 2rem;
}
}



@media (max-width: 575px) {.dev_tyNote {
    padding: 3rem 0;
}.dev_tyNote h2 {
    margin-bottom: 1.8rem;
    font-size: calc(37px * 0.7);
}.dev_tyNote h2::after {
    width: 4rem;
}.dev_tyNote .dev_learn_track {
    padding: 1.5rem 1.25rem;
}.dev_tyNote span {
    line-height: 1.5;
    font-size: calc(17px * 0.9);
}.dev_tyNote li::before {
    top: -0.3rem;
    width: 1.5rem;
    left: -0.5rem;
    height: 1.5rem;
}}



@media (min-width: 1200px) {.dev_reach_out_info .dev_learn_faq {
    grid-template-columns: repeat(3, 1fr);
}
}



@media (max-width: 767px) {.dev_reach_out_info {
    padding: 50px 0;
}.dev_reach_out_info .dev_msg_block {
    padding: 20px;
    font-size: 22px;
}.dev_reach_out_info .dev_msg_block svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}.dev_reach_out_info .dev_help_now {
    padding: 20px;
}.dev_reach_out_info .dev_help_now p {
    padding: 12px 12px 12px 45px;
}.dev_reach_out_info .dev_help_now p svg {
    left: 12px;
    width: 18px;
    height: 18px;
}.dev_reach_out_info .dev_get_helpdesk {
    font-size: 22px;
}.dev_reach_out_info .dev_get_helpdesk svg {
    width: 18px;
    height: 18px;
}.dev_reach_out_info .dev_quick_reach {
    padding: 10px 10px 10px 40px;
}.dev_reach_out_info .dev_quick_reach svg {
    left: 12px;
    width: 15px;
    height: 15px;
}}



@media (max-width: 767px) {.dev_course_instructor {
    padding: 70px 0;
}.dev_course_instructor .dev_img_zoom_effect {
    height: 180px;
    width: 180px;
    margin-bottom: 20px;
}.dev_course_instructor .dev_feedback_track::before {
    height: 320px;
    width: 320px;
}.dev_course_instructor .dev_feedback_track::after {
    height: 260px;
    width: 260px;
}.dev_course_instructor .name {
    font-size: calc(42px * 0.8);
}.dev_course_instructor .dev_feedback_track span:not(.name) {
    padding: 6px 16px;
    font-size: calc(18px * 0.95);
    margin-bottom: 25px;
}.dev_course_instructor .dev_exp_skills {
    max-width: 100%;
    font-size: calc(16px * 0.95);
    padding: 25px 30px;
}.dev_course_instructor .dev_exp_skills::before,
    .dev_course_instructor .dev_exp_skills::after {
    height: 8px;
    width: 8px;
}.dev_course_instructor .dev_exp_skills::before {
    top: 20px;
    left: 20px;
}.dev_course_instructor .dev_exp_skills::after {
    right: 20px;
    bottom: 20px;
}
}



@media (max-width: 767px) {.dev_our_background {
    padding: 80px 0;
}.dev_our_background .dev_content_card {
    padding: 30px 20px;
}.dev_our_background h1 {
    font-size: calc(44px - 2px);
    margin-bottom: 30px;
}.dev_our_background span {
    line-height: 1.6;
    font-size: 13px;
}.dev_our_background h4 {
    margin-bottom: 10px;
    font-size: 23px;
}
}



@media (max-width: 576px) {.dev_homepage .dev_intro_title {
    padding: 1rem;
}.dev_homepage .dev_learn_sessions {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.2)
    );
    padding: 1.5rem;
}.dev_homepage .dev_learn_sessions h1 {
    font-size: 1.8rem;
}.dev_homepage .dev_learn_sessions h3 {
    font-size: 1.1rem;
}.dev_homepage .dev_learn_sessions p {
    font-size: 0.95rem;
}}



@media screen and (max-width: 767px) {.dev_contact_form_box {
    padding: 70px 0;
}.dev_contact_form_box h2 {
    font-size: calc(30px * 0.9);
}.dev_contact_form_box .dev_img_zoom_effect {
    min-height: 350px;
}.dev_contact_form_box .dev_img_zoom_effect::after,
    .dev_contact_form_box .dev_message_message::before {
    height: 40px;
    width: 40px;
}
}



@media (max-width: 767px) {header .dev_main_nav {
    overflow: hidden;
    top: 100%;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    transition: max-height 0.4s ease;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border-bottom: 3px solid rgb(201,191,208);
    width: 100%;
}header .menu.active {
    max-height: 400px;
}header .dev_top_info {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid rgb(230,225,233);
}header .dev_top_info:last-child {
    border-bottom: none;
}header .dev_top_info:before {
    left: 5px;
}header .dev_header_mentor {
    padding: 5px 0;
}header .dev_main_master {
    margin: 0 auto;
}
}


@media only screen and (max-width: 800px) {.dev_privacy_chest {
    padding: 20px;
}.dev_privacy_chest h1 {
    font-size: 20px;
}.dev_privacy_chest h2 {
    font-size: 17px;
}.dev_privacy_chest ul {
    font-size: 15px;
}
}

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

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}



@keyframes floatBubble {
    0% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
}



@keyframes floatGlow {
    0% { transform: translateY(0) rotate(0); opacity: 0.25; }
    50% { transform: translateY(-15px) rotate(5deg); opacity: 0.35; }
    100% { transform: translateY(10px) rotate(-3deg); opacity: 0.25; }
}



@keyframes scan {
    0%, 100% {
        top: 10%;
        opacity: 0;
    }
    50% {
        top: 90%;
        opacity: 1;
    }
}



@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@keyframes line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}



@keyframes borderReveal {
  from {
    opacity: 0;
    transform: translate(0, 0);
  }
  to {
    opacity: 0.3;
    transform: translate(10px, 10px);
  }
}



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



@keyframes fade-slides {
    0%, 16% {
        opacity: 1;
        z-index: 5;
    }
    20%, 96% {
        opacity: 0;
        z-index: 0;
    }
    100% {
        opacity: 1;
        z-index: 5;
    }
}

