/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #4A0E62; /* Purple */
}

p {
    font-size: 1.1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: #4A0E62; /* Purple */
    transition: color 0.3s ease;
}

a:hover {
    color: #E63946; /* Red-heart accent */
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4A0E62;
}

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

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
    margin: 0;
    flex: 1;
    margin-left: auto;
    padding-left: 30%;
}

nav ul li a {
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

nav ul li a:hover {
    border-bottom: 2px solid #4A0E62;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4A0E62;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(74, 14, 98, 0.7), rgba(74, 14, 98, 0.7)), url('herobackground.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 20px 0 40px;
    color: #fff;
}

.hero-buttons .btn {
    background-color: #E63946;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid #fff;
}

.hero-buttons .btn:hover {
    background-color: #4A0E62;
}

.hero-buttons .btn-secondary:hover {
    background-color: #fff;
    color: #4A0E62;
}

/* About Section */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.values {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.value {
    text-align: center;
}

.value i {
    font-size: 2.5rem;
    color: #E63946;
    margin-bottom: 10px;
}

/* About Page Specific Styles */
.page-header {
    background: linear-gradient(rgba(74, 14, 98, 0.7), rgba(74, 14, 98, 0.7)), url('https://images.unsplash.com/photo-1524222717473-730000096953?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
}

.about-content {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #777;
}

.values-detailed {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.value-item i {
    font-size: 2rem;
    color: #E63946;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 3rem;
    color: #4A0E62;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card a {
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
}

.benefits {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 50px;
}

.benefit i {
    font-size: 2.5rem;
    color: #E63946;
    margin-bottom: 15px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    background-color: #4A0E62;
    color: #fff;
    padding: 40px;
    border-radius: 10px;
}

.stat h3 {
    font-size: 3rem;
    color: #fff;
}

.stat p {
    font-size: 1.2rem;
    color: #eee;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-left: 5px solid #E63946;
    border-radius: 5px;
    width: 320px;
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card span {
    display: block;
    text-align: right;
    font-weight: bold;
    margin-top: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    text-align: center;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.map iframe {
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
}

.social-links a:hover {
    color: #E63946;
}

footer p {
    margin-top: 20px;
    color: #ccc;
}

/* Services Detailed Styles */
.services-detailed {
    padding: 80px 0;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item .btn {
    background-color: #E63946;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.service-item .btn:hover {
    background-color: #4A0E62;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f9f9f9;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member .role {
    font-weight: bold;
    color: #E63946;
    margin-bottom: 15px;
}

/* Contact Page Specific Styles */
.contact-page-section {
    padding: 80px 0;
}

.contact-flex {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h2 {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form .btn {
    background-color: #E63946;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #4A0E62;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    text-align: left;
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Blog Section Styles */
.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-post {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post h3 {
    font-size: 1.5rem;
    margin: 20px;
}

.blog-post .meta {
    font-size: 0.9rem;
    color: #777;
    margin: 0 20px 10px;
}

.blog-post p {
    margin: 0 20px 20px;
}

.blog-post .read-more {
    display: inline-block;
    margin: 0 20px 20px;
    font-weight: bold;
}

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

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

/* Scrolled Header */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.call-btn {
    background-color: #4A0E62; /* Purple */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin: 0;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    nav ul li a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        margin: 0;
    }

    .values,
    .benefits,
    .testimonial-cards,
    .about-flex,
    .contact-flex,
    .service-item {
        flex-direction: column;
    }

    .service-item:nth-child(2) {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .service-cards,
    .blog-grid,
    .team-grid {
        gap: 20px;
    }

    .card,
    .testimonial-card {
        width: 100%;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
