
.py_5{
    padding: 100px 0px;
}
.py_2{
    padding: 0 0 70px 0;
}
.header_number a {
    background: #fc5707;
    border: 1px solid #fc5707;
}
.header_number  a:hover {
    color: #FC5707 !important;
    border: 1px solid #FC5707 !important;
}

section.overview-section a{
      background: linear-gradient(135deg, #005fbe, #ff5b00);
    border: 1px solid #0255B8;
}
section.overview-section  a:hover {
    color: #Fff !important;
    border: 1px solid #FC5707 !important;
}
/*Animated button css */
.glow-on-hover {
    width: 150px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, 
    #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #161765;
    left: 0;
    top: 0;
    border-radius: 10px;
}
.heading_about p {
    color: #555;
    text-align: justify;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


/* ========= Header/Navbar CSS Start ========= */

/* ================= HEADER BASE ================= */

.site_header {
    position: relative;
    z-index: 9999;
    font-family: inherit;
}

/* ================= TOP HEADER ================= */

.top_header {
    background: linear-gradient(135deg, #005fbe 0%, #03142f 100%);
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.top_header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top_header_left,
.top_header_right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top_header a,
.top_header span {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 500;
}

.top_header i {
    color: #ff5b00;
    font-size: 14px;
}

.top_consult_btn {
    /* background: #ff5b00; */
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 800 !important;
    box-shadow: 0 10px 22px rgba(255, 91, 0, 0.25);
    background: linear-gradient(135deg, #005fbe, #ff5b00);
}
.top_consult_btn:hover {
    background: #ffffff;
    color: #03142f !important;
}

/* ================= MAIN NAVBAR ================= */

.main_navbar {
    background: #ffffff;
    border-bottom: 1px solid #eef1f6;
    box-shadow: 0 8px 28px rgba(3, 20, 47, 0.06);
    position: relative;
    z-index: 999;
}

/* no fixed height */
.main_navbar .desktop_header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 36px;
    padding: 5px 0;
}

/* ================= LOGO ================= */

.main_navbar .header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_navbar .header_logo a {
    display: inline-flex;
    align-items: center;
}

.main_navbar .header_logo img {
    width: 100%;
    max-width: 245px;
    height: auto;
    display: block;
}

/* ================= MENU ================= */

.main_navbar .menu_items {
    display: flex;
    align-items: center;
}

.main_navbar .left_menu {
    justify-content: flex-end;
}

.main_navbar .right_menu {
    justify-content: flex-start;
}

.main_navbar .menu_list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.main_navbar .menu_list > li {
    position: relative;
    display: flex;
    align-items: center;
}

.main_navbar .menu_list > li > a,
.main_navbar .menu_list > li > .nav-link {
    text-decoration: none;
    color: #03142f;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 0;
    line-height: 1.2;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px;
    background: transparent !important;
    transition: 0.25s ease;
}

/* remove all unwanted lines */
.main_navbar .menu_list > li > a::before,
.main_navbar .menu_list > li > a::after,
.main_navbar .menu_list > li > .nav-link::before {
    display: none !important;
    content: none !important;
}

.main_navbar .menu_list > li > a:hover,
.main_navbar .menu_list > li > .nav-link:hover,
.main_navbar .menu_list > li > a.active,
.main_navbar .menu_list > li > .nav-link.active {
    color: #005fbe !important;
}

/* dropdown arrow */
.main_navbar .menu_list > li > .dropdown-toggle::after {
    content: "" !important;
    display: inline-block !important;
    width: 7px !important;
    height: 7px !important;
    border: none !important;
    border-right: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    transform: rotate(45deg) !important;
    margin-left: 4px !important;
    margin-top: -4px !important;
    background: transparent !important;
    position: static !important;
    transition: 0.25s ease;
}

.main_navbar .nav-item.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(225deg) !important;
    margin-top: 4px !important;
}

/* ================= DROPDOWN ================= */

.main_navbar .nav-item.dropdown {
    position: relative;
}

.main_navbar .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 18px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px);
    margin: 0 !important;
    min-width: 245px;
    padding: 10px;
    border: 1px solid #e6edf7;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(3, 20, 47, 0.14);
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: 0.25s ease;
}

.main_navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e6edf7;
    border-top: 1px solid #e6edf7;
    transform: translateX(-50%) rotate(45deg);
}

.main_navbar .nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main_navbar .dropdown-menu li {
    width: 100%;
    display: block !important;
    margin-bottom: 4px;
}

.main_navbar .dropdown-menu li:last-child {
    margin-bottom: 0;
}

/* clean dropdown item - no dot */
.main_navbar .dropdown-item {
    width: 100%;
    display: block !important;
    color: #03142f !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 14px !important;
    border-radius: 11px;
    line-height: 1.35 !important;
    background: transparent !important;
    white-space: nowrap;
    transition: 0.22s ease;
}

.main_navbar .dropdown-item::before,
.main_navbar .dropdown-item::after {
    display: none !important;
    content: none !important;
}

.main_navbar .dropdown-item:hover,
.main_navbar .dropdown-item.active {
    background: linear-gradient(
        135deg,
        rgba(0, 95, 190, 0.10),
        rgba(255, 91, 0, 0.10)
    ) !important;
    color: #005fbe !important;
    padding-left: 18px !important;
}

.main_navbar .nav-link:focus,
.main_navbar .nav-link:active,
.main_navbar .nav-link.show,
.main_navbar .dropdown-item:focus,
.main_navbar .dropdown-item:active {
    background: transparent !important;
    box-shadow: none !important;
}

/* ================= MOBILE HEADER ================= */

.main_navbar .mobile_header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
}

.main_navbar .mobile_logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

.main_navbar .mobile_quote_btn {
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 14px;
    border-radius: 50px;
}

.main_navbar .mobile-toggle {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 11px;
    background: rgba(0, 95, 190, 0.10);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.main_navbar .mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #03142f;
    border-radius: 10px;
}

