@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #172650;
}

.container {
    max-width: 1394px;
    margin: 0 auto;
    padding: 0 20px;
}

.mb-20 {
    margin-bottom: 20px !important;
}

/* Header */
header {
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.active {
    background: #5A29A9;
    padding: 1rem 0;
    box-shadow: 0 3px 3px rgb(40 20 72 / 20%);
}

.rada_header.active {
    background-color: #3085F4;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links li:hover>a,
.nav-links a.active {
    color: #FF8139;
}

.rada_header .nav-links li:hover>a,
.rada_header .nav-links a.active {
    color: #081524;
}

.rada_header .nav-links a.active {
    color: #081524;
}

.cta-button {
    background: #FF8139;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    transform: translateY(0) scale(1);
}

.rada_cta_btn {
    background: #fff;
    color: #1F1F1F;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.banner_drift {
    background: url('../images/hm_bg.svg') no-repeat top center;
    background-size: 100% auto;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100lvh;
}

.banner_drift.rada_bg {
    background: url('../images/hm_bg_rada.svg') no-repeat top center;
    background-size: 100% auto;
}

.banner_drift .hero-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.banner_drift_text {
    width: 544px;
    margin-top: -70px;
}

.banner_drift_img {
    width: calc(100% - 544px);
}

.banner_drift .hero-text h3 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.banner_drift .hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner_drift .hero-text p {
    font-size: 18px;
    margin-bottom: 50px;
}

.banner_drift .device-mockup {
    position: relative;
    width: 880px;
    margin: 100px 0 0 0;
}

.banner_drift .device-mockup img {
    width: 100%;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.text_center {
    text-align: center;
}

.heading_title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 3rem;
    color: #172650;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    width: 65%;
    margin: 0 auto 1rem;
    max-width: 100%;
    line-height: 1.3;
}

.sub_title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #F97D37;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.rada_sub_title {
    color: #1473E6;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 4rem;
    justify-content: center;
}

.features-grid>.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
}

.feature-card {
    background: linear-gradient(to bottom, rgba(247, 243, 255, 0.65) 0%, rgba(247, 243, 255, 0.05) 100%);
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rada_feature_card {
    background: linear-gradient(to bottom, rgba(220, 235, 255, 1) 0%, rgba(220, 235, 255, 1) 1%, rgba(247, 243, 255, 0.05) 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin: -60px auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    height: 210px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #172650;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.feature-card p {
    color: #172650;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

.sub_title.left_sub_title {
    margin: 0 0 1rem;
    text-align: left;
}

.heading_title.left_heading_title {
    text-align: left;
    margin: 0;
    width: 100%;
}

.map_features {
    margin-bottom: 100px;
}

.map_features .feature-icon {
    height: 110px;
    margin: 0 auto;
    display: table;
}

.map_features .feature-card {
    text-align: center;
}

.map_features .feature-card h3 {
    margin-bottom: 10px;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    overflow: hidden;
}

.img_left {
    margin-right: -180px;
}

.img_right {
    margin-left: -180px;
}

.map_img {
    width: 630px;
}

.map_img img {
    width: 100%;
}

.max-width-600 {
    max-width: 610px;
    margin: 0 auto;
}

.img_big {
    width: 860px;
}

.content-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.section_1_content_grid .content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-list {
    list-style: none;
    margin-top: 2rem;
}

.content-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.3rem;
}

.content-list.bold_list {
    font-weight: 600;
}

.bd_txt {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #172650;
    margin-bottom: 2rem;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #AF78B5;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #AF78B5;
    top: 18px;
}

.rada_content_list li::before {
    background: #1473E6;
}

.content_section_1 {
    background: url('../images/map_bg.svg') no-repeat bottom center;
    background-size: 100% auto;
    padding: 138px 0;
}

.rada_content_section_1 {
    background: url('../images/map_bg_rada.svg') no-repeat bottom center;
}

.content-image {
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.step_section {
    background: url('../images/blue_bg.svg') no-repeat top center;
    background-size: cover;
    padding: 120px 0;
    margin-top: 120px;
    overflow: hidden;
}

.rada_step_section {
    background: url('../images/rada_blue_bg.svg') no-repeat top center;
}

.color_white {
    color: white;
}

.stepper {
    position: relative;
    margin-left: 30px;
}

.stepper .step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 48px;
    width: 2px;
    background-color: rgb(255 255 255 / 50%);
    height: 100%;
}

.step {
    position: relative;
    margin-bottom: 60px;
    padding-left: 40px;
}

.step:last-child {
    margin-bottom: 0;
}

.circle {
    position: absolute;
    left: -35.5px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.active .circle {
    background-color: #ff914d;
    border: none;
    color: #fff;
}

.rada_stepper .step.active .circle {
    background-color: #9DE0FF;
    color: #081524;
}

.step .content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.step .content p {
    margin-top: 6px;
    font-size: 14px;
    color: #ccc;
    max-width: 500px;
}

.rada_step .content p {
    color: #fff;
}

#stepper-carousel .owl-stage {
    padding-left: 0 !important;
}

#stepper-carousel {
    width: 900px;
    margin: 0 -180px 0 0;
}

#stepper-carousel.owl-theme .owl-nav {
    gap: 20px;
    display: flex;
    width: 620px;
    justify-content: end;
    max-width: 100%;
}

