/* home */
/* Hero full-screen on desktop, no top/side white space */
@media screen and (min-width: 993px) {
    .home_general_firts_section.full_wrapper {
        min-height: 100vh;
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: none;
    }
    .home_general_firts_section .home_general_block {
        min-height: 100vh;
        margin: 0;
        padding: 0 0 64px 0;
        padding-top: 100px; /* clear fixed header */
        max-height: none;
        justify-content: center;
    }
    .home_general_firts_section .home_block.wrapper {
        padding-left: 48px;
        padding-right: 48px;
        max-width: 1620px;
    }
    .home_general_firts_section .home_general_img {
        width: 100%;
        left: 0;
        right: 0;
    }
}
.home_general_block{
    /* height: 100vh; */
    min-height: fit-content;
    padding: 100px 0 64px 0;
    position: relative;
    margin-top: 10px;
    max-height: 1000px;
    justify-content: center;
}
.home_general_img{
    width: 99%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
.home_first_blvk{
    gap: 20px;
    align-items: stretch;
}
.title_info_blck{
    flex-direction: column;
    gap: 14px;
    align-items: start;
    /* max-width: 420px; */
    max-width: 545px;
}
.title_info_subtitle{
    color: white;
    margin-bottom: auto;
    text-align: justify;
    font-size: 18px;
    text-shadow: 0 0 3px black;
}
.note-span {
  display: inline-block;
  padding: 5px 10px;
  background-color: #fff9a7; /* light yellow */
  border-left: 4px solid #f1c40f; /* accent line */
  border-radius: 4px;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
  font-size: 14px;
  line-height: 1.4;
}
.home_block, .home_first_blvk{
    height: 100%;
}
.home_first_blvk .general_title{
    margin-bottom: 0;
    /* margin-bottom: auto; */
}
.app_form {
    position: relative;
    max-width: 508px;
    width: 100%;
    justify-content: start;
    flex-direction: column;
    gap: 12px;
    align-items: start;
    padding: 36px 40px;
    overflow: hidden;
    border-radius: var(--radius-lg) 128px var(--radius-lg) var(--radius-lg);
    background: rgba(37, 99, 235, 0.15);
    backdrop-filter: blur(24px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-lg);
    clip-path: polygon(0 0%, calc(100% - 107px) 0, 100% 107px, 100% 100%, 0 100%);
}
.app_form::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 52px;
    width: 165px;
    height: 100px;
    background: transparent;
    border-top-right-radius: var(--radius-xl);
    transform: translate(72%, -53%) rotate(45deg);
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}
.vector_back{
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.app_title{
    font-size: var(--twofour);
    color: var(--white);
    max-width: 322px;
    font-family: 'Inter-Bold';
}
.app_descrip{
    margin-top: 8px;
    margin-bottom: 54px;
    max-width: 320px;
    font-size: var(--eighteen);
    color: rgba(255, 255, 255, 0.60);
}
.app_form .inps_{
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.20);
}
.app_form .inps_::placeholder{
    color: var(--white);
}
.next_btn{
    gap: 10px;
    justify-content: center;
    background-color: var(--white);
    border-radius: 90px;
    padding: 20px;
    margin-top: 15px;
    cursor: pointer;
    font-size: var(--forteen);
}
.next_btn:hover{
    color: var(--white);
    background: var(--brandGradient);
}
.next_btn:hover svg path{
    stroke: var(--white);
}
/* ===== Home About Us Section (professional, responsive) ===== */
.home_about_us_section {
    padding: 96px 0 112px;
}
.home_about_us_inner {
    margin-top: 24px;
    background: var(--brandGradient);
    border-radius: var(--radius-xl);
    padding: 40px 40px 48px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}
