* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #333;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    width: 50px;
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover {
    color: #00ccff;
    transform: scale(1.1);
}

/* Header */
.header {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(45deg, #007bff, #00ccff);
    color: white;
}

.slogan {
    font-size: 2.5rem;
    animation: fadeIn 2s ease-in;
}

.scrolling-text {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    color: #ff4500;
    animation: scrollText 8s linear infinite, colorChange 4s infinite;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollText {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes colorChange {
    0% { color: #ff4500; }
    50% { color: #00ccff; }
    100% { color: #ff4500; }
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

/* Gallery */
.gallery {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.gallery-img {
    width: 250px;
    height: 188px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: scale(1.1) translateY(0); }
    40% { transform: scale(1.1) translateY(-10px); }
    60% { transform: scale(1.1) translateY(-5px); }
}

/* Video */
.video-container {
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Navigation Buttons */
.navigation-buttons {
    text-align: center;
    padding: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 2px 5px rgba(255, 69, 0, 0.3);
}

.btn:hover {
    background: #ff6347;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.social-icons img {
    width: 30px;
    margin: 0 0.5rem;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* Services Section */
.services {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.service-item {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #ff4500;
    font-size: 1.5rem;
    animation: slideIn 1s ease-out;
}

.service-item p {
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Pricing Section */
.pricing {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.pricing-table {
    margin: 2rem auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 600px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 1rem;
    transition: background 0.3s;
}

.pricing-table th {
    background: #ff4500;
    color: white;
}

.pricing-table tr:hover {
    background: #f0f0f0;
}

/* About Section */
.about {
    padding: 2rem;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
}

.about p {
    max-width: 800px;
    margin: 1rem auto;
    color: #333;
    line-height: 1.8;
                     }
