/* Reset default styles */
body, h1, p, a, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

/* Header styles */
.header {
    background-color: #000;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

.header nav {
    position: relative;
}

.header nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    padding: 10px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.header nav a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.header nav a:hover::after {
    width: 100%;
}

.header nav a:hover {
    color: #f5f5f5;
    transform: scale(1.1);
}

/* Dropdown styling */
.header .dropdown {
    position: relative;
    display: inline-block;
}

.header .dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000; /* Ensure dropdown is on top */
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header .dropdown-content.show {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: slideIn 0.3s ease-out;
}

.header .dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.header .dropdown-content a:hover {
    background-color: #575757;
}

/* Ensure swiper slides are below the dropdown */
.swiper-container {
    position: relative;
    z-index: 1; /* Set z-index lower than dropdown */
}

/* Ensure images don't overlap the dropdown */
.image1 img,
.image2 img,
.image3 img {
    position: relative;
    z-index: 1; /* Ensure images are below dropdown */
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    background-color: #000;
    height: 80vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    overflow: hidden;
}

/* Content styles */
.indx_content {
    width: 70%;
    margin-top: 40px;
    margin-left: 5%;
    padding: 20px;
    position: relative;
}

.vehicle-name {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.vehicle-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.see-more1 {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.see-more2 {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.see-more3 {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.see-more1:hover {
    background-color: #ffffff;
    color: #000;
    transform: scale(1.1);
}

.see-more2:hover {
    background-color: #ffffff;
    color: #000;
    transform: scale(1.1);
}
.see-more3:hover {
    background-color: #ffffff;
    color: #000;
    transform: scale(1.1);
}

/* Image styles */
.image1 img{
    width: 80%;
    max-width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}


.image2 img,
.image3 img {
    width: 150%;
    height: 150%;
}






.image2 {
    margin-right: 20%;
  
    height: 200px;
}

.image3 {
    margin-right: 20%;
  
    height: 200px;
    padding: 0;
    margin-top: -10%;
}


.image1:hover img {
    transform: scale(1.1) rotate(15deg);
}

.image2:hover img {
    transform: scale(1.1) rotate(-15deg);
}

.image3:hover img {
    transform: scale(1.1) rotate(10deg);
}

/* Swiper button styles */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
    transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: #000 !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header nav a {
        margin: 5px 0;
    }

    .indx_content {
        width: 90%;
        margin-left: 0;
    }

    .swiper-container {
        height: auto; /* Adjust height for mobile */
    }

    .swiper-slide {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px; /* Adjust base font size */
    }

    .header h1 {
        font-size: 20px; /* Adjust font size */
    }

    .swiper-button-next,
    .swiper-button-prev {
        font-size: 16px; /* Adjust button size */
    }

    .vehicle-name {
        font-size: 28px; /* Adjust font size */
    }

    .vehicle-description {
        font-size: 16px; /* Adjust font size */
    }

    .unique-about-us h2 {
        font-size: 30px; /* Adjust font size */
    }

    .unique-about-us h3 {
        font-size: 24px; /* Adjust font size */
    }

    .info-image-container {
        flex-direction: column;
        align-items: center;
    }

    .info,
    .image {
        width: 100%;
    }
}


/* About Us Section */
.about-us {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.about-us h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.about-us h3 {
    font-size: 30px;
    color: #333;
    
    max-width: 800px;
    margin: 0 auto;
}

/* About Us Button */
.about-us-button-container {
    text-align: center;
    margin: 30px 0;
}

.about-us-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-us-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Unique About Us Section */
.unique-about-us {
    background-color: #000000;
    padding: 50px 20px;
    margin-top: -30px;
    text-align: center;
}

.unique-about-us h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.unique-about-us h3 {
    font-size: 30px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.unique-about-us p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.unique-about-us .about-us-button-container {
    text-align: center;
    margin: 30px 0;
}

.unique-about-us .about-us-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.unique-about-us .about-us-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Information and Image Section */
.info-image-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.info-image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.info {
    width: 50%;
    padding: 20px;
}

.info h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.info p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-buttons {
    display: flex;
    gap: 10px;
}

.info-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.info-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.image {
    width: 50%;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer styles */
footer {
    background-color: #000000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-container div {
    flex: 1;
    margin: 10px;
}

.footer-address,
.footer-contact,
.footer-links {
    text-align: left;
}

.footer-address h3,
.footer-contact h3,
.footer-links h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-address p,
.footer-contact p {
    font-size: 16px;
    margin: 5px 0;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

/* Updated styles for social media icons */
.footer-links a {
    margin: 0 10px;
    color: #fff; /* Match the text color of the footer */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links i {
    font-size: 24px; /* Adjust size as needed */
}

.footer-links a:hover i {
    color: #007bff; /* Change color on hover */
}

.footer-bottom {
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin: 5px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #f5f5f5;
}

.mail {
    text-decoration: none;
    color: white;
}


/* Information and Image Section */
.info-image-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.info-image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.image {
    width: 500px;
}

.image img {
    width: 70%;
    height: auto;
    border-radius: 5px;
}




.info {
    width: 50%;
    padding: 20px;
    text-align: center;

}

.info h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
}

.info p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.info-button:hover {
    background-color: #333;
    transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 768px) {
    .info-image-container {
        flex-direction: column;
        align-items: center;
    }

    .info,
    .image {
        width: 100%;
        text-align: center;
    }

    .info {
        padding: 20px 10px;
    }
}

@media (max-width: 480px) {
    .info h2 {
        font-size: 28px; /* Adjust font size */
    }

    .info p {
        font-size: 16px; /* Adjust font size */
    }

    .info-button {
        font-size: 14px; /* Adjust button size */
    }
}


.info-image-section {
    padding: 20px;
}

.info-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.li-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.li-info h2 {
    color: rgb(0, 0, 0);
    margin-bottom: 20px;
    font-size: 2em;
}

.li-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.li-info li {
    margin: 10px 0;
}

.license-link {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.1em;
}

.license-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .li-info h2 {
        font-size: 1.5em;
    }

    .li-info li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .li-info h2 {
        font-size: 1.2em;
    }

    .li-info li {
        font-size: 0.9em;
    }
}
/* Mindset Section */
.mindset-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.mindset-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Space between items */
}

.mindset-item {
    flex: 1; /* Ensure items grow equally */
    min-width: 250px; /* Minimum width for items */
    height: 350px; /* Fixed height for uniformity */
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text */
    opacity: 0; /* Start hidden for fade-in animation */
    transform: translateY(20px); /* Start slightly offset for animation */
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 0.6s forwards; /* Add fade-in animation */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.mindset-image {
    width: 100px; /* Adjust width as needed */
    height: 100px; /* Fixed height for image consistency */
    border-radius: 50%;
    margin-bottom: 15px; /* Space between image and text */
    transition: transform 0.3s ease; /* Transition for image scale */
}

.mindset-item:hover {
    transform: translateY(0) scale(1.05); /* Slightly enlarge and move up on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.753); /* Enhance shadow on hover */
    border-radius: 30px 20px 30px 20px;
}

.mindset-item:hover .mindset-image {
    transform: scale(1.1); /* Enlarge image on hover */
}

.mindset-item h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.mindset-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    flex-grow: 1; /* Ensure text area grows to fill space */
}

/* Animation for fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .mindset-container {
        flex-direction: column;
        align-items: center;
    }

    .mindset-item {
        width: 80%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .mindset-item h3 {
        font-size: 20px; /* Adjust font size */
    }

    .mindset-item p {
        font-size: 14px; /* Adjust font size */
    }
}



/* Background Section */
.background-section {
    padding: 50px 20px;
    background-color: #dbdbdb67;
}

.background-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; 
}

.background-info {
    flex: 1; 
    padding: 20px;
}

.background-info h2 {
    font-size:39px;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.background-info p {
    font-size: 19px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 768px) {
    .background-container {
        flex-direction: column;
        align-items: center;
    }

    .background-info,
    .background-image {
        width: 90%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .background-info h2 {
        font-size: 28px; /* Adjust font size */
    }

    .background-info p {
        font-size: 14px; /* Adjust font size */
    }
}



/* Licenses and Certificates Section */


.lc_img {
    height: 200px;
    width: 200px;
    margin-left: 150%;
    transform: translateX(-50%);
}

/* For screens smaller than 768px (tablets and below) */
@media (max-width: 768px) {
    .lc_img {
        height: 150px;
        width: 150px;
        margin-left: 0;
        transform: none; /* Reset the translation */
        display: block; /* Ensure it centers properly */
        margin: 0 auto; /* Center it horizontally */
    }
}

/* For screens smaller than 480px (phones and below) */
@media (max-width: 480px) {
    .lc_img {
        height: 100px;
        margin-left: 0;
        width: 100px;
    }
}

.license-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* certificate */

/* General styles for the section and container */
.image-gallery {
    padding: 20px;
    text-align: center; /* Center the images in the container */
}

.image-container {
    display: flex;
    justify-content: space-around; /* Space out the images evenly */
    align-items: center;
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
}

/* General styles for images */
.image-container img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Specific styles for each image */
.img-one {
    width: 30%;
}

.img-two {
    width: 30%;
}

.img-three {
    width: 30%;
}

/* Hover effect */
.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for tablets and below */
@media (max-width: 768px) {
    .img-one, .img-two, .img-three {
        width: 45%; /* Adjust width for smaller screens */
        margin-bottom: 10px;
    }
}

/* Responsive styles for phones and below */
@media (max-width: 480px) {
    .img-one, .img-two, .img-three {
        width: 90%; /* Make images take most of the container width */
    }
}



/* mediea */

.media-section {
    padding: 40px 20px;
    background-color: #ffffff6e;
    text-align: center;
   
}

.media-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: bold;
}

.media-section h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 300;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-radius: 20px 5px 20px 5px;
    box-shadow: 0 4px 8px rgb(0, 0, 0);
}

.container:hover {
    transform: scale(1.05);
    /* border-radius: 20px 5px 20px 5px; */
    z-index: 2;
}

.container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #007BFF;
    top: 15px;
    border-radius: 20px 5px 20px 5px;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    right: 30px;
    width: 10px;
    z-index: -1;
    background: linear-gradient(to bottom, #007BFF, #00C6FF);
}

.right::before {
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    left: 30px;
    width: 10px;
    z-index: -1;
    background: linear-gradient(to bottom, #007BFF, #00C6FF);
}

.right::after {
    left: -16px;
}

.content {
    padding: 20px 30px;
    background-color: rgb(31, 31, 31);
    margin-top: -5px;
    position: relative;
    border-radius: 20px 5px 20px 5px;
    color: #000;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.media-date {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

.media-source {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: #ffffff;
}

.media-description {
    font-size: 16px;
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .timeline::before {
        left: 31px;
    }

    .container::before,
    .container::after {
        left: 60px;
    }

    .right {
        left: 0%;
    }
}

@media screen and (max-width: 600px) {
    .timeline::before {
        left: 18px;
    }

    .container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .container::before {
        left: 60px;
        border-width: 10px;
    }

    .left::before,
    .right::before {
        left: 30px;
    }

    .right::after {
        left: 15px;
    }
}


/* CSS for Legal Information Section */
.legal-info-section {
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4fc;
    color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.legal-info-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.legal-info-subtitle {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;
    border-bottom: 2px solid #c9ada7;
    padding-bottom: 5px;
    animation: slideInLeft 1.5s ease-in-out;
}

.legal-info-description {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
    animation: fadeIn 2s ease-in-out;
    color: #22223b;
}

.legal-info-list, .legal-info-sublist {
    list-style-type: none;
    padding-left: 20px;
    color: #4a4e69;
}

.legal-info-list-item, .legal-info-sublist-item {
    margin-bottom: 10px;
    animation: fadeIn 2s ease-in-out;
    padding-left: 10px;
    position: relative;
}

.legal-info-list-item:before, .legal-info-sublist-item:before {
    content: '•';
    position: absolute;
    left: -15px;
    color: #c9ada7;
    font-size: 1.5em;
}

.legal-info-operator, .legal-info-responsible-person, .legal-info-email {
    animation: fadeIn 2s ease-in-out;
    color: #22223b;
}

.legal-info-email {
    color: #4a4e69;
    text-decoration: underline;
}

.legal-info-email:hover {
    color: #c9ada7;
}

/* Keyframes for animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-info-title {
        font-size: 2em;
    }

    .legal-info-subtitle {
        font-size: 1.5em;
    }

    .legal-info-description {
        font-size: 1em;
    }

    .legal-info-list-item, .legal-info-sublist-item {
        font-size: 1em;
    }
}



