:root {
    --clr-white: #ffffff;
    --clr-black: #050505;
    --clr-grey: #6e676f;
    --clr-grey-1: #ababab;
    --clr-grey-2: #ece5e5;
    --clr-grey-3: #f6f0f6;
    --clr-yellow: #fbaa16;
    --clr-red: #c00000;
    --clr-dark-red: #8f0000;
}

html,
body {
    
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

body {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 115px;
    letter-spacing: 0.02em;
    margin: 0;
}

h2 {
    font-family: "Rubik", sans-serif;
    font-size: 62px;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: 0;
    margin: 0;
}

h3 {
    font-family: "Rubik", sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

h4 {
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin: 0;
}

h5 {
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
}
.h5 {
    font-family: "Rubik", sans-serif;
    font-size: 32px;
    font-weight: 400 !important;
    line-height: 42px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 0;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: 0;
    margin: 0;
}

button {
    font-family: "Rubik", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}
a {
    font-family: "Rubik", sans-serif;
}
.subheading {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.p-variant-2 {
    font-size: 16px;
    line-height: 28px;
}
.btn-variant-2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.005em;
}

/* Color Utilities */
.txt-white {
    color: var(--clr-white);
}
.txt-black {
    color: var(--clr-black);
}
.txt-grey {
    color: var(--clr-grey);
}
.txt-grey-1 {
    color: var(--clr-grey-1);
}
.txt-grey-2 {
    color: var(--clr-grey-2);
}
.txt-grey-3 {
    color: var(--clr-grey-3);
}
.txt-yellow {
    color: var(--clr-yellow);
}
.txt-red {
    color: var(--clr-red);
}
.txt-dark-red {
    color: var(--clr-dark-red);
}

.bg-white {
    background-color: var(--clr-white);
}
.bg-black {
    background-color: var(--clr-black);
}
.bg-grey {
    background-color: var(--clr-grey);
}
.bg-grey-1 {
    background-color: var(--clr-grey-1);
}
.bg-grey-2 {
    background-color: var(--clr-grey-2);
}
.bg-grey-3 {
    background-color: var(--clr-grey-3);
}
.bg-yellow {
    background-color: var(--clr-yellow);
}
.bg-red {
    background-color: var(--clr-red);
}
.bg-dark-red {
    background-color: var(--clr-dark-red);
}

.btn-book-now {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background-color: var(--clr-red);
    color: #ffffff !important;
    padding: 10px 26px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s ease;
    border: 1px solid var(--clr-red);
}

.btn-book-now:hover {
    background-color: transparent;
    border: 1px solid #fff;
}

.outline-hover:hover {
    background-color: #fff;
    border: 1px solid var(--clr-red);
    color: var(--clr-red) !important;
}
.sticky-button-wrapper {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 9999;
}
.sticky-button-wrapper .btn-book-now {
    padding: 6px 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* animation */
/* ==========================================================================
   PREMIUM SMOOTH SCROLL ANIMATIONS SYSTEM
   ========================================================================== */

/* 1. Base Setup for Animation Items */
.scroll-animate {
    opacity: 0;
    will-change: transform, opacity;
    /* Ultra smooth acceleration curve ka use */
    transition:
        transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Initial States (Kahan se animation shuru hoga) */
.slide-from-left {
    transform: translate3d(-60px, 0, 0);
}

.slide-from-right {
    transform: translate3d(60px, 0, 0);
}

.slide-from-bottom {
    transform: translate3d(0, 50px, 0);
}

.slide-from-top {
    transform: translate3d(0, -50px, 0);
}

/* 3. Active State (Jab scroll hoke screen par aayega) */
.scroll-animate.animate-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}

/* 4. Optional: Agar aapko elements me thoda delayed sequence chahiye */
.scroll-animate-delay-1 {
    transition-delay: 0.15s;
}
.scroll-animate-delay-2 {
    transition-delay: 0.3s;
}
/* animation end */

.hero-section {
    width: 100vw !important;
    max-width: 100% !important;
    height: 100vh !important;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
}

.hero-section .container-fluid,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.main-header {
    position: fixed; /* Default state fix high viewport tracking sathi */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; /* Controls banner z-index layer stack overlay */
    background-color: transparent; /* Initially transparent background screen overlay */
    padding: 25px 50px; /* Standard open layout desktop padding spacing rules */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Flawless background blend color switch */
}

.logo-box img {
    max-height: 60px;
}

.contact-info-wrapper .contact-link {
    color: var(--clr-white);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin-left: 30px;
    transition: color 0.3s;
}
.contact-info-wrapper .contact-link:hover {
    color: var(--clr-yellow);
}
.contact-link .bi-telephone,
.contact-link .bi-envelope {
    color: #fff;
}

.menu-toggle-btn {
    background: none;
    border: none;
    width: 35px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.menu-toggle-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--clr-white);
    transition: 0.3s ease;
}

.hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 1;
}

.hero-media-wrapper img,
.hero-media-wrapper video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center;
}

