*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* font-family: "Nunito", serif; */
    font-family: "ABeeZee", Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    
    background-color: #fff;
}

/* Start Header Section */
.header{
    width: 100%;
    height: auto;
    box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 69, 0.06) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.06) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.06) 0px 6px 6px -3px, rgba(14, 63, 126, 0.06) 0px 12px 12px -6px, rgba(14, 63, 126, 0.06) 0px 24px 24px -12px;
    position: fixed;
    background-color: #fff;
    z-index: 99999999;
}
.header_main_section{
    width: 100%;
    margin: auto;
}
.navbar_one{
    width: 100%;
    height: 40px;
    background-color: #150B43;
   
}
.header_one_main_section{
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.header_address{
    display: flex;
    align-items: center;
    padding: 10px 0px;
}
.header_address_email{
    display: flex;
    align-items: center;
    height: 100%;
}
.header_address_email i{
    color: #fff;
    
}
.header_address_email p{
    color: #fff;
    padding-left: 7px;
}
.header_address_phone{
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 20px;
}
.header_address_phone i{
    color: #fff;
    
}
.header_address_phone p{
    color: #fff;
    padding-left: 7px;
}
.header_account{  
    display: flex;
    justify-content: center;
}
.header_contact_btn{
    padding: 0px 0px 0px 20px;
}
.header_contact_btn button{
    padding: 11px 20px;
    border: none;
    background-color: #AD0D29;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}
.header_contact_btn button:hover{
    background-color: #ff9100;
}
.my_user {
    padding: 10px 0px;
    color: #fff;
    display: flex;
    align-items: center;
}

.my_user i{
    color: #fff;
}
.my_user p{
    padding-left: 7px;
}
.my_user p a{
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.my_user p a:hover{
    color: #ff9100;
    box-shadow: rgba(212, 198, 0, 0.2) 0px 8px 24px;
}


/* Start Header Main Navbar Section */
.navbar_two{
    width: 100%;
    height: 80px;
    align-items: center;
}
.navbar_main_section{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: auto;
}
.logo_section img{
    width: 350px;
}
.toggle_btn{
    display: none;
}
.navbar_area{
    display: flex;
    position: relative;
    align-items: center;

}
.navbar_area a{
    text-decoration: none;
}
.navbar_area li{
    list-style: none;
}
.menu_drop_down{
    position: absolute;
}
.nav_item{
    color: #818181;
    cursor: pointer;
}
.nav_item a{
    color: #818181;
    font-size: 15px;
    font-weight: 600;
}
.menu_drop_down{
    background-color: #fff;
    min-width: 250px;
    display: none;
}
.nav_item:hover .menu_drop_down{
    display: block;
} 
.drop_item{
    border-bottom: 1px dotted #AD0D29;
    /* padding: 10px; */
    font-size: 15px;
    padding: 30px 10px;
}
.drop_item:hover{
    background-color: #ef870015;
    color: #150B43;
}


/* navbar Animation */
  .nav_animation{
    display: block;
    position: relative;
    padding: 10px;
    font-weight: 600;
    
  }
  .nav_item:hover{
    background-color: #ef870015;
    color: #150B43;
  }
  .nav_animation::before{
    content: "";
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #fff;
    transition: 0.5s transform ease;
    transform: scale3d(0,1,1);
    transform-origin: 0 50%;
  }
  .nav_animation:hover::before{
    transform: scale3d(1,1,1);
  }
  .nav_animation::before{
    transform-origin: 50% 50%;
    background: #AD0D29;
  }

/* End Header Section */

/* Register Form  Page */

.form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Change this */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: auto;
    padding: 10px 0; /* Ensure padding is consistent */
    margin-top: 65px;
}
.sign-up-form_container{
    align-items: center;
}


.form-container.active {
    opacity: 1;
    visibility: visible;
}

.form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 55px auto; /* Vertical spacing + center horizontally */
}


.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input {
    width: 100%;
    padding: 7px 10px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    background: transparent;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 14px;
    color: #150B43;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus ~ label,
.input-group input:valid ~ label {
    top: -15px;
    font-size: 12px;
    color: #150B43;
 }

.toggle-login-password {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
}

 .signUp_complete_btn{
    text-align: center;
 }
.submit-btn {
    background-color: #AD0D29;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    align-self: flex-start;
    transition: all 0.3s ease-in-out;
  }
 
  .submit-btn:hover{
    background-color: #ff9100;
    color: #fff;
  }
.links {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.links a {
    color: #AD0D29;
    text-decoration: none;
    transition: all 0.3s ease-in-out;

}
.links a:hover{
    color: #ff9100;
}

.switch-link {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.switch-link a {
    color: #AD0D29;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
 }
.switch-link a:hover{
    color: #ff9100;
}

.form-tab {
    display: none;
    /* margin-top: 20px; */
}

.form-tab.active {
    display: block;
}

/* Popup styles for forgot password */
.popup {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    position: relative;
}

.popup-content .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #888;
}

.popup-content h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #150B43;
}

.popup-content input {
    width: 100%;
    padding: 10px;
    border: none;
    font-size: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}
@media (max-width: 1200px) {
    .form-wrapper {
        padding: 25px 20px;
        border-radius: 8px;
        margin: 30px 10px;
    }

    .input-group input {
        font-size: 14px;
        padding: 8px;
    }

    .input-group label {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 10px;
    }

    .popup-content {
        width: 95%;
        padding: 20px;
    }

    .form-container {
        padding: 30px 10px;
        align-items: flex-start;
    }

    .open-login-btn {
        width: 90%;
        margin: 40px auto;
        font-size: 15px;
        padding: 12px 20px;
    }

    .form-container h2 {
        font-size: 20px;
    }

    .popup-content h3 {
        font-size: 18px;
    }

    .toggle-login-password {
        font-size: 14px;
    }
}

/* Enqury */
.enquiry_rfq_conteinar {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 125px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .enquiry_rfq_conteinar.show {
    opacity: 1;
    pointer-events: auto;
  }

  .rfq-form-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 900px;
    position: relative;
    max-height: calc(100vh - 130px);
    overflow-y: auto;

    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .enquiry_rfq_conteinar.show .rfq-form-container {
    transform: translateY(0);
    opacity: 1;
  }

  .rfq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    padding: 20px 30px;
    background-color: #fff;
    border-bottom: 1px solid #AD0D29;
    
  }

  .rfq-header h2 {
    margin: 0;
    font-size: 22px;
    color: #150B43;
  }

  .rfq-close-btn {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    color: #444;
  }

  .enquiry_rfq_conteinar form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0px 30px
  }

  .rfq-input-group {
    display: flex;
    flex-direction: column;
  }

  .rfq-input-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
  }

  .rfq-input-group input,
  .rfq-input-group select,
  .rfq-input-group textarea {
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    font-weight: 500;
    color: #444;
    width: 100%;
  }

  .rfq-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
  }

  .rfq-form-row .rfq-input-group {
    flex: 1 1 20%;
    min-width: 120px;
  }

  .add-button-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .add-more-btn {
    height: 35px;
    width: 35px;
    font-size: 20px;
    /* padding: 7px 10px; */
    background-color: #AD0D29;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    
  }
  .add-more-btn:hover{
    background-color: #ff9100;
    color: #fff;
  }

  .rfq-submit-btn {
    background-color: #AD0D29;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    align-self: flex-start;
    transition: all 0.3s ease-in-out;
    margin: 20px 0px;
  }
 
  .rfq-submit-btn:hover{
    background-color: #ff9100;
    color: #fff;
  }

  .rfq_input_btn {
    text-align: center;
  }
  
  /* iogiuuig */
 
  
  .required {
    color: red;
    font-weight: bold;
  }
  
  
  
  .selected-token {
    background-color: #eef3f8;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 8px;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
  }
  
  .selected-token strong {
    margin-right: 4px;
  }
  
  .token-clear-btn {
    background: transparent;
    border: none;
    font-size: 12px;
    margin-left: 4px;
    color: #888;
    cursor: pointer;
  }
  
  .token-clear-btn:hover {
    color: #000;
  }
  
  .suggestion-wrapper {
    position: absolute;
    left: 30px;
    background: #fff;
    border-top: none;
    width: 93%;
    z-index: 10;
    display: none;
  }
  .auto_input_page{
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #eee;
  }
  
  .suggestion-list {
    list-style: none;
    margin: 0;
    /* padding: 8px; */
    max-height: 160px;
    overflow-y: auto;
    border: 1px solid #eee;
    width: 100%;

  }
  
  .suggestion-list li {
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px dotted #eef3f8;
  }
  .suggestion-list li:hover{
    background-color: #eef3f8;
  }

  @media (max-width: 768px) {
    .rfq-form-row {
      flex-wrap: wrap;
    }

    .rfq-form-row .rfq-input-group,
    .add-button-container {
      flex: 1 1 100%;
    }

    .rfq-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    .rfq-close-btn {
      align-self: flex-end;
      margin-top: -10px;
    }
  }