/* ================= MOBILE MENU ================= */

.main_navbar .mobile_menu {
    display: none;
    background: #ffffff;
    padding: 10px 0 20px;
    border-top: 1px solid #e8edf4;
}

.main_navbar .mobile_menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.main_navbar .mobile_menu ul li {
    padding: 0;
}

.main_navbar .mobile_menu ul li a {
    text-decoration: none;
    color: #03142f;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f3f8;
    background: transparent !important;
}

.main_navbar .mobile_menu ul li a.active,
.main_navbar .mobile_menu ul li a:hover {
    color: #005fbe !important;
}

.main_navbar .mobile-submenu,
.main_navbar .mobile-sub-submenu {
    display: none;
    padding-left: 14px !important;
    background: #f8fafc;
    border-radius: 12px;
    margin: 6px 0 10px !important;
}

.main_navbar .mobile-submenu li a,
.main_navbar .mobile-sub-submenu li a {
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 11px 12px !important;
}

.main_navbar .mobile_contact_box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(0, 95, 190, 0.08),
        rgba(255, 91, 0, 0.08)
    );
}

.main_navbar .mobile_contact_box a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #03142f;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 10px;
}

.main_navbar .mobile_contact_box a:last-child {
    margin-bottom: 0;
}

.main_navbar .mobile_contact_box i {
    color: #ff5b00;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {
    .main_navbar .desktop_header {
        gap: 22px;
    }

    .main_navbar .menu_list {
        gap: 18px;
    }

    .main_navbar .menu_list > li > a,
    .main_navbar .menu_list > li > .nav-link {
        font-size: 14px;
    }

    .main_navbar .header_logo img {
        max-width: 215px;
    }
}

@media (max-width: 991px) {
    .top_header {
        display: none;
    }

    .main_navbar .desktop_header {
        display: none;
    }

    .main_navbar .mobile_header {
        display: flex;
    }
}

@media (max-width: 575px) {
    .main_navbar .mobile_logo img {
        max-width: 150px;
    }

    .main_navbar .mobile_quote_btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    .main_navbar .mobile-toggle {
        width: 40px;
        height: 40px;
    }
}

/* ========= Header/Navbar CSS End ========= */



/* ==========Hero Section============= */

/* ========================= HERO SECTION Css Start ========================= */

.hero_section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 95px 0;
    background: linear-gradient(349deg, #fc5707, #0255B8) !important;
}

/* Main background mesh */
.hero_mesh_bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 95, 190, 0.70), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(255, 91, 0, 0.48), transparent 26%),
        radial-gradient(circle at 72% 85%, rgba(0, 142, 209, 0.48), transparent 30%),
        linear-gradient(135deg, #020713 0%, #061b48 48%, #005fbe 100%);
    z-index: 1;
    animation: hero_bg_move 8s ease-in-out infinite alternate;
}

@keyframes hero_bg_move {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* Grid pattern */
.hero_mesh_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.48;
}

/* Diagonal light beam */
.hero_mesh_bg::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 1200px;
    right: 32%;
    top: -350px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255,255,255,0.16),
        transparent
    );
    transform: rotate(25deg);
    opacity: 0.65;
}

/* Network line pattern */
.hero_line_pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.30;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='650' viewBox='0 0 1200 650' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.38)' stroke-width='1.2'%3E%3Cpath d='M40 450 C200 250 330 380 500 210 S820 120 1120 300'/%3E%3Cpath d='M80 180 C280 320 390 110 620 240 S880 470 1160 330'/%3E%3Cpath d='M100 560 C330 390 470 500 650 360 S910 250 1180 430'/%3E%3C/g%3E%3Cg fill='rgba(255,255,255,0.85)'%3E%3Ccircle cx='40' cy='450' r='4'/%3E%3Ccircle cx='500' cy='210' r='4'/%3E%3Ccircle cx='1120' cy='300' r='4'/%3E%3Ccircle cx='620' cy='240' r='4'/%3E%3Ccircle cx='1160' cy='330' r='4'/%3E%3Ccircle cx='650' cy='360' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    animation: hero_line_move 10s ease-in-out infinite alternate;
}

@keyframes hero_line_move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-40px);
    }
}

/* Background dark overlay for readability */
/* .hero_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(2, 7, 19, 0.88) 0%,
            rgba(2, 7, 19, 0.55) 50%,
            rgba(2, 7, 19, 0.35) 100%
        );
    z-index: 3;
} */

/* Glowing orbs */
.hero_orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    z-index: 2;
    animation: hero_orb_float 7s ease-in-out infinite alternate;
}

.hero_orb_1 {
    width: 360px;
    height: 360px;
    right: 8%;
    top: 8%;
    background: rgba(0, 95, 190, 0.34);
}

.hero_orb_2 {
    width: 260px;
    height: 260px;
    left: 4%;
    bottom: 7%;
    background: rgba(255, 91, 0, 0.30);
    animation-delay: 1s;
}

.hero_orb_3 {
    width: 160px;
    height: 160px;
    left: 48%;
    top: 18%;
    background: rgba(255, 255, 255, 0.13);
    animation-delay: 1.8s;
}

@keyframes hero_orb_float {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(34px) scale(1.06);
    }
}

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

.hero_section_row {
    min-height: 660px;
}

