

:root {
    --primary-blue: #ea580c;
    --dark-blue: #9a3412;
    --light-blue: #ffedd5;
    --gold: #facc15;
    --white: #ffffff;
    --gray: #57534e;
    --dark-gray: #292524;
    --font-main: 'Segoe UI', Arial, sans-serif;
}



* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

.cta-button {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--dark-blue);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../images/hero.webp') no-repeat center/cover;
    color: var(--white);
    text-align: center;
    padding: 200px 0 150px;
}

#hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

#hero p {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
    margin: 10px;
}

.primary-cta {
    background-color: var(--gold);
    color: var(--dark-gray);
}

.primary-cta:hover {
    background-color: #e6a000;
    transform: translateY(-3px);
}

.secondary-cta {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-cta:hover {
    background-color: var(--white);
    color: var(--dark-gray);
}

/* General Sections */
section {
    padding: 100px 0;
}

h2 {
    font-size: 40px;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

/* About Preview */
#about {
    background-color: var(--light-blue);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat h3 {
    font-size: 36px;
    color: var(--dark-blue);
    margin: 0;
}

/* Why Choose Us */
.usps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.usp:hover {
    transform: translateY(-10px);
}

.usp i {
    font-size: 50px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Services */
#services {
    background-color: var(--light-blue);
}

.service-category {
    margin-bottom: 60px;
}

.service-category h3 {
    text-align: center;
    font-size: 30px;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Testimonials Carousel */
#testimonials {
    background-color: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 30px;
    background: var(--light-blue);
    border-radius: 12px;
    text-align: center;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* FAQ */
#faq {
    background-color: var(--light-blue);
}

.accordion-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion-question {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-answer {
    padding: 0 20px 20px;
    display: none;
}

.accordion-item.active .accordion-answer {
    display: block;
}

/* Contact */
#contact form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

input,
textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.newsletter form {
    display: grid;
    gap: 15px;
}

.social-icons i {
    font-size: 28px;
    margin: 0 15px;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    nav ul {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 10px;
    }

    #hero h1 {
        font-size: 36px;
    }

    #hero p {
        font-size: 18px;
    }

    .btn {
        display: block;
        margin: 15px auto;
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close {
    color: #333;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #d33;
}

button {
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border: none;
    background-color: #144272;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0a2647;
}