/* Global Styles */
:root {
    --primary-color: #0077b6;
    --secondary-color: #00b4d8;
    --accent-color: #90e0ef;
    --dark-color: #03045e;
    --light-color: #caf0f8;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header.active {
    height: 100vh;
}

.titletxt {
    margin-bottom: 1rem;
}

.titletxt h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.titletxt h1 span {
    color: var(--accent-color);
}

.titletxt p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hamburger {
    font-size: 2rem;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    cursor: pointer;
    display: none;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 1.1rem;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Marquee Styles */
.marg {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 0.5rem 0;
    margin-top: 120px;
}

marquee {
    font-size: 1rem;
    font-weight: 500;
}

marquee span {
    color: var(--accent-color);
    font-weight: 600;
}

/* Main Content Styles */
main {
    padding: 2rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#Servicetext h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

#Servicetext h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* Services Section */
.sAervice-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-item h2 {
    font-size: 1.3rem;
    color: var(--dark-color);
}

.service-item h2 span {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Vehicle Section */
.vehicle-section {
    background: linear-gradient(rgba(0, 119, 182, 0.9), rgba(0, 119, 182, 0.9)), url('vandi.jpeg') center/cover no-repeat;
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

.vehicle-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.vehicle-description img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.vehicle-content {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.vehicle-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.vehicle-content p:last-child {
    margin-bottom: 0;
}

/* Call to Action */
.call-to-action {
    text-align: center;
    margin: 3rem 0;
}

.call-to-action h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.button-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.button-container button {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.button-container button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.4);
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

.button-container button a {
    color: var(--white);
}

/* Locations Section */
.locations h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.locations h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.location-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
    background: linear-gradient(to bottom, var(--light-color), var(--white));
}

.location-item p:first-child {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.location-item p:last-child {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .titletxt h1 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
    
    .hamburger {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        display: none;
    }
    
    header.active nav ul {
        display: flex;
    }
    
    nav a {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .marg {
        margin-top: 100px;
    }
    
    .sAervice-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .button-container button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .titletxt h1 {
        font-size: 1.3rem;
    }
    
    #Servicetext h2, .locations h2 {
        font-size: 2rem;
    }
    
    .service-item h2 {
        font-size: 1.1rem;
    }
    
    .service-item h2 span {
        font-size: 1.3rem;
    }
    
    .call-to-action h2 {
        font-size: 1.5rem;
    }
}