.carousel-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.45);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.animated-accent-line {
    width: 350px;
    height: 10px;
    background-color: var(--clr-red);
    margin: 0px 0 30px 0;
    position: relative;
    z-index: -1;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: transparent;
    border: 2px solid var(--clr-white);
    opacity: 0.5;
}
.carousel-indicators .active {
    background-color: var(--clr-white);
    opacity: 1;
}
.view-sticky{
    display: none;
}

.view-works-sticky {
position: absolute;
    bottom: 0;
    right: 20px;
    background-color: var(--clr-red);
    padding: 10px 16px;
    z-index: 10;
    margin-bottom: 20px;
}
.view-works-sticky .works-link {
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-white);
    text-decoration: none;
    letter-spacing: 2px;
}

.animate-item {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
}

.text-slide-left {
    transform: translate3d(-100px, 0, 0);
}
.line-grow {
    transform: scaleX(0);
    transform-origin: left center;
    transition-duration: 1s;
}
.fade-in-up {
    transform: translate3d(0, 40px, 0);
}

.carousel-item.active .animate-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.carousel-item.active .line-grow {
    transform: scaleX(1);
}

.carousel-item .animate-item:nth-child(1) {
    transition-delay: 0.2s;
} /* Subheading */
.carousel-item .animate-item:nth-child(2) {
    transition-delay: 0.5s;
} /* H1 Title */
.carousel-item .animate-item:nth-child(3) {
    transition-delay: 0.8s;
} /* Red Line */
.carousel-item .animate-item:nth-child(4) {
    transition-delay: 1.1s;
} /* Paragraph */
.carousel-item .animate-item:nth-child(5) {
    transition-delay: 1.4s;
} /* Button Wrapper */

.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.4s;
}

.fullscreen-menu-overlay.open-menu {
    opacity: 1;
    visibility: visible;
}
.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 50px;
    cursor: pointer;
}

