/* General Styles */
html {
    scroll-behavior: smooth !important;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    min-height: 100vh;
    scroll-behavior: smooth !important;

}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    left: 1 rem;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links li a:hover {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.1);
}

section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Inter', sans-serif;
    color: #333;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #b8860b;
}

.slogan {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Social Media Links */
.social-media {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-media a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.social-media a:hover {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.1);
}

.social-media i {
    font-size: 1.5rem;
}

/* Accordion */
.accordion {
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    background: #333;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accordion-header:hover {
    background: #b8860b;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    margin: 1rem 0;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 1rem;
}

/* PDF Link */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #b8860b;
    text-decoration: none;
    font-weight: 500;
}

.pdf-link:hover {
    text-decoration: underline;
}
 /*princing tables*/
 .pricing-  .pricing-container {
    max-width: 700px;
    margin: 0 auto;
}
.pricing-category {
    margin-bottom: 1rem;
}
.pricing-header {
    width: 100%;
    background: #333;
    color: white;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
    border-radius: 5px;
}
.pricing-header:hover {
    background: #b8860b;
}
.pricing-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
    padding: 0 1rem;
    border-radius: 5px;
}
.pricing-category.active .pricing-content {
    max-height: 300px;
    padding: 1rem;
}
.pricing-content ul {
    list-style: none;
    padding: 0;
}
.pricing-content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}
.pricing-content span {
    font-weight: bold;
    color: #b8860b;
}
.cta-button {
    display: block;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: #b8860b;
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
    background: #a87409;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        left: 1rem;
    }
    .menu-icon span {
        width: 30px;
        height: 3px;
        background: #333;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}

.pricing-table {
    margin: 2rem auto;
    max-width: 700px;
    text-align: center;
}
.pricing-table h3 {
    color: #b8860b;
    margin-bottom: 0.5rem;
}
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
th, td {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}
th {
    background: #333;
    color: white;
}
tr:hover {
    background: rgba(184, 134, 11, 0.1);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

form label {
    margin: 0.5rem 0 0.2rem;
    font-weight: 500;
    color: #333;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #b8860b;
    box-shadow: 0 0 8px rgba(184, 134, 11, 0.3);
    outline: none;
}

form button {
    padding: 0.75rem 2rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background-color: #b8860b;
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #333;
    position: relative;
    margin-top: 2rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #b8860b;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        position: absolute;
        top: 60px;
        left: 1rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        width: 200px;
    }

    .nav-links.active {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}   

#coming-soon {
    text-align: center;
    padding: 20px;
    font-size: 1.1rem;
    font-style: italic;
    color: #aaa;
    opacity: 0.9;
}