* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}header,footer {
    width: 100%;
}.localtop_pagewrap {
    flex: 1 0 auto;
}.container {
    width: 1205px;
    max-width: 100%;
    margin: auto;
}html,body {
    font-family: Arial, sans-serif;
    scroll-behavior: auto;
    color: #000000;
    min-height: 100%;
    height: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.localskill_links {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}.localcontent-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    height: 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;
}}
.localtarget_audience {
    position: relative;
    background-color: rgb(211,222,220);
    overflow: hidden;
    z-index: 1;
    padding: 5rem 0;
}.localtarget_audience::before,
.localtarget_audience::after {
    top: 0;
    width: 1px;
    content: '';
    position: absolute;
    opacity: 0;
    z-index: -1;
    animation: beamScan 8s infinite ease-out;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 20%, 
        rgb(157,200,193) 50%, 
        transparent 80%);
}.localtarget_audience::before {
    left: 25%;
    animation-delay: 0s;
}.localtarget_audience::after {
    animation-delay: 4s;
    right: 25%;
}.localtarget_audience .localknowledge_classes {
    padding: 0 2rem;
    max-width: 1000px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.localtarget_audience .localknowledge_classes::before,
.localtarget_audience .localknowledge_classes::after {
    width: 100%;
    left: 0;
    height: 1px;
    animation: horizontalBeam 10s infinite ease-out;
    content: '';
    position: absolute;
    background: linear-gradient(to right, 
        transparent 10%, 
        rgb(107,138,168) 50%, 
        transparent 90%);
    opacity: 0;
    z-index: -1;
}.localtarget_audience .localknowledge_classes::before {
    animation-delay: 2s;
    top: 30%;
}.localtarget_audience .localknowledge_classes::after {
    animation-delay: 6s;
    bottom: 30%;
}.localtarget_audience h3 {
    color: rgb(157,200,193);
    font-size: 33px;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
    margin-bottom: 3.5rem;
    font-weight: 600;
}.localtarget_audience h3::after {
    height: 2px;
    animation: pulseLine 4s infinite ease-in-out;
    position: absolute;
    opacity: 0.7;
    background: rgb(157,200,193);
    content: '';
    bottom: -15px;
    left: 50%;
    width: 100px;
    transform: translateX(-50%) scaleX(0.3);
}.localtarget_audience ul {
    display: flex;
    gap: 1.2rem;
    margin: 0;
    flex-direction: column;
    list-style: none;
    padding: 0;
}.localtarget_audience ul li {
    font-size: 13px;
    align-items: center;
    overflow: hidden;
    display: flex;
    color: #000000;
    transition: all 0.3s ease;
    padding: 1.3rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 400;
}.localtarget_audience ul li::before {
    background: linear-gradient(to bottom, 
        rgb(107,138,168,0.5), 
        rgb(157,200,193,0.5));
    transform-origin: top;
    opacity: 0.5;
    width: 3px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: scaleY(0);
    transition: transform 0.4s ease;
    content: '';
}.localtarget_audience ul li::after {
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(157,200,193,0.5) 20%, 
        transparent 80%);
    width: 100%;
    transition: transform 0.5s ease;
    position: absolute;
    z-index: -1;
    transform: translateX(-100%);
    opacity: 0;
}.localtarget_audience ul li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #000000;
}.localtarget_audience ul li:hover::before {
    transform: scaleY(1);
}.localtarget_audience ul li:hover::after {
    opacity: 0.15;
    transform: translateX(100%);
}.localtarget_audience ul li svg {
    height: 28px;
    position: relative;
    z-index: 1;
    width: 28px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    transition: all 0.4s ease;
}.localtarget_audience ul li:hover svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transform: translateY(-2px);
}.localtarget_audience ul li svg path {
    transition: fill 0.4s ease;
    fill: rgb(157,200,193);
}.localtarget_audience ul li:hover svg path {
    fill: rgb(107,138,168);
    animation: flashIcon 1s ease;
}@keyframes beamScan {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    20%, 35% {
        opacity: 0.8;
    }
    80%, 100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes horizontalBeam {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    20%, 35% {
        opacity: 0.5;
    }
    80%, 100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes pulseLine {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(0.3);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

@keyframes flashIcon {
    0% {
        filter: brightness(1);
    }
    25% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}

.localtarget_audience::before :nth-child(1) {
    animation-delay: 1s;
}.localtarget_audience::before :nth-child(2) {
    animation-delay: 3s;
}.localtarget_audience::before :nth-child(3) {
    animation-delay: 5s;
}.localtarget_audience ul::before {
    height: 50px;
    position: absolute;
    right: 20px;
    content: '';
    opacity: 0.2;
    top: 20px;
    width: 50px;
    border: 1px solid rgb(157,200,193,0.5);
    border-radius: 50%;
}.localtarget_audience ul::after {
    height: 30px;
    bottom: 20px;
    left: 20px;
    opacity: 0.2;
    border: 1px solid rgb(107,138,168,0.5);
    content: '';
    width: 30px;
    border-radius: 50%;
    position: absolute;
}

@media (max-width: 992px) {.localtarget_audience {
    padding: 4rem 0;
}.localtarget_audience h3 {
    font-size: calc(33px * 0.9);
}.localtarget_audience ul {
    gap: 1rem;
}.localtarget_audience ul li {
    padding: 1.1rem 1.3rem;
}
}

@media (max-width: 576px) {.localtarget_audience {
    padding: 3rem 0;
}.localtarget_audience .localknowledge_classes {
    padding: 0 1.5rem;
}.localtarget_audience h3 {
    margin-bottom: 2.5rem;
    font-size: calc(33px * 0.8);
}.localtarget_audience ul {
    gap: 0.8rem;
}.localtarget_audience ul li {
    padding: 1rem;
}.localtarget_audience ul li svg {
    height: 24px;
    width: 24px;
    margin-right: 1rem;
}}.localappSpotlight {
    padding: 6rem 0;
    position: relative;
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(211,222,220) 0%, rgb(107,138,168,0.5) 100%);
    overflow: hidden;
}.localappSpotlight::before {
    background: radial-gradient(ellipse at center, rgb(157,200,193,0.5) 0%, transparent 70%);
    position: absolute;
    animation: floatGradient 15s ease-in-out infinite alternate;
    width: 60%;
    transform: rotate(-15deg);
    height: 70%;
    z-index: 1;
    right: -5%;
    top: -10%;
    content: "";
    opacity: 0.7;
}.localappSpotlight::after {
    bottom: -5%;
    position: absolute;
    height: 60%;
    width: 70%;
    opacity: 0.5;
    content: "";
    animation: floatGradient 18s ease-in-out infinite alternate-reverse;
    z-index: 1;
    transform: rotate(10deg);
    left: -10%;
    background: radial-gradient(ellipse at center, rgb(107,138,168,0.5) 0%, transparent 70%);
}.localappSpotlight .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 5;
}.localappSpotlight .localknowledge_classes {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    flex-direction: column;
    transform-style: preserve-3d;
    position: relative;
    transform: rotateX(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}.localappSpotlight .localknowledge_classes:hover {
    transform: rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}.localappSpotlight .localknowledge_classes > div:first-child {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(30px);
    margin-bottom: 2rem;
}.localappSpotlight .localknowledge_classes:hover > div:first-child {
    transform: translateZ(40px);
}.localappSpotlight .localknowledge_classes > div:first-child::before {
    top: -10px;
    z-index: -1;
    height: 60px;
    position: absolute;
    left: -20px;
    content: "";
    opacity: 0.1;
    width: 60px;
    border-radius: 10px;
    transform: rotate(25deg);
    background: rgb(157,200,193);
}.localappSpotlight .localknowledge_classes > div:first-child::after {
    background: rgb(107,138,168);
    height: 10px;
    position: absolute;
    content: "";
    opacity: 0.2;
    bottom: -15px;
    transform: skewX(-20deg);
    width: 70px;
    right: 30px;
}.localappSpotlight h5 {
    transition: transform 0.5s ease;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    color: #000000;
    transform: translateX(0);
    line-height: 1.4;
    margin: 0;
}.localappSpotlight h5::after {
    position: absolute;
    content: "";
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, rgb(157,200,193) 0%, rgb(107,138,168) 100%);
    transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    bottom: 0;
}.localappSpotlight .localknowledge_classes:hover h5::after {
    width: 80px;
}.localappSpotlight .localknowledge_classes > div:last-child {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(15px);
    overflow: hidden;
}.localappSpotlight .localknowledge_classes:hover > div:last-child {
    transform: translateZ(25px);
}.localappSpotlight a {
    position: relative;
    transition: transform 0.5s ease;
    display: block;
    text-decoration: none;
    overflow: hidden;
}.localappSpotlight a::before {
    left: 0;
    z-index: -1;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 0;
    background: rgb(157,200,193);
    transform-origin: left;
    transform: scaleX(0);
    content: "";
}.localappSpotlight a:hover::before {
    opacity: 0.05;
    transform: scaleX(1);
}.localappSpotlight p {
    font-family: Arial, sans-serif;
    transform: translateY(0);
    color: #000000;
    transition: transform 0.4s ease, color 0.3s ease;
    position: relative;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}.localappSpotlight a:hover p {
    transform: translateY(-2px);
    color: #000000;
}

@keyframes floatGradient {
    0% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-10deg);
    }
    100% {
        transform: translateY(0) rotate(-15deg);
    }
}