.menu-links-container ul li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.4s,
        transform 0.4s;
}
.fullscreen-menu-overlay.open-menu .menu-links-container ul li {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu-overlay.open-menu li:nth-child(1) {
    transition-delay: 0.1s;
}
.fullscreen-menu-overlay.open-menu li:nth-child(2) {
    transition-delay: 0.2s;
}
.fullscreen-menu-overlay.open-menu li:nth-child(3) {
    transition-delay: 0.3s;
}
.fullscreen-menu-overlay.open-menu li:nth-child(4) {
    transition-delay: 0.4s;
}
.fullscreen-menu-overlay.open-menu li:nth-child(5) {
    transition-delay: 0.5s;
}
.fullscreen-menu-overlay.open-menu li:nth-child(6) {
    transition-delay: 0.6s;
}
.fullscreen-menu-overlay.open-menu li:nth-child(7) {
    transition-delay: 0.7s;
}

.menu-links-container ul li a {
    color: var(--clr-white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

/* Hover par text ka color change karne ke liye */
.menu-links-container ul li a:hover {
    color: var(--clr-red);
}

/* Border line banane ke liye pseudo-element */
.menu-links-container ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--clr-red);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

/* Hover karne par line open hogi */
.menu-links-container ul li a:hover::after {
    transform: scaleX(1); /* Line poori screen par expand ho jayegi */
    transform-origin: bottom left; /* Line left se right open hogi */
}
.hero-main-title {
    text-transform: uppercase;
}

.hero-text-block {
    padding-top: 80px;
}

.header-scrolled-active {
    background-color: #050505 !important; /* Rich solid pitch-black layout backdrop */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Premium subtle division drop shadow */
    padding-top: 15px !important; /* Slim compact responsive layout shrink shift */
    padding-bottom: 15px !important;
}

.border-line li {
    border-bottom: 1px solid #e5e5e51b;
    padding-bottom: 20px;
    width: 571px;
}

/* Mobile responsive navigation padding adjustment lock boundaries */

@media (max-width: 1024px) {
    .main-header {
        padding: 15px 20px;
    }
    .hero-media-wrapper img {
        object-position: 72% center !important;
    }
}

@media (max-width: 991.98px) {
    .main-header {
        padding: 20px;
    }
    h1 {
        font-size: 70px;
        line-height: 80px;
    }
    .animated-accent-line {
        width: 180px;
        margin: 15px 0 20px 0;
    }
    .close-menu-btn {
        right: 20px;
        top: 20px;
    }
    .view-works-sticky {
        display: none;
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    .h5 {

    font-size: 24px;

    }
    .btn-book-now {

    font-size: 14px;
    }
    .view-sticky{
        display: block;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 46px;
        line-height: 56px;
    }
    p {
        font-size: 15px;
        line-height: 24px;
    }
}

/* sec 2 */

.experience-section {
    background-color: #f6f6f6;
    padding: 80px 0;
    width: 100%;
}

.experience-text-block h3 {
    font-size: 48px;
    line-height: 54px;
    letter-spacing: 0.01em;
}

.studio-video-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background-color: #444444;
    aspect-ratio: 16 / 9;
}

.studio-main-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-play-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    cursor: pointer;
    transition: background 0.4s ease;
    z-index: 5;
}

.video-overlay-play-btn:hover {
    background: rgba(0, 0, 0, 0.45);
}

.play-icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 36px;
    padding-left: 6px;
    transition:
        transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s;
}

.video-overlay-play-btn:hover .play-icon-circle {
    transform: scale(1.1);
    background-color: var(--clr-red);
    border-color: var(--clr-red);
}

@media (max-width: 991.98px) {
    .experience-section {
        padding: 60px 0;
    }
    .experience-text-block h3 {
        font-size: 38px;
        line-height: 46px;
    }
    .studio-video-wrapper {
        border-radius: 16px;
    }
    .play-icon-circle {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}
/* sec 2 end */

/* sec 3 */

.services-section-wrapper {
    background-color: #ffffff;
    width: 100%;
    position: relative;
}

.vertical-services-badge {
    position: absolute;
    top: 135px;
    left: 87px;
    transform: rotate(-90deg);
    transform-origin: left top;
    z-index: 9999999999;
}

.vertical-services-badge .badge-text-string {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-red);
}

.vertical-services-badge .arrow-indicator {
    color: var(--clr-red);
    font-size: 18px;
    font-weight: bold;
}

.sections-content-side {
    padding: 0px 80px 20px 80px !important;
}

.services-heading-stack-block {
    position: relative;
    display: flex;
    flex-direction: column;
}

.large-outline-backdrop {
    font-family: "Poppins", sans-serif;
    font-size: 90px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 90px;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px rgb(0 0 0 / 17%);
    user-select: none;
    margin-bottom: -25px;
}

.services-heading-stack-block .section-main-title {
    font-size: 46px;
    line-height: 52px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
}

.letter-spacing-wide {
    letter-spacing: 4px;
    font-size: 13px !important;
    margin-top: 5px;
}

/* camera stroke wireframe vector icon frame design implementation */
.camera-icon-wrapper-box {
    font-size: 42px;
    color: #050505;
    line-height: 1;
    padding-top: 4px;
}

.text-justify {
    text-align: justify;
}

/* contact action link layout customization structure system metrics */
.services-contact-action-link {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-black);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.services-contact-action-link:hover {
    color: var(--clr-red);
}

.services-contact-action-link .arrow-entity {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s;
}

.services-contact-action-link:hover .arrow-entity {
    transform: translateX(
        -6px
    ); /* smooth backwards pull tracking for structural reverse arrows */
}

/* right column media canvas elements container setup logic */
.services-image-frame-holder {
    width: 100%;
    height: 100%;
}

.fluid-service-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ==========================================================================
   13. PHOTOSHOOT SERVICES DEVICE MEDIA CONFIGURATION QUERIES
   ========================================================================== */
@media (max-width: 1400px) {
    .sections-content-side {
        padding: 0px 50px 0px 80px !important;
    }
}

