* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #F0F4F8 0%, #E0E7EF 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M10 10h80v80H10z" fill="none" stroke="%23DDE4EB" stroke-width="1" opacity="0.2"/%3E%3C/svg%3E');
    z-index: -1;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background: #007A7A;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FF6F61;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(70%);
}

.caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    background: rgba(0, 122, 122, 0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.caption h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.book-btn {
    background: #FF6F61;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.book-btn:hover {
    background: #E65B50;
    transform: scale(1.05);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 122, 122, 0.7);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.prev:hover, .next:hover {
    background: #005F5F;
}

.prev { left: 15px; }
.next { right: 15px; }

/* Services */
.services {
    padding: 50px 30px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #007A7A;
}

.services p {
    max-width: 800px;
    margin: 0 auto 20px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-box h3 {
    color: #007A7A;
    margin-bottom: 10px;
}

.call-cta {
    margin-top: 20px;
    font-size: 16px;
}

/* How to Book */
.how-to-book {
    padding: 50px 30px;
    text-align: center;
    background: white;
}

.how-to-book h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #007A7A;
}

.how-to-book p {
    margin-bottom: 20px;
}

.steps {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #F9FBFC;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.step:hover {
    background: #E6ECEF;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #FF6F61;
    color: white;
    font-weight: 600;
    border-radius: 50%;
    margin-right: 15px;
}

.step p {
    font-size: 16px;
}

/* About */
.about {
    padding: 50px 30px;
    text-align: center;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #007A7A;
}

/* Education */
.education {
    padding: 50px 30px;
    background: white;
    text-align: center;
}

.education h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #007A7A;
}

.edu-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.edu-box {
    background: #F9FBFC;
    padding: 20px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.edu-box h3 {
    color: #007A7A;
    margin-bottom: 10px;
}

/* Glass Quality */
.glass-quality {
    padding: 50px 30px;
    text-align: center;
}

.glass-quality h2, .glass-quality h3 {
    color: #007A7A;
    margin-bottom: 15px;
}

.glass-quality ul {
    list-style: none;
    max-width: 600px;
    margin: 15px auto;
    text-align: left;
}

.glass-quality li {
    margin-bottom: 8px;
}

.glass-quality p {
    max-width: 800px;
    margin: 15px auto;
}

/* Vehicles - Improved Styling */
.vehicles {
    padding: 50px 30px;
    text-align: center;
}

.vehicles h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #007A7A;
}

.vehicles p {
    margin-bottom: 20px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.vehicle-item {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    text-align: center;
    font-size: 14px;
}

.vehicle-item:hover {
    transform: scale(1.05);
    background: #007A7A;
    color: white;
}

/* Footer - Smaller & Styled */
.footer {
    background: #007A7A;
    color: white;
    padding: 20px; /* Smaller padding */
    text-align: center;
    font-size: 14px; /* Smaller text */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 10px; /* Reduced margin */
}

.contact-info p {
    margin: 5px 0; /* Tighter spacing */
}

.social-media a {
    color: white;
    margin: 0 10px; /* Reduced spacing */
    font-size: 20px; /* Smaller icons */
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #FF6F61;
}

.footer-copy {
    font-size: 12px; /* Smaller copyright */
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.modal-content h2 {
    color: #007A7A;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-content label {
    font-weight: 600;
    color: #007A7A;
}

.modal-content input, .modal-content textarea, .modal-content select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.modal-content textarea {
    resize: vertical;
    min-height: 80px;
}