/* header */
header {
    background: #fff;
    color: white;
    /* padding: 20px 0; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    padding: 13px 0;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    max-height: 65px;
    /* keep logo nicely sized */
    width: auto;
}

.logo-icon {
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.head_menu {
    margin-left: auto;
    /* pushes nav to far right */
}

.head_menu ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.head_menu a {
    /* color: #1a365d; */
    color: #0b3459 !important;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s;
}

.serve {
    cursor: pointer;
}

.head_menu a:hover {
    color: #0b3459 !important;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none !important;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white !important;
    min-width: 250px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* border-radius: 5px; */
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    /* background: #f8f9fa; */
    background: #1a365d;
    color: #fff !important;
    border-radius: 0;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 15px;
        padding: 15px 0;
        flex-wrap: wrap;
    }

    .head_menu ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .menu-toggle {
        display: block !important;
        /* z-index: 1; */
        font-family: initial;
    }

    .head_menu a {
        line-height: 41px;
    }

    .head_menu {
        display: none;
        /* hidden by default */
        position: absolute;
        top: 0px;
        /* adjust to your header height */
        right: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
        background: #fff;
        padding: 1rem;
        border-top: 1px solid #eee;
    }

    .head_menu ul {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav.show {
        display: flex;
    }

    .head_menu.active {
        display: block;
        /* show when active */
    }
}

.advBanner {
    width: 100%;
    max-height: 75px;
    z-index: 1000;
    display: block;
}

.advBanner img {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}

.advBanner .desktop {
    display: block;
}

.advBanner .mobile {
    display: none;
}

@media screen and (max-width: 500px) {
    .advBanner .desktop {
        display: none !important;
    }

    .advBanner .mobile {
        display: block !important;
    }
}

/* Hide toggle on desktop */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a365d;
}

/* Close button inside menu */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    font-family: initial;
}

@media (min-width: 769px) {
    .head_menu {
        position: static;
        height: auto;
        width: auto;
        background: none;
        display: block;
        transition: none;
    }

    .close-menu {
        display: none;
    }
}

/* header end*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji" !important;
    line-height: 1.6 !important;
    color: #1a365d !important;
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.awards-banner {
    background: #ed8936;
    /* color: white; */
    color: darkblue;
    padding: 10px 0;
    /* padding: 20px 0; */
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    /* font-size: 1.1rem; */
}

.hero {
    /* background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%); */
    background: linear-gradient(135deg, #0d3b66 0%, #105086 70%);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
    position: relative;
}

.hero h1 {
    /* font-size: 3.5rem; */
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.hero .subtitle {
    /* font-size: 1.5rem; */
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    /* list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    position: relative; */

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 815px;
    margin: 0 auto;
}
.hero-features-column {
    /* display: flex; */
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.hero-features-column.left-column {
    text-align: right;
    margin-left: 97px;
}

.hero-features-column.right-column {
    text-align: left;
}
.hero-features li::before {
    content: "●";
    font-weight: bold;
    color: yellow;
    display: inline-block;
    width: 1.2em;
}

.hero-feature {
    /* padding: 10px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    position: relative; */

    flex: 1;
    /* min-width: 225px;
    max-width: 271px; */
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    position: relative;
}
/* .hero-feature strong {
    font-size: 23px;
} */

.hero-feature::before {
    content: "●";
    font-weight: bold;
    color: yellow;
    display: inline-block;
    width: 1.2em;
    position: absolute;
    left: -4px;
}
.hero-features-column.right-column .hero-feature::before {
    left: -4px;
}
/* .hero-features-column.left-column .hero-feature::before {
    right: -4px;
    left: auto;
} */


.hero-features {
    display: flex;
    flex-direction: row;
    gap: 64px;/*20*/
}

.hero-features-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.secnd_feat {
    display: flex;
    justify-content: center;
    gap: 167px;
    flex-wrap: wrap;
}
.hero-feature {
    flex: 1;
    /* min-width: 225px;
    max-width: 271px; */
    text-align: left;
    /* text-align: center; */
    /* padding: 15px; */
    /* background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px); */
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-features-row {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        max-width: 100%;
        width: 100%;
    }
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    .hero-features-column.left-column,
    .hero-features-column.right-column {
        text-align: center;
        margin-left: 0;
    }
    .hero-features-column.left-column .hero-feature::before {
        left: -4px;
        right: auto;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #ed8936 !important;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: #dd7324;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 137, 54, 0.3);
}

.btn-secondary {
    background-color: transparent !important;
    color: white;
    border: 2px solid #fff !important;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #1a365d;
}

.section {
    padding: 50px 0;
}

.section h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
    /* color: #5b6871; */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlights-grid {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px; */
    margin: 60px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 80px;
}

.highlight-number {
    background: #ed8936;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
    display: flex;
    gap: 11px;
}

.highlight-content p {
    color: #5b6871;
    line-height: 1.7;
}

.highlight-content ul {
    list-style: none;
    position: relative;
}

.highlight-content ul li {
    color: #5b6871;
    line-height: 1.7;
    position: relative;
    padding-bottom: 6px;
}

.highlight-content ul li::before {
    content: "•";
    position: absolute;
    left: -20px;
    top: -9px;
    color: #ed8936;
    font-weight: bold;
    font-size: 1.5rem;
}

.highlight-image {
    flex: 1;
    text-align: center;
}

.highlight-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.video-container {
    text-align: center;
    margin: 40px 0;
}

.video-placeholder {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 60px 20px;
    margin: 40px auto;
    max-width: 600px;
}

#myCarousel {
    margin-bottom: 120px;
    z-index: 0;
}

#myCarousel .carousel-indicators {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

#myCarousel .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
    background-color: #33333385;
}

#myCarousel .carousel-indicators .active {
    background-color: black;
}

#myCarousel .carousel-control-prev,
#myCarousel .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 24px;
    opacity: 0.5;
}