@media (max-width: 1199.98px) {
    .sections-content-side {
        padding: 80px 40px !important;
    }
    .large-outline-backdrop {
        font-size: 80px;
        line-height: 75px;
        margin-bottom: -15px;
    }
    .services-heading-stack-block .section-main-title {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (max-width: 991.98px) {
    .services-image-frame-holder {
        min-height: 450px;
    }
    .grid-desc-row {
        flex-direction: column;
        gap: 15px !important;
    }
}

@media (max-width: 575.98px) {
    .large-outline-backdrop {
        font-size: 54px;
        line-height: 50px;
        margin-bottom: -10px;
    }
    .services-heading-stack-block .section-main-title {
        font-size: 28px;
        line-height: 34px;
    }
    .sections-content-side {
        padding: 60px 20px !important;
    }
}
/* sec 3end */

/* sec 4 */
/* ==========================================================================
   14. PRODUCTION SERVICES SECTION GRAPHICS (NEW CSS ONLY)
   ========================================================================== */
.production-section-wrapper {
    background-color: var(
        --clr-red
    ); /* rich solid red background profile from asset */
    width: 100%;
}

/* media layout sizing constraint rules for image side */
.production-image-frame-holder {
    width: 100%;
    height: 100%;
    /* min-height: 700px;  */
}

.fluid-production-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

/* gradient mask blending edge from dark photo wall to solid red block layout */
.production-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(192, 0, 0, 0) 0%,
        var(--clr-red) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* design tokens mapping padding rules for text container block */
.production-content-side {
    padding: 120px 140px 120px 80px !important;
}

/* large white outline back-drop layered text parameters layout module code */
.production-heading-stack-block {
    position: relative;
    display: flex;
    flex-direction: column;
}

.production-outline-backdrop {
    font-family: "Poppins", sans-serif;
    font-size: 100px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 90px;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.283);
    user-select: none;
    margin-bottom: -25px; /* overlap intersection pulls h2 upwards precisely */
}

.production-heading-stack-block .section-main-title {
    font-size: 46px;
    line-height: 52px;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
}

.opacity-90 {
    opacity: 0.9;
}

/* production reel icon frame design implementation */
.production-icon-wrapper-box {
    font-size: 42px;
    color: var(--clr-white);
    line-height: 1;
    padding-top: 4px;
}

/* white arrow action link interaction button styling configuration */
.production-contact-action-link {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-white);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: opacity 0.3s ease;
}

.production-contact-action-link:hover {
    opacity: 0.8;
    color: var(--clr-white);
}

.production-contact-action-link .arrow-entity {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s;
}

.production-contact-action-link:hover .arrow-entity {
    transform: translateX(
        -6px
    ); /* smooth backwards pull tracking for structural reverse arrows */
}

/* ==========================================================================
   15. PRODUCTION SERVICES DEVICE MEDIA CONFIGURATION QUERIES
   ========================================================================== */
@media (max-width: 1400px) {
    .production-content-side {
        padding: 20px 80px 100px 50px !important;
    }
}