#stepper-carousel .owl-item .item {
    padding: 10px;
}

.owl-theme .owl-nav button {
    background: transparent !important;
}

#stepper-carousel .owl-item img {
    transition: all 0.5s ease;
}

#stepper-carousel .owl-item img {
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

#stepper-carousel .owl-item.active img {
    filter: blur(0);
    -webkit-filter: blur(0);
}

.ph_section_4 {
    background: url('../images/ph_secbg.svg') no-repeat top center;
    background-size: cover;
    padding: 138px 0;
}

.rada_ph_section_4 {
    background: url('../images/rada_ph_secbg.svg') no-repeat top center;
}

/* Contact Section Custom Styles */
.contact_section .container {
    width: 1100px;
    max-width: 100%;
}

.left_contact {
    flex: 1;
    padding: 0 30px 40px 0;
    background: none;
    border-radius: 20px;
    min-width: 320px;
    max-width: 400px;
}

.right_contact {
    flex: 1.2;
    background: #F9F8FF;
    padding: 30px 40px 40px;
    min-width: 340px;
    max-width: 500px;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rada_right_contact {
    background: #EBF9FF;
}


.contact_form {
    width: 100%;
}

.form-title {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #172650;
    margin-bottom: 1rem;
}

.form-desc {
    font-size: 14px;
    color: #172650;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #172650;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 16px;
    border: 1.5px solid #e3e3ee;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #172650;
    outline: none;
    transition: border 0.2s;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5A29A9;
}

.form-group select {
    appearance: none;
    background-image: url('../images/arrow-down.svg') !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 15px 15px !important;
    background-color: #fff;
}

.form-group textarea {
    min-height: 90px;
    max-height: 200px;
}

/* Phone input wrapper styles */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1.5px solid #e3e3ee;
    border-radius: 10px;
    background: #fff;
    transition: border 0.2s;
}

.phone-input-wrapper:focus-within {
    border-color: #5A29A9;
}

.phone-input-wrapper.input-error {
    border-color: #ff4d4f;
    background: #fff5f5;
}




.phone-prefix {
    padding: 10px 0 10px 16px;
    color: #172650;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: transparent;
    border: none;
    outline: none;
    user-select: none;
}

.phone-input-wrapper input {
    border: none;
    background: transparent;
    padding: 10px 16px 10px 8px;
    flex: 1;
    outline: none;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #172650;
}

.phone-input-wrapper input::placeholder {
    color: #999;
}

.error-message {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
    min-height: 18px;
}

.submit-btn {
    cursor: pointer;
    padding: 14px 40px;
}

.rada_submit_btn {
    background: #162650;
    color: #fff;
}