#myCarousel .carousel-control-prev {
    left: 0;
    background-color: #000;
    border-radius: 50%;
}

#myCarousel .carousel-control-next {
    right: 0;
    background-color: #000;
    border-radius: 50%;
}

#myCarousel .carousel-inner .carousel-item img,
#myCarousel .carousel-inner .carousel-item video {
    margin: 0 auto;
    display: block;
    width: 73%;
}

#myCarousel h4 {
    color: #5b6871;
    font-size: 1.3rem !important;
}

.player-controls {
    display: block;
    /* Ensure player controls are visible by default */
}

.play-button {
    position: absolute;
    top: 37%;
    left: 45%;
    background: none;
    border: none;
    align-items: center;
    transform: translateX(0%);
    font-size: 60px;
}

.chart_table {
    margin-left: auto;
    margin-right: auto;
}

.chart_table tr:nth-child(odd) {
    background-color: #cfd5ea;
}

.chart_table tr:nth-child(even) {
    background-color: #E9EBF5;
}

.chart_table th {
    background-color: #222a35;
    color: #fff;
}

.chart_table th,
.chart_table td {
    border: 1px solid #fff;
    text-align: center;
    padding: 8px;
    font-size: 11px;
    width: 16.66%;
}


.solutions-btn:hover,
.solutions-btn:active,
.solutions-btn-selected,
.solutions-btn.selected {
    background: white;
    color: #6f6f6f !important;
    letter-spacing: 1px;
    margin: 0 -1.5px -5px -1.5px;
    -webkit-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: 0px 5px 40px -10px rgba(0, 0, 0, 0.57);
    box-shadow: 5px 40px -10px rgba(0, 0, 0, 0.57);
    outline: none;
    border: none;
    z-index: 10;
}

.solutions-btn {
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    padding: 19px 0 !important;
    border: none;
    background: #28A9E288;
    color: white;
    width: 30%;
}

@media only screen and (min-width: 1025px) {

    #solution-fleet-det,
    #solution-asset-det,
    #solution-eld-det,
    #solution-amex-det {
        padding-top: 25px;
        padding-bottom: 40px;
    }
}

#solution-fleet-det,
#solution-asset-det,
#solution-eld-det,
#solution-amex-det {
    width: 100%;
    min-height: 100px;
    /* background: white; */
    display: none;
    outline: none;
    padding-top: 20px;
}

.solutions-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 100px 0 0;
    margin-top: 55px;
}