@media (max-width: 1199.98px) {
    .production-content-side {
        padding: 80px 40px !important;
    }
    .production-outline-backdrop {
        font-size: 80px;
        line-height: 75px;
        margin-bottom: -15px;
    }
    .production-heading-stack-block .section-main-title {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (max-width: 991.98px) {
    .production-image-frame-holder {
        min-height: 450px;
    }
}

@media (max-width: 575.98px) {
    .production-outline-backdrop {
        font-size: 54px;
        line-height: 50px;
        margin-bottom: -10px;
    }
    .production-heading-stack-block .section-main-title {
        font-size: 28px;
        line-height: 34px;
    }
    .production-content-side {
        padding: 60px 20px !important;
    }
}
/* sec 4 end */

/* sec 5 */
/* ==========================================================================
   16. POST PRODUCTION SERVICES GRAPHICS (NEW CSS ONLY)
   ========================================================================== */
.post-production-section {
    background-color: #ffffff; /* clean white canvas profile background from asset */
    width: 100%;
}

/* design tokens mapping padding rules for text side container box */
.post-prod-content-side {
    padding: 0px 80px 120px 80px !important;
}

/* large outline dark back-drop layered text parameters layout module code */
.post-prod-heading-stack-block {
    position: relative;
    display: flex;
    flex-direction: column;
}

.post-prod-outline-backdrop {
    font-family: "Poppins", sans-serif;
    font-size: 104px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 90px;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.12); /* precise dark outline mask drawing engine vector */
    user-select: none;
    margin-bottom: -25px; /* overlap intersection pulls h2 upwards precisely */
}

.post-prod-heading-stack-block .section-main-title {
    font-size: 46px;
    line-height: 52px;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
}

/* clapperboard icon frame vector design implementation */
.post-prod-icon-wrapper-box {
    font-size: 42px;
    color: var(--clr-black);
    line-height: 1;
    padding-top: 4px;
}

/* dark arrow action link interaction button styling configuration */
.post-prod-contact-action-link {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-black);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.post-prod-contact-action-link:hover {
    color: var(--clr-red);
}

.post-prod-contact-action-link .arrow-entity {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s;
}

.post-prod-contact-action-link:hover .arrow-entity {
    transform: translateX(
        -6px
    ); /* smooth backwards pull tracking for structural reverse arrows */
}

/* right side media placement container setup logic */
.post-prod-image-frame-holder {
    width: 100%;
    height: 100%;
    min-height: 700px; /* limits element collapse tracking sizes on mid view scaling ratios */
}

.fluid-post-prod-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* ==========================================================================
   17. POST PRODUCTION SERVICES DEVICE MEDIA CONFIGURATION QUERIES
   ========================================================================== */
@media (max-width: 1400px) {
    .post-prod-content-side {
        padding: 100px 50px 100px 80px !important;
    }
}

@media (max-width: 1199.98px) {
    .post-prod-content-side {
        padding: 80px 40px !important;
    }
    .post-prod-outline-backdrop {
        font-size: 80px;
        line-height: 75px;
        margin-bottom: -15px;
    }
    .post-prod-heading-stack-block .section-main-title {
        font-size: 36px;
        line-height: 42px;
    }
}

@media (max-width: 991.98px) {
    .post-prod-image-frame-holder {
        min-height: 450px;
    }
}

@media (max-width: 575.98px) {
    .post-prod-outline-backdrop {
        font-size: 54px;
        line-height: 50px;
        margin-bottom: -10px;
    }
    .post-prod-heading-stack-block .section-main-title {
        font-size: 28px;
        line-height: 34px;
    }
    .post-prod-content-side {
        padding: 60px 20px !important;
    }
}
/* sec 5 end */

/* sec 6 */
.portfolio-works-section {
    background-color: #f7f7f7;
    width: 100%;
    height: 100vh;
    padding-top: 5vh;
    padding-bottom: 5vh;
    box-sizing: border-box;
    overflow: hidden;
}

.portfolio-works-section .container-fluid,
.portfolio-works-section .row {
    height: 100%;
}

.portfolio-content-sidebar {
    padding: 0 40px !important;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    height: 100%;
}

.portfolio-text-sticky-box {
    width: 100%;
}

.section-title-uppercase {
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-accent-red-line {
    width: 50px;
    height: 3px;
    background-color: var(--clr-red, #e60000);
}

.text-justify-portfolio {
    text-align: justify;
    font-size: 16px;
    line-height: 28px;
}

.portfolio-gallery-side {
    height: 100%;
    display: flex;
}

.portfolio-gallery-side .row {
    width: 100%;
    margin: 0;
}

.portfolio-img-card {
    height: 50vh;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.zoom-out-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: #050505;
}

.zoom-out-image-wrapper img.dynamic-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.portfolio-img-card:hover .zoom-out-image-wrapper img.dynamic-gallery-img {
    transform: scale(1.08);
}

.grid-shatter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.shatter-square {
    position: absolute;
    overflow: hidden;
    box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.2);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 1.2s ease, 
                filter 1.2s ease;
    will-change: transform, opacity, filter;
    transform: translate3d(0, 0, 0);
}

.shatter-active .shatter-square {
    opacity: 0;
    filter: blur(2px);
    transform: translate3d(0, 15px, 0) rotate(10deg);
}

@media (max-width: 991.98px) {
    .portfolio-works-section {
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        overflow: auto;
    }
    .portfolio-img-card {
        height: 300px;
    }
}
/* sec 6 end */

/* sec 7 */
/* ==========================================================================
   20. TEAM FEATURES SECTION GRAPHICS (NEW CSS ONLY)
   ========================================================================== */
.team-features-section {
    background-color: #ffffff; /* pure white profile canvas from screenshot design */
    width: 100%;
}

/* media layout sizing constraint rules for lens image column */
.lens-image-frame-holder {
    width: 100%;
    height: 100%;
    min-height: 624px; /* limits element collapse tracking sizes on mid view scaling ratios */
}

.fluid-lens-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

/* white gradient mask blending edge layout from camera to crisp typography side text */
.lens-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        #ffffff 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* padding layouts configuration metrics for right block container side panel */
.features-content-side {
    padding: 80px 60px 60px 20px !important;
}

/* core main feature typography title style parameters override */
.features-main-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    line-height: 44px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--clr-black);
}

