.breadcrumb-section {
    background-color: #051451;
}

.gps-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.gps-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(0, 200, 255, 0.7);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.gps-line {
    position: absolute;
    background-color: rgba(0, 200, 255, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* About section */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    height: 100%;
    padding-left: 30px;
}

.about-image {
    position: relative;
    z-index: 3;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
    height: 450px;
    object-fit: cover;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.shape-background {
    position: absolute;
    width: 90%;
    height: 120%;
    border-radius: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transform: rotate(-5deg);
    right: 0;
    top: -10%;
    z-index: 1;
}

.feature-icon {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 15px;
    vertical-align: middle;
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #032d90;
    bottom: -10px;
    left: 0;
}

@media (max-width: 991.98px) {
    .about-section {
        padding: 60px 0;
    }
    
    .image-container {
        padding-left: 15px;
        margin-top: 50px;
    }
    
    .about-image {
        height: 350px;
        transform: none;
    }
    
    .shape-background {
        width: 110%;
        height: 110%;
        top: -5%;
    }
}
.cta-button {
display: flex;
-webkit-box-pack           : justify;
-ms-flex-pack              : justify;
justify-content            : center;
-webkit-box-align          : center;
-ms-flex-align             : center;
align-items                : center;
font-family                : var(--global--font-body);
position                   : relative;
z-index                    : 2;
font-size                  : 15px;
font-weight                : 700;
text-transform             : capitalize;
padding                    : 0 30px;
border                     : 0;
width                      : 240px;
height                     : 65px;
-webkit-transition         : all .3s ease-in-out;
-o-transition              : all .3s ease-in-out;
transition                 : all .3s ease-in-out;
background-color: #3bd633;
border-radius              : 4px;
overflow                   : hidden;
margin: 0 auto;
}




.solution-tabs {
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  
  .tab-buttons-container {
    background: #2c3e50;
    padding: 10px 0;
    display: flex;
    justify-content: center;
  }
  
  .tab-buttons {
    display: inline-flex;
    background: #2c3e50;
    border-radius: 30px;
    padding: 5px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
  }
  
  .tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border-radius: 30px;
    margin: 0 2px;
  }
  
  .tab-btn.active {
    background:linear-gradient(330deg,rgba(79, 193, 71, 1) 97%, rgba(77, 193, 71, 1) 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    /* color: #001983; */
  }
  
  .tab-btn:hover {
    background: rgba(255,255,255,0.1);
  }
  
  /* Rest of your existing CSS remains the same */
  .tab-content-wrapper {
    display: flex;
    min-height: 400px;
  }
  
  .tab-image {
    flex: 1;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
  }
  
  .tab-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    transition: opacity 0.5s;
  }
  
  .tab-content {
    flex: 1;
    padding: 40px;
    background: white;
  }
  
  .tab-pane {
    display: none;
    animation: fadeIn 0.5s;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  .download-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
  }
  
  .download-btn:hover {
    background: #0870b5;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .tab-content-wrapper {
        flex-direction: column;
    }
    
    .tab-image {
        order: 2;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
        margin: 2px;
    }
  }
  
  
  .feature-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.feature-card {
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2.5rem;
    color: #032d90;
    margin-bottom: 20px;
}
.rating {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffc107;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #212529;
}
.stats-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 20px;
}


.platform-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

/* Working dotted background animation */
.dotted-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle,rgb(139, 139, 139) 1px, transparent 1px) 0 0 / 20px 20px,
        radial-gradient(circle,rgb(0, 0, 0) 1px, transparent 1px) 10px 10px / 20px 20px;
    opacity: 0.4;
    z-index: 0;
    animation: moveDots 40s linear infinite;
}

@keyframes moveDots {
    0% { background-position: 0 0, 10px 10px; }
    100% { background-position: 200px 200px, 210px 210px; }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 0 5px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin: 30px auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}