@media screen and (min-width: 768px) {.localappSpotlight {
    padding: 8rem 0;
}.localappSpotlight .localknowledge_classes {
    padding: 4rem;
    max-width: 90%;
    margin: 0 auto;
}.localappSpotlight h5 {
    font-size: calc(22px * 1.2);
    line-height: 1.3;
}.localappSpotlight p {
    line-height: 1.7;
    font-size: calc(12px * 1.1);
}.localappSpotlight .localknowledge_classes > div:first-child {
    margin-bottom: 2.5rem;
}
}

@media screen and (min-width: 992px) {.localappSpotlight {
    padding: 10rem 0;
}.localappSpotlight .localknowledge_classes {
    max-width: 80%;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5rem;
    gap: 3rem;
}.localappSpotlight .localknowledge_classes > div:first-child {
    margin-bottom: 0;
}.localappSpotlight h5 {
    font-size: calc(22px * 1.3);
}.localappSpotlight h5::after {
    width: 0;
}.localappSpotlight .localknowledge_classes:hover h5::after {
    width: 120px;
}
}

@media screen and (max-width: 767px) {.localappSpotlight {
    padding: 4rem 0;
}.localappSpotlight .localknowledge_classes {
    transform: rotateX(2deg);
    padding: 2rem;
}.localappSpotlight h5 {
    font-size: 22px;
}.localappSpotlight p {
    font-size: 12px;
    line-height: 1.6;
}.localappSpotlight .localknowledge_classes > div:first-child {
    margin-bottom: 1.5rem;
}.localappSpotlight .localknowledge_classes:hover > div:first-child {
    transform: translateZ(20px);
}.localappSpotlight .localknowledge_classes:hover > div:last-child {
    transform: translateZ(10px);
}}.localplan_list {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
}.localplan_list::before {
    z-index: 1;
    left: 0;
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(157,200,193,0.5) 100%);
    right: 0;
    bottom: 0;
    content: "";
    top: 0;
}.localplan_list .container {
    padding: 0 20px;
    z-index: 2;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.localplan_list .localfee_plan {
    position: relative;
}.localplan_list h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    transform: translateX(-10px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    font-size: 29px;
    animation: slideInTitle 0.8s forwards 0.2s;
    opacity: 0;
}.localplan_list .localqtr_cost {
    margin-bottom: 40px;
    opacity: 0;
    line-height: 1.6;
    font-size: 14px;
    animation: slideInDesc 0.8s forwards 0.4s;
    transform: translateX(-10px);
    color: #ffffff;
    max-width: 800px;
}.localplan_list .localpackage_rates {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    padding: 0;
    list-style: none;
    margin: 0;
    gap: 30px;
}.localplan_list .localpackage_rates li {
    opacity: 0;
    perspective: 1000px;
    animation: fadeIn 0.8s forwards;
}.localplan_list .localpackage_rates li:nth-child(1) {
    animation-delay: 0.5s;
}.localplan_list .localpackage_rates li:nth-child(2) {
    animation-delay: 0.7s;
}.localplan_list .localpackage_rates li:nth-child(3) {
    animation-delay: 0.9s;
}.localplan_list .localpackage_rates li:nth-child(4) {
    animation-delay: 1.1s;
}.localplan_list .localplan_pricing {
    transform-style: preserve-3d;
    text-decoration: none;
    display: block;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}.localplan_list .localfee_struct {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, rgb(211,222,220) 100%);
    display: flex;
    border-left: 4px solid rgb(157,200,193);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    padding: 30px;
    transition: all 0.4s ease;
    height: 100%;
}.localplan_list .localfee_struct::before {
    right: 0;
    width: 80px;
    position: absolute;
    height: 80px;
    transform: translate(50%, -50%) rotate(45deg);
    top: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgb(107,138,168);
    opacity: 0.8;
    content: "";
}.localplan_list .localclass_cost {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    z-index: 2;
}.localplan_list .localclass_cost h4 {
    font-size: calc(21px + 2px);
    color: #000000;
    margin: 0 0 20px;
    display: inline-block;
    position: relative;
    font-weight: 700;
}.localplan_list .localclass_cost h4::after {
    bottom: -10px;
    width: 40px;
    position: absolute;
    transition: width 0.3s ease;
    content: "";
    left: 0;
    background: rgb(157,200,193);
    height: 3px;
}.localplan_list .localclass_cost p {
    margin: 0 0 25px;
    flex-grow: 1;
    hyphens: auto;
    color: #000000;
    white-space: normal;
    font-size: calc(14px - 1px);
    word-wrap: break-word;
    line-height: 1.6;
    overflow-wrap: break-word;
}.localplan_list .localpayment_plans {
    background: rgb(157,200,193);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.3s ease;
    align-self: flex-start;
    border-radius: 10px;
    color: #ffffff;
    overflow: hidden;
    margin-top: auto;
    display: inline-block;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 22px;
    transform: translateY(0);
    position: relative;
}.localplan_list .localpayment_plans::before {
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    height: 100%;
    content: "";
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    position: absolute;
    transform: translateX(-100%);
    left: 0;
    top: 0;
}.localplan_list .localplan_pricing:hover {
    transform: translateY(-8px);
}.localplan_list .localplan_pricing:hover .localfee_struct {
    border-left-width: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}.localplan_list .localplan_pricing:hover .localfee_struct::before {
    transform: translate(40%, -40%) rotate(45deg);
}.localplan_list .localplan_pricing:hover .localclass_cost h4::after {
    width: 70px;
}.localplan_list .localplan_pricing:hover .localpayment_plans {
    background: rgb(107,138,168);
    transform: translateY(-5px);
}.localplan_list .localplan_pricing:hover .localpayment_plans::before {
    transform: translateX(100%);
}.localplan_list .localplan_pricing:active {
    transition: transform 0.2s;
    transform: translateY(-2px);
}

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

