* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;

    background: #ffffff;
    font-family: Arial, sans-serif;

    overflow-x: hidden;
}

h1 {
    color: #6a0dad;
    font-size: 80px;
    letter-spacing: 8px;
}

h2 {
    color: #222222;
    font-size: 30px;
    margin-top: 10px;
}

p {
    color: #555555;
    font-size: 18px;
    margin-top: 20px;
}

button {
    margin-top: 30px;
    padding: 15px 35px;

    background: #6a0dad;
    color: white;

    border: none;
    border-radius: 30px;

    font-size: 16px;
    cursor: pointer;

    transition: 0.3s;
}

button:hover {
    transform: scale(1.1);
    background: #4b0082;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    padding: 25px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);

    z-index: 1000;
}

.logo {
    color: #6a0dad;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #222222;
    text-decoration: none;
    font-size: 16px;

    position: relative;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #6a0dad;

    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}
.hero {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 0 8%;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(106, 13, 173, 0.25),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f0ff 50%,
            #ead5ff 100%
        );
}

.hero-content {
    max-width: 900px;
    text-align: left;
}

.hero-small {
    color: #6a0dad;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 6px;

    margin-bottom: 25px;
}

.hero h1 {
    color: #111111;

    font-size: clamp(65px, 9vw, 150px);

    line-height: 0.85;

    letter-spacing: -5px;

    font-weight: 900;
}

.hero h1 span {
    display: block;

    color: #6a0dad;

    text-shadow:
        0 0 30px rgba(106, 13, 173, 0.25);
}

.hero-description {
    margin-top: 35px;

    color: #555555;

    font-size: 20px;

    max-width: 500px;
}

.hero {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 0 8%;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 35%,
            rgba(255, 255, 255, 0.35) 65%,
            rgba(106, 13, 173, 0.12) 100%
        ),
        url("images/hero-wedding.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero button:hover {
    background: #111111;

    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(106, 13, 173, 0.3);
}
.about {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 100px 8%;

    background: #111111;
}

.about-content {
    max-width: 1100px;
    text-align: left;
}

.section-small {
    color: #b76cff;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 6px;

    margin-bottom: 30px;
}

.about h2 {
    color: white;

    font-size: clamp(45px, 7vw, 100px);

    line-height: 1;

    letter-spacing: -3px;

    max-width: 1000px;
}

.about h2 span {
    display: block;

    color: #8a2be2;
}

.about-description {
    color: #aaaaaa;

    font-size: 20px;

    line-height: 1.8;

    max-width: 700px;

    margin-top: 40px;
}
.services {
    width: 100%;
    min-height: 100vh;

    padding: 120px 8%;

    background: #f8f3fc;

    text-align: left;
}

.services-title {
    color: #111111;

    font-size: clamp(50px, 7vw, 100px);

    letter-spacing: -4px;

    margin-bottom: 70px;
}

.services-title span {
    color: #6a0dad;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 320px;

    padding: 40px;

    background: white;

    border: 1px solid rgba(106, 13, 173, 0.15);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.5s;

    cursor: pointer;
}

.service-card h3 {
    color: #6a0dad;

    font-size: 14px;

    letter-spacing: 3px;
}

.service-card h4 {
    color: #111111;

    font-size: 28px;

    line-height: 1.1;
}

.service-card p {
    color: #777777;

    font-size: 16px;

    line-height: 1.6;
}

.service-card:hover {
    background: #6a0dad;

    transform: translateY(-15px);

    box-shadow: 0 30px 60px rgba(106, 13, 173, 0.25);
}

.service-card:hover h3,
.service-card:hover h4,
.service-card:hover p {
    color: white;
}
.portfolio {
    width: 100%;
    min-height: 100vh;
    padding: 120px 8%;
    background: #0a0a0a;
    text-align: left;
}

.portfolio-heading {
    margin-bottom: 70px;
}

.portfolio-heading h2 {
    color: white;
    font-size: clamp(55px, 8vw, 120px);
    line-height: 0.9;
    letter-spacing: -5px;
}

.portfolio-heading h2 span {
    color: #8a2be2;
}

.story {
    width: 100%;
    display: grid;
    grid-template-columns: 250px 1fr;
    border: 1px solid #333333;
}