/* Index Slider Start Here */
.Home_silder_main_conteiner{
    padding-top: 120px;
}

.index_slider_main_container {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    background: #aaa; 
    padding: 0 !important;
}
.tour {
    position: relative;
    perspective: 50em;
    width: 100%;
    height: 100%;
    background: #222;
    overflow: hidden; 
}
.tour ol {
    list-style: none;
    position: absolute;
    bottom: 5px;
    width: 50%;
    padding: 0px;
    margin: 0 25%;
    text-align: center; 
}
.tour ol li {
    width: 14px;
    height: 14px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    z-index: 999;
    cursor: pointer; 
}
.tour ol li:after {
    content: '';
    pointer-events: none;
    transition: all .4s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: 0% 0%;
    display: inline-block;
    border-radius: 50%;
    background: #fff; 
}
.tour ol li.active:after {
    transform: scale(1) translate(-50%, -50%); 
}
.tour .tour-inner {
    position: relative;
    width: 100%;
    height: 100%; 
}
.tour .tour-inner .itemsliding {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    left: 0%;
    transition: transform 0.6s ease-in-out;
    display: none; 
}
.tour .tour-inner .itemsliding img {
    width: 100%;
    height: 100%; 
}
.tour .tour-inner .itemsliding .tour-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65%;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.3); */
    border-radius: 20px;
    color: #fff;
    transform: translate(-50%, -50%); 
}
.tour .tour-inner .itemsliding .tour-caption h2 {
    font-weight: 800; 
    /* color: #222; */
}
.tour-caption h4{

    font-size: 25px;
    color: #fff;
    text-shadow: 1px 1px 2px black;

}
.tour-caption p{
    font-size: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px black;

    
}
.tour-caption h2{
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    padding: 20px 10px;
    text-shadow: 1px 1px 2px black;

    
}
.Slider_btn {
    padding: 20px 10px;
}
.Slider_btn button{
    min-width: 150px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;


}
.slider_contact_us{
    background-color: #AD0D29;
    color: #fff;
}
.slider_learn_more{
    background-color: #fff;
    color: #AD0D29;

}
.slider_contact_us:hover{
    background-color: #fff;
    color: #AD0D29;
}
.slider_learn_more:hover{
    
    background-color: #AD0D29;
    color: #fff;

}
.tour .tour-inner .prevleftsliding {
    display: block;
    transform: translate3d(100%, 0, 0); 
}
.tour .tour-inner .nextleftsliding {
    display: block;
    transform: translate3d(-100%, 0, 0); 
}
.tour .tour-inner .prevrightsliding {
    display: block;
    transform: translate3d(-100%, 0, 0); 
}
.tour .tour-inner .nextrightsliding {
    display: block;
    transform: translate3d(100%, 0, 0); 
}
.tour .tour-inner .active {
    display: block;
    transform: translate3d(0%, 0, 0); 
}
.tour .tour-inner .itemrolling {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    left: 0%;
    opacity: 1;
    transition: transform 0.5s, opacity 0.6s;
    transform: rotateX(-90deg);
    transform-origin: bottom center;
    display: none; 
}
.tour .tour-inner .itemrolling img {
    width: 100%;
    height: 100%; 
}
.tour .tour-inner .itemrolling .tour-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65%;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    transform: translate(-50%, -50%); 
}
.tour .tour-inner .itemrolling .tour-caption h2 {
    font-weight: bold; 
    color: #222;
          
}
.tour .tour-inner .prevleftrolling {
    display: block;
    transform-origin: top center;
    transform: rotateX(-90deg);
    opacity: 0; 
}
.tour .tour-inner .nextleftrolling {
    display: block;
    transform-origin: bottom center;
    transform: rotateX(90deg);
    opacity: 1; 
}
.tour .tour-inner .prevrightrolling {
    display: block;
    transform-origin: bottom center;
    transform: rotateX(90deg);
    opacity: 0; 
}
.tour .tour-inner .nextrightrolling {
    display: block;
    transform-origin: top center;
    transform: rotateX(-90deg);
    opacity: 1; 
}
.tour .tour-inner .active {
    display: block;
    transform: rotateX(0deg); 
}
.tour .tour-inner .itemfading {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    left: 0%;
    transition: opacity 0.6s ease-in-out;
    display: none;
    opacity: 1; 
}
.tour .tour-inner .itemfading img {
    width: 100%;
    height: 100%; 
}
.tour .tour-inner .itemfading .tour-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65%;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: #fff;
    transform: translate(-50%, -50%); 
}
.tour .tour-inner .itemfading .tour-caption h2 {
    font-weight: bold; 
}
.tour .tour-inner .prevleftfading, .tour .tour-inner .prevrightfading {
    display: block;
    opacity: 0; 
}
.tour .tour-inner .nextleftfading, .tour .tour-inner .nextrightfading {
    display: block;
    opacity: 0; 
}
.tour .tour-inner .active {
    display: block;
    opacity: 1; 
}
.tour a.tour-control {
    position: absolute;
    top: 0;
    right: 85%;
    bottom: 0;
    left: 0;
    display: block;
    text-decoration: none;
    cursor: pointer; 
}
.tour a.tour-control span {
    pointer-events: none;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center; 
}
.tour a.tour-control span i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5); 
}
.tour a.tour-control:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent); 
}
.tour a.tour-control:hover i {
    color: #fff; 
}
.tour a.tour-control.right {
    right: 0%;
    left: 85%; 
}
.tour a.tour-control.right:hover {
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.35), transparent); 
}
.tour a.tour-control.right:hover i {
    color: #fff; 
}
.tour .timeLine {
    position: absolute;
    height: 3px;
    background: red;
    top: 0px;
    left: 0px;
    right: 100%; 
}
.tour .animate {
    animation-name: timeLine;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0, 0, 0.05, 0.85); 
}
@keyframes timeLine {
    0% {
        background: #fff;
        right: 100%; 
    }
    100% {
        background: red;
        right: 0%; 
    } 
}
  