@keyframes slideInDesc {
  to {
    transform: translateX(0);
    opacity: 0.9;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 1200px) {.localplan_list {
    padding: 80px 0;
}.localplan_list .localpackage_rates {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 992px) {.localplan_list h2 {
    font-size: calc(29px - 4px);
}.localplan_list .localqtr_cost {
    margin-bottom: 30px;
}.localplan_list .localpackage_rates {
    gap: 20px;
}.localplan_list .localfee_struct {
    padding: 25px;
}
}

@media (max-width: 768px) {.localplan_list {
    padding: 60px 0;
}.localplan_list h2 {
    font-size: calc(29px - 6px);
}.localplan_list .localqtr_cost {
    font-size: calc(14px - 1px);
}.localplan_list .localpackage_rates {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}.localplan_list .localclass_cost h4 {
    font-size: 21px;
}.localplan_list .localclass_cost p {
    font-size: calc(14px - 2px);
    margin-bottom: 20px;
}
}

@media (max-width: 576px) {.localplan_list {
    padding: 50px 0;
}.localplan_list .container {
    padding: 0 15px;
}.localplan_list h2 {
    font-size: calc(29px - 8px);
    margin-bottom: 15px;
}.localplan_list .localqtr_cost {
    margin-bottom: 25px;
}.localplan_list .localpackage_rates {
    gap: 20px;
    grid-template-columns: 1fr;
}.localplan_list .localfee_struct {
    padding: 20px;
}.localplan_list .localclass_cost p {
    margin-bottom: 15px;
}.localplan_list .localpayment_plans {
    font-size: calc(22px - 1px);
    padding: 8px 16px;
}}header {
    top: 0;
    z-index: 1000;
    left: 0;
    background: rgb(211,222,220);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: fixed;
}header:before {
    left: 0;
    background: linear-gradient(90deg, 
        rgb(157,200,193) 0%, 
        rgb(107,138,168) 50%, 
        rgb(157,200,193) 100%
    );
    position: absolute;
    height: 5px;
    content: '';
    width: 100%;
    top: 0;
}header:after {
    content: '';
    background-color: rgba(0, 0, 0, 0.01);
    background-size: 20px 20px;
    height: 100%;
    background: 
        linear-gradient(135deg, rgb(211,222,220) 25%, transparent 25%) -10px 0,
        linear-gradient(225deg, rgb(211,222,220) 25%, transparent 25%) -10px 0,
        linear-gradient(315deg, rgb(211,222,220) 25%, transparent 25%),
        linear-gradient(45deg, rgb(211,222,220) 25%, transparent 25%);
    bottom: 0;
    position: absolute;
    pointer-events: none;
    width: 100%;
    opacity: 0.4;
    left: 0;
}header .localmain_learn {
    overflow: hidden;
    position: relative;
}header .localmain_learn:before {
    width: 100%;
    height: 1px;
    content: '';
    background: linear-gradient(to right, 
        transparent, 
        rgb(157,200,193,0.5),
        transparent
    );
    left: 0;
    bottom: 0;
    position: absolute;
}header .container {
    padding: 15px 25px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}header .container:before {
    transform: translateY(-50%) rotate(45deg);
    background: rgb(157,200,193);
    height: 8px;
    content: '';
    opacity: 0.7;
    width: 8px;
    left: 10px;
    top: 50%;
    position: absolute;
}header .container:after {
    height: 8px;
    position: absolute;
    opacity: 0.7;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    background: rgb(107,138,168);
    top: 50%;
    right: 10px;
    content: '';
}header .localsite_core {
    align-items: center;
    position: relative;
    justify-content: space-between;
    display: flex;
}header .localsite_core:before {
    background: linear-gradient(90deg,
        transparent 0%,
        #000000 20%,
        #000000 80%,
        transparent 100%
    );
    width: 100%;
    height: 1px;
    opacity: 0.2;
    bottom: -10px;
    left: 0;
    position: absolute;
    content: '';
}header .localtop_head {
    align-items: center;
    gap: 30px;
    position: relative;
    display: flex;
}header .localtop_head:before {
    height: 2px;
    content: '';
    opacity: 0;
    bottom: -8px;
    transform: scaleX(0.9);
    transform-origin: center;
    left: 0;
    position: absolute;
    width: 100%;
    background: rgb(157,200,193);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}header .localtop_head:hover:before {
    transform: scaleX(1);
    opacity: 0.3;
}header .localnav_lesson {
    text-transform: uppercase;
    padding: 8px 2px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 600;
    position: relative;
    font-size: 12px;
    color: #000000;
    letter-spacing: 0.5px;
}header .localnav_lesson:before {
    width: 100%;
    background: rgb(157,200,193);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    height: 2px;
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    transform: translateX(-101%);
}header .localnav_lesson:after {
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
    height: 8px;
    top: 100%;
    position: absolute;
    background: rgb(157,200,193);
    width: 8px;
    content: '';
}header .localnav_lesson:hover {
    color: rgb(157,200,193);
}header .localnav_lesson:hover:before {
    transform: translateX(0);
}header .localnav_lesson:hover:after {
    top: calc(100% - 3px);
    opacity: 1;
}header .localnav_wrap {
    text-decoration: none;
    padding: 5px 12px;
    display: flex;
    position: relative;
    transition: all 0.3s ease;
    align-items: center;
}header .localnav_wrap:before {
    position: absolute;
    border-radius: 10px;
    opacity: 0;
    border: 2px solid transparent;
    height: 100%;
    width: 100%;
    content: '';
    left: 0;
    background: linear-gradient(rgb(211,222,220), rgb(211,222,220)) padding-box,
                linear-gradient(135deg, rgb(157,200,193), rgb(107,138,168)) border-box;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 0;
}header .localnav_wrap:after {
    transform: scale(0);
    background: linear-gradient(135deg, rgb(157,200,193), rgb(107,138,168));
    height: 10px;
    left: -5px;
    width: 10px;
    content: '';
    transition: all 0.4s ease;
    position: absolute;
    top: -5px;
    opacity: 0;
    border-radius: 50%;
}header .localnav_wrap:hover:before {
    opacity: 1;
}header .localnav_wrap:hover:after {
    transform: scale(1);
    opacity: 1;
}header .localnav_wrap svg {
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: auto;
    height: 42px;
}header .localnav_wrap:hover svg {
    transform: scale(1.05);
}

@keyframes drawBorder {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 991px) {header .container {
    padding: 15px 20px;
}header .localtop_head {
    gap: 20px;
}header .localnav_wrap svg {
    height: 38px;
}
}

@media (max-width: 767px) {header .localtop_head {
    top: 0;
    position: fixed;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    gap: 5px;
    right: -100%;
    max-width: 320px;
    padding: 75px 30px 30px;
    flex-direction: column;
    width: 80%;
    background: rgb(211,222,220);
    height: 100vh;
}header .localtop_head:before {
    width: 80%;
    left: 10%;
    top: 60px;
    bottom: auto;
    height: 1px;
}header .menu.active {
    right: 0;
}header .localnav_lesson {
    width: 100%;
    padding: 14px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}header .localnav_lesson:last-child {
    border-bottom: none;
}header .localnav_lesson:after {
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}header .localnav_lesson:hover:after {
    opacity: 1;
    top: 50%;
    left: 5px;
}header .localnav_wrap {
    margin: 0 auto;
}
}

@media (max-width: 480px) {header .container {
    padding: 12px 15px;
}header .container:before,
    header .container:after {
    display: none;
}header .localnav_wrap svg {
    height: 35px;
}}footer {
    position: relative;
    width: 100%;
}footer .localskill_links {
    position: relative;
    padding: 250px 0 30px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background:rgb(107,138,168);
}footer .localskill_links::before {
    content: "";
    top: 0;
    background: linear-gradient(90deg, rgb(157,200,193) 25%, rgb(107,138,168) 25%, rgb(107,138,168) 50%, rgb(157,200,193) 50%, rgb(157,200,193) 75%, rgb(107,138,168) 75%);
    position: absolute;
    left: 0;
    height: 20px;
    width: 100%;
}footer .localachieve_cta {
    position: relative;
    z-index: 1;
}footer .localedu_guide {
    padding: 0;
    top: -120px;
    flex-wrap: wrap;
    left: 0;
    right: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: absolute;
    display: flex;
    background-color: #ffffff;
    overflow: hidden;
    justify-content: space-between;
    border-radius: 17px;
    margin-bottom: 50px;
}footer .info_item {
    padding: 25px;
    transition: all 0.3s ease;
    flex: 1 1 250px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}footer .info_item:last-child {
    border-right: none;
}footer .info_item::after {
    transition: width 0.3s ease;
    height: 3px;
    left: 0;
    width: 0;
    bottom: 0;
    background-color: rgb(157,200,193);
    content: "";
    position: absolute;
}footer .info_item:hover::after {
    width: 100%;
}footer .info_item svg {
    flex-shrink: 0;
    width: 22px;
    margin-right: 15px;
    height: 22px;
    fill: rgb(157,200,193);
}footer .info_item p,
footer .info_item a {
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000000;
}footer .info_item a:hover {
    color: rgb(157,200,193);
}footer .text_main_holder {
    margin-top: 100px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}footer .localtop_train {
    padding: 0 25px;
    position: relative;
}footer .localtop_train svg {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    width: auto;
}footer .localcomm_guide {
    max-width: 350px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}footer .localtop_head {
    padding: 0 25px;
    position: relative;
}footer .localtop_head h5 {
    margin-bottom: 25px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    font-size: 19px;
    padding-bottom: 10px;
    font-weight: 600;
}footer .localtop_head h5::after {
    background-color: rgb(157,200,193);
    width: 60px;
    left: 0;
    bottom: -2px;
    position: absolute;
    height: 2px;
    content: "";
}footer .localhead_know {
    margin-bottom: 20px;
    flex-wrap: wrap;
    display: flex;
}footer .localhead_know a {
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    margin: 5px 8px 5px 0;
    text-decoration: none;
}footer .localhead_know a:hover {
    background-color: rgb(157,200,193);
    transform: translateY(-3px);
    color: #ffffff;
}footer .subscribe_holder {
    background-color: rgb(107,138,168,0.5);
    padding: 30px 25px;
    position: relative;
    border-radius: 17px;
}footer .subscribe_holder h5 {
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 15px;
    color: #ffffff;
}footer .subscribe_holder p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}footer .input_holder {
    flex-direction: column;
    gap: 15px;
    position: relative;
    display: flex;
}footer .input_holder::before {
    top: -10px;
    content: "";
    z-index: -1;
    width: 50px;
    position: absolute;
    border-radius: 50%;
    height: 50px;
    background-color: rgb(157,200,193);
    right: -10px;
    opacity: 0.1;
}footer .input_holder::after {
    background-color: rgb(107,138,168);
    width: 70px;
    position: absolute;
    height: 70px;
    bottom: -20px;
    left: -10px;
    content: "";
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}footer .input_holder input[type="email"] {
    color: rgb(107,138,168);
    font-size: 13px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    border: none;
}footer .input_holder input[type="email"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: #000000;
    opacity: 0.6;
}footer .localsub_toggles {
    font-weight: 600;
    cursor: pointer;
    padding: 15px;
    border: none;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #ffffff;
    background-color: rgb(157,200,193);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}footer .localsub_toggles::before {
    position: absolute;
    top: 0;
    left: -100%;
    content: "";
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    width: 100%;
}footer .localsub_toggles:hover {
    background-color: rgb(107,138,168);
}footer .localsub_toggles:hover::before {
    left: 100%;
}footer .localbadge_case {
    padding-top: 20px;
    margin-top: 50px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
}footer .localfooter_careers {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

@media (min-width: 768px) {footer .localskill_links {
    padding-top: 60px;
}footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .localsub_toggles {
    white-space: nowrap;
}
}

@media (max-width: 991px) {footer .localedu_guide {
    position: relative;
    top: 0;
    margin-bottom: 80px;
}footer .localskill_links {
    padding: 120px 0 30px;
}footer .text_main_holder {
    margin-top: 40px;
}
}

@media (max-width: 767px) {footer .info_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-right: none;
}footer .info_item:last-child {
    border-bottom: none;
}footer .localtop_head, footer .subscribe_holder, footer .localtop_train {
    padding: 20px;
}footer .localbadge_case {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .localtop_head h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
    font-size: calc(19px - 2px);
}footer .localhead_know a {
    padding: 6px 12px;
    font-size: calc(13px - 1px);
}footer .input_holder input[type="email"],
    footer .localsub_toggles {
    padding: 12px;
}}.localdata_summary {
    overflow: hidden;
    background: rgb(211,222,220);
    position: relative;
    padding: 100px 0;
}.localdata_summary::before {
    top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(157,200,193,0.5) 0%, transparent 70%);
    z-index: 0;
    content: "";
    height: 100%;
}.localdata_summary .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    grid-template-rows: auto 1fr;
    padding: 0 20px;
    max-width: 1200px;
    gap: 60px;
    display: grid;
}.localdata_summary h2 {
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    grid-column: 1 / -1;
    font-size: 33px;
    color: #000000;
}.localdata_summary h2::after {
    content: "";
    left: 50%;
    bottom: 0;
    max-width: 200px;
    width: 100%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgb(157,200,193), transparent);
    height: 1px;
    position: absolute;
}.localdata_summary ul {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 0;
    display: grid;
    margin: 0;
    height: 100%;
    list-style: none;
    gap: 30px;
    grid-column: 1 / -1;
}.localdata_summary .localkey_statistics {
    overflow: hidden;
    transition: transform 0.3s ease;
    justify-content: flex-end;
    height: 100%;
    border-radius: 19px;
    padding: 0;
    flex-direction: column;
    min-height: 200px;
    display: flex;
    position: relative;
}.localdata_summary .localkey_statistics:hover {
    transform: translateY(-10px);
}.localdata_summary .localkey_statistics::before {
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    left: 0;
    content: "";
    z-index: 0;
    position: absolute;
    background: #000000;
}.localdata_summary .localkey_statistics:nth-child(1)::before {
    background: rgb(157,200,193);
    opacity: 0.85;
}.localdata_summary .localkey_statistics:nth-child(2)::before {
    background: rgb(107,138,168);
    opacity: 0.85;
}.localdata_summary .localkey_statistics:nth-child(3)::before {
    background: rgb(157,200,193);
    opacity: 0.7;
}.localdata_summary .localkey_statistics:nth-child(4)::before {
    opacity: 0.7;
    background: rgb(107,138,168);
}.localdata_summary .localkey_statistics p,
.localdata_summary .localkey_statistics span {
    padding: 0 30px;
    color: #ffffff;
    z-index: 1;
    position: relative;
}.localdata_summary .localkey_statistics p {
    font-size: calc(47px * 1.3);
    margin: 0 0 10px 0;
    font-weight: 700;
}.localdata_summary .localkey_statistics span {
    padding-bottom: 30px;
    position: relative;
    font-size: 16px;
    font-weight: 300;
}.localdata_summary .localkey_statistics span::before {
    background: #ffffff;
    width: 30px;
    content: "";
    left: 30px;
    height: 2px;
    position: absolute;
    top: -5px;
    opacity: 0.5;
}.localdata_summary .localkey_statistics::after {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    width: 150px;
    border: 1px solid #ffffff;
    top: -75px;
    border-radius: 50%;
    height: 150px;
    content: "";
    right: -75px;
}.localdata_summary .localkey_statistics:nth-child(1) {
    transform: translateX(-20px) translateY(-20px);
    animation: fadeIn 0.5s 0.1s forwards, slideIn 0.7s 0.1s forwards;
    grid-area: 1 / 1 / 2 / 2;
}.localdata_summary .localkey_statistics:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
    animation: fadeIn 0.5s 0.2s forwards, slideIn 0.7s 0.2s forwards;
    transform: translateX(20px) translateY(-20px);
}.localdata_summary .localkey_statistics:nth-child(3) {
    transform: translateX(-20px) translateY(20px);
    grid-area: 2 / 1 / 3 / 2;
    animation: fadeIn 0.5s 0.3s forwards, slideIn 0.7s 0.3s forwards;
}.localdata_summary .localkey_statistics:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
    animation: fadeIn 0.5s 0.4s forwards, slideIn 0.7s 0.4s forwards;
    transform: translateX(20px) translateY(20px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        transform: translateX(0) translateY(0);
    }
}