.story-number {
    color: transparent;
    font-size: 180px;
    font-weight: 900;
    text-align: center;
    padding-top: 40px;

    -webkit-text-stroke: 2px #8a2be2;
}

.story-image {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 35%;

    transition: transform 1s ease;
}

.story:hover .story-image img {
    transform: scale(1.08);
}

.story-overlay {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    padding: 80px 50px 50px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.85)
    );
}

.story-overlay p {
    color: #b76cff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 5px;
}

.story-overlay h3 {
    color: white;
    font-size: clamp(35px, 5vw, 70px);
    margin-top: 10px;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
.contact {
    width: 100%;
    min-height: 100vh;

    padding: 120px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(138, 43, 226, 0.35),
            transparent 40%
        ),
        #111111;

    text-align: left;
}

.contact h2 {
    color: white;

    font-size: clamp(55px, 8vw, 120px);

    line-height: 0.9;

    letter-spacing: -5px;
}

.contact h2 span {
    color: #8a2be2;
}

.contact-text {
    max-width: 650px;

    margin-top: 40px;

    color: #aaaaaa;

    font-size: 20px;

    line-height: 1.7;
}

.contact-details {
    margin-top: 50px;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.contact-details p {
    color: white;

    font-size: 14px;

    letter-spacing: 3px;

    margin: 0;
}

.contact-button {
    margin-top: 50px;

    padding: 20px 45px;

    background: #8a2be2;

    color: white;

    border: none;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 3px;

    cursor: pointer;

    transition: 0.4s;
}

.contact-button:hover {
    background: white;

    color: #111111;

    transform: translateY(-8px);

    box-shadow: 0 25px 60px rgba(138, 43, 226, 0.4);
}
@media (max-width: 768px) {

    .navbar {
        padding: 20px 5%;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 0 6%;
        background-position: 65% center;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .about {
        padding: 100px 6%;
    }

    .about h2 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .about-description {
        font-size: 17px;
    }

    .services {
        padding: 100px 6%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio {
        padding: 100px 6%;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .story-number {
        font-size: 100px;
        text-align: left;
        padding: 30px;
    }

    .story-image {
        height: 500px;
    }

    .story-overlay {
        padding: 60px 25px 30px;
    }

    .contact {
        padding: 100px 6%;
    }

    .contact h2 {
        font-size: 50px;
        letter-spacing: -3px;
    }

    .contact-details p {
        font-size: 11px;
        letter-spacing: 1px;
    }
}
@media (max-width: 768px) {

    .hero h1 {
        font-size: 48px;
        line-height: 0.9;
        letter-spacing: -3px;
    }

    .hero-small {
        font-size: 11px;
        letter-spacing: 4px;
        line-height: 1.5;
    }

    .hero-content {
        width: 100%;
    }
}
.footer {
    width: 100%;
    padding: 80px 8% 40px;

    background:
        radial-gradient(
            circle at 90% 100%,
            rgba(138, 43, 226, 0.25),
            transparent 35%
        ),
        #0a0a0a;

    text-align: center;

    border-top: 1px solid rgba(138, 43, 226, 0.35);
}

.footer-logo {
    color: #8a2be2;

    font-size: 35px;
    font-weight: 900;

    letter-spacing: 5px;
}

.footer > p {
    color: #ffffff;

    font-size: 12px;

    letter-spacing: 4px;
    line-height: 2;

    margin: 25px auto 50px;

    max-width: 500px;
}

.footer-bottom {
    width: 100%;

    padding-top: 30px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    color: #aaaaaa;

    font-size: 11px;

    letter-spacing: 3px;
}

@media (max-width: 768px) {

    .footer {
        padding: 70px 6% 35px;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 15px;
    }
}
.founder-section {
    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 120px 8%;

    background: #080808;

    overflow: hidden;
}

.founder-image {
    position: relative;

    height: 700px;

    overflow: hidden;
}

.founder-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.founder-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    filter: grayscale(100%) contrast(1.1);

    transition: 0.8s;
}

.founder-section:hover .founder-image img {
    filter: grayscale(20%) contrast(1.05);

    transform: scale(1.04);
}

.founder-content {
    padding-left: 70px;

    text-align: left;
}

.founder-label {
    color: #a855f7;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 6px;

    margin-bottom: 25px;
}

.founder-content h2 {
    color: white;

    font-size: clamp(65px, 8vw, 130px);

    line-height: 0.85;

    letter-spacing: -6px;
}

.founder-content h3 {
    color: #8a2be2;

    font-size: 16px;

    letter-spacing: 3px;

    margin-top: 30px;
}

.founder-text {
    color: #aaaaaa;

    max-width: 600px;

    font-size: 19px;

    line-height: 1.8;

    margin-top: 35px;
}

@media (max-width: 768px) {

    .founder-section {
        grid-template-columns: 1fr;

        padding: 100px 6%;
    }

    .founder-image {
        height: 500px;
    }

    .founder-image::after {
        background:
            linear-gradient(
                0deg,
                #080808 0%,
                transparent 50%
            );
    }

    .founder-content {
        padding-left: 0;

        margin-top: 50px;
    }

    .founder-content h2 {
        font-size: 60px;

        letter-spacing: -4px;
    }

    .founder-content h3 {
        font-size: 13px;

        line-height: 1.7;
    }

    .founder-text {
        font-size: 17px;
    }
}
.founder-section {
    width: 100%;
    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 120px 8%;

    background: #080808;

    overflow: hidden;
}

.founder-image {
    position: relative;

    height: 700px;

    overflow: hidden;
}

.founder-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 50%,
            #080808 100%
        ),
        linear-gradient(
            0deg,
            rgba(138, 43, 226, 0.25),
            transparent 50%
        );
}

.founder-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: grayscale(100%) contrast(1.1);

    transition: 0.8s;
}