.left_contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 28px;
}

.left_contact ul li {
    display: flex;
    align-items: self-start;
    gap: 15px;
}

.left_contact ul li .flex_row {
    flex: 1;
}

.left_contact ul li .flex_row span {
    display: block;
    font-size: 22px;
    font-weight: 500;
}

.left_contact ul li img {
    margin-top: 8px;
}


@media (max-width: 900px) {
    .content-grid.section_1_content_grid {
        flex-direction: column;
        gap: 2rem;
    }

    .left_contact,
    .right_contact {
        max-width: 100%;
        margin: 0;
        padding: 24px 10px;
    }

    .right_contact {
        padding: 24px 10px 20px 10px;
    }
}

/* Footer */
footer {
    background: url('../images/foot_bg.svg') no-repeat top center;
    background-size: cover;
    color: white;
    padding: 3rem 0 2rem;
}

.rada_footer {
    background: url('../images/rada_foot_bg.svg') no-repeat top center;
    background-size: cover;
}


.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.footer-section p {
    font-size: 14px;
    font-weight: 400;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
}


.footer-section ul li span {
    display: block;
    font-weight: 500;
}

.footer-section ul li a {
    color: #dbdbdb;
    text-decoration: none;
    transition: color 0.3s;
}


.footer-section .rada_footer_list li a {
    color: #fff;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.306);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.footer-section:first-child {
    width: 400px;
}

