body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Header */
header {
    background: #007BFF;
    color: #fff;
    display: flex;
    align-items: flex-start;
    position: relative;
}

header h1 {
    margin: 0;
    padding-left: 10px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 2em;
    flex-shrink: 0;
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('photo.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 150px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    animation: fadeInDown 1s ease-in-out both;
}

.hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
    animation: fadeInUp 1.5s ease-in-out both; /* Fixed Animation */
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about h2,
.about p,
.about ul {
    opacity: 0; /* Hide initially */
    animation: fadeInUp 1.5s ease-in-out forwards;
    animation-delay: 0.3s; /* Slight delay for smoothness */
}

.about h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about .highlight {
    color: #007BFF;
    font-weight: bold;
}

.about ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.about ul li {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    animation: fadeInUp 1s ease-in-out both;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    background: #007BFF;
    flex: 1 1 30%;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background: #f9f9f9;
    animation: fadeInUp 1s ease-in-out both;
}

.contact p {
    font-size: 1.2em;
}

.contact a {
    color: #007BFF;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quotation Section */
.quotation {
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 1.2s ease-in-out both;
}

.quotation .container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.quotation h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #fff;
}

.quotation p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.quotation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quotation-form input,
.quotation-form textarea {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: 0.3s ease;
}

.quotation-form input:focus,
.quotation-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
}

.quotation-form button.btn {
    background: #fff;
    color: #007BFF;
    font-weight: bold;
    padding: 15px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.quotation-form button.btn:hover {
    background: #f0f0f0;
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Quotes Carousel Section */
.quotes {
    background: linear-gradient(to right, #007BFF, #0056b3);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 1.2s ease-in-out both;
}

.quotes .container {
    max-width: 800px;
    margin: 0 auto;
}

.quotes h2 {
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #fff;
}

.quote-carousel {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.quote-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 20px;
}

.quote-slide.active {
    opacity: 1;
    position: relative;
}

.quote-slide p {
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-controls button {
    background: transparent;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: white;
    transform: scale(1.2);
}