.founder-section:hover .founder-image img {
    filter: grayscale(20%) contrast(1.05);

    transform: scale(1.04);
}

.founder-content {
    padding-left: 70px;

    text-align: left;
}

.founder-label {
    color: #a855f7;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 6px;

    margin-bottom: 25px;
}

.founder-content h2 {
    color: white;

    font-size: clamp(65px, 8vw, 130px);

    line-height: 0.85;

    letter-spacing: -6px;
}

.founder-content h3 {
    color: #8a2be2;

    font-size: 16px;

    letter-spacing: 3px;

    margin-top: 30px;
}

.founder-text {
    color: #aaaaaa;

    max-width: 600px;

    font-size: 19px;

    line-height: 1.8;

    margin-top: 35px;
}

@media (max-width: 768px) {

    .founder-section {
        grid-template-columns: 1fr;

        padding: 100px 6%;
    }

    .founder-image {
        height: 500px;
    }

    .founder-image::after {
        background:
            linear-gradient(
                0deg,
                #080808 0%,
                transparent 50%
            );
    }

    .founder-content {
        padding-left: 0;

        margin-top: 50px;
    }

    .founder-content h2 {
        font-size: 60px;

        letter-spacing: -4px;
    }

    .founder-content h3 {
        font-size: 13px;

        line-height: 1.7;
    }

    .founder-text {
        font-size: 17px;
    }
}
.founder-image {
    height: 700px !important;
    overflow: hidden !important;
}

.founder-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}
.team-section {
    width: 100%;
    padding: 120px 8%;
    background: #080808;
    text-align: center;
}

.team-label {
    color: #a855f7;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.team-title {
    color: #ffffff;
    font-size: clamp(45px, 6vw, 90px);
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 70px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}
.team-card {
    position: relative;
    overflow: hidden;
    background: #111111;
}

.team-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.team-card {
    position: relative;
    overflow: hidden;
    background: #111111;
    border-radius: 18px;
}

.team-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    padding: 100px 30px 35px;
    text-align: left;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.75) 45%,
        rgba(0, 0, 0, 0) 100%
    );
}

.team-info h3 {
    color: #ffffff;
    font-size: 38px;
    margin: 0;
    letter-spacing: -1px;
}

.team-info p {
    color: #a855f7;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-top: 10px;
}

