.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* mobile default */
    gap: 1.5rem;
}

.rating-wrapper {
    flex-wrap: nowrap !important;
    /* no wrapping */
    gap: 1.5rem;
}

.rating-box {
    flex-shrink: 1;
    /* allow shrinking */
    min-width: 80px;
    /* minimum width for readability */
    text-align: center;
    min-width: 100px;
    padding: 10px 20px;
}

.rating-box img {
    height: 35px;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 1;
}

/* Scale down on small screens */
@media (max-width: 576px) {
    .rating-box img {
        height: 25px;
    }

    .rating {
        font-size: 13px;
    }

    .rating-box {
        min-width: 60px;
    }
}

/* Platform Section Classes */
.platform-tag {
    /* display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334053;
    background: #ffffff;
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 1; */


    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    color: #334053;
    background: #fff;
    z-index: 0;
    /* border: none;  */
}

.platform-tag::before {
    /* content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 30px;
    padding: 1px; 
    background: linear-gradient(to right, #00c96b, #00b5e2);
    --webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
     mask-composite: exclude; */

    content: "";
    position: absolute;
    top: 0;
    /* bottom: 0; */
    left: 15px;
    right: 15px;
    height: 1px;
    background: linear-gradient(to right, #00c96b, #00b5e2);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    z-index: 1;
}

.platform-tag i {
    color: #00c96b;
    font-size: 1.2rem;
    margin-right: 6px;
}

.section-title {
    font-weight: bold;
    font-size: 2.2rem;
    /* color: #334053; */
    color: #4a5568;
    margin-bottom: 30px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(220, 244, 247, 0.8) 0%,rgba(220, 244, 247, 0.3) 100%);
    border: 1px solid rgba(57, 183, 215, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(57, 183, 215, 0.15);
    border-color: rgba(57, 183, 215, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.562);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(57, 183, 215, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: #39b7d7;
}

.card-title {
    font-weight: 600;
    color: #334053;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.card-text {
    /* color: #6c757d; */
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-buttons {
    margin-top: 3rem;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gradient {
    background: linear-gradient(to right, #00c96b, #00b5e2);
    color: #fff;
    border: none;
}

.btn-custom-order {
    background-color: #e5f6fb;
    color: #004b5a;
    border: none;
}

.btn-hero-custom {
    padding: 15px 30px;
}

/* Media Queries for Platform Section */
@media (max-width: 576px) {
    .platform-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .platform-tag i {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column !important;
    }

    .cta-buttons a {
        width: 100%;
        margin-bottom: 10px;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
    }

    .cta-buttons .ms-3 {
        margin-left: 0 !important;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .mx-4 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .d-flex {
        text-align: center;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.color-edit-1 {
    background: linear-gradient(to bottom,
            rgba(220, 244, 247, 1),
            rgba(220, 244, 247, 0.4));
    border-radius: 10px;
}

.color-edit {
    background: linear-gradient(to bottom,
            rgba(226, 246, 205, 0.6),
            rgba(226, 246, 205, 0.3));
    border-radius: 10px;
}

/* Main Content Section Classes */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-content img {
    width: 100%;
    height: auto;
}

.text-section {
    width: 42%;
}

.card-text:last-child {
    margin-bottom: 0;
    color: #5c6675;
}

/* Media Queries for Main Content Section */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        text-align: center;
    }

    .text-section {
        width: 100%;
        margin-bottom: 2rem;
    }
}

.hero-dashboard-wrapper {
    padding: 80px 0 40px 0;
    padding-top: 30px;
    display: flex;
    align-items: center;
}

.main-container-fluid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-center-block {
    text-align: center;
}

.mobile-break {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
        /* forces line break on mobile */
    }
}

/* Title Section */
.title-section-block {
    margin-bottom: 60px;
}

.primary-heading-text {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: #1e293b; */
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle-description-text {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Dashboard Cards Grid */
.dashboard-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card-item {
    border-radius: 16px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-visual-area {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Feature Card Images */
.feature-card-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .feature-card-image {
        width: auto;
        /* Let width adjust to maintain aspect ratio */
        max-width: 100%;
    }
}

.feature-card-item:hover .feature-card-image {
    transform: scale(1.05);
}

/* Download Buttons */
.download-buttons-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.store-badge-image {
    height: 60px;
    width: auto;
}

.custom-btn {
    width: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .custom-btn {
        width: 100%;
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-dashboard-wrapper {
        padding: 60px 0;
    }

    .main-container-fluid {
        padding: 0 16px;
    }

    .primary-heading-text {
        font-size: 2rem;
    }

    .subtitle-description-text {
        font-size: 1rem;
    }

    .dashboard-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card-item {
        padding: 16px;
    }

    .download-buttons-section {
        gap: 16px;
    }

    .store-badge-image {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .primary-heading-text {
        font-size: 1.75rem;
    }

    .title-section-block {
        margin-bottom: 40px;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Image overlay effect */
.card-visual-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,rgba(59, 130, 246, 0.1),rgba(34, 197, 94, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card-item:hover .card-visual-area::before {
    opacity: 1;
}

/* gps conatiner */

.vehicle-tracking-wrapper {
    background-color: #ffffff;
    padding: 60px 0;
}

.main-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.primary-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-description-text {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.individual-device-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.device-image-container {
    text-align: center;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.device-info-section {
    padding: 10px 25px;
}

.device-model-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 5px;
}

.device-category-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.expandable-content-section {
    border-top: 1px solid #ecf0f1;
    margin-top: 15px;
}

.collapsible-item-wrapper {
    border-bottom: 1px solid #ecf0f1;
}

.section-toggle-button {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    text-align: left;
    font-weight: 500;
    /* color: #34495e; */
    color: #4a5568;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.section-toggle-button:hover {
    color: #2980b9;
}

.toggle-icon-element {
    transition: transform 0.3s ease;
}

.section-toggle-button[aria-expanded="true"] .toggle-icon-element {
    transform: rotate(180deg);
}

.collapsible-content-area {
    padding: 0 0 15px 0;
    color: #6c757d ;
}

.feature-list-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-container li {
    padding: 5px 0;
    color: #5d6d7e;
    position: relative;
    padding-left: 20px;
}

.feature-list-container li:before {
    content: "•";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.action-buttons-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: nowrap;
}

.action-buttons-row {
    display: flex;
    gap: 10px;
    /* space between buttons */
    flex-wrap: nowrap;
}

.action-buttons-row button {
    width: auto;
    /* default auto width on desktop */
}

/* Mobile view */
@media (max-width: 768px) {
    .action-buttons-row {
        flex-direction: column;
        gap: 12px;
    }

    .action-buttons-row button {
        width: 100%;
        /* full width buttons on mobile */
        display: block;
    }
}

.primary-action-btn {
    background: linear-gradient(to right, #009644, #18adc0);

    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-action-btn:hover {
    background-color: #219a52;
}

.secondary-action-btn {
    background-color: #e4fbfe;
    color: #148899;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* .secondary-action-btn:hover {
  background-color: #2980b9;
} */

.tertiary-action-btn {
    background-color: #e4fbfe;
    color: #148899;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tertiary-action-btn:hover {
    background-color: #7f8c8d;
}

@media (max-width: 768px) {
    .primary-section-title {
        font-size: 2rem;
    }

    .action-buttons-row {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .vehicle-tracking-wrapper {
        padding: 40px 0;
    }

    .primary-section-title {
        font-size: 1.8rem;
    }

    .section-description-text {
        font-size: 1rem;
    }

    .device-info-section {
        padding: 20px;
    }
}

/* Device Showcase Section Styles */
.device-showcase-wrapper {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.primary-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    /* color: #2c3e50; */
    color: #4a5568;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.feature-highlight-card {
    background: #d0f4f9;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-visual-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.content-description-area {
    text-align: left;
}

.feature-card-heading {
    font-size: 1.4rem;
    font-weight: 600;
    /* color: #2c3e50; */
    color: #4a5568;
    line-height: 1.3;
    margin-bottom: 15px;
}

.feature-detail-text {
    font-size: 0.95rem;
    line-height: 1.6;
    /* color: #5a6c7d; */
    color: #6c757d;
    margin-bottom: 0;
    text-align: justify;
}

.my-action-buttons button {
    width: auto;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
}

/* Space between buttons on desktop */
.my-primary-btn {
    margin-right: 12px;
    background: linear-gradient(to right, #009644, #18adc0);
    background-color: #00c96b;
    border-radius: 10px;
    border: none;
    color: white;
}

.my-primary-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.my-secondary-btn {
    background: #e4fbfe;
    color: #148899;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.my-secondary-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Mobile styles */
@media (max-width: 768px) {
    .my-action-buttons button {
        width: 100% !important;
        /* full width */
        display: block;
        margin-right: 0 !important;
        /* remove right margin */
        margin-bottom: 12px;
        /* space between stacked buttons */
    }
}

.primary-cta-button {
    background: linear-gradient(to right, #009644, #18adc0);

    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.secondary-info-button {
    background: #e4fbfe;
    color: #148899;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-info-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .primary-section-title {
        font-size: 2.2rem;
    }

    .device-showcase-wrapper {
        padding: 60px 0;
    }

    .feature-highlight-card {
        padding: 25px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .primary-section-title {
        font-size: 1.9rem;
    }

    .device-showcase-wrapper {
        padding: 40px 0;
    }

    .feature-highlight-card {
        padding: 20px;
    }

    .card-visual-container {
        height: 180px;
    }

    .feature-card-heading {
        font-size: 1.25rem;
    }

    .feature-detail-text {
        font-size: 0.9rem;
    }

    .primary-cta-button,
    .secondary-info-button {
        padding: 10px 25px;
        font-size: 0.95rem;
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0 auto 10px auto;
    }

    .action-buttons-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .primary-section-title {
        font-size: 1.7rem;
    }

    .feature-highlight-card {
        padding: 15px;
    }

    .card-visual-container {
        height: 160px;
    }
}

/* Additional hover effects for better UX */
.feature-highlight-card .feature-card-heading {
    transition: color 0.3s ease;
}

.feature-highlight-card:hover .feature-card-heading {
    color: #007bff;
}

/* Focus states for accessibility */
.primary-cta-button:focus,
.secondary-info-button:focus {
    outline: 3px solid rgba(0, 123, 255, 0.3);
    outline-offset: 2px;
}





@media (min-width: 850px) {
    .modal-dialog {
        width: 800px;
        max-width: 800px;
        margin: 30px auto;
    }
}

.modaltitlecus {
    font-size: 30px !important;
    font-family: "Inter", sans-serif;
    font-weight: 800 !important;
    color: #000 !important;
}

.modalname {
    font-size: 17px !important;
    font-family: "Inter", sans-serif;
    color: #000 !important;
}

.modalpara {
    font-size: 15px !important;
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
    color: #000 !important;
}

.boxsection {
    background-color: #efefef;
    border: solid 15px #fff;
    border-radius: 20px;
    padding: 15px;
}

.modalboxhead {
    font-size: 15px !important;
    font-family: "Inter", sans-serif;
    font-weight: 800 !important;
    color: #333 !important;
}

.modalboxpara {
    color: #6b6b6b !important;
    font-size: 12px !important;
    font-family: "Inter", sans-serif;
    font-weight: 500 !important;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#myModalBtn .modal-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 92px;
}

#myModalBtn .close,
#myModalDashcam .close {
    margin-top: 0 !important;
    margin-right: 0px;
}

#myModalBtn .modal-body {
    margin-left: 0px !important;
}

#myModalBtn .img_popup {
    width: 100%;
    margin-top: 31%;
}

#myModalBtn .popup-box {
    background-color: #f4ef94;
}

.formwidth {
    margin-left: auto;
    margin-right: auto;
    width: 88%;
}

.form_head1 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 3px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 21px;
    text-align: center;
    line-height: 27px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}

.contactform {
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    font-family: "Inter", sans-serif;
    font-size: 15px !important;
    color: black !important;
    height: 50px;
    font-weight: 500;
    padding: 0 10px;
}

.modal-body p {
    font-weight: 500;
    color: #666;
    margin: 0;
}

.custom-close:hover {
    color: #000 !important;
    opacity: 1;
}

.custom-close:hover {
    color: #ff0000 !important;
    opacity: 1;
}

.custom-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    opacity: 1;
    border: none;
    font-size: 24px;
    color: #ff0000;
    cursor: pointer;
    font-weight: 900;
    color: #ff0000;
}

@media (max-widtH: 767px) {
    .custom-close {
        position: absolute;
        top: 0;
        right: 0;
    }

    .hero-right-container::before {
        width: 100%;
    }

    .box.arrow-left:after {
        content: " ";
        position: absolute;
        left: -18px;
        /* top: 0; */
        bottom: 42%;
        border-top: 20px solid transparent;
        border-right: 20px solid #1fa0d6;
        border-left: none;
        border-bottom: 20px solid transparent;
    }
}


.contact-custom-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    font-weight: 900;
    color: #000;
    opacity: 1;
    text-shadow: 0 0 transparent;
}

.sideMainpara {
    font-family: "Inter", sans-serif;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

.box {
    background-color: #1fa0d6;
    /* height: 100%; */
    padding: 20px;
}

.box.arrow-left:after {
    content: " ";
    position: absolute;
    left: 48%;
    top: 25px;
    border-top: 20px solid transparent;
    border-right: 20px solid #1fa0d6;
    border-left: none;
    border-bottom: 20px solid transparent;
}

.feedback-input {
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent !important;
    border: 1px solid #fff;
    transition: .3s;
    padding: 13px;
    margin-bottom: 15px;
    box-sizing: border-box;
    width: 100%;
    outline: 0;
}

.sendEmail {
    width: 100%;
    background: #fff;
    border-radius: 50px !important;
    border: 0;
    color: #000;
    font-size: 20px;
    transition: .3s;
    margin-top: -4px;
}

a {
    text-decoration: none;
}

.video-overlay {
    position: absolute;
    bottom: -17px;
    left: 20px;
    right: 20px;
    z-index: 10;
    margin: 0 auto;
    width: 71%;
}