.solutions-section h2 {
    color: white;
    text-align: center;
    font-weight: bold;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.solution-card {
    /* background: rgba(255, 255, 255, 0.1); */
    /* background: rgb(10 30 228 / 10%); */
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
    color: #fff;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: #ed8936;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.comparison-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.comparison-section h2 {
    font-weight: bold;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.comparison-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.comparison-card h4 {
    font-size: 16px;
}

.comparison-logo {
    height: 60px;
    margin-bottom: 20px;
    background: #e9ecef;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.best-tracker-section {
    background: #1a365d;
    color: white;
    padding: 100px 0;
}

.best-tracker-section h2 {
    color: white;
    /* font-size: 25px; */
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

.tracker-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.tracker-feature h4 {
    font-size: 16px;
}

.tracker-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ed8936;
}

.section_1 {
    padding: 50px 0;
}

.section_1 h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
}

.section_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.included-free-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.included-free-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2rem;
    font-weight: bold;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin: 60px 0;
}

.included-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ed8936;
}

.included-logo {
    background: #ed8936;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 20px;
}

.calculator-btn {
    background: linear-gradient(135deg, #ed8936 0%, #dd7324 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.calculator-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.models-section {
    padding: 50px 0;
}

.models-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2rem;
    font-weight: bold;
}

.models-intro {
    text-align: center;
    margin-bottom: 60px;
}

.model-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.model-highlight {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.model-highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ed8936;
}

.comparison-table {
    background: white;
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 60px 0;
}

.table-header {
    background: #1a365d;
    color: white;
    display: grid;
    grid-template-columns: 1.5fr repeat(6, 1fr);
    padding: 20px;
    font-weight: bold;
    text-align: center;
    align-items: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(6, 1fr);
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    align-items: center;
    text-align: center;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

.table-row.popular {
    background: #fff3e0;
    border: 2px solid #ed8936;
}

.popular-badge {
    background: #ed8936;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}

.model-name {
    font-weight: bold;
    text-align: left;
    padding-left: 20px;
}

.model-title {
    font-weight: bold;
    text-align: left;
    padding-left: 20px;
    position: relative;
    top: 12px;
}

.cta-section {
    background: linear-gradient(135deg, #ed8936 0%, #dd7324 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 60px;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.cta-section a:hover {
    cursor: pointer;
}

footer {
    background: #1a365d;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin-bottom: 0;
}

.modal-content {
    width: 50% !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .form-overlay {
        width: 100%;
    }
    .font-hide-show {
        gap: 20px;
    }
    .modal-content {
        width: 90% !important;
    }
    /* .model-title {
        padding-left: 0;
    } */
    .hero-features {
        /* flex-direction: column;
        gap: 20px; */
        display: inline-block;
        text-align: left;
        justify-content: center;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .solutions-grid,
    .comparison-grid,
    .included-grid,
    .model-highlights {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: left;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .feature-img,
    .feature-img1,
    .feature-img2,
    .feature-img3 {
        width: 100%;
        height: auto;
    }

    .highlight-content ul li,
    .highlight-content p,
    .highlight-content h3 {
        text-align: left;
    }

    .solutions-btn {
        width: 90%;
    }

    .img-section {
        margin-top: 20px !important;
    }

    #solution-fleet-det,
    #solution-asset-det,
    #solution-eld-det,
    #solution-amex-det {
        padding-bottom: 30px;
    }

    .section_grid {
        display: block;
    }
}


.form-overlay {
    width: 90%;
    padding: 20px;
    background: #334053;
    border-radius: 16px;
    /* backdrop-filter: blur(10px); */
    z-index: 2;
    color: #000;
    margin: 20px auto;
    display: block;
}

#transparent-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#transparent-form input {
    /* padding: 10px 6px;
    border-radius: 4px;
    border: none; */
    /* margin-bottom: 9px; */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* border-radius: 8px; */
    color: white;
    /* padding: 0.75rem 1rem; */
    padding: 7px;
    font-size: 0.95rem;
}

#transparent-form button {
    cursor: pointer;
    padding: 10px 6px;
    border-radius: 4px;
    border: none;
}

#transparent-form h3 {
    font-size: 22px;
    color: #fff;
}

#transparent-form input[type=text],
#transparent-form input[type=email],
#transparent-form input[type=tel] {
    /* background: #dedede; */
    margin-bottom: 9px;
}

#phonenumber_cc2 {
    padding: 0 0 0 50px !important;
    height: 47px;
}