@media (max-width: 768px) {

    .team-section {
        padding: 90px 6%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

   .team-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

    .team-title {
        letter-spacing: -2px;
        margin-bottom: 50px;
    }

    .team-info h3 {
        font-size: 32px;
    }
}
/* BOOKING MODAL */

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(15px);

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-box {
    position: relative;

    width: 100%;
    max-width: 600px;

    padding: 60px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(138, 43, 226, 0.3),
            transparent 40%
        ),
        #0a0a0a;

    border: 1px solid rgba(168, 85, 247, 0.35);

    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7);

    transform: translateY(40px) scale(0.95);

    transition: 0.4s ease;
}

.booking-modal.active .booking-box {
    transform: translateY(0) scale(1);
}

.booking-close {
    position: absolute;
    top: 20px;
    right: 25px;

    margin: 0;
    padding: 0;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    font-size: 28px;

    cursor: pointer;
}

.booking-close:hover {
    background: #8a2be2;
    transform: rotate(90deg);
}

.booking-label {
    margin: 0 0 20px;

    color: #a855f7;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 5px;
}

.booking-box h2 {
    margin: 0 0 40px;

    color: #ffffff;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 0.9;
    letter-spacing: -4px;
}

.booking-box h2 span {
    color: #8a2be2;
}

#bookingForm {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

#bookingForm input,
#bookingForm select {
    width: 100%;

    padding: 20px;

    background: #111111;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;

    outline: none;

    font-size: 13px;
    font-family: Arial, sans-serif;

    letter-spacing: 2px;

    transition: 0.3s;
}

#bookingForm input:focus,
#bookingForm select:focus {
    border-color: #8a2be2;

    box-shadow:
        0 0 0 3px rgba(138, 43, 226, 0.15);
}

#bookingForm select option {
    background: #111111;
    color: #ffffff;
}

.booking-submit {
    width: 100%;

    margin-top: 10px;
    padding: 22px;

    background: #8a2be2;
    color: #ffffff;

    border: none;
    border-radius: 0;

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 3px;

    cursor: pointer;

    transition: 0.4s;
}

.booking-submit:hover {
    background: #ffffff;
    color: #111111;

    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(138, 43, 226, 0.35);
}

@media (max-width: 768px) {

    .booking-modal {
        padding: 15px;
    }

    .booking-box {
        padding: 55px 25px 30px;

        max-height: 90vh;

        overflow-y: auto;
    }

    .booking-box h2 {
        font-size: 45px;

        letter-spacing: -3px;

        margin-bottom: 30px;
    }

    #bookingForm input,
    #bookingForm select {
        padding: 17px;

        font-size: 12px;
    }
}
/* HERO CREATIVE DIRECTOR */

.hero-director {
    position: absolute;
    right: 7%;
    bottom: 0;

    width: 42%;
    height: 88%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}

.hero-director img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center bottom;

    display: block;

    filter: drop-shadow(
        0 25px 45px rgba(108, 20, 190, 0.22)
    );
}

.hero-director-info {
    position: absolute;
    right: 0;
    bottom: 10%;

    padding: 18px 24px;

    background: rgba(255, 255, 255, 0.88);

    border-left: 4px solid #7416b8;

    backdrop-filter: blur(12px);
}

.hero-director-info span {
    display: block;

    color: #7416b8;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
}