/* Index Slider Finished Here */

/* start Our Services Main Section_for Index */

.index_our_services_main_conteinar{
    width: 100%;
    height: auto;
}
.index_our_services_main_area{
    width: 95%;
    margin: auto;
    height: auto;
}
.index_our_services_main_header{
    width: 65%;
    margin: auto;
    text-align: center;
    padding: 20px 10px;
}
.index_our_services_main_header h4{
    font-size: 25px;
    color: #150B43;

}
.index_our_services_main_header h1{
    font-size: 35px;
    color: #AD0D29;
    padding: 10px;

}
.index_our_services_main_header p{
    font-size: 18px;
    color: #444;
    padding: 10px;
}
.all_index_services_main_box{
    display: flex;
}
.index_services_main_section_box{
    width: 32%;
    margin: 10px;
    min-height: 490px;
    height: auto;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding-bottom: 10px;
    position: relative;
}
.our_seivices_image_box{
    width: 100%;
    height: 230px;
    overflow: hidden;
    text-align: center;
    
    
}
.our_seivices_image_box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    align-items: center;
    transition: all 0.3s ease-in-out;
}
.our_seivices_image_box:hover img{
    transform: scale(1.1);
}
.our_services_main_title{
    padding: 10px 15px;
}
.our_services_main_title h2{
    text-align: left;
    padding: 10px 0px;
    color: #AD0D29;

}
.our_services_main_title p{
    text-align: justify;
    padding: 10px 0px;
    color: #444;

}
.our_services_main_title hr{
    background-color: #AD0D29;
    width: 90px;
    color: #AD0D29;
}
.our_services_btn{
    padding: 0px 20px 10px 15px;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    position: absolute;
    margin: 10px 0px;
}
.our_services_btn button{
    font-size: 15px;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    color: #AD0D29;
    padding: 10px 15px 10px 15px;
    border: 1px solid #AD0D29;

}

