@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Jersey+20&display=swap');

/* General Body Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #ffffff;
    color: #000000;
}

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

nav {
    display: flex;
    justify-content:space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    width: 200px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #7B2CBF;
}

.nav-cta {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
#hero {
    position: relative;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: none; /* Override section max-width */
    padding: 0; /* Remove padding from the container */
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 2rem;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
section {
    padding: 6rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

/* About Section */
#about {
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.about-text h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* Services Section */
#services {
    background-color: #f9f9f9;
}

#services h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

/* Why Us Section */
#why-us {
    background-color: #f9f9f9;
}

.why-us-content .subtitle {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: #555;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.why-us-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.why-us-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
#testimonials {
    display: none;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto; /* For smaller screens, allows scrolling */
    padding-bottom: 1rem;
    justify-content: center;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    min-width: 300px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-weight: 700;
}


/* Contact Section */
#contact {
    background-color: #fff;
}

#contact p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Contact Form */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #7B2CBF;
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #5A189A;
    transform: translateY(-3px);
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 4rem 2rem;
}

.footer-content {
    display: flex;
    justify-content:space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    gap: 1rem;
}

.footer-left img {
    width: 150px;
    height: auto;
}

.footer-center {
    text-align: center;
}

.footer-logo {
    width: 200px;
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #D1B2FF;
}

.footer-right .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icons img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

footer p {
    text-align: center;
    margin-top: 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-slider {
        justify-content: flex-start;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