.hero-director-info p {
    margin: 7px 0 0;

    color: #111111;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

@media (max-width: 768px) {

    .hero-director {
        right: -8%;
        bottom: 0;

        width: 65%;
        height: 58%;

        opacity: 0.28;

        pointer-events: none;
    }

    .hero-director-info {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }
}
/* HERO DIRECTOR FINAL POSITION */

.hero-director {
    right: 0;
}

.hero-director-info {
    right: auto;
    left: 7%;
    bottom: 7%;

    padding: 0;

    background: transparent;
    border-left: none;
    backdrop-filter: none;
}

.hero-director-info span {
    color: #a855f7;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;
}

.hero-director-info p {
    margin: 7px 0 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 2px;
}
/* FIX HERO DIRECTOR TEXT INSIDE PHOTO */

.hero-director-info {
    left: 8% !important;
    right: auto !important;
    bottom: 8% !important;
    z-index: 10;
    width: auto;
}

.hero-director-info span,
.hero-director-info p {
    position: relative;
    z-index: 11;
}
/* MOVE DIRECTOR TEXT INTO PHOTO */

.hero-director-info {
    left: auto !important;
    right: 38% !important;
    bottom: 7% !important;
}
/* FINAL DIRECTOR TEXT FIX */

.hero-director {
    position: absolute;
}

.hero-director-info {
    position: absolute !important;
    left: 18% !important;
    right: auto !important;
    bottom: 6% !important;
    z-index: 20 !important;

    transform: none !important;
    margin: 0 !important;
}

.hero-director-info span {
    display: block;
    color: #a855f7;
}

.hero-director-info p {
    display: block;
    color: #ffffff;
}
/* HERO DIRECTOR TEXT SIZE */

.hero-director-info span {
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 4px !important;
}

.hero-director-info p {
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
}
/* FIX CREATIVE MINDS 6 MEMBER GRID */

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.team-card {
    width: 100% !important;
    min-width: 0 !important;
}

.team-image {
    width: 100% !important;
    height: 520px !important;
    overflow: hidden !important;
}

.team-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}
/* ===== CREATIVE MINDS CAROUSEL ===== */

/* ===========================
   TEAM SECTION
=========================== */

.team-section{
    padding:100px 0;
    background:#000;
    overflow:hidden;
}

.team-label{
    color:#8f5cff;
    text-align:center;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:15px;
    font-weight:600;
}

.team-title{
    text-align:center;
    color:#fff;
    font-size:48px;
    margin-bottom:20px;
}

.team-title span{
    color:#8f5cff;
}

.team-description{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
    color:#bbb;
    line-height:1.8;
}

.team-grid{
    position:relative;
    max-width:1200px;
    margin:auto;
}



    .team-section {
        padding: 100px 5% 75px;
    }

    .team-title {
        letter-spacing: -3px;
    }

    .team-description {
        margin-bottom: 50px;
    }

    .team-card{
    width:100%;
    background:#111;
    border-radius:20px;
    overflow:hidden;
}

   .team-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    max-width:1200px;
    margin:50px auto 0;
}

    .team-arrow {
        display: none;
    }

    .team-info h3 {
        font-size: 31px;
    }
}
/* ===== ABOUT SECTION CAMERA + DRONE VISUALS ===== */

.about-content {
    position: relative;
}

.about-visuals {
    position: absolute;
    top: 50%;
    right: 4%;
    width: 42%;
    height: 80%;
    transform: translateY(-50%);
    pointer-events: none;
}

.about-gimbal {
    position: absolute;
    width: 430px;
    max-width: 78%;
    right: 3%;
    bottom: -8%;
    object-fit: contain;
    transform: scaleX(-1);
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.75));
    animation: gimbalFloat 4s ease-in-out infinite;
}

.about-drone {
    position: absolute;
    width: 270px;
    max-width: 48%;
    right: 42%;
    top: -5%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(147, 51, 234, 0.28));
    animation: droneFly 3.2s ease-in-out infinite;
}

@keyframes gimbalFloat {
    0%, 100% {
        transform: scaleX(-1) translateY(0);
    }

    50% {
        transform: scaleX(-1) translateY(-12px);
    }
}

@keyframes droneFly {
    0%, 100% {
        transform: translate(0, 0) rotate(-2deg);
    }

    25% {
        transform: translate(10px, -12px) rotate(1deg);
    }

    50% {
        transform: translate(-5px, -20px) rotate(-1deg);
    }

    75% {
        transform: translate(-12px, -8px) rotate(2deg);
    }
}

@media (max-width: 900px) {
    .about-visuals {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 430px;
        transform: none;
        margin-top: 40px;
    }

    .about-gimbal {
        width: 330px;
        right: 0;
        bottom: 0;
    }

    .about-drone {
        width: 190px;
        right: 55%;
        top: 5%;
    }
}
.requirement-card span,
#bookingStep2 .booking-label {
    color: #ffffff !important;
}
#bookingStep2 .requirement-card,
#bookingStep2 .requirement-card span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}
#bookingStep2 .requirement-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin: 20px 0 24px !important;
}

#bookingStep2 .requirement-card {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(147, 51, 234, 0.45) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

#bookingStep2 .requirement-card input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 18px !important;
    accent-color: #9333ea;
}