@media (min-width: 1024px) {.localdata_summary .localkey_statistics:nth-child(1) {
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
}.localdata_summary .localkey_statistics:nth-child(2) {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}.localdata_summary .localkey_statistics:nth-child(3) {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}.localdata_summary .localkey_statistics:nth-child(4) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
}
}

@media (max-width: 1023px) {.localdata_summary {
    padding: 80px 0;
}.localdata_summary .container {
    gap: 40px;
}.localdata_summary ul {
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: 1fr;
}.localdata_summary .localkey_statistics {
    min-height: 180px;
}.localdata_summary .localkey_statistics:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}.localdata_summary .localkey_statistics:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
}.localdata_summary .localkey_statistics:nth-child(3) {
    grid-area: 3 / 1 / 4 / 2;
}.localdata_summary .localkey_statistics:nth-child(4) {
    grid-area: 4 / 1 / 5 / 2;
}.localdata_summary .localkey_statistics:nth-child(odd) {
    transform: translateX(-20px) translateY(0);
}.localdata_summary .localkey_statistics:nth-child(even) {
    transform: translateX(20px) translateY(0);
}
}

@media (max-width: 767px) {.localdata_summary {
    padding: 60px 0;
}.localdata_summary .container {
    padding: 0 15px;
    gap: 30px;
}.localdata_summary h2 {
    font-size: calc(33px * 0.9);
}.localdata_summary ul {
    gap: 20px;
}.localdata_summary .localkey_statistics {
    min-height: 150px;
}.localdata_summary .localkey_statistics p {
    padding-top: 20px;
    font-size: calc(47px * 1.1);
}.localdata_summary .localkey_statistics span {
    font-size: calc(16px * 0.9);
    padding-bottom: 20px;
}
}

@media (min-width: 768px) and (max-width: 1023px) {.localdata_summary .localkey_statistics {
    min-height: 180px;
}.localdata_summary .localkey_statistics p {
    font-size: calc(47px * 1.2);
}
}

@media (prefers-reduced-motion: reduce) {.localdata_summary .localkey_statistics {
    animation: none;
    transform: none;
}}.localtake_a_spin {
    background: linear-gradient(135deg, rgb(157,200,193) 0%, rgb(107,138,168) 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 120px 0;
}.localtake_a_spin::before {
    position: absolute;
    opacity: 0.05;
    height: 100%;
    background-size: 50px 50px;
    top: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, #ffffff 25%, #ffffff 26%, transparent 27%, transparent 74%, #ffffff 75%, #ffffff 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, #ffffff 25%, #ffffff 26%, transparent 27%, transparent 74%, #ffffff 75%, #ffffff 76%, transparent 77%, transparent);
    left: 0;
    width: 100%;
    z-index: -1;
    content: '';
}.localtake_a_spin::after {
    filter: blur(60px);
    top: 0;
    width: 100%;
    left: 0;
    content: '';
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, #ffffff 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #ffffff 0%, transparent 50%);
    opacity: 0.1;
    height: 100%;
    position: absolute;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}.localtake_a_spin .localknowledge_classes {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 60px 40px;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
}.localtake_a_spin .localknowledge_classes::before {
    content: '';
    height: 2px;
    box-shadow: 0 0 10px #ffffff;
    position: absolute;
    animation: scanLine 4s ease-in-out infinite;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 50%, 
        transparent 100%);
    z-index: 1;
    top: 0;
    left: -100%;
    width: 100%;
}.localtake_a_spin .localknowledge_classes::after {
    left: 0;
    z-index: -1;
    top: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0.3;
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
}.localtake_a_spin h3 {
    margin-bottom: 50px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    text-transform: uppercase;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 37px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}.localtake_a_spin h3::before {
    text-shadow: 2px 0 rgb(107,138,168);
    position: absolute;
    color: #ffffff;
    animation: glitchTop 3s infinite linear alternate;
    left: 2px;
    opacity: 0.8;
    top: 0;
    background: transparent;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    content: attr(data-text);
}.localtake_a_spin h3::after {
    content: attr(data-text);
    text-shadow: -2px 0 rgb(157,200,193);
    opacity: 0.8;
    color: #ffffff;
    top: 0;
    position: absolute;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    left: -2px;
    animation: glitchBottom 2.7s infinite linear alternate;
    background: transparent;
}.localtake_a_spin .localget_contactwidget {
    padding: 16px 45px;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    position: relative;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 1;
    text-decoration: none;
    display: inline-block;
    color: rgb(157,200,193);
    font-weight: 600;
    transition: all 0.4s ease;
    overflow: hidden;
    font-size: 17px;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 10px;
}.localtake_a_spin .localget_contactwidget::before {
    position: absolute;
    z-index: -1;
    content: '';
    opacity: 0;
    transition: opacity 0.4s ease;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgb(157,200,193) 0%,
        rgb(107,138,168) 100%
    );
    width: 100%;
}.localtake_a_spin .localget_contactwidget::after {
    content: '';
    transition: all 0.7s ease;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    z-index: 2;
    transform: skewX(-20deg);
    width: 8px;
    position: absolute;
    height: 100%;
    top: 0;
    left: -100px;
}.localtake_a_spin .localget_contactwidget:hover {
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-5px);
}.localtake_a_spin .localget_contactwidget:hover::before {
    opacity: 1;
}.localtake_a_spin .localget_contactwidget:hover::after {
    left: 200%;
    transition-duration: 1s;
}

@media screen and (max-width: 992px) {.localtake_a_spin {
    padding: 100px 0;
}.localtake_a_spin .localknowledge_classes {
    max-width: 90%;
    padding: 50px 30px;
}.localtake_a_spin h3 {
    margin-bottom: 45px;
    font-size: calc(37px * 0.9);
}.localtake_a_spin .localget_contactwidget {
    font-size: calc(17px * 0.95);
    padding: 14px 40px;
}
}