/* solid crimson red background typography ribbon layout token execution rules */
.team-marketing-badge {
    background-color: var(--clr-red);
    padding: 8px 16px;
    display: inline-block;
    width: auto;
}

.team-marketing-badge .badge-text-string {
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-white);
    display: block;
}

/* custom features list container structure setup configurations */
.features-asterisk-list li {
    margin-bottom: 5px;
}

.asterisk-icon-red {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: var(--clr-red);
    display: inline-block;
    margin-top: 6px; /* aligns custom typographical character shapes vertically */
}

.feature-item-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-black);
}
.new-btn-leran-more:hover{
    background: #fff !important;
    color: var(--clr-red) !important;
    border: 1px solid  var(--clr-red) !important;;
}

/* ==========================================================================
   21. TEAM FEATURES SECTION DEVICE MEDIA CONFIGURATION QUERIES
   ========================================================================== */
@media (max-width: 1199.98px) {
    .features-content-side {
        padding: 80px 40px !important;
    }
    .features-main-title {
        font-size: 26px;
        line-height: 36px;
    }
}

@media (max-width: 991.98px) {
    .red {

    padding: 15px;
}
    .lens-image-frame-holder {
        min-height: 400px;
    }
    .features-content-side {
        padding: 50px 25px !important;
    }
}

@media (max-width: 575.98px) {
    .features-main-title {
        font-size: 20px;
        line-height: 28px;
    }
    .team-marketing-badge {
        display: block;
        text-align: center;
    }
    .feature-item-text {
        font-size: 13px;
    }
}
/* sec 7end */

/* sec 8 */
/* ==========================================================================
   22. FACILITIES GRID SECTION STYLING (NEW CSS ONLY)
   ========================================================================== */
.facilities-grid-section {
    background-color: var(
        --clr-grey-3
    ); /* smooth ultra light background layout container */
    width: 100%;
    padding: 60px 0;
}

/* center title font configuration setup metric */
.section-main-title-center {
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--clr-black);
}

/* solid red center header tracking badge strip ribbon rules */
.top-tier-marketing-badge {
    background-color: var(--clr-red);
    padding: 6px 24px;
    display: inline-block;
    width: auto;
}

.top-tier-marketing-badge .badge-text-string {
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-white);
    display: block;
}

/* facility structural cards content layout logic wrappers */
.facility-item-card-wrapper {
    background-color: transparent;
    width: 100%;
}

/* image crop box framing architecture constraints specs mapping */
.facility-media-box {
    width: 100%;
    aspect-ratio: 16 / 10; /* exact landscape shape matching screenshot card dimensions */
    overflow: hidden;
    background-color: #e2e2e2;
}

.facility-media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* subtle clean hover effect on images grid blocks */
.facility-item-card-wrapper:hover .facility-media-box img {
    transform: scale(1.05);
}

/* typography specifications configuration overrides inside card nodes */
.facility-card-title {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: var(--clr-black);
}

/* short horizontal accent bar line indicator rule underneath specific items */
.card-accent-red-line {
    width: 45px;
    height: 3px;
    background-color: var(--clr-red);
}

.text-justify-custom {
    text-align: justify;
    font-size: 15px;
    line-height: 26px;
}

/* ==========================================================================
   23. FACILITIES LAYOUT MODULE RESPONSIVE MEDIA QUERIES SYSTEM
   ========================================================================== */
