   /* General Reset */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
    background-color: #080808; /* Blue background */
    padding: 10px 0;
}

.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 14px;
}
.contact-info i {
    margin-right: 5px;
}

nav {
position: absolute; /* Keep the nav fixed at the top */
top: 45px; /* Position it at the top of the viewport */
left: 0; /* Align it to the left */
right: 0; /* Align it to the right */
background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white */
padding: 33px 0;
height: 100px;
display: flex; /* Use flexbox to allow proper alignment */
align-items: center; /* Center items vertically */
z-index: 1000;
}

nav .logo {
margin-left: 30px; /* Space from the left edge */
}

nav .logo img {
width: 200px; /* Set a large width for the logo */
height: auto; /* Keep the aspect ratio */
}

nav ul {
display: flex;
justify-content: flex-end; /* Align items to the right */
list-style: none;
gap: 50px;
margin-right: 20px; /* Add space to the right */
flex-grow: 1; /* Allow the ul to grow and push items to the right */
}

nav ul li {
display: inline-block;
}

nav ul li a {
color: #333;
text-decoration: none;
font-weight: lighter;
padding: 10px 15px;
transition: background-color 0.3s;
}

nav ul li a:hover {
background-color: #0073A4;
color: white;
border-radius: 5px;
}



@media (max-width: 768px) {
    .header-container {
        width: 95%;
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 120px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    nav {
        top: 60px; /* Increase top padding to bring down the navbar */
        padding-top: 20px; /* Add extra padding at the top */
        padding-bottom: 20px; /* Add padding at the bottom */
        background-color: rgba(255, 255, 255, 0.9);
      }
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

.hero {
    background: url('truck.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 50px;
    position: relative;
}

.form-container {
    background-color: rgba(255, 255, 255);
    padding: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    max-width: 500px;
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.input-group ,input[date]{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.input-group input,input[date],
.input-group select {
    width: 48%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    resize: none;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #0073A4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background-color: #005c87;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icons a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */


/* Floating Icons */
.icon-wrapper {
    position: relative;
}

.floating-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    position: relative;
}

.number {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateX(0%) translateY(-50%);
    background-color: #2d95d2;
    color: white;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

/* Hover effect to slide the number/email to the right */
.floating-icons a:hover .number {
    opacity: 1;
    transform: translateX(20px) translateY(-50%);
}

.floating-icons img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.container1{
     text-align: left;
 width: 100%;
 padding: 40px;
 background: url('1166356_Delivery_Man_3840x2160.mp4') no-repeat center center/cover;
 height: 100vh;
justify-content: center;
align-items: flex-start;
}
.mv_services_div {
float: left;
width: 100%;
margin-bottom: 30px;
border: solid 3px rgba(79, 218, 1, 0.12);
padding: 15px 0;
border-radius: 3px;
transform: translateX(0px);
background-color: #f5f5f5;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.mb_3{
margin-bottom:30px;
}
.mv_services_div:hover{
transform: translateX(5px);
}
.mv_service_img img {
border-radius: 3px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.mv_service_img{
overflow:hidden;
}

.mv_service_content h3 {
font-size: 20px;
color: #333;
font-weight: 700;
margin-top: 20px;
margin-bottom: 15px;
}
.mv_service_content p {
margin-bottom: 13px;
}
.mv_service_content a {
font-weight: 600;
color: #1074a5;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
body{
font-size:16px;
font-weight:400;
color:#555555;
line-height:25px;
}
*{
font-family: 'Muli', sans-serif;
}
p{
color: #707070;
}
a:hover{
text-decoration:none;
}
.form-control:focus {
box-shadow: none;
}
.mv_services_div:hover .mv_service_content a {
color: #1074a5;
}
.mv_process_innerdiv {float: left;width: 100%;margin-bottom: 50px;position:relative;}
.mv_numberdiv {
display: inline-block;
width: 60px;
height: 60px;
line-height: 60px;
border: 1px solid #1074a5;
color: #1074a5;
border-radius: 5px;
font-size: 18px;
text-align: center;
font-weight: bold;
margin-bottom: 30px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
.mv_process_innerdiv:hover .mv_numberdiv {background: #1074a5;color: #fff;border: dashed 1px;}
.mv_process_innerdiv span {display: inline-block;height: 90px;line-height: 130px;-webkit-transition: all 0.3s;-moz-transition: all 0.3s;-ms-transition: all 0.3s;-o-transition: all 0.3s;transition: all 0.3s;}
.mv_process_innerdiv span svg{fill: #1074a5;}

.mv_process_innerdiv .mn_no1 img {position: absolute;top: 30px;right: -20px;width: 209px;transform: rotate(10deg);}
.mv_process_innerdiv .mn_no2 img {position: absolute;top: 84px;right: -20px;width: 209px;transform: rotate(-10deg);}
.mv_numberdiv.mn_no2 {margin-top: 70px;}
.mv_process_innerdiv h3 {
color: #333;
display: inline-block;
padding-top: 24px;
padding-left: 15px;
font-size: 20px;
vertical-align: top;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}
.mv_process_innerdiv p {margin-bottom: 0;}
.mv_process_innerdiv .mv_sec_bg{padding: 0px 20px 0 0;text-align: left;}
/*----------process section end------*/
.mv_lightgray_wrapper {float: left;width: 100%;padding: 26px 0 30px;background-color: #f5f5f5;}
.mv_page_heading {float: left;width: 100%;text-align: center;padding: 50px 0;}
.mv_page_heading span {display: inline-block;width: auto;animation: mover 2s infinite alternate;}
@keyframes mover {
0% { transform: translateX(-10px); }
100% { transform: translateX(40px); }
}
.mv_page_heading h3 {
float: left;
width: 100%;
margin: 0;
font-size: 30px;
font-weight: bold;
padding-bottom: 15px;
color: #313131;
position: relative;
margin-top: 20px;
text-transform: capitalize;
}

.mv_page_heading p {
float: left;
width: 100%;
padding: 0px 30px;
font-size: 18px;
margin: 0;
text-transform: capitalize;
}
*---------contact section start----------*/
.mv_lightgray_contact {background-color: #ffffff;}
#real_map {display: block;width: 100%;height: 565px;border-radius: 5px 0px 0px 5px;}
.mv_contact_form_div {float: left;width: 100%;padding: 50px;border-radius: 0px 5px 5px 0px;}
.mv_contact_form_div h3 {float: left;width: 100%;margin: 0;text-transform: capitalize;color: #333;font-weight: bold;padding-bottom: 30px;font-size: 30px;}
.mv_contactform {float: left;width: 100%;}
.mv_contactform{text-align: center;}
.mv_contactform .form-group {float: left;width: 100%;margin-bottom: 20px;}
.mv_contactform .form-group label{font-weight: normal; color: #666; text-align: left;float: left;}
.mv_contactform .form-group .form-control {height: 50px;margin: auto;border-radius:0px;padding: 0 20px;color: #222222;border: 1px solid #e8e8e8;box-shadow: none;}
.mv_contactform .form-group textarea.form-control {height: 140px;resize: none;padding: 15px 20px;}
.mv_contactform .form-group .form-control:focus{outline:none;box-shadow:none;}
.mv_contact_btndiv p {float: right;width: 100%;text-align: center;margin: 0;padding-top: 5px;color: #1074a5;}
.contact_bg{background-color:#f5f7f8;margin-bottom: 50px;}
.real_map iframe {width: 100%;}
.mv_contactform .thm-btn{background: #1074a5;font-size: 21px;padding: 7px 65px;margin: auto; line-height: 30px;border: 1px solid #1074a5;outline: none;display: inline-block;color: #fff;border-radius: 0;font-weight: 600;z-index: 99999;}
.mv_contactform .thm-btn:hover{background: #028f45;}

.whychoosus{float: left; width: 100%; background: white;}
.whychoosustb{padding: 20px 0 0px 80px;float: left;width: 100%;}
.whychoosustb h2{color: #1074a5; font-weight: 600; font-size: 30px;}
.whychoosustb p{color: #000; margin-bottom: 25px;}
.bdha-services {float: left;width: 100%;margin-bottom:25px;}
.bdha-services:last-child {margin: 0;}
.text-overflow {float: none;width: auto;overflow: hidden;}
.bdha-services .icon-box-2 {float: left;margin-right: 25px;background: #1074a5;}
.bdha-services h3 {float: left;width: 100%;margin: 0 0 5px;font-size: 20px; font-weight: 600; color: #1074a5; line-height: normal;}
.bdha-services p {margin: 0;font-size: 14px; line-height: 24px;letter-spacing: 0.2px;}
.icon-box-2 {color:#fff;width: 75px;height: 75px;font-size: 38px;line-height: 84px;text-align: center;border-radius: 100%;display: inline-block;background-color:#f1f1f1;}
.bdha-services:hover .icon-box-2 {color:#fff;background: #028f45;}
.whychoosusbg{padding-right:0px;}
.whychoosusbg img{width: 100%; height: 100%;}

.timelydeliver .icon-box-2{line-height: 76px;}
/* Base Styles for Dropdown */
.dropdown-content {
    display: none; /* Hide dropdown by default */
    position: absolute;
    background-color: rgba(51, 51, 51, 0.9); /* Darker background for dropdown */
    min-width: 200px; /* Adjust width as needed */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style: none;
    border-radius: 5px;
    column-count: 2; /* Default column count for larger screens */
    column-gap: 0;
    padding: 10px;
    top: 100%;
    left: 0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Style for dropdown items */
.dropdown-content li {
    padding: 5px 10px;
}

/* Style for dropdown links */
.dropdown-content a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: white;
}

/* Hover style for dropdown links */
.dropdown-content a:hover {
    background-color: #f8da87;
    box-shadow: 0 0 15px rgba(248, 218, 135, 0.8);
}



.background-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; /* Ensure the video covers the entire container */
z-index: -1; /* Position video behind the content */
}
.mv_process_innerdiv {
text-align: center;
position: relative;
padding: 20px;
background-color: #f5f5f5;
border-radius: 15px;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mv_process_innerdiv:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.mv_numberdiv {
font-size: 24px;
font-weight: bold;
color: #fff;
background-color: #333;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
margin: 0 auto 20px;
position: relative;
}

.mv_numberdiv img {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: auto;
top: 60px;
}

.mv_sec_bg h3 {
margin-top: 20px;
font-size: 18px;
color: #333;
}

.mv_sec_bg p {
font-size: 14px;
color: #666;
}

@media only screen and (max-width: 768px) {
.mv_numberdiv {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 18px;
}

.mv_sec_bg h3 {
font-size: 16px;
}

.mv_sec_bg p {
font-size: 13px;
}
}


.container1 {
position: relative;
width: 100%;
height: 100vh;
color: black;
font-family: Arial, sans-serif;
text-align: center;
background-size: cover;
background-position: center;
animation: slideBackground 15s infinite;
z-index: 1;
}

.container1 > .content { /* Add a wrapper around your content */
display: flex; /* Use flexbox for centering */
flex-direction: column; /* Stack elements vertically */
justify-content: center; /* Center vertically */
align-items: center; /* Center horizontally */
max-width: 800px; /* Adjust max-width as needed */
margin: 0 auto; /* Center horizontally */
padding: 20px; /* Adjust padding if necessary */
box-sizing: border-box; /* Include padding in width calculations */
}





@keyframes slideBackground {
0% { background-image: url('images/India-group-packers-movers.jpg'); }
33.33% { background-image: url('images/packers-movers-banner-1.jpg'); }
44.44% { background-image: url('images/bg3.jpg'); }
77.77% { background-image: url('images/bg1.jpg'); }
88.88% { background-image: url('images/bg2.jpg'); }
100% { background-image: url('images/bg3.jpg'); }
}