.home_about_us_header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.home_about_us_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
}
.home_about_us_cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--sixteen);
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.home_about_us_cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
}
.home_about_us_cta svg {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.home_about_us_cta:hover svg {
    transform: translateX(4px);
}
.home_about_us_card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.home_about_us_intro {
    font-size: var(--eighteen);
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 28px;
}
.home_about_us_intro p {
    margin: 0 0 0.75em;
}
.home_about_us_intro p:last-child {
    margin-bottom: 0;
}
.home_about_us_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.home_about_us_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.08);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.home_about_us_item:hover {
    border-color: rgba(30, 64, 175, 0.2);
    box-shadow: var(--shadow-sm);
    background: rgba(30, 64, 175, 0.04);
}
.home_about_us_icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_about_us_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home_about_us_item_title {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: var(--eighteen);
    color: var(--black);
}
@media (min-width: 600px) {
    .home_about_us_list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .home_about_us_inner {
        padding: 48px 56px 56px;
        gap: 40px;
    }
    .home_about_us_header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .home_about_us_list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .home_about_us_item {
        padding: 24px;
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .home_about_us_section {
        padding: 64px 0 80px;
    }
    .home_about_us_inner {
        padding: 24px 20px 32px;
        gap: 24px;
        margin-bottom: 32px;
    }
    .home_about_us_card {
        padding: 20px;
    }
    .home_about_us_intro {
        margin-bottom: 20px;
        font-size: var(--sixteen);
    }
    .home_about_us_item {
        padding: 16px;
        gap: 12px;
    }
    .home_about_us_icon {
        width: 40px;
        height: 40px;
    }
    .home_about_us_item_title {
        font-size: var(--sixteen);
    }
}

/* Shared styles (used by services page) */
.home_aboutus {
    background: var(--brandGradient);
    padding: 10px 10px 10px 40px;
    border-radius: var(--radius-lg);
    align-items: stretch;
    gap: 16px;
    margin: 112px 0;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
}
.home_aboutus .stroke_wtitle, .home_aboutus .title_conts,
.home_aboutus .title_conts b, .home_aboutus .title_conts strong{
    color: var(--white);
}
.home_aboutus .title_conts b, .home_aboutus .title_conts strong{
    text-transform: uppercase;
    font-family: 'Inter-Black';
}
.learn_more_btn {
    padding: 14px 24px;
    gap: 10px;
    color: var(--white);
    font-family: 'Inter-Bold';
    font-size: var(--eighteen);
    border-radius: var(--radius-full);
    cursor: pointer;
    background: var(--brandGradient);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.learn_more_btn:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: var(--shadow-md);
}
.learn_more_btn:hover svg {
    transform: translateX(6px);
}
.serv_info_block {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    box-shadow: var(--shadow-md);
}
.servs_inf{
    font-family: 'Inter-Medium';
    font-size: var(--eighteen);
    color: rgba(40, 40, 40, 0.60);
}
.serv_two_winds{
    justify-content: start;
    align-items: stretch;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.serv_info_item {
    cursor: pointer;
    border-radius: var(--radius-md);
    border: 1px solid rgba(40, 40, 40, 0.12);
    flex-direction: column;
    align-items: start;
    gap: 28px;
    padding: 20px;
    justify-content: start;
    width: 100%;
    background: var(--white);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.serv_info_item:hover {
    background: rgba(37, 99, 235, 0.04);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-sm);
}
.serv_img {
    max-width: 60px;
}
.serv_img img {
    border-radius: var(--radius-sm);
}
.servs_title {
    font-size: var(--twenty);
    font-family: 'Inter-Bold';
    color: var(--black);
    transition: color var(--transition);
}
.serv_info_item:hover .servs_title {
    color: var(--brandGray);
}
.serv_inf {
    color: rgba(40, 40, 40, 0.60);
    font-size: var(--eighteen);
}
.whowe_block{
    gap: 16px;
    align-items: stretch;
}
.map_img_block{
    max-width: 778px;
    width: 100%;
    position: relative;
}
.map_img_block svg{
    width: 100%;
    height: 100%;
}
.loc_abs{
    position: absolute;
}
.province_path{
    cursor: pointer;
}
.province_path:hover,
.province_path_active {
    stroke: var(--brandGray);
    stroke-width: 3;
    stroke-opacity: 1;
}

/* end home */