.iti--allow-dropdown {
    margin-bottom: 9px;
}

#phonenumber_cc2::placeholder,
#transparent-form input::placeholder {
    color: #fff;
}

#selectService {
    color: #fff;
    text-transform: none;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    height: 45px;
    overflow: hidden;
    font-weight: 500;
    border: none;
    outline: 0;
}

#selectService option {
    padding: 5px;
}

#selectService,
select {
    font-size: 14px;
}

#selectService {
    display: block;
    background: transparent;
    /* height: 40px; */
}

.select-container {
    position: relative;
    width: 100%;
    /* background: #dedede; */
    border-radius: 8px;
    margin-bottom: 11px;
    /* height: 40px; */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.select-device-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* background: #dedede; */
    /* height: 40px; */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.selected-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-right: 10px;
}

.selected-option {
    background-color: #28a745;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    height: 25px;
}

.selected-option span {
    margin-right: 10px;
    font-size: 12px;
}

.selected-option .close-btn {
    padding: 0 !important;
    cursor: pointer;
    line-height: 1;
    margin-top: -3px;
    font-size: 18px;
}

.coupon_btn {
    box-shadow: none;
    outline: 0;
    background-color: #0963c0;
    width: 100%;
    color: #fff;
    white-space: normal;
    font-size: 16px !important;
    background: linear-gradient(90deg, #009644 0%, #18adc0 100%);
    color: white;
}

.coupon_btn:hover {
    background: linear-gradient(90deg, #007a3a 0%, #148899 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 68, 0.4);
    color: white;
}

.contact-custom-close {
    position: absolute !important;
    top: 0;
    right: -10px !important;
    z-index: 999;
    background: transparent;
    border: none;
    font-size: 24px !important;
    cursor: pointer;
    font-weight: 900;
    color: #000 !important;
    opacity: 1;
    text-shadow: 0 0 transparent;
}

#dropdownContent,
#trackersContent {
    padding-left: 50px !important;
    top: 59%;
    padding: 15px;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #e4e4e4;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    display: none;
    padding-left: 50px;
    width: 80%;
    margin: 0 auto;
}

#trackersContent {
    position: absolute;
    top: 83%;
    left: 0;
    right: 0;
}

.dropdown-trigger {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #f8f9fa; */
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    /* color: rgba(255, 255, 255, 0.7) !important; */
    color: #fff !important;
    height: 50px;
}

.dropdown-content.show {
    display: block;
}

.dropdown-arrow.open {
    transform: rotate(180deg);
}

.dropdown-arrow {
    transition: transform 0.2s;
}

.trackerdropdown-arrow.open {
    transform: rotate(180deg);
}

.trackerdropdown-arrow {
    transition: transform 0.2s;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-left: 0;
    height: 30px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    border: 1px solid #000 !important;
}

.form-check-label {
    font-size: 14px;
    color: #333;
}

