/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif; /* Standard font */
    line-height: 1.6;
}

/* Header */
header {
    background: #0A1F44; /* Keeping the same deep purple */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6f61;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: #fff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.4s;
}

/* Hamburger Icon Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.cta {
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta:hover {
    background: #e65a50;
}

/* About Hero Section */
.about-hero {
    background: url('../images/about-hero.jpg') no-repeat center center/cover;
    color: #fff;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 24px;
}

/* About Section */
.about {
    padding: 50px 20px;
    background: #f4f4f4;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about ul li::before {
    content: "•";
    color: #ff6f61;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -4px;
}

.about-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.about-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 20px);
    text-align: center;
    transition: transform 0.3s;
}

.about-item:hover {
    transform: translateY(-10px);
}

.about-item i {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 15px;
}

.about-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.about-item p {
    font-size: 16px;
    color: #555;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.services p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    width: calc(33.33% - 20px);
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content i {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.card-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.card-content .cta {
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s;
}

.card-content .cta:hover {
    background: #e65a50;
}

/* Contact Information Section */
.contact-info {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
}

.info-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item i {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.info-item p {
    font-size: 16px;
    color: #555;
}

/* Contact Form Section */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6f61;
    outline: none;
}

.contact-form button.cta {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button.cta:hover {
    background: #e65a50;
}

/* Success Message */
.success-message {
    text-align: center;
    color: #28a745;
    margin-top: 20px;
    font-size: 18px;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.social-media a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ff6f61;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 20px;
    background: #fff;
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.why-choose-us p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.why-choose-us-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.why-choose-us-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(25% - 20px);
    text-align: center;
    transition: transform 0.3s;
}

.why-choose-us-item:hover {
    transform: translateY(-10px);
}

.why-choose-us-item i {
    font-size: 36px;
    color: #ff6f61;
    margin-bottom: 15px;
}

.why-choose-us-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.why-choose-us-item p {
    font-size: 16px;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background: #f4f4f4;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.testimonials p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 20px);
    text-align: center;
    transition: transform 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-item p:last-child {
    font-size: 14px;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #333;
        position: absolute;
        top: 70px;
        left: 0;
        z-index: 1000;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 18px;
    }

    .about-grid {
        flex-direction: column;
    }

    .about-item {
        width: 100%;
    }

    .about h2 {
        font-size: 28px;
    }

    .about h3 {
        font-size: 24px;
    }

    .about p,
    .about ul li {
        font-size: 16px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }

    .contact-info .info-container {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        width: 100%;
        max-width: 400px;
    }

    .contact-form {
        padding: 15px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .contact-form button.cta {
        font-size: 16px;
    }

    .why-choose-us-grid {
        flex-direction: column;
    }

    .why-choose-us-item {
        width: 100%;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .testimonial-item {
        width: 100%;
    }
}