*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* start header section  */

/*  start upper header section (comapany name and logo with logout button) */
header{
    min-width: 100%;
}
.upperHeader{
    /* background-color: lightblue; */
    width: 100%;
    max-height: 65px;
    display: flex;
    justify-content: space-between;
    margin: 5px;
}
.logo{
    display: flex;
    padding:1.5rem 1.5rem;
}
.fa-truck{
    font-size: 36px;
    aspect-ratio: 1;
    color: blue;
}
.companyName{
    font-size: 20px;
    padding-left: 1.2rem;
    font-weight: 500;
    margin-top: 1.8px;
}
.logutButton{
    color: red;
    padding-top: 0.8rem;
    padding:1.5rem 0.7rem;
}
#logoutBtn{
    background-color: rgb(239 68 68 );
    color: white;
    width: 6rem;
    height: 2.5rem;
    border-radius: 5px;
    border: 5px solid rgb(239 68 68);
    font-size: 1rem;
}
.fa-right-from-bracket{
    color: white;
    font-size: 14px;
}
/* end upper header section (comapany name and logo with logout button) */

/* start greeting section  */

.greeting{
    width: 100%;
    height: 4rem;
    background: linear-gradient(135deg, #000000 40%, #7c3aed 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.greetingUser{
    height: 2rem;
    padding-left: 2.4rem;
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 10px;
}
.activeSection{
    padding-left: 2.4rem;
    font-size: 1.9rem;
    font-weight: 700;
    text-decoration: underline;
}
/* end greeting section  */

/* end header section  */
/* start popup alert  */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

/* .popup-content {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
  min-width: 250px;
  animation: popupFade 0.3s ease;
} */

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#popup-close {
  margin-top: 10px;
  background: #007bff;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#popup-close:hover {
  background: #0056b3;
}

/* start of nav bar section  */

.navBar{
    width: 255px;
    max-width: 255px;
    height: 100%;
    max-height: 100vh;
    background-color: rgb(255, 255, 255);
    position: relative;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ddd;
    
}

.sidebar{
    display: flex;
    flex-direction: column;

    margin-top: 1.3rem;
    padding-left: 1.5rem; 
}
.sidebar a{
    text-decoration: none;
    /* background-color: red; */
    width: 14rem;
    height: 3rem;
    color: rgb(55 65 81);
    font-size: 17px;
    font-weight: 400;
    margin: 4px 0;
    display: flex;
    align-items: center; 
    padding-left: 0.8rem;
    
}
.sidebar a:hover{
    background-color: rgba(88, 149, 248, 0.158);
}
.sidebar .logout{
    color: red;
}
.sidebar .logout:hover{
    background-color: rgba(248, 88, 88, 0.158);
}

.sidebar a.active {
  background-color: rgba(88, 149, 248, 0.158);
  border-right: 5px solid rgb(59 130 246);
}

.logout {
  width: 14rem;
  height: 3rem;
  text-decoration: none;
  color: rgb(243, 21, 21);
  font-size: 17px;
  font-weight: 400;
  margin-top: 20px;
  padding-left: 2rem;
  display: flex;
  align-items: center; 
  gap: 10px;
}

.logout:hover {
  background-color: rgba(241, 93, 93, 0.178);
}
.logout .active{
    background-color: rgba(209, 241, 93, 0.178);
    border-right: 5px solid rgb(243, 21, 21);
}

hr {
  border: 1px solid #ddd;
  margin-top: 20px;
}
.menu-btn {
    /* display: none; */
    visibility: hidden;
    font-size: 24px;
    color: rgb(255, 255, 255);
    background-color: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
}

  /* Content */
.content {
    margin-left: 250px;
    padding: 20px;
}

  /* Mobile View */

/* end of navigation section  */

/* start of dashboard section   */
.container {
  display: flex;
  width: 100%;
}
.dashboard{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    /* position: relative; */
    overflow-x: auto;
}
.main-content{
    width: 100%;
    padding: 15px 30px;
    box-sizing: border-box;
    flex-grow: 1;
    overflow-x: auto;
} 
.main-content{
    display: flex;
    flex-direction: column;
}

.header h1 {
    font-size: 2.6rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}
.header p {
    font-size: 1.3rem;
    color: #6b7280;
    display: flex;
    justify-content: center;
}
.button-group {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem; 
}
.button-group{
    text-align: center;
    margin-bottom: 2rem;
}
.btn{
    width: 200px;
    height: 50px;
    border-radius: 10px;
    font-size: 14px;
    border: none;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin: 5px;
}
.btn:hover{
    transform: scale(1.05);
}
.btn-green{
    background-color: #059669;
    color: white;
}
.btn-green:hover{
    background-color: #047857;
}
.btn-blue{
    background-color: #2563eb;
    color: white;
}
.btn-blue:hover{
    background-color: #1d4ed8;
}
.search-container{
    max-width: 28rem;
    margin: 0 auto 2rem auto;
    position: relative;
}
.search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 3rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: #3b82f6 0.2s ease;
}
  
