 body, html{
	margin: 0;
	padding: 0;
	font-family: Arial,sans-serif;
	height: 100%;
	justify-content: center;
}
.company-name{
	font-size: 0.5em;
	font-weight: bold;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: color 0.3s;
	font-family: sans-serif;
}

body::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
nav{
	position: fixed;
	top: 0;
	background-color: black;
	width: 100%;
	padding: 3px 10px;
	display: flex;
	box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	justify-content:space-between;
	align-items: center;
	z-index: 1000;
}
.logo-container{
	display: flex;
	align-items: center;
}

.logo-container img{
	width: 70px;
	height: 70px;
	margin-right: 10px;
}
.logo-container span{
	color: white;
	font-size: 13px;
	font-weight: bold;
	text-align: center;

}

.nav-links a{
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	color: white;
	text-decoration: none;
	margin: 0 15px;
	padding: 8px 15px;
	font-family: Trebuchet;
}

.nav-links a:hover{
	background-color: #1480A0;
	border-radius: 35px;
}
.nav-links a.active{
	color: white;
	font-weight: bold;
	border-bottom: 3px solid #D2D206;
}

section{
	padding: 60px 20px;
	margin-top: 60px;
	color: #900C3F;
}

/*Homepage*/

#home{
	background-image: url('../images/h3.jpeg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 570px;
	margin: 5px;
	border-radius: 20px;
	background-color: rgba(0,0,0,0.8);
}


/*#about,#services,#fleet,#contact{
	height: 570px;
	margin: 5px;
	background-color: rgba(0,0,0,0.8);
	border-radius: 20px;
}*/
html{
	scroll-behavior: smooth;
}
.slogan{
	font-size: 1.5em;
	color: white;
	max-width: 445px;
	margin: 10px auto;
	margin-bottom: 5px;
	line-height: 0.5;
	padding: 20px;
	border-radius: 20px;
	font-family: roboto;
	margin-top: 55px;
	margin-left: 400px;
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
	background-color: rgba(0,0,0,0.6);
}
.contactus-section{
	text-align: center;
	padding: 2px 2px;
	text-transform: uppercase;
	font-family: roboto;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
	margin-top: 100px;
}
/*Contact Us Section*/
.contactus-button{
	display: inline-block;
	text-decoration: none;
	background-color: rgba(12, 112, 144);
	color: white;
	font-weight: bold;
	padding: 15px 15px;
	border-radius: 35px;
	font-size: 1.2em;
	margin-top: 200px;
	margin-bottom: 100px;
	transition: background-color 0.3s, transform 0.3s;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
.contactus-button:hover{
	background-color: #218838;
	transform: scale(1.05);
}

.card {
       right: 50px; /* Space from the right edge */
       top: 50%; /* Center vertically */
       border-radius: 10px;
       padding: 20px;
       width: 700px; /* Width of the card */
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Shadow for depth */
       margin-left: 300px;
       margin-top: -450px;
}
.card p {
	color: white;
    margin: 0; /* No margin for paragraph */
    font-size: 1em; /* Font size for paragraph */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
/*-----------End of Home------------*/


/*--------------About Us---------------------*/

#about{
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	height: 570px;
	margin: 5px;
	border-radius: 20px;
}
.header {
            text-align: center;
            margin: 80px 0;
            margin-bottom: 20px;
        }

        .about-image {
            width: 100%; /* Full width for the image */
            height: auto; /* Maintain aspect ratio */
            max-height: 300px; /* Limit the height */
            object-fit: cover; /* Cover the area */
        }

        .about-page {
            display: flex;
            flex-direction: column; /* Stack elements vertically */
            align-items: center; /* Center content */
            padding: 10px;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid; /* Use grid layout */
            grid-template-columns: repeat(2, 1fr); /* Two equal columns */
            gap: 20px; /* Space between the grid items */
            width: 100%; /* Full width */
        }

       .top-container{
       		color: yellow;
	       	flex: 1;
	       	display:flex;
	       	text-align: center;
	       	border-radius: 10px;
	       	padding: 2px 2px;
	        border: 1px solid #ffffff;
	        border-radius: 8px;
	        margin-top: 10px;
	       }
       .top-container h2{
       		font-size: 24px;
       		font-weight: bold;
       		text-transform: uppercase;
       		text-align: center;
       }

       .bottom-container{
       		display: flex;
       		flex: 1;
       }

       .left-container{
       		font-style: italic;
       		text-align: center;
       		background-color: grey;
       		border-radius: 20px;
       		margin: 10px;
       	}
       .right-container{
       		color: white;
       		font-style: italic;
       		text-align: center;
       		background-color: grey;
			color: white;
			border-radius: 20px;
			margin: 10px;
		       }
       .right-container h2{
       		font-size: 24px;
       		font-weight: bold;
       		text-transform: uppercase;
       		text-align: center;
       		font-style: normal;
       }

       .left-container h2{
       		font-size: 24px;
       		font-weight: bold;
       		text-transform: uppercase;
       		text-align: center;
       		font-style: normal;
       }

        h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.5em;
        }

        p {
            color: #555;
            line-height: 1.6;
            font-size: 1em;
            flex-grow: 1;
        }

        footer {
            text-align: center;
            padding: 10px;
            background-color: #2c3e50;
            color: white;
            width: 100%;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .about-container {
                grid-template-columns: 1fr; /* Single column on small screens */
            }
        }

/*--------------End of About Us-------------*/


/*-----------Fleet CSS------------*/

.fleet-header{
	text-align: center;
            margin: 80px 0;
            margin-bottom: 20px;

}
.fleet-header p{
	text-transform: uppercase;
}
.car-fleet {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.car-card {
	border-top: 50px;
    width: 300px;
    margin: 20px;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-card table {
    width: 100%;
    border-collapse: collapse;
}

.car-card th, .car-card td {
    padding: 10px;
    border: 1px solid #ccc;
}

/*------------------- Our Services ------------------------*/

 .description {
            text-align: center;
            padding: 20px;
            color: #555;
        }

        .services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .service-card {
            background-color: #f4f4f4;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            width: 300px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .service-card h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #3498db;
        }

        .service-card p {
            font-size: 1rem;
            color: #555;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .service-card {
                width: 90%;
            }
        }
/*------------------- Our Services End ------------------------*/



/*------------------- Contact ------------------------*/
header {
            background-color: #3498db;
            color: white;
            text-align: center;
            padding: 20px;
        }

        header h1 {
            margin: 0;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .contact-card {
            background-color: #f4f4f4;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            width: 300px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .contact-card h2 {
            font-size: 1.4rem;
            color: #3498db;
            margin-bottom: 10px;
        }

        .contact-card p {
            font-size: 1rem;
            color: #555;
        }

        .contact-card a {
            text-decoration: none;
            color: #3498db;
            font-weight: bold;
        }

        .message-form {
            max-width: 600px;
            margin: 20px auto;
            padding: 20px;
            background-color: #f9f9f9;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .message-form h2 {
            text-align: center;
            color: #3498db;
            margin-bottom: 20px;
        }

        .message-form label {
            display: block;
            margin: 10px 0 5px;
            font-weight: bold;
            color: #555;
        }

        .message-form input, .message-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .message-form textarea {
            resize: vertical;
            height: 120px;
        }

        .message-form button {
            width: 100%;
            padding: 10px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .message-form button:hover {
            background-color: #2980b9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-card {
                width: 90%;
            }
        }
/*------------------- Contact End ------------------------*/