* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Raleway", Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #9536CC 0%, #1a0128 50%, #12011C 100%);
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    width: 100%;
    background-color: #010101;
    box-shadow: 0 10px 30px rgb(16, 16, 16);
    position: fixed;
    z-index: 1001;
}

.nav-container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    padding: 15px 30px;
    display: flex;
    gap: 30px;
    z-index: 999;
}

.logo {
    width: 70%;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    pointer-events: auto;
}

.menu-overlay.active {
    display: block;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 30px;
        background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 0;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

/* Header */
.page-header {
    text-align: center;
    padding: 220px 0 60px;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 3px;
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 220px 0 100px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 3px;
}

.hero h2 {
    font-size: 1.9rem;
    font-weight: 600;
}

.hero-title {
    margin-bottom: 60px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgb(230, 230, 230);
}

.hero-text {
    font-weight: 400;
    max-width: 500px;
    text-align: left;
}

.hero-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #F4CD59 0%, #ffb84d 100%);
    color: #1a0b2e;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 217, 102, 0.3);
}

.showreel-homepage {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services {
    padding: 80px 0;
    width: 90%;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.service-card {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.service-icon {
    width: 20%;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    opacity: 0.85;
    line-height: 1.7;
}

/* Reviews */
.reviews {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    /* background: linear-gradient(#12011C 30%, #8639b3 100%); */
    background-color: #8a60b18e;
    border-radius: 15px;
    padding: 80px 40px 80px 40px;
    margin-top: 80px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reviews-box {
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
}

.rating-stars {
    width: 130px;
}

.the-review {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.reviews h2 {
    font-size: 1.9rem;
    font-weight: 600;
}

.client {
    font-weight: 600;
    font-size: 18px;
}

.review-link {
    margin-top: auto;
    font-size: 13px;
    color: #cfcfcf;
}

/* Portfolio & Contact Section */
.bottom-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0 100px;
    justify-items: center;
}

.btn {
    margin-top: auto;
}

.portfolio,
.contact {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.service-card h2,
.testimonial-section h2,
.portfolio h2,
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.portfolio-preview {
    display: flex;
    gap: 10px;
    margin: 40px 0;
}

.section-text {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

        /* Responsive */
@media (max-width: 968px) {
    .hero {
        padding: 200px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .services h2,
    .testimonial-section h2 {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .bottom-section {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 60px;
        padding: 60px 0 80px;
    }

    .portfolio,
    .contact {
        align-items: center;
        text-align: center;
    }

    .portfolio h2,
    .contact h2,
    .portfolio h2,
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 200px 0 50px;
    }

    .hero h1 {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .hero-title {
        margin-bottom: 40px;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .services {
        padding: 50px 0;
    }

    .services h2,
    .testimonial-section h2,
    .portfolio h2,
    .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .services-grid {
        gap: 40px;
    }

    .service-icon {
        width: 60px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 14px 35px;
        font-size: 1rem;
    }
}