@media screen and (max-width: 768px) {.localtake_a_spin {
    padding: 80px 0;
}.localtake_a_spin .localknowledge_classes {
    padding: 40px 25px;
}.localtake_a_spin h3 {
    letter-spacing: 2px;
    font-size: calc(37px * 0.8);
    margin-bottom: 40px;
}.localtake_a_spin .localget_contactwidget {
    padding: 12px 35px;
    font-size: calc(17px * 0.9);
    letter-spacing: 1.5px;
}
}

@media screen and (max-width: 576px) {.localtake_a_spin {
    padding: 60px 0;
}.localtake_a_spin .localknowledge_classes {
    padding: 30px 20px;
}.localtake_a_spin h3 {
    font-size: calc(37px * 0.7);
    margin-bottom: 35px;
    letter-spacing: 1.5px;
}.localtake_a_spin .localget_contactwidget {
    padding: 10px 30px;
    font-size: calc(17px * 0.85);
    letter-spacing: 1px;
}}

@keyframes pulseGlow {
    0% {
        opacity: 0.05;
        filter: blur(60px);
    }
    50% {
        opacity: 0.1;
        filter: blur(80px);
    }
    100% {
        opacity: 0.05;
        filter: blur(60px);
    }
}

@keyframes scanLine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@keyframes glitchTop {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
    10% {
        clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
        transform: translate(-5px, 2px);
    }
    20% {
        clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%);
        transform: translate(5px, -2px);
    }
    30% {
        clip-path: polygon(0 5%, 100% 5%, 100% 25%, 0 25%);
        transform: translate(-3px, 1px);
    }
    40% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
}

@keyframes glitchBottom {
    0% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    10% {
        clip-path: polygon(0 60%, 100% 60%, 100% 95%, 0 95%);
        transform: translate(5px, 2px);
    }
    20% {
        clip-path: polygon(0 65%, 100% 65%, 100% 90%, 0 90%);
        transform: translate(-5px, -2px);
    }
    30% {
        clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
        transform: translate(3px, 1px);
    }
    40% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    100% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(0);
    }
}.localour_team {
    padding: 6rem 0;
    background: linear-gradient(145deg, rgb(211,222,220) 0%, rgba(245, 247, 250, 0.9) 100%);
    position: relative;
    overflow: hidden;
}.localour_team::before {
    height: 70%;
    top: -10%;
    transform: rotate(-15deg) skew(15deg);
    content: "";
    right: -5%;
    z-index: 1;
    background: linear-gradient(135deg, rgb(157,200,193,0.5) 0%, transparent 80%);
    animation: float 20s infinite ease-in-out;
    position: absolute;
    width: 40%;
    opacity: 0.1;
}.localour_team::after {
    opacity: 0.1;
    content: "";
    animation: float 25s infinite ease-in-out reverse;
    z-index: 1;
    position: absolute;
    bottom: -10%;
    height: 60%;
    left: -5%;
    background: linear-gradient(225deg, rgb(107,138,168,0.5) 0%, transparent 80%);
    width: 30%;
    transform: rotate(15deg) skew(-15deg);
}.localour_team .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}.localour_team h1 {
    transform: translateX(-0.5rem);
    position: relative;
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 38px;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #000000;
}.localour_team h1::before {
    background: rgb(157,200,193);
    transform-origin: left;
    content: "";
    position: absolute;
    left: 0;
    width: 6rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: -0.75rem;
    height: 0.25rem;
    transform: scaleX(0.6);
}.localour_team h1::after {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    left: 0;
    transform-origin: left;
    transform: translateX(6.5rem) scaleX(0.3);
    bottom: -0.75rem;
    content: "";
    background: rgb(107,138,168);
    width: 3rem;
    height: 0.25rem;
    position: absolute;
}.localour_team:hover h1::before {
    transform: scaleX(1);
}.localour_team:hover h1::after {
    transform: translateX(7rem) scaleX(0.5);
}.localour_team .localknowledge_experts {
    position: relative;
}.localour_team .localknowledge_experts ul {
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
    gap: 2.5rem;
}.localour_team .localteach_style {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 2.5rem;
}.localour_team .localteach_style::before {
    width: 0.25rem;
    left: 0;
    top: 0;
    content: "";
    transform-origin: center;
    opacity: 0.8;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    transform: scaleY(0.6);
    background: linear-gradient(to bottom, rgb(157,200,193), rgb(107,138,168));
    height: 100%;
}.localour_team .localteach_style:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-0.5rem);
}.localour_team .localteach_style:hover::before {
    transform: scaleY(1);
}.localour_team .localteach_style h4 {
    font-family: Arial, sans-serif;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: calc(23px * 1.1);
    color: #000000;
    margin-top: 0;
    position: relative;
    display: inline-block;
}.localour_team .localteach_style h4::after {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: -0.5rem;
    width: 100%;
    content: "";
    height: 0.125rem;
    background: linear-gradient(to right, rgb(157,200,193), transparent);
    left: 0;
    transform: scaleX(0.3);
    transform-origin: left;
    position: absolute;
}.localour_team .localteach_style:hover h4::after {
    transform: scaleX(1);
}.localour_team .localteach_style div {
    font-family: Arial, sans-serif;
    padding-right: 0.5rem;
    line-height: 1.7;
    color: #000000;
    font-size: 13px;
    overflow-y: auto;
    max-height: 350px;
}.localour_team .localteach_style div::-webkit-scrollbar {
    width: 0.25rem;
}.localour_team .localteach_style div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.localour_team .localteach_style div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(157,200,193,0.5);
}

@keyframes float {
    0%, 100% {
        transform: rotate(-15deg) skew(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(-15deg) skew(15deg) translate(1rem, 1rem);
    }
}

@media (min-width: 768px) {.localour_team {
    padding: 8rem 0;
}.localour_team h1 {
    font-size: calc(38px * 1.2);
    margin-bottom: 4rem;
}.localour_team .localknowledge_experts ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}.localour_team .localteach_style {
    padding: 3rem;
}.localour_team .localteach_style h4 {
    font-size: calc(23px * 1.2);
    margin-bottom: 2rem;
}.localour_team .localteach_style div {
    max-height: 400px;
    font-size: calc(13px * 1.05);
}.localour_team::before {
    height: 75%;
    width: 45%;
}.localour_team::after {
    height: 65%;
    width: 35%;
}
}

@media (min-width: 992px) {.localour_team {
    padding: 10rem 0;
}.localour_team .container {
    padding: 0 2rem;
}.localour_team h1 {
    transform: translateX(-1rem);
    font-size: calc(38px * 1.4);
}.localour_team .localteach_style {
    padding: 3.5rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.localour_team .localteach_style:first-child {
    transform: translateY(2rem);
}.localour_team .localteach_style:last-child {
    transform: translateY(-2rem);
}.localour_team .localteach_style:first-child:hover {
    transform: translateY(1.5rem);
}.localour_team .localteach_style:last-child:hover {
    transform: translateY(-2.5rem);
}.localour_team .localteach_style div {
    font-size: calc(13px * 1.1);
    max-height: 450px;
    padding-right: 1rem;
}.localour_team .localteach_style h4 {
    font-size: calc(23px * 1.3);
}.localour_team::before {
    height: 80%;
    width: 50%;
}.localour_team::after {
    width: 40%;
    height: 70%;
}
}

@media (min-width: 1200px) {.localour_team {
    padding: 12rem 0;
}.localour_team .container {
    padding: 0;
}.localour_team h1 {
    font-size: calc(38px * 1.5);
}.localour_team .localknowledge_experts ul {
    gap: 4rem;
}.localour_team .localteach_style {
    padding: 4rem;
}.localour_team .localteach_style:first-child {
    transform: translateY(3rem);
}.localour_team .localteach_style:last-child {
    transform: translateY(-3rem);
}.localour_team .localteach_style:first-child:hover {
    transform: translateY(2.5rem);
}.localour_team .localteach_style:last-child:hover {
    transform: translateY(-3.5rem);
}}.localprogram_structure {
    flex-direction: column;
    background-color: #000000;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}.localprogram_structure .localjob_classes {
    left: 0;
    overflow: hidden;
    height: 100%;
    top: 0;
    z-index: 0;
    width: 100%;
    position: absolute;
}.localprogram_structure .locallearn_now {
    display: flex;
    width: 500%;
    animation: split-carousel 40s linear infinite;
    height: 100%;
}.localprogram_structure .localjob_classes:hover .locallearn_now {
    animation-play-state: paused;
}.localprogram_structure .locallearn_tools {
    position: relative;
    flex: 1;
    overflow: hidden;
}.localprogram_structure .locallearn_tools:nth-child(odd) {
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}.localprogram_structure .locallearn_tools:nth-child(even) {
    mask-image: linear-gradient(to right, transparent 5%, black 20%, black 80%, transparent 95%);
}.localprogram_structure .locallearn_tools img {
    height: 100%;
    transform: scale(1.1);
    filter: grayscale(0.3) contrast(1.2);
    transition: all 0.7s ease;
    object-fit: cover;
    width: 100%;
}.localprogram_structure .locallearn_tools:hover img {
    filter: grayscale(0) contrast(1.3);
    transform: scale(1.05);
}.localprogram_structure .container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 10;
    padding: 0 1rem;
}.localprogram_structure .localknowledge_classes {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
}.localprogram_structure .localquick_progress {
    position: relative;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgb(157,200,193,0.5);
    max-width: 550px;
    padding: 3rem;
    text-align: center;
    border-radius: 23px;
    overflow: hidden;
}.localprogram_structure .localquick_progress::before {
    z-index: -1;
    left: -50%;
    position: absolute;
    animation: rotate-background 20s linear infinite;
    opacity: 0.1;
    top: -50%;
    content: "";
    width: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgb(157,200,193,0.5) 90deg,
        transparent 180deg,
        rgb(107,138,168,0.5) 270deg,
        transparent 360deg
    );
    height: 200%;
}.localprogram_structure .localquick_progress h3 {
    letter-spacing: 1px;
    position: relative;
    font-weight: 700;
    display: inline-block;
    color: #ffffff;
    font-size: 33px;
    margin-bottom: 1.5rem;
}.localprogram_structure .localquick_progress h3::after {
    position: absolute;
    left: 50%;
    bottom: -10px;
    background: rgb(157,200,193);
    height: 2px;
    content: "";
    transform: translateX(-50%);
    width: 80px;
}.localprogram_structure .localquick_progress p {
    position: relative;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}.localprogram_structure .localquick_progress .localquery_support {
    overflow: hidden;
    position: relative;
    color: #ffffff;
    background-color: transparent;
    font-weight: 600;
    padding: 0.9rem 2.5rem;
    display: inline-block;
    font-size: 14px;
    border: 2px solid rgb(157,200,193);
    border-radius: 10px;
    text-decoration: none;
    z-index: 1;
    transition: all 0.4s ease;
}.localprogram_structure .localquick_progress .localquery_support::before {
    top: 50%;
    width: 0;
    content: "";
    height: 0;
    left: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    background-color: rgb(157,200,193);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    position: absolute;
}.localprogram_structure .localquick_progress .localquery_support:hover {
    color: #000000;
}.localprogram_structure .localquick_progress .localquery_support:hover::before {
    width: 300%;
    height: 300%;
}