.required_field {
    color: red;
    font-size: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-device {
        position: static;
        margin-top: 2rem;
        width: 200px;
        margin: 2rem auto 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s, transform 0.6s;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s, transform 0.6s;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.input-error {
    border-color: #ff4d4f !important;
    background: #fff5f5 !important;
}

/* Dropdown styles for Products nav */
.nav-links li {
    position: relative;
}

.dropdown_content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 140px;
    box-shadow: 0 8px 24px rgba(23, 38, 80, 0.10);
    border-radius: 8px;
    z-index: 100;
    padding: 4px 0;
}

.nav-links li:hover .dropdown_content {
    display: block !important;
}

.nav-links li:hover>.dropdown_content {
    display: block;
}

.dropdown_content a {
    display: block;
    padding: 10px 20px;
    color: #172650;
    text-decoration: none;
    margin: 0 4px;
    border-radius: 8px;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.dropdown_content a:hover,
.dropdown_content a.active {
    color: #172650;
    font-weight: 500;
    position: relative;
}

.dropdown_content a.active {
    background: rgb(192 154 255 / 33%) !important;
}

.rada_dropdown_content a.active {
    background: rgba(20, 115, 230, 0.33) !important;
}

.dropdown_content a:hover {
    background: transparent;
}

.dropdown_content a.active::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 15px;
    width: 5px;
    height: 5px;
    background: #AF78B5;
    border-radius: 50%;
}

.rada_dropdown_content a.active::after {
    background: #1473E6;
}

.to_top_arrw {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    background: #F9F8FF;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #c0c0c0;
    box-shadow: 0 0 10px rgb(91 85 127 / 21%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.to_top_arrw.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.to_top_arrw svg {
    width: 26px;
    height: 26px;
}

.download_app {
    font-size: 14px;
    margin-top: 20px;
    border: 2px solid #fff;
}

.footer-email-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    padding: 4px 6px 4px 12px;
    max-width: 400px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(80, 0, 120, 0.04);
}

.footer-email-box .email-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.footer-email-box input[type="email"] {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    padding: 10px 0;
    background: transparent;
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.footer-email-box input[type="email"]::placeholder {
    color: #b0aeb8;
    opacity: 1;
}

.footer-email-box .send-btn {
    background: #ff8c32;
    border: none;
    border-radius: 6px;
    padding: 8px 15px;
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.footer-email-box .send-btn.rada_send_btn {
    background: #1473E6;
    color: #fff;
}

.footer-email-box .send-btn:hover {
    background: #ff7a00;
}

.footer-email-box .send-btn svg {
    width: 17px;
}

.footer-email-box .email-icon img {
    width: 20px;
}

.footer-email-box .error-message {
    color: red;
    font-size: 0.9em;
    margin-left: 8px;
    min-width: 120px;
}

.rada_logo {
    width: 120px;
}

.rada_logo img {
    width: 100%;
    display: block;
}

.table_section {
    background: url(../images/white_line_bg.svg) no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    margin: 0;
}

.table_section .heading_title {
    width: 100%;
    margin-bottom: 40px;
}

.feature-table {
    background: linear-gradient(to bottom, rgba(243, 235, 255, 1) 0%, rgba(247, 243, 255, 1) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #AF78B5;
    text-align: left;
    border-collapse: collapse;
}

.feature-table thead tr th {
    background: linear-gradient(to bottom, rgb(234, 224, 255) 0%, rgba(212, 198, 239, 0.5) 100%);
}

.feature-table td,
.feature-table th {
    padding: 15px 30px;
    border: 0 !important;
    font-size: 14px;
}

.feature-table th {
    font-weight: 600;
}

.sub-col {
    font-size: 12px;
    font-weight: 400;
}

.note {
    font-size: 12px;
    font-weight: 400;
}

.feature-table td.sub-col {
    font-size: 12px;
}

.icon-img {
    margin-right: 10px;
    width: 14px;
    height: 14px;
    vertical-align: middle;
}

.feature-table tbody {
    padding: 20px 0;
}

.footer_logo {
    width: 60px;
}

.feature-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

#success-message {
    display: none;
    color: green;
    margin-top: 1rem;
  }

@media (max-width: 1440px) {
    .banner_drift {
        padding: 60px 0 80px;
    }

    .img_big {
        width: 700px;
    }

    .content-text h2 {
        font-size: 2.2rem;
    }

    .heading_title {
        font-size: 36px;
    }

    .sub_title {
        font-size: 14px;
    }

    .content-text p {
        font-size: 1rem;
    }

    .content-list li {
        font-size: 1rem;
    }
}

@media (max-width: 1366px) {
    .banner_drift .hero-text h1 {
        font-size: 38px;
    }

    .banner_drift .device-mockup {
        width: 820px;
    }

    #stepper-carousel {
        width: 850px;
    }

    #stepper-carousel.owl-theme .owl-nav {
        width: 580px;

    }

    .footer-section:first-child {
        width: 330px;
    }
}

@media (max-width: 1280px) {
    .banner_drift .hero-text h1 {
        font-size: 34px;
    }

    .banner_drift .device-mockup {
        width: 760px;
    }

    .heading_title {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .content_section_1 {
        padding: 71px 0;
    }

    .features-grid>.feature-card {
        flex: 1 1 270px;
        max-width: 330px;
    }

    .features-grid {
        gap: 2rem;
    }

    .img_big {
        width: 650px;
    }

    .img_left {
        margin-right: -70px;
    }

    .img_right {
        margin-left: -70px;
    }

    .step .content p {
        max-width: 350px;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .feature-icon img {
        width: 100%;
    }

    .feature-icon {
        width: 120px;
    }

    .banner_drift {
        background-size: cover;
    }

    .content-text h2 {
        font-size: 1.4rem;
    }

    .content-text p {
        font-size: 14px;
    }

    .content-list li {
        font-size: 14px;
    }

    .heading_title {
        font-size: 26px;
    }

    .sub_title {
        font-size: 12px;
    }

    .bd_txt {
        font-size: 14px;
    }

    .content-list li::before {
        top: 14px;
    }

    .content-list li {
        font-size: 14px;
    }

    .content-text p {
        font-size: 14px;
    }

    .content-list li {
        font-size: 14px;
    }

    .map_features .feature-icon {
        width: 60px;
    }

    .map_features .feature-card {
        padding: 1rem;
    }

    .max-width-600 {
        max-width: 440px;
    }

    #stepper-carousel {
        width: 680px;
    }

    #stepper-carousel.owl-theme .owl-nav {
        width: 420px;
    }

    .step {
        margin-bottom: 30px;
    }

}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .map_img {
        width: 440px;
    }

    .features-grid>.feature-card {
        flex: 1 1 220px;
        max-width: 320px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .banner_drift {
        height: auto;
    }

    .banner_drift .hero-content {
        flex-direction: column;
    }

    .banner_drift_text {
        width: 100%;
        margin-top: 110px;
    }

    .banner_drift_img {
        width: 100%;

    }

    .banner_drift .device-mockup {
        width: 100%;
        margin: 0 auto;
    }

    .banner_drift .hero-text h1 {
        font-size: 28px;
    }

    .right_contact {
        padding: 24px 10px 20px 10px;
        width: 100%;
    }

    .left_contact,
    .right_contact {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .container {
        width: 100%;
    }

    .banner_drift {
        background-size: cover;
    }

    .banner_drift {
        height: auto;
    }

    .banner_drift .hero-content {
        flex-direction: column;
    }

    .banner_drift_text {
        width: 100%;
        margin-top: 110px;
    }

    .banner_drift_img {
        width: 100%;

    }

    .banner_drift .device-mockup {
        width: 100%;
        margin: 0 auto;
    }

    .banner_drift .hero-text h1 {
        font-size: 28px;
    }

    .right_contact {
        padding: 24px 10px 20px 10px;
        width: 100%;
    }

    .left_contact,
    .right_contact {
        width: 100%;
    }

    .img_big {
        width: 100%;
    }

    .img_left {
        margin-right: 0;
    }

    .img_right {
        margin-left: 0;
    }

    .content-grid.section_1_content_grid {
        flex-direction: column;
    }

    .cta-button {
        font-size: 14px;
    }

    .heading_title {
        font-size: 20px;
        width: 100%;
    }

    .map_img {
        width: 100%;
    }

    .content_section_1 {
        padding: 0 0 70px;
    }

    .feature-icon {
        width: 100px;
    }

    .feature-icon img {
        width: 100%;
    }

    .feature-card h3 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .map_features .feature-icon {
        width: 60px;
    }

    .content-text h2 {
        font-size: 22px;
    }

    .step .content p {
        max-width: 100%;
    }

    #stepper-carousel {
        width: 100%;
        margin: 0;
    }

    #stepper-carousel.owl-theme .owl-nav {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: relative;
        top: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        display: none;
        z-index: 1000;
    }

    header {
        padding: 1.5rem 0;
    }

    .dropdown_content {
        position: static;
        box-shadow: none;
        background: #fff;
        width: 100%;
        min-width: 0;
        border-radius: 5px;
        padding: 5px 6px;
        display: none;
    }

    .dropdown_content a {
        padding: 10px 20px;
        color: #172650;
        background: #fff;
        border-radius: 0;
        margin: 0;
    }

    .dropdown_content a {
        padding: 10px 10px;
        border-radius: 6px;
    }
}

/* Hamburger styles */
.hamburger {
    border-radius: 4px;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    border: 2px solid #ffffff;
    padding: 4px;
    width: 40px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        right: 0;
        background: #ae6bdf;
        flex-direction: column;
        display: none;
        z-index: 1000;
        width: 100%;
        padding: 20px;
    }

    .nav-links a {
        display: block;
        padding: 10px;
    }

    nav.menu-open .nav-links {
        display: flex;
    }

    .banner_drift.rada_bg {
        background-size: cover;
    }

    .rada_header .nav-links {
        background: #1473E6;
    }
    .features {
        padding: 0 0 80px 0;
    }
}

/* Hamburger active state (optional for X icon) */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Spinner for loading state */
.spinner {
  animation: spin 1s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.btn-loading {
  display: inline-flex;
  align-items: center;
  font-size: 1em;
}

/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5em;
  color: #888;
  cursor: pointer;
}
.close-modal:hover {
  color: #333;
}
.modal-message {
  font-size: 1.2em;
  margin-top: 16px;
}

.spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}