@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body{
    padding: 0;
    margin: 0;
    font-family: "DM Sans", serif;
	overflow-x: hidden;
}

/* Header Styling */
header {
    padding: 20px 30px;
    background-color: #2B2B2B;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.imotor-logo img {
    width: 120px;
}

.nav-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    order: 2;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #2B2B2B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: right 0.4s ease-in-out;
    padding-top: 50px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    margin: 15px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Show mobile menu */
.mobile-menu.active {
    right: 0;
    z-index: 9999;
}


.quick-ll {
    gap: 4rem;
    display: flex;
    flex-direction: row;
}


footer{
    background-color: #2B2B2B;
    padding: 40px 70px;
    margin-top: 30px;
}

.footer-part-1{
    display: flex;
    justify-content: space-evenly;
    /* align-items: center; */
    gap: 3rem;
}

.footer-part-1 > div {
    flex: 1; /* Ensures equal width */
}

.footer-part-1 .logo-content p{
    color: #fff;
}

.quick-link{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-link h4{
    font-size: 20px;
    margin: 0px;
	border:none;
    color: #fff;
	text-align: left;
}

.quick-link a{
    color: #fff;
    text-decoration: none;
}

.footer-part-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
	flex-direction: row;
}

.footer-part-2 .copyright-text{
    color: #fff;
    font-weight: 300;
}

.social-icon {
    display: flex;
    flex-direction: row;
}

/* Container Styling */
.signup-container {
    /* padding: 20px; */
    color: white;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

/* Input Field Wrapper */
.input-wrapper {
    position: relative;
    border-bottom: 1px solid gray;
    display: flex;
    align-items: center;
}

/* Input Field */
.input-wrapper input {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
}

/* Placeholder Color */
.input-wrapper input::placeholder {
    color: gray;
}

/* Arrow Icon */
.input-wrapper .arrow-1 {
    position: absolute;
    right: 0;
    color: #4A90E2; /* Blue color for the arrow */
    font-size: 16px;
    cursor: pointer;
}

.contact-icon-list .icon-list{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-list p{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}










.logo-img img {
    max-width: 150px; /* Adjust as needed */
    height: auto;
}










/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .imotor-logo{
        width: 55%;
    }
}

@media screen and (max-width: 920px){
    .footer-part-1{
        flex-wrap: wrap;
    }

    .footer-part-2{
        flex-wrap: wrap;
    }
}





@media only screen and (max-width: 600px) {
	.imotor-logo img {
    width: auto;
}
}


@media only screen and (max-width: 600px) {
header {
    padding: 10px 20px;
}}


@media only screen and (max-width: 600px) {
.facl {
    color: white;
    font-size: 8px;
	margin-top: 0;
    margin-bottom: 0rem;
}}


@media only screen and (max-width: 600px) {
footer {

    margin-top: 0px !important; 
	padding: 20px 30px;
}
.logo-img img {
    max-width: 125px;

}
.footer-part-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
}
.footer-part-1 {
    display: flex;
	gap :2rem;
    flex-direction: column;
}
.quick-ll {
    gap: 30px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}
.logo-part {
    text-align: left;
}
.quick-link {

    gap: 0.6rem;
}

}