@keyframes split-carousel {
    0%, 18% {
        transform: translateX(0);
    }
    23%, 41% {
        transform: translateX(-20%);
    }
    46%, 64% {
        transform: translateX(-40%);
    }
    69%, 87% {
        transform: translateX(-60%);
    }
    92%, 100% {
        transform: translateX(-80%);
    }
}

@keyframes rotate-background {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {.localprogram_structure .localquick_progress {
    padding: 2.5rem;
    max-width: 500px;
}
}

@media (max-width: 768px) {.localprogram_structure {
    min-height: 100vh;
}.localprogram_structure .locallearn_now {
    animation-duration: 30s;
}.localprogram_structure .localquick_progress {
    padding: 2rem;
    max-width: 90%;
}.localprogram_structure .localquick_progress h3 {
    font-size: calc(33px * 0.85);
}.localprogram_structure .locallearn_tools::after {
    background: linear-gradient(to bottom, 
            #000000 0%, 
            transparent 30%, 
            transparent 70%, 
            #000000 100%
        );
}

}

@media (max-width: 576px) {.localprogram_structure .container {
    padding: 0 1rem;
}.localprogram_structure .localquick_progress {
    max-width: 100%;
    padding: 1.5rem;
}.localprogram_structure .localquick_progress h3 {
    font-size: calc(33px * 0.7);
}.localprogram_structure .localquick_progress .localquery_support {
    padding: 0.8rem 1.5rem;
    width: 100%;
    display: block;
}.localprogram_structure .locallearn_tools img {
    filter: grayscale(0.2) contrast(1.1);
}
}

@media (min-width: 1800px) {.localprogram_structure .localquick_progress {
    padding: 3.5rem;
    max-width: 650px;
}.localprogram_structure .localquick_progress h3 {
    font-size: calc(33px * 1.2);
}.localprogram_structure .localquick_progress p {
    font-size: calc(15px * 1.1);
}.localprogram_structure .localquick_progress .localquery_support {
    padding: 1rem 3rem;
}}.localleadership_profile {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(211,222,220), rgb(107,138,168,0.5));
    overflow: hidden;
    position: relative;
}.localleadership_profile::before {
    animation: float 8s ease-in-out infinite;
    transform: rotate(-15deg);
    position: absolute;
    right: -10%;
    background: rgb(157,200,193,0.5);
    z-index: 1;
    width: 60%;
    border-radius: 27px;
    height: 80%;
    content: "";
    top: -10%;
}.localleadership_profile::after {
    z-index: 1;
    position: absolute;
    border-radius: 27px;
    content: "";
    height: 60%;
    bottom: -5%;
    left: -5%;
    transform: rotate(20deg);
    width: 40%;
    animation: float 6s ease-in-out infinite reverse;
    background: rgb(107,138,168,0.5);
}.localleadership_profile .container {
    z-index: 2;
    position: relative;
}.localleadership_profile .localfeedback_stars {
    display: grid;
    background: #ffffff;
    transform: rotate(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    gap: 15px;
    padding: 40px;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: 
        "photo name"
        "photo job"
        "quote quote";
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 27px;
}.localleadership_profile .localfeedback_stars:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(0deg) translateY(-10px);
}.localleadership_profile .localhover_image {
    grid-area: photo;
    transform: rotate(4deg);
    transition: transform 0.3s ease;
    height: 200px;
    box-shadow: 10px 10px 0 rgb(157,200,193,0.5);
    border-radius: 27px;
}.localleadership_profile .localfeedback_stars:hover .localhover_image {
    transform: rotate(0deg) scale(1.05);
}.localleadership_profile .name {
    margin-top: 20px;
    font-weight: 700;
    grid-area: name;
    transform: translateX(20px);
    color: #000000;
    font-size: 22px;
}.localleadership_profile .localfeedback_stars span:not(.name) {
    color: #000000;
    font-size: 15px;
    font-style: italic;
    grid-area: job;
    transform: translateX(20px);
}.localleadership_profile .localjob_view {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    background: linear-gradient(to right, rgb(211,222,220), transparent);
    border-left: 4px solid rgb(157,200,193);
    position: relative;
    grid-area: quote;
    margin-top: 20px;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}.localleadership_profile .localjob_view::before {
    left: 10px;
    font-size: calc(43px * 2);
    content: "";
    line-height: 1;
    font-family: serif;
    top: -10px;
    position: absolute;
    color: rgb(157,200,193,0.5);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-20px) rotate(-10deg);
    }
}

@media (max-width: 768px) {.localleadership_profile {
    padding: 60px 0;
}.localleadership_profile .localfeedback_stars {
    padding: 30px 20px;
    grid-template-areas: 
            "localhover_image"
            "name"
            "localexp_table"
            "localjob_view";
    grid-template-columns: 1fr;
}.localleadership_profile .localhover_image {
    width: 80%;
    margin: 0 auto;
    height: 180px;
}.localleadership_profile .name,
    .localleadership_profile .localfeedback_stars span:not(.name) {
    text-align: center;
    transform: translateX(0);
}.localleadership_profile .localjob_view {
    padding: 15px;
}}.localcontact_form_section {
    overflow: hidden;
    background: rgb(211,222,220);
    position: relative;
    padding: 120px 0;
}.localcontact_form_section::before {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    content: "";
    opacity: 0.4;
    z-index: 1;
    width: 100%;
    background: linear-gradient(180deg, rgb(107,138,168,0.5) 0%, transparent 100%);
}.localcontact_form_section::after {
    height: 200px;
    width: 100%;
    position: absolute;
    z-index: 2;
    content: "";
    background: linear-gradient(0deg, rgb(211,222,220) 0%, transparent 100%);
    left: 0;
    bottom: 0;
}.localcontact_form_section .localhover_image {
    top: 0;
    width: 100%;
    z-index: 0;
    filter: grayscale(100%) contrast(120%);
    position: absolute;
    height: 100%;
    opacity: 0.12;
    left: 0;
}.localcontact_form_section .container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
    z-index: 5;
}.localcontact_form_section h3 {
    font-size: 33px;
    margin-bottom: 60px;
    position: relative;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}.localreach_feedback {
    gap: 0;
    position: relative;
    z-index: 10;
    display: flex;
}.localreach_feedback .localhelp_panel {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 60px;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    flex: 0 0 58%;
    background: #ffffff;
}.localreach_feedback .localhelp_panel h3 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 21px;
    text-transform: none;
    text-align: left;
}.localreach_feedback .localhelp_panel h3::before,
.localreach_feedback .localhelp_panel h3::after {
    content: none;
}.localreach_feedback .localhelp_panel form {
    display: flex;
    flex-direction: column;
}.localreach_feedback .localhelp_panel input[type="text"],
.localreach_feedback .localhelp_panel textarea {
    border: none;
    width: 100%;
    font-size: 16px;
    margin-bottom: 25px;
    padding: 16px 20px;
    background: rgba(245, 245, 245, 0.5);
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}.localreach_feedback .localhelp_panel input[type="text"]:focus,
.localreach_feedback .localhelp_panel textarea:focus {
    outline: none;
    background: rgba(245, 245, 245, 0.8);
    border-bottom-color: rgb(157,200,193);
}.localreach_feedback .localhelp_panel textarea {
    resize: vertical;
    min-height: 150px;
}.localreach_feedback .localhelp_panel .localhelp_widget {
    margin-bottom: 30px;
    display: flex;
    position: relative;
    align-items: flex-start;
}.localreach_feedback .localhelp_panel .localhelp_widget input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.localreach_feedback .localhelp_panel .localhelp_widget label {
    position: relative;
    font-size: calc(16px - 2px);
    line-height: 1.5;
    color: #000000;
    padding-left: 35px;
    cursor: pointer;
}.localreach_feedback .localhelp_panel .localhelp_widget label::before {
    left: 0;
    transition: all 0.3s ease;
    background: rgba(245, 245, 245, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    width: 22px;
    content: "";
    top: 2px;
    height: 22px;
}.localreach_feedback .localhelp_panel .localhelp_widget input[type="checkbox"]:checked + label::before {
    border-bottom-color: rgb(157,200,193);
    background: rgb(157,200,193);
}.localreach_feedback .localhelp_panel .localhelp_widget input[type="checkbox"]:checked + label::after {
    transform: rotate(45deg);
    height: 12px;
    width: 6px;
    border: solid #ffffff;
    left: 8px;
    position: absolute;
    top: 4px;
    border-width: 0 2px 2px 0;
    content: "";
}.localreach_feedback .localhelp_panel .localhelp_widget a {
    font-weight: 600;
    color: rgb(157,200,193);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgb(157,200,193);
}.localreach_feedback .localhelp_panel .localhelp_widget a:hover {
    border-bottom-color: rgb(107,138,168);
    color: rgb(107,138,168);
}.localreach_feedback .localhelp_panel .localquery_support {
    font-weight: 600;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(157,200,193);
    align-self: flex-start;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 15px 35px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    color: #000000;
    background: transparent;
}.localreach_feedback .localhelp_panel .localquery_support::before {
    content: "";
    left: 0;
    bottom: -2px;
    height: 2px;
    position: absolute;
    background: rgb(157,200,193);
    z-index: -1;
    width: 100%;
    transition: all 0.3s ease;
}.localreach_feedback .localhelp_panel .localquery_support:hover {
    color: #ffffff;
}.localreach_feedback .localhelp_panel .localquery_support:hover::before {
    height: 100%;
}.localreach_feedback .localconnect_card {
    z-index: 0;
    flex: 0 0 42%;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px;
    color: #ffffff;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}.localreach_feedback .localconnect_card::before {
    position: absolute;
    left: 0;
    content: "";
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.05) 0,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    width: 100%;
    z-index: -1;
    height: 100%;
    top: 0;
}.localreach_feedback .localconnect_card h4 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 21px;
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}.localreach_feedback .localconnect_card .localquery_card {
    margin: 0;
    padding: 0;
    list-style: none;
}.localreach_feedback .localconnect_card .localquery_card li {
    z-index: 1;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
}.localreach_feedback .localconnect_card .localquery_card li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}.localreach_feedback .localconnect_card .localquery_card li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 20px;
}.localreach_feedback .localconnect_card .localquery_card li svg path {
    transition: all 0.3s ease;
    fill: rgb(157,200,193);
}.localreach_feedback .localconnect_card .localquery_card li:hover svg path {
    fill: #ffffff;
}.localreach_feedback .localconnect_card .localquery_card li span {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}.localreach_feedback .localconnect_card .localquery_card li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}.localreach_feedback .localconnect_card .localquery_card li a:hover {
    color: rgb(157,200,193);
}