#bookingStep2 .requirement-card span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    line-height: 1.3 !important;
}
.booking-step {
    display: none !important;
}

.booking-step.active {
    display: block !important;
}
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 6%;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5%;
    }
}
.team-track{
    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.team-track::-webkit-scrollbar{
    display:none;
}

.team-track .team-card{
    flex:0 0 calc((100% - 60px) / 3);
}
.team-grid{
    position:relative;
}

.team-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#6f2cff;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
}

.team-prev{
    left:-25px;
}

.team-next{
    right:-25px;
}
.team-grid{
    position:relative;
    display:block;
    max-width:1400px;
    margin:auto;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1200px;
    margin:40px auto;
}

.team-track{
    display:contents;
}

.team-card{
    width:100%;
    max-width:350px;
    margin:auto;
}

.team-arrow,
.team-dots{
    display:none;
}

@media (max-width:992px){
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .team-grid{
        grid-template-columns:1fr;
    }
}
/* ===========================
   TEAM RESPONSIVE
=========================== */

@media (max-width:1200px){

    .team-grid{
        max-width:95%;
    }

    .team-prev{
        left:-25px;
    }

    .team-next{
        right:-25px;
    }

}

@media (max-width:992px){

    .team-card{
        flex:0 0 calc(50% - 15px);
    }

    .team-image{
        height:380px;
    }

}

@media (max-width:768px){

    .team-card{
        flex:0 0 100%;
    }

    .team-image{
        height:420px;
    }

    .team-arrow{
        display:none;
    }

    .team-title{
        font-size:38px;
    }

    .team-description{
        padding:0 20px;
        font-size:15px;
    }

}
@media(max-width:992px){

.team-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.team-grid{
grid-template-columns:1fr;
}

}

}

.about-image{
    position:relative;
    width:100%;
    min-height:550px;
}

.about-drone{
    position:absolute;
    width:220px;
    top:20px;
    left:40px;
    animation:droneFloat 4s ease-in-out infinite;
}

.about-gimbal{
    position:absolute;
    width:420px;
    right:0;
    top:140px;
    animation:gimbalFloat 5s ease-in-out infinite;
}

@keyframes droneFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0px);
}

}

@keyframes gimbalFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-10px);
}

100%{
transform:translateY(0px);
}

}
.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    width:100%;
    max-width:520px;
    animation:floatGear 5s ease-in-out infinite;
}

@keyframes floatGear{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}
/* ===========================
   PORTFOLIO PAGE
=========================== */

.portfolio-hero{
    padding:120px 10%;
    text-align:center;
    background:linear-gradient(180deg,#050505,#111);
}

.portfolio-hero h5{
    color:#9b5cff;
    letter-spacing:3px;
    font-size:15px;
    margin-bottom:15px;
}

.portfolio-hero h1{
    font-size:60px;
    color:#fff;
    margin-bottom:20px;
}

.portfolio-hero p{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
    line-height:1.8;
    font-size:18px;
}

.portfolio-categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    padding:80px 10%;
    background:#0b0b0b;
}

.portfolio-card{
    background:#141414;
    border:1px solid rgba(155,92,255,.25);
    border-radius:20px;
    padding:45px 30px;
    transition:.35s;
    cursor:pointer;
}

.portfolio-card:hover{
    transform:translateY(-10px);
    border-color:#9b5cff;
    box-shadow:0 15px 40px rgba(155,92,255,.25);
}

.portfolio-card h2{
    color:#fff;
    margin-bottom:15px;
    font-size:28px;
}

.portfolio-card p{
    color:#bdbdbd;
    line-height:1.7;
}
/* ===== PORTFOLIO FILTER ===== */

.portfolio-categories{
    display:grid;
    grid-template-columns:1.2fr 0.8fr 1fr;
    gap:50px;
    align-items:start;
    padding:80px 10%;
    background:#0b0b0b;
}

.filter-btn{
    background:transparent;
    border:1px solid #8b5cf6;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
    background:#8b5cf6;
    color:#fff;
    box-shadow:0 10px 25px rgba(139,92,246,.35);
}

.portfolio-gallery{
    padding:0 10% 100px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}
.service-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

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