/* Body and General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Section */
header {
    background: #4a148c;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
	 font-family: 'Sevillana', cursive; /* Apply Sevillana font */
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
	
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: white;
	 
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About, Services, and Contact Sections */
.about, .services, .contact {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-item {
    margin: 20px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #4a148c;
    color: white;
}
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Text Overlay Styling */
.hero-overlay {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Slider */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4a148c;
}

.services p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Service Items */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item h3 a {
    font-size: 1.5rem;
    text-decoration: none;
    color: #4a148c;
    transition: color 0.3s;
}

.service-item h3 a:hover {
    color: #7c4dff;
}

.service-item p {
    font-size: 1rem;
    color: #666;
}
/* Contact Section */
.contact {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #4a148c;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #4a148c;
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    color: white;
    background-color: #4a148c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #7c4dff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
        width: 90%;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }
}
.sevillana-regular {
  font-family: "Sevillana", cursive;
  font-weight: 400;
  font-style: normal;
}
/* Navigation Bar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #4a148c; /* Purple background */
    color: white;
}

.logo {
    font-family: 'Sevillana', cursive;
    font-size: 2rem;
    color: #ffd700; /* Gold color for logo */
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #ffd700; /* Gold on hover */
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #4a148c;
    color: white;
}

footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700; /* Gold color on hover */
    transform: scale(1.2); /* Slight zoom effect */
}

.social-icons .tiktok { color: #000; }
.social-icons .instagram { color: #E4405F; }
.social-icons .twitter { color: #1DA1F2; }
.social-icons .facebook { color: #1877F2; }
}
.service-item {
    text-align: center; /* Center align images and text */
}

.service-image {
    width: 100%; /* Adjust width to make it responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: Add rounded corners */
    margin-bottom: 15px; /* Space between the image and text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    transition: transform 0.3s ease;
}

.service-item:hover .service-image {
    transform: scale(1.05); /* Zoom effect on hover */
}