@media screen and (max-width: 992px) {.localcontact_form_section {
    padding: 80px 0;
}.localreach_feedback {
    flex-direction: column;
}.localreach_feedback .localhelp_panel {
    clip-path: none;
    width: 100%;
}.localreach_feedback .localconnect_card {
    margin-left: 0;
    clip-path: none;
    width: 100%;
}
}

@media screen and (max-width: 768px) {.localcontact_form_section {
    padding: 60px 0;
}.localcontact_form_section h3 {
    font-size: calc(33px - 4px);
}.localreach_feedback .localhelp_panel,
    .localreach_feedback .localconnect_card {
    padding: 40px 30px;
}.localreach_feedback .localhelp_panel .localquery_support {
    text-align: center;
    width: 100%;
}
}

@media screen and (max-width: 480px) {.localcontact_form_section {
    padding: 40px 0;
}.localreach_feedback .localhelp_panel,
    .localreach_feedback .localconnect_card {
    padding: 30px 20px;
}.localreach_feedback .localhelp_panel h3,
    .localreach_feedback .localconnect_card h4 {
    font-size: calc(21px - 2px);
}}.localcookie_window_dialog {
    bottom: 0;
    border-top: 2px solid rgb(157,200,193);
    animation: slideIn 0.5s ease-in-out;
    box-shadow: 0 -10px 30px rgb(157,200,193,0.5);
    width: 100%;
    position: fixed;
    z-index: 90;
    background: rgb(107,138,168);
}@keyframes slideIn {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}
.localuser_safety {
    padding: 20px 5%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    box-shadow: 0 0 20px rgb(157,200,193,0.5);
    background: linear-gradient(135deg, rgb(107,138,168) 0%, rgba(0, 0, 0, 0.5) 100%);
    flex-wrap: wrap;
}.localvisitor_privacy {
    overflow: hidden;
    box-shadow: 0 0 15px rgb(157,200,193);
    border-radius: 29px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
    margin-right: 20px;
    padding: 10px;
}.localvisitor_privacy svg, .localvisitor_privacy svg path {
    width: 60px;
    transition: transform 0.3s ease;
    height: 60px;
    fill: rgb(157,200,193);
}.localvisitor_privacy:hover svg {
    transform: rotate(20deg);
}.localdata_guard {
    min-width: 300px;
    flex: 1;
    color: #ffffff;
}.localdata_guard h5 {
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(157,200,193);
    font-size: 19px;
    color: rgb(157,200,193);
}.localdata_guard p {
    text-shadow: 0 0 5px rgb(157,200,193,0.5);
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
}.localcookie_reset {
    text-decoration: none;
    padding: 12px 25px;
    box-shadow: 0 0 10px rgb(157,200,193,0.5);
    color: #000000;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: rgb(157,200,193);
    white-space: nowrap;
    cursor: pointer;
    margin-left: 10px;
    font-size: 14px;
}.localcookie_reset:hover {
    box-shadow: 0 0 20px rgb(107,138,168,0.5);
    background: rgb(107,138,168);
}.localcookie_window_dialog p a {
    text-decoration: underline;
    color: rgb(157,200,193);
    transition: color 0.3s ease;
}.localcookie_window_dialog p a:hover {
    color: rgb(107,138,168);
}#localcookie_window_box {
    display: none;
}#localcookie_window_box:checked ~ .localcookie_window_dialog {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.localcookie_window_dialog {
    padding: 20px;
}.localuser_safety {
    padding: 20px 2%;
}
}
@media only screen and (max-width: 800px) {.localvisitor_privacy {
    display: none;
}.localuser_safety {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.localdata_guard {
    margin-bottom: 20px;
    text-align: center;
}.localcookie_window_dialog h5, .localcookie_window_dialog p {
    text-align: center;
}.localcookie_reset {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}}
.locallearning_process {
    background: linear-gradient(135deg, rgb(211,222,220) 0%, rgba(245, 245, 250, 0.9) 100%);
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 6rem 0;
}.locallearning_process::before {
    height: 300px;
    background: linear-gradient(45deg, rgb(157,200,193,0.5) 0%, rgb(107,138,168,0.5) 100%);
    filter: blur(60px);
    z-index: -1;
    right: -100px;
    width: 300px;
    border-radius: 50%;
    top: -100px;
    content: "";
    animation: float 15s infinite ease-in-out;
    position: absolute;
    opacity: 0.15;
}.locallearning_process::after {
    z-index: -1;
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(225deg, rgb(107,138,168,0.5) 0%, rgb(157,200,193,0.5) 100%);
    left: -50px;
    height: 200px;
    bottom: -50px;
    animation: morph 20s infinite alternate ease-in-out;
    filter: blur(40px);
    position: absolute;
    width: 200px;
    content: "";
}.locallearning_process .container {
    max-width: 1140px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 15px;
}.locallearning_process .localknowledge_classes {
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    display: flex;
}.locallearning_process .localknowledge_classes > div {
    border-left: 4px solid rgb(157,200,193);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1), 
                box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1);
    background: #ffffff;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 
                0 1px 3px rgba(0, 0, 0, 0.02);
    max-width: 850px;
    transform: translateY(0) rotateX(0);
    width: 100%;
}.locallearning_process .localknowledge_classes > div:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 
                0 1px 5px rgba(0, 0, 0, 0.03);
}.locallearning_process .localknowledge_classes > div::before {
    opacity: 0.9;
    position: absolute;
    left: -20px;
    top: 20px;
    border-radius: 50%;
    background: rgb(157,200,193);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 40px;
    transform: scale(0);
    content: "";
    height: 40px;
}.locallearning_process .localknowledge_classes > div:hover::before {
    transform: scale(1);
}.locallearning_process h3 {
    font-weight: 700;
    padding-bottom: 0.75rem;
    color: #000000;
    letter-spacing: -0.5px;
    font-size: calc(31px * 0.85);
    font-family: Arial, sans-serif;
    position: relative;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}.locallearning_process h3::after {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 3px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(157,200,193) 0%, rgb(107,138,168) 100%);
    left: 0;
    bottom: 0;
    position: absolute;
    width: 60px;
    transform: scaleX(1);
    content: "";
}.locallearning_process .localknowledge_classes > div:hover h3::after {
    transform: scaleX(1.5);
}.locallearning_process p {
    margin-bottom: 0;
    line-height: 1.7;
    color: #000000;
    font-weight: 400;
    font-size: 13px;
    font-family: Arial, sans-serif;
    position: relative;
}.locallearning_process p span {
    opacity: 0.95;
    display: inline-block;
    transition: opacity 0.3s ease;
    position: relative;
}.locallearning_process p span::before {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    width: 100%;
    transform-origin: left;
    height: 1px;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(107,138,168,0.5), transparent);
    left: 0;
    bottom: -3px;
    transform: scaleX(0);
}.locallearning_process .localknowledge_classes > div:hover p span::before {
    transform: scaleX(1);
    opacity: 0.7;
}

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

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
    }
    75% {
        border-radius: 40% 60% 70% 30% / 60% 30% 70% 40%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@media (max-width: 992px) {.locallearning_process {
    padding: 5rem 0;
}.locallearning_process .localknowledge_classes > div {
    padding: 2.5rem;
}.locallearning_process h3 {
    font-size: calc(31px * 0.75);
}
}

@media (max-width: 768px) {.locallearning_process {
    padding: 4rem 0;
}.locallearning_process .localknowledge_classes > div {
    padding: 2rem;
    border-left-width: 3px;
}.locallearning_process h3 {
    padding-bottom: 0.65rem;
    font-size: calc(31px * 0.7);
    margin-bottom: 1.25rem;
}.locallearning_process h3::after {
    width: 50px;
    height: 2px;
}.locallearning_process p {
    font-size: calc(13px * 0.95);
}
}

@media (max-width: 576px) {.locallearning_process {
    padding: 3rem 0;
}.locallearning_process .localknowledge_classes > div {
    padding: 1.75rem;
    border-left-width: 2px;
}.locallearning_process h3 {
    font-size: calc(31px * 0.65);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}.locallearning_process h3::after {
    width: 40px;
}.locallearning_process p {
    line-height: 1.6;
    font-size: calc(13px * 0.9);
}.locallearning_process .localknowledge_classes > div::before {
    left: -15px;
    width: 30px;
    top: 15px;
    height: 30px;
}}.localgreeting_page {
    position: relative;
    background: linear-gradient(135deg, rgb(211,222,220), rgb(107,138,168,0.5));
    min-height: 100vh;
    overflow: hidden;
    justify-content: center;
    display: flex;
    align-items: center;
}.localgreeting_page::before {
    width: 50%;
    background: linear-gradient(145deg, rgb(157,200,193,0.5), rgb(107,138,168));
    top: -10%;
    height: 70%;
    filter: blur(40px);
    position: absolute;
    opacity: 0.4;
    content: '';
    transform: rotate(-15deg) skewX(-15deg);
    z-index: 0;
    right: -5%;
    animation: floatBackground 18s infinite alternate ease-in-out;
}.localgreeting_page::after {
    content: '';
    z-index: 0;
    bottom: -5%;
    height: 60%;
    background: linear-gradient(225deg, rgb(107,138,168), rgb(157,200,193,0.5));
    animation: floatBackground 15s infinite alternate-reverse ease-in-out;
    filter: blur(35px);
    position: absolute;
    left: -5%;
    transform: rotate(10deg) skewY(5deg);
    opacity: 0.3;
    width: 40%;
}.localgreeting_page .localedu_first {
    transform: translateY(-2%);
    gap: 2rem;
    width: 90%;
    padding: 3rem;
    position: relative;
    max-width: 1200px;
    grid-template-columns: 1fr;
    display: grid;
    z-index: 1;
}.localgreeting_page .localedu_first > div:first-child {
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transform: translateX(-5%);
    backdrop-filter: blur(10px);
    border-left: 3px solid rgb(157,200,193);
    padding: 2rem;
    animation: slideInLeft 1s ease-out forwards;
}.localgreeting_page .localedu_first > div:first-child::before {
    height: 100%;
    opacity: 0.1;
    position: absolute;
    background: linear-gradient(90deg, rgb(157,200,193,0.5) 0%, transparent 20%);
    width: 100%;
    z-index: -1;
    content: '';
    left: 0;
    top: 0;
}.localgreeting_page h3 {
    color: #ffffff;
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    font-size: calc(24px * 0.9);
}.localgreeting_page h3::after {
    animation: expandWidth 1.5s 0.5s ease forwards;
    background: rgb(157,200,193);
    height: 2px;
    bottom: -10px;
    transform-origin: left;
    transform: scaleX(0);
    left: 0;
    width: 60px;
    position: absolute;
    content: '';
}.localgreeting_page .localedu_first > div:nth-child(2) {
    display: flex;
    transform: translateX(5%);
    position: relative;
    justify-content: flex-end;
    animation: slideInRight 1s ease-out forwards;
}.localgreeting_page .localstudy_program {
    display: flex;
    gap: 1.5rem;
    position: relative;
    max-width: 650px;
    flex-direction: column;
    width: 100%;
}.localgreeting_page h1 {
    color: #ffffff;
    opacity: 0;
    font-weight: 700;
    position: relative;
    margin: 0;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    transform: translateY(20px);
    font-size: calc(47px * 1.1);
    padding-bottom: 1rem;
    animation: fadeUp 1s 0.3s ease forwards;
}.localgreeting_page h1::before {
    left: 0;
    content: '';
    height: 4px;
    width: 40px;
    position: absolute;
    top: -20px;
    background: rgb(157,200,193);
}.localgreeting_page .localstudy_program > div {
    isolation: isolate;
    padding: 2rem;
    box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}.localgreeting_page .localstudy_program > div::before {
    left: 0;
    background: linear-gradient(135deg, rgb(157,200,193,0.5), rgb(107,138,168,0.5));
    content: '';
    z-index: -1;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.85;
    top: 0;
}.localgreeting_page p {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0;
    font-size: calc(12px * 1.2);
    position: relative;
    transform: translateY(20px);
    color: #ffffff;
    font-weight: 400;
    animation: fadeUp 1s 0.6s ease forwards;
    line-height: 1.6;
    opacity: 0;
    font-family: Arial, sans-serif;
}

@keyframes floatBackground {
  0% {
    transform: translate(0, 0) rotate(-15deg) skewX(-15deg);
  }
  100% {
    transform: translate(5%, 3%) rotate(-10deg) skewX(-10deg);
  }
}

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

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

@keyframes slideInLeft {
  0% {
    transform: translateX(-15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(15%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {.localgreeting_page .localedu_first {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    padding: 3rem 2rem;
    align-items: center;
}.localgreeting_page h1 {
    font-size: calc(47px * 1.2);
}.localgreeting_page h3 {
    font-size: 24px;
}.localgreeting_page .localedu_first > div:first-child {
    transform: translateY(-5%);
}.localgreeting_page .localedu_first > div:nth-child(2) {
    transform: translateY(5%);
}
}

@media screen and (max-width: 991px) {.localgreeting_page {
    padding: 4rem 1rem;
}.localgreeting_page .localedu_first {
    padding: 2rem 1.5rem;
}.localgreeting_page h1 {
    font-size: calc(47px * 0.9);
}.localgreeting_page p {
    font-size: 12px;
}
}

@media screen and (max-width: 767px) {.localgreeting_page {
    padding: 3rem 1rem;
}.localgreeting_page .localedu_first {
    padding: 1.5rem 1rem;
}.localgreeting_page h1 {
    font-size: calc(47px * 0.8);
}.localgreeting_page h3 {
    font-size: calc(24px * 0.85);
}.localgreeting_page .localstudy_program > div {
    padding: 1.5rem;
}.localgreeting_page .localedu_first > div:first-child {
    padding: 1.5rem;
}
}

@media screen and (max-width: 480px) {.localgreeting_page {
    padding: 2rem 0.5rem;
}.localgreeting_page .localedu_first {
    padding: 1rem 0.5rem;
    width: 95%;
}.localgreeting_page h1 {
    font-size: calc(47px * 0.7);
}.localgreeting_page h3 {
    font-size: calc(24px * 0.8);
}.localgreeting_page p {
    font-size: calc(12px * 0.9);
}.localgreeting_page .localstudy_program > div {
    padding: 1.25rem;
}.localgreeting_page .localedu_first > div:first-child {
    padding: 1.25rem;
}}.localconfidential_hearth {
    padding: 40px 20px;
    background-color: rgb(211,222,220);
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}.localconfidential_hearth h1 {
    font-weight: 700;
    font-size: 42px;
    color: rgb(157,200,193);
    margin-bottom: 20px;
}.localconfidential_hearth h2 {
    margin-bottom: 15px;
    color: rgb(107,138,168);
    font-weight: 600;
    margin-top: 30px;
    font-size: 31px;
}.localconfidential_hearth h3, .localconfidential_hearth h4, .localconfidential_hearth h5, .localconfidential_hearth h6 {
    margin: 1rem 0;
    color: rgb(157,200,193);
    font-weight: 400;
}.localconfidential_hearth ul {
    list-style-type: disc;
    margin-left: 20px;
}.localconfidential_hearth ol {
    margin-left: 20px;
    list-style-type: decimal;
}.localconfidential_hearth li {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #000000;
    font-size: 17px;
}.localconfidential_hearth section {
    margin-top: 20px;
    margin-bottom: 20px;
}.localconfidential_hearth p {
    font-size: 17px;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.8;
}.localconfidential_hearth span {
    color: rgb(107,138,168);
    font-weight: 600;
}.localconfidential_hearth div {
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {.localconfidential_hearth {
    padding: 20px 10px;
}.localconfidential_hearth h1 {
    font-size: calc(19px - 5px);
}.localconfidential_hearth h2 {
    font-size: calc(19px - 5px);
}.localconfidential_hearth p, .localconfidential_hearth li {
    font-size: calc(17px - 2px);
}
}