.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af; 
}
/* .table-container {
  width: 100%;
  overflow-x: auto;
 
}  */
/* .vechile-table{
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
} */

/* fetch data  */
.popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    
}
.popup-content{
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 28rem;
    /* margin: 0 1rem; */
    max-height: 90vh;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-overlay.active .popup-content {
    transform: translateX(0);
}
.popup-header{
    display: flex;
    justify-content: space-between;
}
/* .p .popup-body{
    padding: 24px;
} */
/* .form-label{
    width: 100%;
} */
.form-group{
    display: flex;
    flex-direction: column;
    /* margin: 1rem; */
    input{
        font-size: 15px;
    }
}
.form-input{
    padding: 0.75rem;
}
.form-label{
    margin-bottom: 10px;
    font-size: 18px;
    color:#374151;
}
.close-btn{
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: #6b7280; 
    cursor: pointer;
}
.close-btn:hover {
    color: #374151;
}
#apiForm{
    margin-top: 20px;
}

.form-actions{
    display: flex;
    margin-top: 10px;
}

.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
        
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
        
.loading-container {
    text-align: center;
    padding: 1rem 0;
    display: none;
}
   
.loading-text {
    margin-top: 0.5rem;
    color: #6b7280;
}
/* start manual input   */
.popup-side{
    position: absolute;
    width: 100%;
    max-width: 32rem;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin-top: 1rem;
    background-color: white;
    box-shadow: -10px 0 25px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.popup-overlay.active .popup-side {
    transform: translateX(0);
}
/* .popup-body{
    padding: 24px;
} */
.popup-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.popup-title {
    font-size: 22px;    
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 5px;
}
.form-section{
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.3rem;
}
/* start vechile count section  */
.vehicle-usage-card{
    margin-bottom: 10px;
    font-size:16px;
    color: black;
    width: 10rem;
    padding: 5px;
    border: solid black 2px;
}
/* start vechile details section  */
.vechileInfo{
    width: 100%;
}
#vechile-container{
    width: 100%;
    display: grid;
    grid-template-rows: repeat(auto-fit ,1fr);
    gap: 20px;
    padding: 10px;
    border-top: 2px solid black;
    margin: 0 auto;  
    position: relative;
}
.vechile-list{
    width: 600px;
    height: 75px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    /* position: relative; */
    padding: 15px;
    background-image: linear-gradient(to left right,);
    cursor: pointer;
}
#index{
    display: flex;
    justify-content: flex-start;
    font-size: 20px;
    color: blue ;
    
}
.delete-btn{
    background-color: rgba(253, 128, 128, 0.733);
    width: 70px;
    height: 40px;
    border: none;
    color: red;
    font-size: 12px;
    border-radius: 10px;
    cursor: pointer;
}
.header-vechileInfo{
    background-color: #ecf0f5;
    padding: 8px;
}
.vehicleNumber{
    font-size: 25px;
    font-weight: bold;
}
.vehcile-grid{
    /* display: none; */
    position: absolute;
    width:30rem;
    background-color: white;
    position: fixed;
    top: 200px;
    left: 0;
    right: 0;
    padding: 24px;  
    margin: 0 auto;
    z-index: 50;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
}
.vehcile-grid.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.vehcile-grid .popup-title{
   font-size: 25px; 
   margin-bottom: 15px;    
}
.ownerName{
    color: #6b7280;
    padding: 5px 0px;
}
.chassisNumber{
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 3px;
}
.docs-table{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
    margin: 5px 0px;
}
.status-list{
    /* background-color: rgba(0, 0, 0, 0.5); */
    background-color: #ecf0f5;
    padding: 5px;
    margin-top: 10px;
}
.status-itm{
    background-color: #ecf0f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.status-label{
    width: 115px;
}
.status-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    color: black;
    margin-top: 0.25rem;
    font-weight: bold;
    text-align: center;
}

.status-edge{
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}     
.status-valid {
    background-color: #dcfce7;
    color: #166534;
}
        
.status-expiring {
    background-color: #fef3c7;
    color: #92400e;
}
        
.status-expired {
    background-color: #fee2e2;
    color: #991b1b;
}
.edit-icon{
    cursor: pointer;
}
.saveEdit{
    background-color: #059669;
    color: white;
    width: 70px;
    height: 30px;
    margin-bottom: 5px;
    border: none;
}
.cancelEdit{
    background-color: #f9fafb;
    color: black;
    border: none;
    width: 70px;
    height: 30px;
}
/* end of dashboard section   */