@media (max-width: 991.98px) {
    .facilities-grid-section {
        padding: 60px 0;
    }
    .section-main-title-center {
        font-size: 26px;
    }
    .text-justify-custom {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 767.98px) {
    /* balances centered titles layout on small screen breakpoints grid devices */
    .facility-card-title,
    .card-accent-red-line {
        text-align: left;
    }
}
/* sec 8 end */

/* sec 9 */
/* ==========================================================================
   24. PRICING TABLES STRUCTURE SYSTEM (NEW CSS ONLY)
   ========================================================================== */
.pricing-table-section {
    background-color: #ffffff; /* matching solid white workspace background layout */
    width: 100%;
    padding: 20px 0;
}

/* row layout tracking rules to manage desktop vertical scale variations */
.pricing-cards-row {
    align-items: stretch;
}

/* core container box structures for individual plans */
.pricing-card-box {
    background-color: #f9f9f9; /* clean off-white canvas card bodies */
    border: 1px solid #eeeeee;
    transition:
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Standard cards subtle hover */
.standard-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ⚡ SPECIFIC POP-OUT HIGH-LIGHTED STRUCTURE SPECIFICATIONS FOR CENTER BOX */
.featured-plan-highlighted {
    background-color: #f4f4f4;
    border-color: #e5e5e5;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); /* rich luxury casting drop shadow */
    transform: scale(
        1.03
    ); /* slight desktop structural scaling lock to stand out */
    z-index: 5;
}

.featured-plan-highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}

/* headers coloring blocks variations code mapping rules */
.card-header-dark-block {
    background-color: #0c0c0c; /* rich dark block container header style */
    padding: 35px 20px;
    color: var(--clr-white);
}

.card-header-red-block {
    background-color: var(
        --clr-red
    ); /* rich brand highlight accent block layout header */
    padding: 40px 20px; /* extra top padding metrics block for center alignment focus */
    color: var(--clr-white);
}

/* typography inside header container blocks */
.plan-icon-wrapper {
    font-size: 32px;
    line-height: 1;
}

.plan-title {
    font-family: "Rubik", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 21px;
}

.plan-sub-text {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    color: var(--clr-black);
    display: block;
}

/* pricing digits core section alignment framework layout */
.price-value-text {
    font-family: "Rubik", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--clr-black);
    margin: 0;
    line-height: 1;
}

.currency-symbol {
    font-size: 24px;
    vertical-align: super;
    font-weight: 700;
    margin-right: 4px;
}

.billing-cycle {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* features list strip elements interior design nodes formatting layout */
.plan-features-list {
    margin: 0;
    padding: 0 60px;
    flex-grow: 1; /* pushes footer button flush to the bottom boundaries symmetrically */
}

.plan-features-list li {
    padding: 15px 0;
    border-bottom: 1px solid #ededed;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-grey);
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features-list li:last-child {
    border-bottom: none;
}

/* modern checkmark vector icon specs rule inside row line list */
.plan-features-list li i {
    color: var(--clr-grey);
    font-size: 16px;
    font-weight: bold;
}

.featured-plan-highlighted .plan-features-list li i {
    color: var(
        --clr-red
    ); /* highlights ticks red in the active center layout column package */
}

/* bottom action interact button specification parameters dimensions */
.btn-pricing-action {
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 24px;
    border: none;
    cursor: pointer;
    transition:
        background-color 0.3s,
        opacity 0.3s;
}

.btn-pricing-action:hover {
    opacity: 0.9;
}

/* ==========================================================================
   25. PRICING PACKAGES MODULE DEVICES MEDIA QUERIES RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991.98px) {
    .pricing-table-section {
        padding: 60px 0;
    }
    /* disables structural center scaling on stacked device screens to ensure linear layout flow symmetry */
    .featured-plan-highlighted {
        transform: scale(1) !important;
        margin: 15px 0;
    }
    .featured-plan-highlighted:hover {
        transform: translateY(-5px) !important;
    }
}
/* sec 9 end */

/* sec 10 form */
/* ==========================================================================
   26. BOOKING FORM SECTION STRUCTURES (NEW CSS ONLY)
   ========================================================================== */
.booking-form-section {
    background-color: var(--clr-white);
    /* brand core rich solid crimson red background */
    width: 100%;
    padding: 60px 0;
}
.red {
    background-color: var(--clr-red);
}
/* left text container coordinates components dimensions */
.booking-section-title {
    font-size: 38px;
    line-height: 44px;
    letter-spacing: 0.5px;
}

.text-justify-booking {
    text-align: justify;
    font-size: 15px;
    line-height: 26px;
}

.booking-info-row {
    color: var(--clr-white);
}

.booking-vector-icon {
    font-size: 18px;
    line-height: 1;
}

.booking-meta-string {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-white) !important;
    transition: opacity 0.3s;
}

