@font-face {
    font-family: 'font_heading';
    src: url('../assets/fonts/arialroundedmtbold.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --clr-p: #261D74;
    --clr-p-alt: #00A3FF;
    --clr-accent: #E17B1D;
    --clr-text: #0D0F30;
    --clr-muted: #858688;
    --font-base: 'Poppins', sans-serif;
    --font-heading: 'font_heading', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--clr-text);
    overflow-x: hidden;
    background: #fff;
}

.site_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px;
    width: 100%;
}

.site_topbar {
    background: #0D0F30;
    color: #fff;
    padding: 12px 0;
}

.top_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.meta_dropdown {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D0F30;
    font-size: 10px;
}

.social_links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social_links a {
    display: inline-flex;
    text-decoration: none;
}

.social_links img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social_links img:hover {
    transform: translateY(-2px);
}

.primary_header {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}

.nav_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

.branding img {
    margin-top: 6px;
    /* margin-left: -60px; */
    position: absolute;
    top: -10px;
    left: 10px;
    height: 120px;
    object-fit: cover;
}

.nav_menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav_menu a {
    text-decoration: none;
    color: var(--clr-muted);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    padding: 40px 0;
}

.nav_menu a:hover, .nav_menu a.current_item {
    color: var(--clr-p);
}

.nav_menu a.current_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-p), var(--clr-p-alt));
    border-radius: 4px 4px 0 0;
}

.support_block {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 2px solid #F0F0F0;
    padding-left: 30px;
    height: 60px;
    text-decoration: none;
    cursor: pointer;
}

.support_icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.support_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support_label {
    font-size: 12px;
    color: var(--clr-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.support_value {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--clr-p);
    font-weight: 700;
    margin-top: -2px;
}

.intro_hero {
    position: relative;
    height: calc(100vh - 164px);
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_accent_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: #EAF6FF;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero_visual_wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 5% 100%);
    z-index: 2;
}

.hero_main_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero_flex {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero_copy {
    flex: 0 0 65%;
    max-width: 65%;
    padding-top: 20px;
    /* margin-left: -50px; */
}

.hint_group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.accent_divider {
    width: 45px;
    height: 5px;
    background: linear-gradient(90deg, var(--clr-p), var(--clr-p-alt));
    border-radius: 10px;
}

.hint_label {
    font-family: var(--font-base);
    font-size: 16px;
    font-weight: 200;
    color: #28282B;
    letter-spacing: 2px;
}

.hero_h1 {
    margin-top: -30px;
    font-family: var(--font-heading);
    font-size: 140px !important;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.text_gradient {
    background: linear-gradient(100deg, var(--clr-p) 10%, var(--clr-p-alt) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text_orange {
    color: var(--clr-accent);
}

.hero_paragraph {
    font-size: 24px;
    color: var(--clr-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 850px;
}

.action_btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(90deg, var(--clr-p), var(--clr-p-alt));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 45px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 163, 255, 0.3);
    transition: transform 0.3s ease;
}

.action_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 163, 255, 0.4);
}

.value_section {
    padding: 100px 0;
    background: linear-gradient(90deg, #FFFFFF 0%, #F6F5F7 40%, rgba(225, 123, 29, 0.12) 100%);
    position: relative;
}

.section_h2 {
    font-family: var(--font-heading);
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

.text_dark {
    color: #303030;
}

.value_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value_card {
    background: #fff;
    padding: 20px 10px 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.value_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.card_icon {
    padding-left: 10px;
    height: 50px;
    object-fit: contain;
    color: var(--clr-p);
    min-width: 50px;
    display: flex;
    justify-content: center;
}

.card_body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #28282B;
    margin-bottom: 12px;
}

.card_body p {
    font-size: 15px;
    color: var(--clr-muted);
    line-height: 1.6;
}

.catalog_section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--clr-p) 0%, #00B7EB 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.bg_pattern {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    mix-blend-mode: overlay;
}

.pattern_tl {
    top: 0;
    left: 0;
    width: 60%;
    transform: translate(-15%, -15%);
}

.pattern_br {
    top: -10%;
    left: 20%;
    width: 70%;
    height: auto;
    opacity: 0.7;
}

.pattern_tr {
    bottom: -10%;
    right: -10%;
    width: 50%;
    transform: none;
}

.catalog_section .site_container {
    position: relative;
    z-index: 2;
}

.catalog_head {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 80px auto;
}

.catalog_title {
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.catalog_desc {
    width: 100%;
    font-size: 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.catalog_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.catalog_card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    color: #28282B;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.catalog_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.item_icon_box {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--clr-p);
    margin-bottom: 30px;
}

.catalog_card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #28282B;
}

.item_features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.item_features img{
    height: 15px;
    object-fit: cover;
}

.item_features li {
    font-size: 16px;
    color: #858688;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.item_features li i {
    font-size: 14px;
    color: var(--clr-p);
}

.btn_explore {
    display: inline-block;
    text-align: center;
    background: linear-gradient(90deg, var(--clr-p) 0%, #00B7EB 100%);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    padding: 18px 0;
    border-radius: 12px;
    transition: transform 0.3s ease;
    width: 100%;
}

.btn_explore:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

@media (max-width: 1600px) {
    .hero_h1 { font-size: 130px; }
    .hero_paragraph { font-size: 22px; }
}

@media (max-width: 1400px) {
    .hero_h1 { font-size: 110px; }
    .hero_paragraph { font-size: 20px; max-width: 700px; }
    .nav_menu { gap: 25px; }
    .nav_menu a { font-size: 13px; }
    .section_h2 { font-size: 55px; }
    .value_grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1200px) {
    .hero_copy { flex: 0 0 65%; max-width: 65%; margin-left: -30px; }
    .hero_accent_bg { width: 45%; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
    .hero_visual_wrap { width: 40%; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%); }
    .support_block { display: none; }
    .catalog_title { font-size: 50px; }
}

@media (max-width: 992px) {
    .hero_visual_wrap, .hero_accent_bg, .nav_menu { display: none; }
    .hero_copy { max-width: 100%; flex: 0 0 100%; margin-left: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .hero_paragraph { text-align: center; }
    .intro_hero { min-height: 600px; }
    .value_section { padding: 70px 0; }
    .section_h2 { font-size: 45px; text-align: center; margin-bottom: 50px; }
    .catalog_grid { grid-template-columns: 1fr; }
    .catalog_card { padding: 40px; }
}

@media (max-width: 600px) {
    .value_grid { grid-template-columns: 1fr; }
    .section_h2 { font-size: 35px; }
    .value_card { padding: 25px; }
    .catalog_section { padding: 80px 0; }
    .catalog_title { font-size: 38px; }
    .catalog_card h3 { font-size: 26px; }
}