/* start of profile section  */
.grid-two-coloumn{
    display: grid;
    grid-template-rows: 1fr 1fr;
    text-align: left;
}
.profileSection{
    width: 40%;
    /* display: flex;
    justify-content: center; */
    background-color: rgba(255, 255, 255, 0.308);

}
.personalInfo{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  
    margin: 25px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    i{
        color: rgb(58, 58, 253);
    }
}
.alternateInfo{
    /* background-color: aqua; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

    margin: 25px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    i{
        color: #21e24e;
    }
}
.userName{
    border-bottom: 0.5px solid black;
    /* padding-bottom: 15px; */
}
.mobileNumber{
    border-bottom: 0.5px solid black;
}
.emailAddress{
    border-bottom: 0.5px solid black;
}

.personalInfo p:nth-child(2){
    padding-top: 10px;
    padding-bottom: 15px;
}
.alternateInfo p:nth-child(2){
    padding-top: 10px;
    padding-bottom: 15px;
}
/* start popup alert  */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.popup-notify {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
  min-width: 250px;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

#popup-close {
  margin-top: 10px;
  background: #007bff;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

#popup-close:hover {
  background: #0056b3;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popup.hidden {
  display: none;
}


#popup-close {
  background: #007bff;
  border: none;
  padding: 8px 15px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

#popup-close:hover {
  background: #0056b3;
}

@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* end popup alert  */

/* subscription  section  */
.subContainer{
    width: 100%;
    min-height: 100vh;
    background-image:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 48px;
    margin: 0 auto;
    position: static;
}