.form-check .form-check-input {
    float: none !important;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.form-check-input:checked {
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}



.header-actions {
    display: flex;
    gap: 42rem;
    align-items: center;
    /* order: 2; */
    flex-shrink: 0;
}
.active_btn {
    /* margin-top: -9px; */
    min-width: 242px;
    font-size: 19px !important;
    border-radius: 7px;
    padding: 8px 6px !important;
    font-weight: 600 !important;
    /* background-color: #0b5ed7 !important; */
    background-color: #ed8936 !important;
    border: 1px solid #ed8936;
    /* float: right; */
    color: #fff !important;
}
/* .active_btn:hover, .deal_btn:hover {
    box-shadow: none !important;
    transform: translateY(0);
} */
.active_btn:hover, .deal_btn:hover {
    background: #ed8936 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.3);
}
.deal_btn {
    margin-left: 0;
    margin-top: 0;
    min-width: 194px;
    padding: 8px 10px !important;
    font-size: 19px !important;
    border-radius: 7px;
    /* background-color: #0b5ed7 !important; */
    background-color: #ed8936 !important;
    border: 1px solid #ed8936;
    color: #fff !important;
}
#myModalBtn .modal-content {
    width: 56% !important;
}
.close {
    position: relative;
    right: 21%;
    bottom: 38px;
    font-size: 37px;
    height: 37px;
    background-color: transparent;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    float: right;
    border-radius: 46px;
    width: 37px;
    color: #fff;
}
@media (max-width: 767px) {
    #myModalBtn .modal-content {
        width: 100% !important;
    }
    #LoginAndRegistrationForm {
        width: 300px !important;
    }
    .close {
        right: -3% !important;
        bottom: 6px !important;
    }
}
#LoginAndRegistrationForm {
    width: 350px;
    background: #fff;
    margin: 64px auto;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 15px;
    transform: scale(1.2);
    box-shadow: 0px 0px 6px 0px #cdcdcd;
}
#formTitle {
    text-align: center;
    padding-top: 10px;
    font-weight: bolder;
    letter-spacing: 1px;
    font-size: 25px;
    margin-bottom: 30px;
}
#formSwitchBtn {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}
#formSwitchBtn button {
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: bolder;
    width: 160px;
    height: 40px;
    border: 0px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border: 1px solid #747474;
    transition: 0.4s;
}
#formSwitchBtn .active {
    color: #fff;
    background: #747474;
}
input[type=text] {
    background: white;
}
.input-text {
    width: 100%;
    height: 38px;
    border: 0px;
    border: 1px solid #747474;
    box-sizing: border-box;
    padding: 5px;
    border-radius: 5px;
    font-size: 17px;
}
.mt-10 {
    margin-top: 10px;
}
.input-text:focus {
    outline: none;
}
.mt-20 {
    margin-top: 20px;
}
.forgot-pass-remember-me {
    display: flex;
    justify-content: center;
    gap: 90px;
    font-size: 14px;
}
.forgot-pass-remember-me #ForgotPassword {
    color: #002b27;
    font-weight: bold;
    transition: 0.4s;
}
.forgot-pass-remember-me #ForgotPassword:hover {
    color: #008d7f;
}
.forgot-pass-remember-me input {
    height: 12px;
}
/* .forgot-pass-remember-me label {} */
.forgot-pass-remember-me a {
    text-decoration: none;
    font-style: italic;
}
#swal2-content {
    font-size: 20px;
    line-height: 26px;
    font-style: italic;
}
.swal2-styled.swal2-confirm {
    padding: 10px 36px;
}
.Submit-Btn {
    width: 100%;
    height: 42px;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: bolder;
    transition: 0.4s;
    background-color: #747474;
    color: #fff;
}
.Submit-Btn:hover {
    background-color: #444444;
    color: #fff;
}
.dont-have-account, .already-have-account {
    letter-spacing: 0.3px;
    font-size: 14px;
    color: #747474;
}
.dont-have-account a, .already-have-account a {
    font-style: italic !important;
    text-decoration: none;
    color: #002b27;
    font-weight: bold;
    transition: 0.4s;
}
.dont-have-account a:hover, .already-have-account a:hover {
    color: #008d7f;
}
#RegistrationFrom, #ForgotPasswordForm {
    display: none;
}
.error-input {
    border: 1px solid #ff5b5b;
}
.error-message {
    font-size: 11px !important;
    font-weight: bold;
    color: #ff5b5b !important;
    text-align: left;
    margin: 0px;
    padding: 0px;
    margin-top: 2px;
}
.login_btn {
    padding: 16px 35px !important;
    border-radius: 10px !important;
    background: #f60 !important;
    color: #fff !important;
    font-weight: 600 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .header-actions {
        display: block !important;
        gap: 15px;
        align-items: center;
        order: 2;
        flex-shrink: 0;
        flex-direction: row;
        text-align: center;
        align-self: center;
    }
    .nav-link {
        padding: 0 !important;
    }
    .active_btn {
        min-width: 242px !important;
    }
    .deal_btn {
        min-width: 242px !important;
        margin-top: 17px;
    }
}


.header-actions-section {
    /* padding-top: 30px;
    padding-bottom: 30px; */
    padding: 50px 0 0;
}

/* .prize-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 40px 0;
} */
.prize-row {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.prize-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    padding: 20px;
}
.prize-item img {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}
.prize-item br {
    margin-top: 10px;
}
.prize-item a {
    text-decoration: none;
    font-size: 17px;
    /* font-weight: 500; */
    color: #007bff;
}
@media (max-width: 768px) {
    .prize-row {
        flex-direction: column;
        gap: 20px;
    }
    .prize-item {
        min-width: auto;
    }
}