/* Logo */
.hero_logo_box {
    margin-bottom: 26px;
    max-width: 260px;
    background: rgba(255,255,255,0.95);
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.hero_logo_box img {
    width: 100%;
    height: auto;
    display: block;
}

/* LEFT CONTENT */
.hero_section_left_div {
    animation: hero_text_in 1s ease forwards;
    opacity: 0;
}

@keyframes hero_text_in {
    0% {
        transform: translateX(-45px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero_section_stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero_section_stars i {
    font-size: 17px;
}

.hero_section_stars span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}

.hero_section_badge {
    display: inline-block;
    background: rgba(255,255,255,0.96);
    color: #03142f;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 22px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
    border-left: 5px solid #ff5b00;
}

/* Animated title */
.hero_section_title {
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.7px;
    margin-bottom: 24px;
    max-width: 780px;
    color: #ffffff;
}

.hero_section_title span {
    background: linear-gradient(90deg, #ffffff, #0b8fe8, #ff5b00, #ffffff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero_text_gradient 4s ease-in-out infinite;
}

@keyframes hero_text_gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero_section_subtitle {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 34px;
    max-width: 640px;
    color: rgba(255,255,255,0.92);
}

/* Buttons */
.hero_section_btn_group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero_section_btn {
    background: linear-gradient(135deg, #ffffff, #f4f8ff);
    color: #03142f;
    padding: 15px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    display: inline-block;
}

.hero_section_btn:hover {
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero_section_btn_outline {
    border: 1px solid rgba(255,255,255,0.55);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-block;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.hero_section_btn_outline:hover {
    background: linear-gradient(135deg, rgba(0,95,190,0.45), rgba(255,91,0,0.35));
    color: #ffffff;
    transform: translateY(-3px);
}

/* Stats */
.hero_section_stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero_section_stats div {
    min-width: 145px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.hero_section_stats div:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,91,0,0.45);
}

.hero_section_stats h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, #ff5b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_section_stats p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
}

/* RIGHT FORM */
.hero_section_right_div {
    animation: hero_form_in 1s ease forwards;
    opacity: 0;
}

@keyframes hero_form_in {
    0% {
        transform: translateY(45px) scale(0.96);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.hero_form_card {
    background: rgba(255,255,255,0.94);
    border-radius: 34px;
    padding: 32px;
    color: #03142f;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(22px);
    box-shadow:
        0 45px 110px rgba(0,0,0,0.38),
        0 0 0 1px rgba(255,255,255,0.55);
}

/* Animated border */
.hero_form_card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #005fbe, #ff5b00, #005fbe);
    background-size: 300% 300%;
    z-index: 0;
    animation: hero_form_border 5s linear infinite;
}

.hero_form_card::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: rgba(255,255,255,0.97);
    border-radius: 32px;
    z-index: 1;
}

@keyframes hero_form_border {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.hero_form_icon,
.hero_form_tag,
.hero_form_card h3,
.hero_form_card p,
.hero_form_card form,
.hero_form_bottom {
    position: relative;
    z-index: 2;
}

.hero_form_icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 21px;
    margin-bottom: 16px;
    box-shadow: 0 18px 40px rgba(0,95,190,0.28);
    animation: hero_icon_pulse 2.5s ease-in-out infinite;
}

@keyframes hero_icon_pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 18px 40px rgba(0,95,190,0.28);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 18px 45px rgba(255,91,0,0.35);
    }
}

.hero_form_tag {
    display: inline-block;
    background: rgba(0,95,190,0.10);
    color: #005fbe;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero_form_card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #03142f;
}

.hero_form_card p {
    color: #5d6b82;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 2 INPUTS IN ONE LINE */
.hero_form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hero_form_card .form-group {
    margin-bottom: 0;
}

.hero_form_card label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #03142f;
    margin-bottom: 7px;
}

.hero_form_card input,
.hero_form_card select {
    width: 100%;
    height: 52px;
    border: 1px solid #d9e1ec;
    background: #f8fafc;
    border-radius: 14px;
    padding: 0 15px;
    font-size: 14px;
    color: #03142f;
    outline: none;
    transition: 0.3s ease;
}

.hero_form_card input:focus,
.hero_form_card select:focus {
    border-color: #005fbe;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0,95,190,0.13);
}

.hero_form_btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    margin-top: 18px;
    transition: 0.3s ease;
    box-shadow: 0 16px 34px rgba(0,95,190,0.24);
}

.hero_form_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(255,91,0,0.32);
}

.hero_form_bottom {
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #e8edf4;
    color: #5d6b82;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero_form_bottom i {
    color: #005fbe;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero_section {
        padding: 75px 0;
        text-align: center;
    }

    .hero_section::before {
        background: rgba(2, 7, 19, 0.78);
    }

    .hero_section_row {
        min-height: auto;
    }

    .hero_logo_box {
        margin-left: auto;
        margin-right: auto;
    }

    .hero_section_stars,
    .hero_section_btn_group,
    .hero_section_stats {
        justify-content: center;
    }

    .hero_section_subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero_form_card {
        margin-top: 45px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero_section_title {
        font-size: 38px;
    }

    .hero_section_subtitle {
        font-size: 16px;
    }

    .hero_section_btn,
    .hero_section_btn_outline {
        width: 100%;
        text-align: center;
    }

    .hero_section_stats div {
        width: 100%;
    }

    .hero_form_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hero_section {
        padding: 60px 0;
    }

    .hero_logo_box {
        max-width: 220px;
    }

    .hero_section_title {
        font-size: 34px;
    }

    .hero_section_badge {
        font-size: 12px;
        padding: 9px 14px;
    }

    .hero_form_card {
        padding: 24px;
        border-radius: 24px;
    }

    .hero_form_card::after {
        border-radius: 22px;
    }

    .hero_form_card h3 {
        font-size: 25px;
    }
}
.hero_section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 95px 0;
    background: #030914;
}

/* Main background mesh */
.hero_mesh_bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 95, 190, 0.70), transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(255, 91, 0, 0.48), transparent 26%),
        radial-gradient(circle at 72% 85%, rgba(0, 142, 209, 0.48), transparent 30%),
        linear-gradient(135deg, #020713 0%, #061b48 48%, #005fbe 100%);
    z-index: 1;
    animation: hero_bg_move 8s ease-in-out infinite alternate;
}

@keyframes hero_bg_move {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

/* Grid pattern */
.hero_mesh_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.48;
}