.booking-meta-string:hover {
    opacity: 0.8;
}

/* ⚡ INPUT FIELDS INPUT FORMS ARCHITECTURE GRAPHICS SETUP PROPERTIES RULES */
.studio-custom-input {
    background-color: #f7f7f7 !important; /* precise off-white input panels background tracking */
    border: none !important;
    border-radius: 0 !important; /* completely removes rounded layout bounding shapes */
    padding: 16px 20px !important;
    font-family: "Poppins", sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--clr-black) !important;
    box-shadow: none !important;
    transition: background-color 0.3s;
}

.studio-custom-input:focus {
    background-color: #ffffff !important; /* subtle feedback illumination shine highlight tracking */
}

/* force forms placeholder text fonts structure to display clean caps standard rules */
.studio-custom-input::placeholder {
    color: #0c0c0c90 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1;
}

/* textarea resizing constraint parameters logic wrapper */
.studio-custom-textarea {
    resize: none;
    min-height: 130px;
}

/* solid black submit action click handler component footprint dimensions */
.btn-studio-form-submit {
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #050505; /* pure deep pitch black standard action code */
    color: var(--clr-white);
    padding: 6px 22px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-studio-form-submit:hover {
    background-color: var(--clr-white);
    color: var(--clr-red);
    transition: background-color 0.2s ease;
}

/* ==========================================================================
   27. BOOKING FORM MODULE RESPONSIVE DEVICES MEDIA CONFIGURATIONS
   ========================================================================== */
@media (max-width: 991.98px) {
    .booking-form-section {
        padding: 60px 0;
    }
    .booking-section-title {
        font-size: 30px;
        line-height: 36px;
    }
    .text-justify-booking {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 35px !important;
    }
}
/* sec 10 form end */

/* sec foooter */

.map-contact-section {
    background-color: #fcfcfc;
    width: 100%;
}

.google-map-iframe-wrapper {
    width: 100%;
    height: 550px;
    display: block;
}

.google-map-iframe-wrapper iframe {
    filter: grayscale(0.15) contrast(1.02);
}

.map-info-content-side {
    padding: 80px 40px 80px 40px !important;
}

.map-section-title {
    font-size: 28px;
    letter-spacing: 1px;
}

.contact-info-row-strip {
    border-bottom: 2px solid #f0edf0;
    width: 100%;
}

.map-meta-link {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-black) !important;
    transition: color 0.3s;
}

.map-meta-link:hover {
    color: var(--clr-red) !important;
}

.map-panel-vector-icon {
    font-size: 18px;
}

.btn-download-brochure {
    font-family: "Rubik", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: var(--clr-red);
    color: var(--clr-white) !important;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-download-brochure:hover {
    background-color: #a00000;
}

.arrow-entity-reverse {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s;
}

.btn-download-brochure:hover .arrow-entity-reverse {
    transform: translateX(-6px);
}

.studio-main-footer {
    background-color: #000000 !important;
    border-top: 1px solid #111111;
}

.footer-copyright-text {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-social-links-holder a {
    color: #6a6a6a;
    font-size: 15px;
    transition:
        color 0.3s ease,
        transform 0.3s;
    display: inline-block;
}

.footer-social-links-holder a:hover {
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   30. MAP & FOOTER CORE SYSTEM DEVICES RESPONSIVE SPEC MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1199.98px) {
    .map-info-content-side {
        padding: 60px 40px !important;
    }
}

@media (max-width: 991.98px) {
    .google-map-iframe-wrapper {
        height: 380px;
    }
    .map-info-content-side {
        padding: 60px 25px !important;
    }
}

@media (max-width: 575.98px) {
    .map-section-title {
        font-size: 24px;
    }
    .map-meta-link {
        font-size: 14px;
    }
    .btn-download-brochure {
        width: 100%;
        justify-content: center;
    }
}
/* sec foooter */
