/* Prevent overflow on all screens */
body {
    margin: 0;
    overflow-x: hidden;  /* Prevent horizontal scrolling */
    box-sizing: border-box;  /* Include padding and border in element width calculations */
}
.header {
    background: #fff;
    padding: 15px 5%;
    width: 100%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between; /* Default alignment for larger screens */
}
.email h5{
    color: #333;
}
.contact-form input{
    padding: 20px 40px;
    font-size: 16px;
}
.control-group textarea{
    padding: 20px 40px;
    resize: none;
    font-size: 16px;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Stack elements vertically */
        text-align: center; /* Center text elements */
        justify-content: center; /* Center content */
        padding: 10px 3%;
    }
}
/* Navbar Container */
.navbar {
    background-color: #c32a2c;
    padding: 15px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Navigation List Items */
.nav-links li {
    position: relative;
    padding: 10px 15px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Remove default link styles */
.nav-links li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: black;
}

/* Hide menu icon on desktop */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show menu icon */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Hide menu initially */
        width: 250px;
        height: 100%;
        background: #c32a2c;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease-in-out;
        z-index: 9999;
    }

    .nav-links li {
        display: block;
        width: 100%;
        text-align: left;
        padding: 15px;
    }

    .nav-links li a {
        font-size: 18px;
        display: block;
    }

    .nav-links.show {
        right: 0; /* Slide in the menu */
    }
}
.logo {
    display: flex;
    align-items: left; /* Aligns items vertically */
    gap: 10px; /* Adds space between logo and text */
}
.ef{
    font-size: 16px;
}
.text {
    display: flex;
    flex-direction: column; /* Stacks text elements vertically */
}
.pickup-btn {
    background: #c32a2c;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    align-items: end;
    border-radius: 15px;
    height: 40px;
    width: 250px;
    text-align: center;
}
.pickup-btn:hover{
    background-color: black;
    color:white;
    transition: all .3s linear;
}
.logo img {
    height: 80px;
}
.fa-location-dot,.fa-envelope,.fa-phone{
    font-size: 30px;
    color: #c32a2c;
}
.glyphicon,.fab{
    color: black;
    font-size: 20px;
}
.adc {
    color: black;
    font-size: 14px;
    text-align: center;
}
.eg{
    margin-top: 10px;
}
.contact-form .def{
    background-color: #c32a2c;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}
.contact-form .def:hover {
    background-color: black;
    color: white;
}
.abc{
    background-color: #000;
    color: white;
    width: 1385px;
}
.al{
    font-size: 16px;
}
.am{
    font-size: 20px;
}
.aef{
    margin-top: 30px;
    margin-left: 10px;
}
.an{
    text-align: center;
}


.footer{
    padding: 60px 10px;
    background: #000;
}

.left p{
    font-size: 16px;
    line-height: 22px;
    padding-top: 20px;
    color: #fff;
}
.left ul{
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}
.left ul li:first-child{
    font-size: 16px;
    font-weight: 700;
    color: #c32a2c;
    padding-bottom:20px ;
}
.left ul li{
    color: #fff;
    font-size: 14px;
}
.left ul li .fa-solid,.fa-brands{
    color: #c32a2c;
    padding-right:10px ;
    font-size: 15px;
}
.footer-address-desc{
    font-weight: 600;
}
.fa-brands{
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.left ul li a{
    color: white;
    text-decoration: none;
    font-weight: 600;
}
.social-icons {
    display: flex;
    justify-content: start;
}
.social-icons .fa-brands:hover {
   color: #fff;
}

.info-box {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.info-box i {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Call Section */
.call-section {
    margin-top: 20px;
}

.call-section a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
}
.edf{
    font-size: 34px;
}
.asd{
    font-size: 30px;
}
.you{
    margin-top: 10px;
    font-size: 20px;
}
.about{
    position: relative;
    background: url('Images/56.jpeg') center/cover no-repeat;
    padding: 50px 0;
    text-align: center;
    color: white;
}
.about .overlay3{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.8); /* Dark Red Overlay */
}
.about-content{
    position: relative;
    z-index: 2;
    width: 90%;
    margin: auto;
}
.yr{
    text-align: center;
    font-size: 50px;
    font-weight: 800;
}
.whats-app {
    position: fixed;
    bottom: 20px;
    right: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
}
.whats-app img{
    width: 50px;
}
.phone {
    position: fixed;
    bottom: 20px;
    left: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    display: none;
}
.pickup-btn1 {
    position: fixed;
    bottom: 20px;
    right: 18%;
    border-radius: 50px;
    text-align: center;
    z-index: 100;
    background: #fff;
    border: 2px solid #c32a2c;
    color: #c32a2c;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    align-items: end;
    border-radius: 15px;
    height: 50px;
    width: 250px;
    text-align: center;
    display: none;
}

.phone img {
    width: 50px;
}
.my-float {
    margin-top: 16px;
}
@media (max-width: 768px){
    .whats-app {
        display:block;
    }
    .hut{
        display: none;
    }
    .text{
        display: none;
    }
    .bad{
        width: 90%;
    }
    .logo{
        text-align:center;
        justify-content: center;
    }
     .pickup-btn {
        display: none;
    }

     .pickup-btn1 {
        display: flex;
        justify-content:center;
        align-items:center;
    }

    .phone {
        display: block !important;

    }
}