/* Diagonal light beam */
.hero_mesh_bg::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 1200px;
    right: 32%;
    top: -350px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255,255,255,0.16),
        transparent
    );
    transform: rotate(25deg);
    opacity: 0.65;
}

/* Network line pattern */
.hero_line_pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.30;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='650' viewBox='0 0 1200 650' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.38)' stroke-width='1.2'%3E%3Cpath d='M40 450 C200 250 330 380 500 210 S820 120 1120 300'/%3E%3Cpath d='M80 180 C280 320 390 110 620 240 S880 470 1160 330'/%3E%3Cpath d='M100 560 C330 390 470 500 650 360 S910 250 1180 430'/%3E%3C/g%3E%3Cg fill='rgba(255,255,255,0.85)'%3E%3Ccircle cx='40' cy='450' r='4'/%3E%3Ccircle cx='500' cy='210' r='4'/%3E%3Ccircle cx='1120' cy='300' r='4'/%3E%3Ccircle cx='620' cy='240' r='4'/%3E%3Ccircle cx='1160' cy='330' r='4'/%3E%3Ccircle cx='650' cy='360' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    animation: hero_line_move 10s ease-in-out infinite alternate;
}

@keyframes hero_line_move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-40px);
    }
}

/* Background dark overlay for readability */
.hero_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(2 7 19 / 17%) 0%, rgb(2 7 19 / 14%) 50%, rgba(2, 7, 19, 0.35) 100%);
    z-index: 3;
}

/* Glowing orbs */
.hero_orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    z-index: 2;
    animation: hero_orb_float 7s ease-in-out infinite alternate;
}

.hero_orb_1 {
    width: 360px;
    height: 360px;
    right: 8%;
    top: 8%;
    background: rgba(0, 95, 190, 0.34);
}

.hero_orb_2 {
    width: 260px;
    height: 260px;
    left: 4%;
    bottom: 7%;
    background: rgba(255, 91, 0, 0.30);
    animation-delay: 1s;
}

.hero_orb_3 {
    width: 160px;
    height: 160px;
    left: 48%;
    top: 18%;
    background: rgba(255, 255, 255, 0.13);
    animation-delay: 1.8s;
}

@keyframes hero_orb_float {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(34px) scale(1.06);
    }
}

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

.hero_section_row {
    min-height: 660px;
}