.our_services_btn button:hover{
    background-color: #AD0D29;
    padding: 10px 15px;
    color: #fff;
}
.learn_more_btn_2{
    padding: 10px 15px 10px 15px;
}
.shipment_all_button{
    text-align: center;
}

.shipment_all_button button{
    min-width: 150px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    background-color: #AD0D29;
    color: #fff;

}
.shipment_all_button button:hover{
    background-color: #ff9100;
    color: #fff;

}

/* About Us Section */

.index_page_about_us_conteiner{
    width: 100%;
    height: auto;
}
.index_page_about_us_conteiner_area{
    width: 95%;
    height: auto;
    margin: auto;
}
.index_page_about_us_conteiner_header{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 20px 10px;

}
.index_page_about_us_conteiner_header h4{
    font-size: 25px;
    color: #150B43;

}
.index_page_about_us_conteiner_header h1{
    font-size: 35px;
    color: #AD0D29;
    padding: 10px;

}
.index_page_about_us_conteiner_header p{
    font-size: 18px;
    color: #444;
    padding: 10px;
}
.index_page_about_us_main_contain_box_area{
    display: flex;
    justify-content: center;
}
.index_page_about_us_main_contain_box_area_box {
    width: 50%;
    min-height: 350px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    position: relative;
    margin-bottom: 10px;
}
.index_page_about_us_main_contain_box_area_box img {
    width: 100%;
    height: 100%;
    padding-top: 5px;
    margin-bottom: 10px;
}
.experince_counter{
    position: absolute;
    top: 30%;
    right: 0px;
    background-color: #ad0d28ce;
    color: #fff;
    width: 400px;
    height: 180px;
    align-items: center;
    font-size: 20px;
    text-align: center;
    padding-top: 15px;

}
.experince_counter1{
    font-size: 65px;
    font-weight: 900;
}
.experince_counter2{
    font-size: 35px;
    font-weight: 700;
}
.index_page_about_us_main_contain_box_area_box_text{
    width: 50%;
    padding-left: 10px;
}
.index_page_about_us_main_contain_box_area_box_text h2{
    font-size: 25px;
    color: #150B43;
    padding-bottom: 15px;
}
.index_page_about_us_main_contain_box_area_box_text p{
    font-size: 15px;
    color: #444;
    text-align: justify;
}
/* why_chooses_us_conteinar_main */
.why_chooses_us_conteinar_main{
    width: 100%;
    height: auto;
    background-color: #fff;
}
.why_chooses_us_conteinar_area{
    width: 95%;
    height: auto;
    margin: auto;
    border: 1px solid black;
}
.why_chooses_us_conteinar_header{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 20px 10px;

}
.why_chooses_us_conteinar_header h4{
    font-size: 25px;
    color: #150B43;

}
.why_chooses_us_conteinar_header h1{
    font-size: 35px;
    color: #AD0D29;
    padding: 10px;

}
.why_chooses_us_conteinar_header p{
    font-size: 18px;
    color: #444;
    padding: 10px;
}
.why_chooses_us_conteinar_box{
    width: 24%;
    height: auto;
    border: 1px solid #444;
}