.subscriptionHeader{
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    h2{
        font-size: 3rem;
        margin-bottom: 16px;
        color: #ffffff;
    }
    p{
        font-size: 1.25rem;
        color: #e0e7ff;
    }
}
.subscriptionFreqButton{
    width: 100%;
    height: 3.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.subsCriptioFreqBtn{
    background-color: rgba(255, 255, 255, 0.2);
    height: 3.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
.subscriptionFreqButton button{
    background-color: transparent;
    width: 7rem;
    height: 3.5rem;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}
.subscriptionFreqButton .using{
    background-color: #ffffff;
    color: #667eea;
}.subscriptionModel{
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    margin-top: 15px;
    gap: 2rem;
}
.subscriptionPlan{
    /* height: 410px; */
    background-color: white;
    border-radius: 1rem;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.planPrice{
    line-height: 2.5rem;
    margin-bottom: 18px;
    span{
        font-size: 2.25rem;
    }
}
.planName{
    color: black;
    font-size: 1.5rem;
    font-weight: 700;
}
.planFeature p{
    color: #4b5563;
    font-size: 17px;
    padding-bottom: 15px;
}
.purchaseBtn{
    margin-top: auto;
}
.purchaseBtn button{
    width: 100%;
    padding: 12px 0px;
    background-color: #e5e7eb;
    border: none;
    height: 3rem;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}
.addon-disabled {
  background-color: #6b7280 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}
.qtyBox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px 12px;
}

.qtyBox button {
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.active-plan {
  background-color: #10b981 !important;
  color: white !important;
  cursor: default;
}

.currentPlanTag {
  margin-top: 6px;
  font-size: 13px;
  color: #10b981;
  font-weight: 600;
}


@media (max-width:1460px){
    .subContainer{
        padding: 20px;
    }
    
}
@media (max-width:1372px){
    .subscriptionModel{
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
    .subContainer{
        height: 100%;
    }
}
@media (max-width:1111px){
    .subscriptionModel{
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
@media (max-width:807px){
    .subscriptionModel{
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
}
@media screen and (width>=768px){
    .popup-side{
        margin: 214px 0px 0px auto;
    }
}

@media (max-width:1200px) {
    .profileSection{
        width: 60%;
    }
}
@media (max-width:950px){
    .vechile-list{
        width: 480px;
    }
}
@media (max-width:871px){
    .header h1{
        font-size: 2.25rem;
    }
    .header p{
        font-size: 1.25rem;
    }
}
@media (max-width:794px){
    .header h1{
        font-size: 2.1rem;
    }
    .header p{
        font-size: 1.15rem;
    }
}
@media (max-width: 768px) {
    
    .navBar {
      top: 0;
      left: 0;
      height: 100%;
      border-right: 0px solid rgb(255, 255, 255);
      position: relative;
      z-index: 10;
    }
    .sidebar{
       width: 250px;   
       height: 919px;
       flex-shrink: 0;            
       background: #333;   
       color: white;
       position: fixed;             
       top: 0;
       left: 0;
       height: 100%;
       transition: transform 0.00000001s ease;
       z-index: 999;            
       transform: translateX(-100%);
       overflow-y: auto;
    }
   
    .sidebar.active {
      transform: translateX(0);
      background-color: white;
      width: 255px;
      height: 919px;
      max-height: 100vh;
      background-color: rgb(255, 255, 255);
      position: relative;
      display: flex;
      flex-direction: column;
      border-right: 1px solid #ddd;
    }
    hr{
        width: 0px;
        
    }
    .main-content {
       margin-left: 0; /* remove left margin on mobile */
       padding: 15px;
       
    }
    .menu-btn {
        
      margin-bottom: 5px;
      position: absolute;
      bottom: 0;
      /* left: 1.2rem; */
      right: 0;
      cursor: pointer;
      z-index: 1000;
      visibility: visible;
    }
    .greeting{
        position: relative;
    }
    .content {
      margin-left: 0;
      padding-top: 60px;
    }
    .greetingUser{
        position: absolute;
        padding-left: 0px;
        /* top: 1.2rem;
        left: 1.2rem;
        bottom: 20px; */
        margin-left: 32px;
    }
    .companyName{
        margin-top: 2px;
    }
    .activeSection{
        padding-left: 0px;
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
    }
    .container{
        position: relative;
    }
    .main-content{
        position: absolute;
        left: 0;
        height: 100vh;
        
    }
    .grid-two-coloumn{
        position: absolute;
        left: 0;
    }
    .profileSection{
        width: 100%;
    }
    /* .header{
        h1{
            font-size: 2.3em;
        }
        p{
            font-size: 1.1rem;
        }
    } */
    .vechile-list{
        max-width: 400px;
    }
    .vehicleNumber{
        font-size: 22px;
    }
    .subContainer{
        position: absolute;
        width: 100%;
    }
}
@media (max-width:560px){
    .subscriptionHeader{
        p{
            font-size: 1.1rem;
        }
    }
}

@media (max-width:527px){
    .header h1{
        font-size: 2.2rem;
    }
    .header p{
        font-size: 1.1rem;
    }
}
@media (max-width:510px){
    .greetingUser{
        font-size: 1.5rem;
    }   
    .greetingUserName{
        margin-top: 5.5px;
    }
    .activeSection{
        font-size: 1.5rem;
    }
}
@media (max-width:510px){
    .menu-btn{
        margin-bottom: 5px;
    }
    .header h1{
        font-size: 2rem;
    }
    .header p{
        font-size: 1.1rem;
    }
    .main-content{
        font-size: 13px;
    }
    #index{
        margin-top: 4px;
    }
    .vehicleNumber{
        margin-top:4px;
    }
    .delete-btn{
        width: 50px;
        font-size:9px;
    }
    .vehcile-grid{
        max-width: 25rem;
    }
}
@media (max-width:497px){
    .subscriptionHeader{
        p{
            font-size: 0.85rem;
        }
    }
}
@media (max-width:461px){
    .header h1{
        font-size: 1.9rem;
    }
    .header p{
        font-size: 1.04rem;
    }
    .btn-green{
        width: 180px;
    }
    .btn-blue{
        width: 180px;
    }
}

@media (max-width:440px){
    .vechile-list{
        width: 370px;
    }
    .vehcile-grid{
        max-width: 22rem;
    }
    .header h1{
        font-size: 1.7rem;
    }
    .header p{
        font-size: 0.94rem;
    }
    .subscriptionHeader{
        h2{
            font-size: 2.4rem;
        }
        p{
            font-size: 0.85rem;
        }
    }
}
@media (max-width:396px){
    .greetingUser, .activeSection{
        font-size: 1.4rem;
    }
    .vechile-list{
        width: 310px;
    }
    .vehicleNumber{
        font-size: 17px;
    }
    #index{
        font-size: 17px;
    }
    .header h1{
        font-size: 1.5rem;
    }
    .header p{
        font-size: 0.8rem;
    }
    .subscriptionHeader{
        p{
            font-size: 0.7rem;
        }
    }
}
@media (max-width:361px){
    .fa-truck{
        font-size: 30px;
    }
    .companyName{
        font-size: 16.5px;
    }
    #logoutBtn{
        width: 5.2rem;
        font-size: 0.8rem;
        
    }
    .header h1{
        font-size: 1.4rem;
    }
    .header p{
        font-size: 0.7rem;
    }
    .greetingUserName{
        font-size: 20px;
        margin-top: 9px;
    }   
    .vehcile-grid{
        width: 20rem;
    }
    .vechile-list{
        width: 305px;
    }
    .subscriptionHeader{
        h2{
            font-size: 2.1rem;
        }
        p{
            font-size: 0.85rem;
        }
    }
}
@media (max-width:332px){
    .header h1{
        font-size: 1.3rem;
    }
    .greetingUserName{
        font-size: 18px;
    }
    .subscriptionHeader{
        
        p{
            font-size: 0.65rem;
        }
    }
}
@media (max-width:323px){
    .vechile-list{
        width: 275px;
    }
    .subscriptionHeader{
        p{
            font-size: 0.68rem;
        }
    }
}