/* Logo */
.hero_logo_box {
    margin-bottom: 26px;
    max-width: 260px;
    background: rgba(255,255,255,0.95);
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.hero_logo_box img {
    width: 100%;
    height: auto;
    display: block;
}

/* LEFT CONTENT */
.hero_section_left_div {
    animation: hero_text_in 1s ease forwards;
    opacity: 0;
}

@keyframes hero_text_in {
    0% {
        transform: translateX(-45px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero_section_stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero_section_stars i {
    font-size: 17px;
}

.hero_section_stars span {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
}

.hero_section_badge {
    display: inline-block;
    background: rgba(255,255,255,0.96);
    color: #03142f;
    font-size: 14px;
    font-weight: 800;
    padding: 11px 22px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
    border-left: 5px solid #ff5b00;
}

/* Animated title */
.hero_section_title {
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.7px;
    margin-bottom: 24px;
    max-width: 780px;
    color: #ffffff;
}

.hero_section_title span {
    background: linear-gradient(90deg, #ffffff, #0b8fe8, #ff5b00, #ffffff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero_text_gradient 4s ease-in-out infinite;
}

@keyframes hero_text_gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero_section_subtitle {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 34px;
    max-width: 640px;
    color: rgba(255,255,255,0.92);
}

/* Buttons */
.hero_section_btn_group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero_section_btn {
    background: linear-gradient(135deg, #ffffff, #f4f8ff);
    color: #03142f;
    padding: 15px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    transition: 0.3s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.24);
    display: inline-block;
}

.hero_section_btn:hover {
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    color: #ffffff;
    transform: translateY(-3px);
}

.hero_section_btn_outline {
    border: 1px solid rgba(255,255,255,0.55);
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-block;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.hero_section_btn_outline:hover {
    background: linear-gradient(135deg, rgba(0,95,190,0.45), rgba(255,91,0,0.35));
    color: #ffffff;
    transform: translateY(-3px);
}

/* Stats */
.hero_section_stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero_section_stats div {
    min-width: 145px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.hero_section_stats div:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,91,0,0.45);
}

.hero_section_stats h4 {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(90deg, #ffffff, #ff5b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero_section_stats p {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(255,255,255,0.82);
}

/* RIGHT FORM */
.hero_section_right_div {
    animation: hero_form_in 1s ease forwards;
    opacity: 0;
}

@keyframes hero_form_in {
    0% {
        transform: translateY(45px) scale(0.96);
        opacity: 0;
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.hero_form_card {
    background: rgba(255,255,255,0.94);
    border-radius: 34px;
    padding: 32px;
    color: #03142f;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(22px);
    box-shadow:
        0 45px 110px rgba(0,0,0,0.38),
        0 0 0 1px rgba(255,255,255,0.55);
}

/* Animated border */
.hero_form_card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #005fbe, #ff5b00, #005fbe);
    background-size: 300% 300%;
    z-index: 0;
    animation: hero_form_border 5s linear infinite;
}

.hero_form_card::after {
    content: "";
    position: absolute;
    inset: 2px;
    background: rgba(255,255,255,0.97);
    border-radius: 32px;
    z-index: 1;
}

@keyframes hero_form_border {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.hero_form_icon,
.hero_form_tag,
.hero_form_card h3,
.hero_form_card p,
.hero_form_card form,
.hero_form_bottom {
    position: relative;
    z-index: 2;
}

.hero_form_icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 21px;
    margin-bottom: 16px;
    box-shadow: 0 18px 40px rgba(0,95,190,0.28);
    animation: hero_icon_pulse 2.5s ease-in-out infinite;
}

@keyframes hero_icon_pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 18px 40px rgba(0,95,190,0.28);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 18px 45px rgba(255,91,0,0.35);
    }
}

.hero_form_tag {
    display: inline-block;
    background: rgba(0,95,190,0.10);
    color: #005fbe;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero_form_card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #03142f;
}

.hero_form_card p {
    color: #5d6b82;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 2 INPUTS IN ONE LINE */
.hero_form_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hero_form_card .form-group {
    margin-bottom: 0;
}

.hero_form_card label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: #03142f;
    margin-bottom: 7px;
}

.hero_form_card input,
.hero_form_card select {
    width: 100%;
    height: 52px;
    border: 1px solid #d9e1ec;
    background: #f8fafc;
    border-radius: 14px;
    padding: 0 15px;
    font-size: 14px;
    color: #03142f;
    outline: none;
    transition: 0.3s ease;
}

.hero_form_card input:focus,
.hero_form_card select:focus {
    border-color: #005fbe;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0,95,190,0.13);
}

.hero_form_btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    margin-top: 18px;
    transition: 0.3s ease;
    box-shadow: 0 16px 34px rgba(0,95,190,0.24);
}

.hero_form_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(255,91,0,0.32);
}

.hero_form_bottom {
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid #e8edf4;
    color: #5d6b82;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero_form_bottom i {
    color: #005fbe;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero_section {
        padding: 75px 0;
        text-align: center;
    }

    .hero_section::before {
        background: rgba(2, 7, 19, 0.78);
    }

    .hero_section_row {
        min-height: auto;
    }

    .hero_logo_box {
        margin-left: auto;
        margin-right: auto;
    }

    .hero_section_stars,
    .hero_section_btn_group,
    .hero_section_stats {
        justify-content: center;
    }

    .hero_section_subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero_form_card {
        margin-top: 45px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero_section_title {
        font-size: 38px;
    }

    .hero_section_subtitle {
        font-size: 16px;
    }

    .hero_section_btn,
    .hero_section_btn_outline {
        width: 100%;
        text-align: center;
    }

    .hero_section_stats div {
        width: 100%;
    }

    .hero_form_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hero_section {
        padding: 60px 0;
    }

    .hero_logo_box {
        max-width: 220px;
    }

    .hero_section_title {
        font-size: 34px;
    }

    .hero_section_badge {
        font-size: 12px;
        padding: 9px 14px;
    }

    .hero_form_card {
        padding: 24px;
        border-radius: 24px;
    }

    .hero_form_card::after {
        border-radius: 22px;
    }

    .hero_form_card h3 {
        font-size: 25px;
    }
}

/* =====================================================
   HERO SECTION ENHANCED SLOW ANIMATIONS
===================================================== */
.hero_section *,
.hero_section *::before,
.hero_section *::after {
    will-change: transform, opacity;
}

.hero_section .hero_logo_box,
.hero_section .hero_section_stars,
.hero_section .hero_section_badge,
.hero_section .hero_section_title,
.hero_section .hero_section_subtitle,
.hero_section .hero_section_btn_group,
.hero_section .hero_section_stats > div,
.hero_section .hero_form_card {
    opacity: 0;
}

.hero_section.hero_animation_active .hero_logo_box {
    animation: heroFadeDown 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_stars {
    animation: heroFadeLeft 1.3s 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_badge {
    animation: heroBadgeReveal 1.3s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_title {
    animation: heroTitleReveal 1.6s 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_subtitle {
    animation: heroFadeUp 1.4s 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_btn_group {
    animation: heroFadeUp 1.4s 1.20s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_stats > div:nth-child(1) {
    animation: heroStatReveal 1.2s 1.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_stats > div:nth-child(2) {
    animation: heroStatReveal 1.2s 1.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_section_stats > div:nth-child(3) {
    animation: heroStatReveal 1.2s 1.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero_section.hero_animation_active .hero_form_card {
    animation: heroFormReveal 1.8s 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroFadeDown {
    from { opacity: 0; transform: translateY(-25px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFadeLeft {
    from { opacity: 0; transform: translateX(-35px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes heroBadgeReveal {
    from { opacity: 0; transform: translateX(-25px) scale(0.92); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes heroTitleReveal {
    from { opacity: 0; transform: translateY(45px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroStatReveal {
    from { opacity: 0; transform: translateY(25px) scale(0.90); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroFormReveal {
    from {
        opacity: 0;
        transform: translateX(60px) rotateY(-8deg) scale(0.94);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0) scale(1);
        filter: blur(0);
    }
}

.hero_section.hero_animation_complete .hero_form_card {
    opacity: 1;
    animation: heroFormFloating 6s ease-in-out infinite;
}

@keyframes heroFormFloating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero_section.hero_animation_complete .hero_logo_box {
    opacity: 1;
    animation: heroLogoFloating 5.5s ease-in-out infinite;
}

@keyframes heroLogoFloating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.hero_section_stars i {
    transform-origin: center;
    animation: heroStarGlow 3s ease-in-out infinite;
}
.hero_section_stars i:nth-child(2) { animation-delay: 0.18s; }
.hero_section_stars i:nth-child(3) { animation-delay: 0.36s; }
.hero_section_stars i:nth-child(4) { animation-delay: 0.54s; }
.hero_section_stars i:nth-child(5) { animation-delay: 0.72s; }

@keyframes heroStarGlow {
    0%, 100% {
        transform: scale(1) rotate(0);
        filter: drop-shadow(0 0 0 rgba(255, 193, 7, 0));
    }
    50% {
        transform: scale(1.14) rotate(4deg);
        filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.70));
    }
}

.hero_section_badge { position: relative; overflow: hidden; }
.hero_section_badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    transform: rotate(20deg);
    animation: heroBadgeShine 5.5s ease-in-out infinite;
}

@keyframes heroBadgeShine {
    0%, 35% { left: -80%; }
    65%, 100% { left: 140%; }
}

.hero_section_btn { position: relative; overflow: hidden; isolation: isolate; }
.hero_section_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
    transform: skewX(-22deg);
    transition: left 0.9s ease;
    z-index: -1;
}
.hero_section_btn:hover::before { left: 145%; }

.hero_section_btn::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.45);
    opacity: 0;
    animation: heroButtonPulse 3.6s ease-out infinite;
    pointer-events: none;
}

@keyframes heroButtonPulse {
    0% { opacity: 0.6; transform: scale(0.96); }
    70%, 100% { opacity: 0; transform: scale(1.12); }
}

.hero_section_stats > div { position: relative; overflow: hidden; }
.hero_section_stats > div::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.14) 45%, transparent 70%);
    transform: translateX(-130%);
    transition: transform 0.9s ease;
}
.hero_section_stats > div:hover::before { transform: translateX(130%); }

.hero_form_card {
    transform-style: preserve-3d;
    transition: transform 0.35s ease-out;
}
.hero_form_card .hero_form_icon { transition: transform 0.45s ease; }
.hero_form_card:hover .hero_form_icon { transform: translateY(-4px) rotate(-7deg) scale(1.06); }

.hero_form_card input,
.hero_form_card select { transform-origin: center; }
.hero_form_card input:focus,
.hero_form_card select:focus { transform: translateY(-2px); }

.hero_form_btn { position: relative; overflow: hidden; }
.hero_form_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: heroFormButtonShine 4.8s ease-in-out infinite;
}

@keyframes heroFormButtonShine {
    0%, 40% { left: -100%; }
    70%, 100% { left: 145%; }
}

.hero_form_icon i { animation: heroPlaneMove 3.4s ease-in-out infinite; }
@keyframes heroPlaneMove {
    0%, 100% { transform: translate(0,0) rotate(0); }
    50% { transform: translate(4px,-4px) rotate(7deg); }
}

.hero_mesh_bg::after { animation: heroBeamMove 9s ease-in-out infinite alternate; }
@keyframes heroBeamMove {
    from { transform: translateX(-80px) rotate(25deg); opacity: 0.25; }
    to { transform: translateX(150px) rotate(25deg); opacity: 0.70; }
}

.hero_orb,
.hero_line_pattern,
.hero_mesh_bg { transition: transform 0.35s ease-out; }

@media (max-width: 991px) {
    .hero_form_card { transform: none !important; }
    .hero_section.hero_animation_complete .hero_form_card,
    .hero_section.hero_animation_complete .hero_logo_box { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
    .hero_section *,
    .hero_section *::before,
    .hero_section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero_section .hero_logo_box,
    .hero_section .hero_section_stars,
    .hero_section .hero_section_badge,
    .hero_section .hero_section_title,
    .hero_section .hero_section_subtitle,
    .hero_section .hero_section_btn_group,
    .hero_section .hero_section_stats > div,
    .hero_section .hero_form_card {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}
/* ========================= HERO SECTION Css End ========================= */







/* =================4th section css start */

/* =========================================
   ABOUT IMAGE HALF FLIP REVEAL ANIMATION
========================================= */

.about_half_flip {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    perspective: 1400px;
    transform-style: preserve-3d;
    opacity: 0;
    transform:
        perspective(1400px)
        rotateY(-82deg)
        rotateX(8deg)
        translateX(70px)
        scale(0.88);
    transform-origin: left center;
    filter: blur(8px);
    transition:
        opacity 1.3s ease,
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 1.2s ease;
    box-shadow: 0 25px 65px rgba(0, 45, 100, 0.20);
}

/* Animation active state */
.about_half_flip.about_flip_active {
    opacity: 1;
    transform:
        perspective(1400px)
        rotateY(0deg)
        rotateX(0deg)
        translateX(0)
        scale(1);
    filter: blur(0);
}

/* Image */
.about_half_flip img {
    display: block;
    width: 100%;
    border-radius: 24px;
    transform: scale(1.08);
    transition:
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.5s ease;
}

/* Image settles after reveal */
.about_half_flip.about_flip_active img {
    transform: scale(1);
}

/* Animated light sweep */
.about_half_flip::before {
    content: "";
    position: absolute;
    top: -25%;
    left: -85%;
    width: 45%;
    height: 150%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        rgba(255, 255, 255, 0.65),
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transform: rotate(18deg);
}

/* Run shine after flip */
.about_half_flip.about_flip_active::before {
    animation: aboutImageShine 1.6s 0.65s ease forwards;
}

@keyframes aboutImageShine {
    from {
        left: -85%;
    }

    to {
        left: 145%;
    }
}

/* Bottom decorative glow */
.about_half_flip::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -18px;
    height: 38px;
    z-index: -1;
    opacity: 0;
    border-radius: 50%;
    background: rgba(0, 95, 190, 0.32);
    filter: blur(24px);
    transform: scaleX(0.5);
    transition:
        opacity 1.2s 0.6s ease,
        transform 1.4s 0.6s ease;
}

.about_half_flip.about_flip_active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Attractive hover effect */
.about_half_flip:hover {
    transform:
        perspective(1400px)
        rotateY(-3deg)
        rotateX(2deg)
        translateY(-8px)
        scale(1.01);
    box-shadow: 0 35px 85px rgba(0, 45, 100, 0.28);
}

.about_half_flip:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

/* Optional corner accent */
.about_half_flip .image_corner_accent {
    position: absolute;
    width: 70px;
    height: 70px;
    right: 14px;
    top: 14px;
    z-index: 3;
    pointer-events: none;
    border-top: 3px solid rgba(255, 255, 255, 0.85);
    border-right: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 0 16px 0 0;
}

/* Tablet and mobile */
@media (max-width: 991px) {
    .about_half_flip {
        margin-top: 35px;
        transform:
            perspective(1200px)
            rotateY(-65deg)
            translateX(45px)
            scale(0.92);
    }

    .about_half_flip.about_flip_active {
        transform:
            perspective(1200px)
            rotateY(0deg)
            translateX(0)
            scale(1);
    }
}

@media (max-width: 575px) {
    .about_half_flip {
        border-radius: 18px;
        transform:
            perspective(900px)
            rotateY(-48deg)
            translateX(30px)
            scale(0.94);
        transition:
            opacity 1.1s ease,
            transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
            filter 1s ease;
    }

    .about_half_flip img {
        border-radius: 18px;
    }

    .about_half_flip:hover {
        transform:
            perspective(900px)
            rotateY(0deg)
            translateY(-4px)
            scale(1);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .about_half_flip,
    .about_half_flip img,
    .about_half_flip::before,
    .about_half_flip::after {
        animation: none !important;
        transition: none !important;
    }

    .about_half_flip {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .about_half_flip img {
        transform: none;
    }
}
/* =====================================================
   MAIN SECTION
===================================================== */

.main_section {
    background: linear-gradient(117deg, #FEF0F8 14.35%, #DACFFF 84.4%);
}

/* Left Div Styling */
.main_section .left_div {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.main_section .left_div .icon_img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
    animation: floatIcon 3s infinite ease-in-out;
}

.main_section .left_div h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.main_section .left_div p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Right Div */
.main_section .right_div {
    position: relative;
}

.main_section .right_div .image_wrapper {
    position: relative;
    padding: 30px;
    /* background: #fff; */
    border-radius: 18px;
    /* box-shadow: 0 12px 25px rgba(0,0,0,0.08); */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 0.3s;
}

/* Watermark background */
.main_section .right_div::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background-image: url('/images/icons/home_webdeveloper_pic1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    z-index: -1;
    transform: rotate(-15deg);
}

/* Image Styling */
.main_section .right_div img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main_section .right_div:hover img {
    transform: scale(1.03);
}

/* =====================================================
   ANIMATIONS
===================================================== */

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

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
    .main_section .left_div h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .main_section {
        padding: 40px 0;
    }

    .main_section .right_div {
        margin-top: 30px;
    }

    .main_section .right_div::before {
        width: 130px;
        height: 130px;
        top: -20px;
        right: -10px;
    }
}

@media (max-width: 575px) {
    .main_section .left_div h2 {
        font-size: 22px;
    }

    .main_section .left_div p {
        font-size: 15px;
    }

    .main_section .right_div .image_wrapper {
        padding: 20px;
    }
}

/* ===========4th section css end=========== */


/* ==========Pricing Section css Start */
/* =====================================================
   PACKAGE SECTION
===================================================== */

.package_section {
    text-align: center;
}

/* Title */
.package_section h2 {
       font-weight: 800;
    margin-bottom: 10px;
    /*opacity: 0;*/
    /*transform: translateY(20px);*/
    /*animation: fadeUp 1s ease-out forwards, gradientFlow 4s ease infinite;*/
    
    /* Gradient Text */
    /*background: linear-gradient(90deg, #142B4F, #A86EF8, #FF7AD9, #142B4F);*/
    background-size: 300% 300%;
    -webkit-background-clip: text;
    /*-webkit-text-fill-color: transparent;*/
}

/* Fade-up Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flowing Gradient Animation */
@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.package_section p {
    font-size: 16px;
    color: #555;
    text-align: center;
}



/*--------------------------------------------------------------------------------------*/

/* =====================================================
   CLOUD SERVICES SLIDER SECTION
===================================================== */

.cloud_services_section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        linear-gradient(
            135deg,
            #f7faff 0%,
            #ffffff 50%,
            #f2f7ff 100%
        );
}

/* Grid background */
.cloud_services_section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(0, 95, 190, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 95, 190, 0.045) 1px, transparent 1px);
    background-size: 45px 45px;
}

/* Background glow */
.cloud_services_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    animation: cloudGlowFloat 8s ease-in-out infinite alternate;
}

.cloud_services_glow_one {
    width: 360px;
    height: 360px;
    top: -100px;
    left: -100px;
    background: rgba(0, 95, 190, 0.14);
}

.cloud_services_glow_two {
    width: 330px;
    height: 330px;
    right: -100px;
    bottom: -100px;
    background: rgba(255, 91, 0, 0.12);
    animation-delay: 1.5s;
}

@keyframes cloudGlowFloat {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(30px, 25px, 0) scale(1.12);
    }
}

.cloud_services_section .container {
    position: relative;
    z-index: 2;
}

/* =====================================================
   SECTION HEADING
===================================================== */

.cloud_services_heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.cloud_services_section.cloud_section_active .cloud_services_heading {
    opacity: 1;
    transform: translateY(0);
}

.cloud_services_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    margin-bottom: 18px;
    border-radius: 50px;
    color: #005fbe;
    background: rgba(0, 95, 190, 0.09);
    border: 1px solid rgba(0, 95, 190, 0.14);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cloud_services_heading h2 {
    margin-bottom: 18px;
    color: #07172f;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.cloud_services_heading h2 span {
    background: linear-gradient(
        90deg,
        #005fbe,
        #0b8fe8,
        #ff5b00
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cloudHeadingGradient 5s ease-in-out infinite;
}

@keyframes cloudHeadingGradient {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.cloud_services_heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #637087;
    font-size: 17px;
    line-height: 1.8;
}

/* =====================================================
   SLIDER
===================================================== */

.cloud_slider_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
}

.cloud_slider_viewport {
    width: 100%;
    overflow: hidden;
    padding: 18px 5px 32px;
}

.cloud_slider_track {
    display: flex;
    gap: 24px;
    transition:
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* =====================================================
   SERVICE CARD
===================================================== */

.cloud_service_card {
    position: relative;
    flex: 0 0 calc((100% - 48px) / 3);
    min-height: 365px;
    overflow: hidden;
    padding: 34px 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(5, 46, 95, 0.09);
    box-shadow:
        0 20px 55px rgba(3, 34, 75, 0.09),
        0 3px 10px rgba(3, 34, 75, 0.04);
    opacity: 0;
    transform:
        perspective(1000px)
        rotateY(12deg)
        translateY(45px)
        scale(0.94);
    transition:
        opacity 1s ease,
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.cloud_services_section.cloud_section_active .cloud_service_card {
    opacity: 1;
    transform:
        perspective(1000px)
        rotateY(0deg)
        translateY(0)
        scale(1);
}

.cloud_services_section.cloud_section_active
.cloud_service_card:nth-child(1) {
    transition-delay: 0.15s;
}

.cloud_services_section.cloud_section_active
.cloud_service_card:nth-child(2) {
    transition-delay: 0.28s;
}

.cloud_services_section.cloud_section_active
.cloud_service_card:nth-child(3) {
    transition-delay: 0.41s;
}

.cloud_service_card::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(0, 95, 190, 0.12),
        rgba(255, 91, 0, 0.08)
    );
    transition:
        transform 0.65s ease,
        opacity 0.65s ease;
}

.cloud_service_card::after {
    content: "";
    position: absolute;
    left: -80%;
    top: -50%;
    width: 38%;
    height: 200%;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    transform: rotate(20deg);
    transition: left 0.8s ease;
}

.cloud_service_card:hover {
    border-color: rgba(0, 95, 190, 0.22);
    box-shadow:
        0 35px 75px rgba(3, 34, 75, 0.15),
        0 0 0 1px rgba(0, 95, 190, 0.05);
    transform:
        perspective(1000px)
        translateY(-12px)
        rotateX(2deg)
        scale(1.015);
}

.cloud_service_card:hover::before {
    opacity: 0.9;
    transform: scale(1.25);
}

.cloud_service_card:hover::after {
    left: 140%;
}

/* Icon */
.cloud_service_icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin-bottom: 26px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #fc5707,
        #fc5707 55%,
        #ff5b00
    );
    font-size: 25px;
    box-shadow: 0 15px 35px rgba(0, 95, 190, 0.25);
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.cloud_service_card:hover .cloud_service_icon {
    transform:
        translateY(-5px)
        rotate(-7deg)
        scale(1.08);
    box-shadow: 0 20px 42px rgba(255, 91, 0, 0.25);
}

.cloud_service_icon i {
    animation: cloudIconFloat 3.2s ease-in-out infinite;
}

@keyframes cloudIconFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Number */
.cloud_service_number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: rgba(0, 95, 190, 0.11);
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.cloud_service_card:hover .cloud_service_number {
    color: rgba(255, 91, 0, 0.14);
    transform: translateY(-4px);
}

.cloud_service_card h3 {
    position: relative;
    z-index: 2;
    min-height: 58px;
    margin-bottom: 14px;
    color: #07172f;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.35;
}

.cloud_service_card p {
    position: relative;
    z-index: 2;
    min-height: 84px;
    margin-bottom: 23px;
    color: #68758a;
    font-size: 15px;
    line-height: 1.75;
}

/* Link */
.cloud_service_link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #005fbe;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.cloud_service_link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cloud_service_link:hover {
    gap: 13px;
    color: #ff5b00;
}

.cloud_service_link:hover i {
    transform: translateX(4px);
}

/* =====================================================
   ARROWS
===================================================== */

.cloud_slider_arrow {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    color: #07172f;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(3, 34, 75, 0.13);
    font-size: 16px;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cloud_slider_arrow:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #005fbe, #ff5b00);
    transform: scale(1.08);
    box-shadow: 0 17px 40px rgba(0, 95, 190, 0.23);
}

.cloud_slider_arrow:active {
    transform: scale(0.94);
}

/* =====================================================
   DOTS
===================================================== */

.cloud_slider_dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 14px;
}

.cloud_slider_dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c7d2df;
    cursor: pointer;
    transition:
        width 0.4s ease,
        border-radius 0.4s ease,
        background 0.4s ease,
        transform 0.3s ease;
}

.cloud_slider_dot:hover {
    transform: scale(1.2);
}

.cloud_slider_dot.cloud_dot_active {
    width: 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, #005fbe, #ff5b00);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {
    .cloud_service_card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 991px) {
    .cloud_services_section {
        padding: 80px 0;
    }

    .cloud_services_heading {
        margin-bottom: 40px;
    }

    .cloud_slider_wrapper {
        gap: 10px;
    }

    .cloud_slider_arrow {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 767px) {
    .cloud_services_section {
        padding: 65px 0;
    }

    .cloud_services_heading h2 {
        font-size: 34px;
    }

    .cloud_services_heading p {
        font-size: 16px;
    }

    .cloud_service_card {
        flex-basis: 100%;
        min-height: 350px;
    }

    .cloud_slider_wrapper {
        display: block;
    }

    .cloud_slider_arrow {
        position: absolute;
        top: 50%;
        z-index: 10;
        width: 44px;
        height: 44px;
        transform: translateY(-50%);
    }

    .cloud_slider_prev {
        left: -8px;
    }

    .cloud_slider_next {
        right: -8px;
    }

    .cloud_slider_arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .cloud_slider_viewport {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 575px) {
    .cloud_services_heading h2 {
        font-size: 30px;
        letter-spacing: -0.7px;
    }

    .cloud_service_card {
        min-height: 360px;
        padding: 30px 25px;
        border-radius: 22px;
    }

    .cloud_service_card h3 {
        min-height: auto;
        font-size: 20px;
    }

    .cloud_service_card p {
        min-height: auto;
    }
}

/* =====================================================
   REDUCED MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .cloud_services_section *,
    .cloud_services_section *::before,
    .cloud_services_section *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .cloud_services_heading,
    .cloud_service_card {
        opacity: 1 !important;
        transform: none !important;
    }
}