/* easy_contact_page_conteiner */
.easy_contact_page_conteiner{
    width: 100%;
    height: auto;
    background-image: url(../../image/northen_shipping_services_back_cover.jpg);
    background-position: center center;
    background-color: #AD0D29;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 250px;
    align-items: center;
    position: relative;
}
.easy_contact_page_conteiner_area{
    width: 95%;
    height: auto;
    margin: auto;
}
.easy_contact_page_conteiner_main_section{
    text-align: center;
    padding: 100px 0px;
    
}
.easy_contact_page_conteiner_main_section p{
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;

}
.easy_contact_page_conteiner_main_section h1{
    font-size: 50px;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;

}
.easy_contact_page_conteiner_main_section h3{
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;

}
.easy_contact_page_conteiner_main_section button{
    min-width: 150px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    border: none;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    background-color: #AD0D29;
    color: #fff;

}

.easy_contact_page_conteiner_main_section button:hover{
    background-color: #fff;
    color: #AD0D29;
    border: 1px solid #AD0D29;
}

/* Start Footer Section */

.footer_section{
    width: 100%;
    height: auto;
    background-color: #150B43;
    color: #fff;
}
.footer_main_conteinar{
    width: 95%;
    height: auto;
    margin: auto;
}
.footer_conteinar{
    display: flex;
    justify-content: space-between;
    padding:15px 0px;
}
.footer_conteinar h2{
    padding: 5px 0px;
}
.footer_conteinar ul{
    list-style: none;
}
.footer_conteinar ul li{
    padding: 5px 0px;
}
.footer_conteinar ul a{
    text-decoration: none;
    color: #fff;
}
.footer_conteinar ul a:hover{
    color: #AD0D29;
}
.footer_about_us{
    width: 25%;
    height: auto;
}
.footer_quick_link{
    width: 25%;
    height: auto;
}
.footer_Featured_Service{
    width: 25%;
    height: auto;
}
.footer_Address{
    width: 25%;
    height: auto;
}
.address_item{
    display: flex;
}
.address_item p{
    text-align: left;
    
}
.address_icon{
    height: auto;
}
.address_icon i{
    font-size: 25px;
    padding: 5px 15px 5px 5px;
}
.socila_icon_footer{
    padding: 20px 0px;
}
.socila_icon_footer a{
    text-decoration: none;
    color: #fff;
    
}
.socila_icon_footer a i{
    min-width: 40px;
    font-size: 20px;
    padding: 10px;
    background-color: #AD0D29;
    gap: 2;

}
.socila_icon_footer a i:hover{
    background-color: #fc2c4e;
}




.copy_right_section{
    width: 100%;
    background-color: #0c0629;
    text-align: center;
}
.copy_right_section p a{
    color: green;
    
}
.copy_right_section p{
    padding: 15px;

}
/* Page Animation */
@keyframes bottomToTop {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}

.animation {
    opacity: 0; 
    transform: translateY(100px); 
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; 
}
.animation.visible {
    animation: bottomToTop 0.8s ease-out forwards; 
}
.design_liner1{
    width: 50px;
    height: 3px;
    background-color: #AD0D29;
    
}
.design_liner2{
    width: 100px;
    height: 3px;
    background-color: #AD0D29;
    margin: 0px 5px;
}
.design_liner3{
    width: 50px;
    height: 3px;
    background-color: #AD0D29;
}
.lineer_box{
    display: flex;
    justify-content: center;
}
