* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('cursor/02.png') 16 16, auto;
    user-select: none;
}

/* Custom cursor for clickable elements */
a, button, 
.edit-button, 
.slider-btn,
.gallery-btn,
#nav-part2 h4,
.social-link,
.footer-links a {
    cursor: url('cursor/01.png') 16 16, pointer !important;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #eb7399;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor-follower {
    width: 8px;
    height: 8px;
    background: #eb7399;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Add hover effect for clickable elements */
a:hover ~ .custom-cursor,
button:hover ~ .custom-cursor {
    transform: scale(1.5);
}

/* Font Face Declarations */
@font-face {
    font-family: 'Helvetica';
    src: local('Helvetica'), local('Helvetica Neue'), local('Arial');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: local('Helvetica Bold'), local('Helvetica Neue Bold'), local('Arial Bold');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Neutrif Pro';
    src: url('NeutrifPro-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

body {
    background-color: #1a0514;
}

.navbar {
    /* background-color: lightcoral; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8vw 2vw;
    position: relative;
    z-index: 100;
}

#nav-part1 img{
    width: 110px;
    height: 110px;
}

#nav-part2 {
    display: flex;
    align-items: center;
    gap: 1vw;
}

#nav-part2 h4 {
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 500;
    color: #000000bb;
    transition: all ease 0.4s;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

#nav-part2 h4::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(180deg, #eb7399, #ae2f58);
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

#nav-part2 h4 a {
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 9;
    font-family: 'Inter', sans-serif;
}

#nav-part2 h4:hover a {
    color: #fff;
}

.navbar h3 {
    display: none;
}

#hero-section {
    background-image: url(./img/doodles.png);
    width: 100%;
    height: 36vw;
}

#hero-section h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 8.5vw;
    font-family: Neutrif Pro;
    /* background-color: violet; */
    margin-top: 3vw;
    line-height: 8.5vw;
}

#hero-section h3 {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 1.3vw;
    margin-top: 2.2vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#hero-section a {
    padding: 1.5vw 2.5vw;
    font-size: 1.3vw;
    background-image: linear-gradient(to bottom right,#eb7399, #ae2f58);
    color: #fff;
    border-radius: 0.5vw;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family:  Helvetica;
}

#hero-section a:hover {
    background-image: linear-gradient(to right, #ae2f58, #eb7399);
}

#hero-button {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3vw;
}

#about {
    width: 100%;
    height: 38vw;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 0vw 4vw;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

#about-left {
    width: 70%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 2vw 2vw 4vw 2vw;
    z-index: 2;
    backdrop-filter: blur(10px);
    /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
}

#about-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#about-left img {
    position: absolute;
    width: calc(100% - 3vw);
    height: calc(100% - 3vw);
    object-fit: cover;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.5vw;
    top: 2vw;
    left: 2vw;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

#about-left img:nth-child(1) {
    opacity: 1;
    z-index: 4;
    animation: float 6s ease-in-out infinite;
}

#about-left img:nth-child(2) {
    opacity: 0;
    z-index: 3;
    animation: float 6s ease-in-out infinite 1.5s;
}

#about-left img:nth-child(3) {
    opacity: 0;
    z-index: 2;
    animation: float 6s ease-in-out infinite 3s;
}

#about-left img:nth-child(4) {
    opacity: 0;
    z-index: 1;
    animation: float 6s ease-in-out infinite 4.5s;
}

/* Animation classes for stack effect */
#about-left img.fade-in {
    opacity: 1;
    z-index: 10;
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

#about-left img.fade-out {
    opacity: 0;
    z-index: 1;
    transform: scale(0.98);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

#about-right {
    width: 30%;
    height: 100%;
    backdrop-filter: blur(15px);
    /* border-left: 1px solid rgba(255, 255, 255, 0.2); */
    /* background-color: pink; */
    padding: 2vw 1vw;
}

#about-right-top {
    display: flex;
    width: auto;
    height: 16vw;
    background-color: rgba(255, 255, 255, 0.112);
    backdrop-filter: blur(10px);
    border-radius: 1vw;
    border-top: 1px solid rgba(255, 255, 255, 0.317);
    border-bottom: 1px solid rgba(255, 255, 255, 0.317);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding: 2vw;
}

#about-right-top {
    display: flex;
    flex-direction: column;
}

#about-right-top img {
    width: 10vw;
    height: 10vw;
    object-fit: contain;
    top: 0;
    position: relative;
}

#about-right-top p {
    color: #b1afaf;
    position: absolute;
    top: 25%;
    left: 48%;
    font-size: 0.8vw;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
}

#about-right-top h3 {
    font-size: 1.6vw;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 1vw;
    color: #fff;
}

#about-right-top h2 {
    font-size: 4vw;
    font-family: Arial, Helvetica, sans-serif;
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
}

#about-right-middle p {
    color: #868686;
    font-size: 1.5vw;
    margin-top: 1vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#reating {
    display: flex;
    align-items: center;
    /* gap: 0.5vw; */
    margin-top: 2.3vw;
    /* background-color: pink; */
    width: fit-content;
}

#reating img {
    width: 2.5vw;
}

#about-right-bottom {
    margin-top: 2vw;
    padding: 2vw;
    height: 10vw;
    background-color: pink;
    background-color: rgba(255, 255, 255, 0.112);
    backdrop-filter: blur(10px);
    border-radius: 1vw;
    border-top: 1px solid rgba(255, 255, 255, 0.317);
    border-bottom: 1px solid rgba(255, 255, 255, 0.317);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
}

#bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.317);
    /* background-color: pink; */
}

#bottom-left h3 {
    color: #fff;
    font-size: 2.5vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

#bottom-left p {
    color: #fff;
    font-size: 1.3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#bottom-right h3 {
    color: #fff;
    font-size: 2.5vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

#bottom-right p {
    color: #fff;
    font-size: 1.3vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#bottom-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    border-left: 1px solid rgba(255, 255, 255, 0.317);
    /* background-color: pink; */
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#trust {
    width: 100%;
    background: #1a0514;
    margin-top: 3vw;
    overflow: hidden;
    position: relative;
    margin-top: 5vw;
}

#trust-top {
    text-align: center;
    padding: 2vw 0;
}

#trust-top h3 {
    color: #fff;
    font-size: 1.6vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
}

.logos {
    width: 100%;
    display: flex;
    gap: 2vw;
    padding: 1vw 0;
    position: relative;
}

.logos-slide {
    display: flex;
    gap: 2vw;
    animation: slide 15s linear infinite;
}

.logos img {
    height: 4vw;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logos img:hover {
    opacity: 1;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


#edit {
    width: 100%;
    padding: 6vw 0 2vw 0;
    background: url(./img/snake.png);
    background-size: cover;
    background-position: center;
    background-color: #1a0514;
}

#edit-heading {
    text-align: center;
}

#edit-heading h2 {
    font-size: 5vw;
    font-weight: 700;
    font-family: "Neutrif Pro";
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
}

#edit-heading p {
    color: #fff;
    font-size: 1.2vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    margin-top: 1.2vw;
    letter-spacing: 0.1vw;
    margin-bottom: 2vw;
}

/* Common styles for all edit sections */
#edit-1, #edit-3, #edit-5 {
    width: 100%;
    height: 35vw;
    display: flex;
    margin-top: 6vw;
    padding: 0 4vw;
}

#edit-2, #edit-4, #edit-6 {
    width: 100%;
    height: 35vw;
    display: flex;
    margin-top: 8vw;
    padding: 0 4vw;
}

/* Left content styles */
#edit-1-left, #edit-3-left, #edit-5-left {
    width: 40%;
    padding: 2vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#edit-1-left h4, #edit-3-left h4, #edit-5-left h4 {
    font-size: 4vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1vw;
}

#edit-1-left p, #edit-3-left p, #edit-5-left p {
    font-size: 1.2vw;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin-bottom: 2vw;
}

/* Right content styles */
#edit-1-right, #edit-3-right, #edit-5-right {
    width: 60%;
    padding: 0vw 0vw;
    position: relative;
}

#edit-1-right img, #edit-3-right img, #edit-5-right img {
    width: 53vw;
    height: 32vw;
    object-fit: cover;
    border-radius: 1vw;
    position: absolute;
    opacity: 0;
    transition: all 0.8s ease;
    top: 2vw;
    left: 2vw;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

#edit-1-right img:first-child, #edit-3-right img:first-child, #edit-5-right img:first-child {
    opacity: 1;
    z-index: 2;
}

/* Even numbered sections */
#edit-2-left, #edit-4-left, #edit-6-left {
    width: 60%;
    padding: 0vw 4vw;
    position: relative;
}

#edit-2-right, #edit-4-right, #edit-6-right {
    width: 40%;
    padding: 2vw 0vw 2vw 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#edit-2-right h4, #edit-4-right h4, #edit-6-right h4 {
    font-size: 4vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1vw;
}

#edit-2-right p, #edit-4-right p, #edit-6-right p {
    font-size: 1.2vw;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin-bottom: 2vw;
}

#edit-2-left img, #edit-4-left img, #edit-6-left img {
    width: 53vw;
    height: 32vw;
    object-fit: cover;
    border-radius: 1vw;
    position: absolute;
    opacity: 0;
    transition: all 0.8s ease;
    top: 2vw;
    left: 2vw;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

#edit-2-left img:first-child, #edit-4-left img:first-child, #edit-6-left img:first-child {
    opacity: 1;
    z-index: 2;
}

/* Common animation classes for all sections */
#edit-1-right img.fade-in, #edit-2-left img.fade-in,
#edit-3-right img.fade-in, #edit-4-left img.fade-in,
#edit-5-right img.fade-in, #edit-6-left img.fade-in {
    animation: fadeInGlow 1s forwards;
}

#edit-1-right img.fade-out, #edit-2-left img.fade-out,
#edit-3-right img.fade-out, #edit-4-left img.fade-out,
#edit-5-right img.fade-out, #edit-6-left img.fade-out {
    animation: fadeOutGlow 1s forwards;
}


@keyframes fadeInGlow {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes fadeOutGlow {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 255, 255, 0);
    }
    100% {
        opacity: 0;
        transform: scale(1.05) translateY(-20px) rotate(2deg);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0);
    }
}

.edit-button {
    margin-top: 1vw;
    position: relative;
    z-index: 10;
}

.edit-button a {
    display: inline-block;
    padding: 1.2vw 2.5vw;
    font-size: 1.2vw;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 1vw;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 11;
    cursor: pointer;
}

.edit-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skew(45deg) translateX(-150%);
    transition: 0.7s ease;
}

.edit-button a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s ease;
}

.edit-button a span {
    display: inline-block;
    margin-left: 0.5vw;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.edit-button a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.edit-button a:hover::before {
    transform: skew(45deg) translateX(150%);
}

.edit-button a:hover::after {
    left: 100%;
}

.edit-button a:hover span {
    transform: translateX(0.5vw);
}

.edit-button a:active {
    transform: scale(0.98);
}

#edit-6 {
    /* background-color: red; */
    background: url(./img/doodles.png);
    background-size: cover;
    padding: 0vw 4vw;
    height: 40vw;
}

#podcast {
    width: 100%;
    height: fit-content;
    margin-top: 5vw;
    margin-bottom: 2vw;
    padding: 0vw 4vw;
    /* background-color: pink; */
}

.podcast-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5vw;
    text-align: center;
}

.podcast-title {
    max-width: 90vw;
}

.podcast-title h1 {
    color: #fff;
    font-size: 5vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 5vw;
    margin-bottom: 1.5vw;
}

.podcast-title h1 span {
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
    font-weight: 700;
}

.podcast-title p {
    color: #ccc;
    font-size: 1.6vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4vw;
    width: 100%;
}

#podcast-slider {
    /* background-color: lawngreen; */
    width: 100%;
    height: 45vw;
    margin-top: 4vw;
    border-radius: 1vw;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* background-color: pink; */
}

.slider-track {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.8s ease-in-out;
    align-items: stretch;
}

.slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
    transition: none;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.slide-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2vw;
    background: linear-gradient(0deg, rgba(20,20,30,0.9) 0%, rgba(20,20,30,0.7) 50%, transparent 100%);
    box-sizing: border-box;
    z-index: 2;
    border-radius: 0 0 1vw 1vw;
    gap: 2vw;
}

.slide-content {
    flex: 1;
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-heading {
    color: #fff;
    font-size: 2.2vw;
    font-family: 'Neutrif Pro', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    margin-bottom: 0.5vw;
}

.slide-description {
    color: #ccc;
    font-size: 1.1vw;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.gallery-btn {
    background: linear-gradient(135deg, #eb7399 0%, #ae2f58 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1.5vw;
    font-weight: 500;
    padding: 1vw 4vw;
    transform: none;
    border: none;
    border-radius: 0.6vw;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
    outline: none;
    display: inline-block;
    position: relative;
    z-index: 15;
}

.slide.active .gallery-btn {
    opacity: 1;
    transform: translateY(0);
}

.slide.active {
    opacity: 1;
    transform: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
    transition: all 1s ease;
    transform: scale(1.05);
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active img {
    transform: scale(1);
    filter: brightness(0.9) contrast(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5vw;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.1);
}

.prev-btn {
    left: 3vw;
}

.next-btn {
    right: 3vw;
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #ae2f58 0%, #eb7399 100%);
    transform: translateY(-2px) scale(1.05);
}

/* Footer Styles */
.footer {
    background: #1a0514;
    color: #fff;
    padding: 4vw 5vw 2vw 5vw;
    margin-top: 6vw;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235, 115, 153, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3vw;
    margin-bottom: 3vw;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.4vw;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5vw;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5vw;
    left: 0;
    width: 1.5vw;
    height: 1px;
    background: #eb7399;
    border-radius: 1px;
}

.footer-logo img {
    width: 8vw;
    height: auto;
    margin-bottom: 1.5vw;
    /* filter: brightness(0) invert(1); */
}

.footer-logo p {
    color: #ccc;
    font-size: 1.1vw;
    font-family: 'Inter', sans-serif;
    line-height: 1.6vw;
    max-width: 25vw;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8vw;
}

.footer-section ul li a {
    color: #ccc;
    font-size: 1vw;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #eb7399;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
}

.social-link {
    color: #ccc;
    font-size: 1vw;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5vw 0;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #eb7399;
    transition: width 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.social-link:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2vw;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: #666;
    font-size: 0.9vw;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    gap: 2vw;
}

.footer-links a {
    color: #666;
    font-size: 0.9vw;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #eb7399;
}

/* About page main content */

#about-Us {
    width: 100%;
    height: 50vw;
    /* background-color: lightcoral; */
    padding: 2vw 4vw;
}

#about-Us h1 {
    /* background-color: red; */
    font-size: 9vw;
    color: #fff;
    font-family:  "Neutrif Pro";
    letter-spacing: 0.3vw;
    padding: 0;
}

#about-top {
    width: 100%;
    height: 28vw;
    /* background-color: pink; */
    display: flex;
    position: relative;
}

#about-top-one {
    width: 20%;
    /* background-color: red; */
    height: 26vw
}

#about-top-one h1 {
    position: absolute;
    top: -8%;
}

#about-top-one h3 {
    color: #dcd9df;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1vw;
    margin-top: 11vw;
    line-height: 1.4vw;
    font-weight: 500;
}

#about-top-one p {
    color: #dcd9df;
    margin-top: 6vw;
    font-size: 1.05vw;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
    /* background-color: red; */
    line-height: 1.2vw;
}

#about-top-two {
    width: 55%;
    /* background-color: rgb(31, 209, 25); */
    height: 26vw
}

#about-top-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3vw;
}

#about-top-three {
    width: 30%;
    /* background-color: rgb(128, 18, 201); */
    height: 26vw;
    padding-left: 2vw;
}

#about-top-three img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 2vw;
}

#about-top-three h3 {
    color: #fff;
    font-size: 2.8vw;
    font-family: 'Neutrif Pro';
    margin-top: 0.5vw;
}

#about-top-three p {
    color: #dcd9df;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 2.4vw;
    font-size: 1.2vw;
}

#team {
    width: 100%;
    height: 45vw;
    /* background-color: pink; */
    padding: 0vw 4vw;
}

#team img {
    width: 100%;
    height: 45vw;
    object-fit: cover;
    object-position: 50% 10%;
    border-radius: 2vw;
}

#team h3 {
    color: #fff;
    font-size: 2vw;
    font-family: "Neutrif Pro";
    margin-left: 81.65vw;
    margin-top: 0.8vw;
}

#team p {
    font-size: 1vw;
    margin-top: 0.3vw;
    margin-left: 82.6vw;
    color: #dcd9df;
    font-family: Arial, Helvetica, sans-serif;
}

#journey {
    padding: 2vw 4vw 0 4vw;
    margin-top: 2vw;
    /* background-color: #868686; */
}

#journey h2 {
    color: #fff;
    font-family: "Neutrif Pro";
    font-size: 3vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    letter-spacing: 0.2vw;
    /* background-color: red; */
}

#journey p {
    color: #dcd9df;
    font-size: 1.2vw;
    line-height: 1.8;
    max-width: 100%;
    font-family: "Inter", sans-serif;
    /* background-color: red; */
    text-align: justify;
    text-justify: inter-word;
}

#studio-life {
    padding: 4vw;
    margin-top: 2vw;
}

#studio-life h2 {
    color: #fff;
    font-family: "Neutrif Pro";
    font-size: 3vw;
    margin-bottom: 2vw;
}

#studio-life h3 {
    color: #fff;
    font-family: "Neutrif Pro";
    font-size: 2vw;
    margin-bottom: 2vw;
    letter-spacing: 0.1vw;
}

.video-section {
    margin-bottom: 4vw;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    border-radius: 1vw;
    overflow: hidden;
    background: #111;
}

.thumbnail-container img {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

.video-item:hover .play-btn {
    background: rgba(0, 0, 0, 0.9);
}

.video-item h4 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 1.2vw;
    margin-top: 1vw;
    font-weight: 500;
}



.gallery-section {
    margin-top: 4vw;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
}

.photo-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1vw;
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-item img {
    width: 100%;
    height: 25vw;
    object-fit: cover;
    transition: transform 0.3s ease;
}



/* Croma shooting */

#view-details {
    width: 100%;
    height: fit-content;
    /* background-color: #c20101; */
    padding: 0vw 4vw;
    background: url(./img/doodles.png);
    background-size: cover;
    background-position: center;
}

#view-details-heading {
    width: 100%;
    height: auto;
    margin-top: 3vw;
    padding: 2vw 0;
    /* background-color: red; */
}

#view-details-heading h1 {
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
    font-weight: 700;
    font-size: 6vw;
    font-family: "Neutrif Pro";
    text-align: center; 
    line-height: 12vw;
}

#view-details-heading h3 {
    color: #dcd9df;
    font-size: 1.5vw;
    font-family: Inter;
    text-align: center;
    padding: 0vw 4vw;
    line-height: 2vw;
    font-weight: 100;
}

#view-details-videos {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2vw;
    padding: 2vw 4vw;
    margin-top: 4vw;
}

#view-details-videos-2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2vw;
    padding: 2vw 4vw;
    margin-top: 2vw;
}

.video-left, .video-right {
    flex: 0 0 calc(50% - 1vw);
    height: 100%;
    position: relative;
    border-radius: 1vw;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(50% - 1vw);
}

.video {
    position: relative;
    aspect-ratio: 16/9;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 2vw;
    width: 100%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.video-info h3 {
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 1.5vw;
    font-family: "Neutrif Pro";
    color: #fff;
    margin-top: 3vw;
}

.video-info p {
    font-size: 3.5vw;
    opacity: 0.9;
    font-family: "Inter";
    color: #dcd9df;
    line-height: 4.5vw;
}



#shorts-section {
    width: 100%;
    padding: 4vw;
    background: transparent;
    /* background: url(./img/doodles.png); */
}

.shorts-heading {
    text-align: center;
    margin-bottom: 3vw;
}

.shorts-heading h2 {
    font-size: 3vw;
    font-weight: 700;
    font-family: "Neutrif Pro";
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
}

.shorts-container {
    display: flex;
    justify-content: center;
    gap: 4vw;
    height: 80vh;
}

.shorts-left, .shorts-right {
    width: 25%;
    height: 100%;
    position: relative;
}

.shorts-video {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 177.78%; /* 9:16 Aspect Ratio */
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shorts-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1vw;
}



#client-reviews {
    width: 100%;
    padding: 6vw 0;
    background: #1a0514;
    overflow: hidden;
    margin-top: 15vw;
}

.review-heading {
    text-align: center;
    margin-bottom: 4vw;
    margin-top: 4vw;
}

.review-heading h2 {
    font-size: 4vw;
    font-weight: 700;
    font-family: "Neutrif Pro";
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
}

.review-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 2vw;
    padding: 2vw;
    animation: scroll 40s linear infinite;
}

.review-card {
    flex: 0 0 auto;
    width: 40vw;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1vw;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2vw;
    transition: transform 0.3s ease;
    display: flex;
    gap: 2vw;
}

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

.reviewer-photo {
    flex: 0 0 auto;
    width: 12vw;
}

.reviewer-photo img {
    width: 100%;
    height: 12vw;
    border-radius: 1vw;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.reviewer-details {
    margin-bottom: 0.5vw;
}

.reviewer-details h4 {
    font-size: 1.4vw;
    font-weight: 600;
    color: #fff;
    margin: 0;
    margin-bottom: 0.3vw;
    font-family: "Neutrif Pro";
}

.reviewer-details span {
    font-family: "Inter";
    font-size: 1.1vw;
    color: rgba(255, 255, 255, 0.7);
}

.review-stars {
    color: #FFD700;
    font-size: 1.5vw;
    letter-spacing: 0.2vw;
}

.review-content p {
    font-size: 1.1vw;
    line-height: 1.6;
    color: #fff;
    font-family: "Inter";
    margin: 0;
}



@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Pause animation on hover */
.review-container:hover .review-track {
    animation-play-state: paused;
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #000;
}

.video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-thumbnail {
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.video-container:hover .play-button {
    background-color: #ff0000;
}

.video-container:hover .play-button::before {
    border-color: transparent transparent transparent #ffffff;
}

.video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    transform: translateY(0);
    transition: all 0.3s ease;
    font-family: "Neutrif Pro";
}

.video-container:hover .video-title {
    padding-bottom: 1.5rem;
}

.glow-text {
    color: #ec7299;
    text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                 0 0 20px rgba(236, 114, 153, 0.3),
                 0 0 30px rgba(236, 114, 153, 0.2);
}

#full-scr {
    height: 100vh;
    width: 100%;
    background-color: #4b0d2141;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}



#full-div1 {
    height: fit-content;
    width: 100%;
    background-color: #1a0514;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding-right: 3vw;
    gap: 10px;
    padding-top: 30vw;
    padding-bottom: 20vw;
    position: fixed;
    top: -100%;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

#full-div1 h4 a {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
}



.menu-button {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
    height: 14px;
    position: relative;
    margin-right: 10px;
    margin-top: 7px;
}

.line {
    width: 100%;
    height: 2px;
    background-color: #eee6e6;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animation for when menu is open */
.menu-open .line:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-open .line:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

#edit-section-mobile {
    display: none;
}

/* Mobile responsive */

@media (max-width: 600px) {
    /* body{
        background-color: red;
    } */
    /* Navbar */
    .navbar {
        /* background-color: lightcoral; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8vw 2vw;
        background-color: #1a0514;
    }
    
    #nav-part1 img{
        width: 20vw;
        height: 20vw;
        transition: all 0.3s ease;
    }
    
    #nav-part2 {
        display: none;
        align-items: center;
        gap: 1vw;
    }
    
    .navbar h3 {
        display: block;
        color: #fff;
        padding: 2vw 5vw;
        border: 1.5px solid #fff;
        border-radius: 50px;
        font-size: 4vw;
        font-weight: 200;
        /* padding-left: 10vw; */
        display: flex;
        align-items: center;
        font-family: 'Inter', sans-serif;
    }
    
    #hero-section {
        background-image: url(./img/doodles.png);
        background-size: cover;
        background-position: center;
        height: 60vw;
        /* background-color: red; */
    }
    
    #hero-section h1 {
        font-size: 11.5vw;
        margin-top: 2vw;
        line-height: 11vw;
        padding-top: 8vw;
    }
    
    #hero-section h3 {
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 3vw;
        margin-top: 3vw;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-weight: 200;
        padding: 0vw 2vw;
    }
    
    #hero-section a {
        padding: 2vw 4vw;
        font-size: 2.6vw;
        margin-top: 1.5vw;
    }
    
    #hero-section a:hover {
        background-image: linear-gradient(to right, #ae2f58, #eb7399);
    }
    
    #about {
        width: 100%;
        height: 48vw;
        padding: 0vw 1vw;
    }
    
    #about-left {
        width: 60%;
        height: 100%;
    }
    
    #about-right {
        width: 40%;
        height: 100%;
        backdrop-filter: blur(15px);
        /* border-left: 1px solid rgba(255, 255, 255, 0.2); */
        /* background-color: pink; */
        padding: 2vw 1vw;
    }
    
    #about-right-top {
        display: flex;
        width: auto;
        height: 22vw;
    }
    
    #about-right-top img {
        width: 19vw;
        height: 19vw;
    }
    
    #about-right-top p {
        color: #b1afaf;
        position: absolute;
        top: 25%;
        left: 57%;
        font-size: 1.5vw;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 300;
    }
    
    #about-right-top h3 {
        font-size: 2.5vw;
    }
    
    #about-right-top h2 {
        font-size: 6vw;
    }
    
    #about-right-middle p {
        color: #868686;
        font-size: 2.2vw;
        margin-top: 1.5vw;
    }
    
    #reating img {
        width: 3.2vw;
    }
    
    #about-right-bottom {
        margin-top: 2vw;
        padding: 1vw;
        height: 11.5vw;
    }
    
    #bottom-left h3 {
        color: #fff;
        font-size: 3.5vw;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }
    
    #bottom-left p {
        color: #fff;
        font-size: 2vw;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        margin-top: 0.5vw;
    }
    
    #bottom-right h3 {
        color: #fff;
        font-size: 3.5vw;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
    }
    
    #bottom-right p {
        color: #fff;
        font-size: 2vw;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        margin-top: 0.5vw;
    }

    #trust {
        width: 100%;
        background: #1a0514;
        margin-top: 3vw;
        overflow: hidden;
        position: relative;
        margin-top: 5vw;
    }
    
    #trust-top {
        text-align: center;
        padding: 2vw 0;
    }
    
    #trust-top h3 {
        color: #fff;
        font-size: 3vw;
        font-family: 'Inter', sans-serif;
        font-weight: 200;
        margin-bottom: 2vw;
    }
    
    .logos {
        width: 100%;
        display: flex;
        gap: 2vw;
        padding: 1vw 0;
        position: relative;
    }
    
    .logos-slide {
        display: flex;
        gap: 3.5vw;
        animation: slide 15s linear infinite;
    }
    
    .logos img {
        height: 9vw;
        object-fit: contain;
        opacity: 0.7;
        transition: opacity 0.3s;
        gap: 3.5vw;
    }

    #edit {
        display: block;
    }

    #edit-6 {
        display: none;
    }

    #full-scr {
        display: block;
        visibility: visible;
    }

    #podcast {
        width: 100%;
        height: 200vw;
        margin-top: 10vw;
        padding: 0vw 4vw;
    }
    
    .pwodcast-header {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 6vw;
        text-align: center;
    }
    
    .podcast-title {
        max-width: 90vw;
    }
    
    .podcast-title h1 {
        color: #fff;
        font-size: 7.2vw;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        line-height: 7vw;
        margin-bottom: 3vw;
    }
    
    .podcast-title h1 span {
        color: #ec7299;
        text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                     0 0 20px rgba(236, 114, 153, 0.3),
                     0 0 30px rgba(236, 114, 153, 0.2);
        font-weight: 700;
    }
    
    .podcast-title p {
        color: #ccc;
        font-size: 2.2vw;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        line-height: 1.8vw;
        width: 100%;
    }
    
    
    .gallery-btn {
        background: linear-gradient(135deg, #eb7399 0%, #ae2f58 100%);
        color: #fff;
        font-family: 'Inter', sans-serif;
        font-size: 2.2vw;
        font-weight: 500;
        padding: 1.5vw 5vw;
        transform: none;
        border: none;
        border-radius: 0.6vw;
        box-shadow: 0 2px 12px rgba(0,0,0,0.12);
        cursor: pointer;
        text-decoration: none;
        transition: background 0.3s;
        outline: none;
        display: inline-block;
        position: relative;
        z-index: 15;
    }

    .slide-heading {
        color: #fff;
        font-size: 3.6vw;
        font-family: 'Neutrif Pro', 'Inter', sans-serif;
        font-weight: 700;
        letter-spacing: 0.04em;
        margin-bottom: 0.5vw;
    }
    
    .slide-description {
        color: #ccc;
        font-size: 2.2vw;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        opacity: 0.9;
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 1.5vw;
        width: 5vw;
        height: 5vw;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.8) contrast(1.1);
        transition: all 1s ease;
        transform: scale(1.05);
        position: absolute;
        top: 0;
        left: 0;
    }
    .slider-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .slider-track {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        transition: transform 0.8s ease-in-out;
        align-items: stretch;
    }

    #client-reviews {
        width: 100%;
        height: 33vh;
        padding: 6vw 0;
        background: #1a0514;
        overflow: hidden;
        margin-top: 2vw;
    }
    
    .review-heading {
        text-align: center;
        margin-bottom: 4vw;
        margin-top: 4vw;
    }
    
    .review-heading h2 {
        font-size: 6vw;
        font-weight: 700;
        font-family: "Neutrif Pro";
        color: #ec7299;
        text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                     0 0 20px rgba(236, 114, 153, 0.3),
                     0 0 30px rgba(236, 114, 153, 0.2);
    }
    
    .review-container {
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .review-track {
        display: flex;
        gap: 2vw;
        padding: 2vw;
        animation: scroll 40s linear infinite;
    }
    
    .review-card {
        flex: 0 0 auto;
        width: 70vw;
        height: 35vw;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 1vw;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 2vw;
        transition: transform 0.3s ease;
        display: flex;
        gap: 2vw;
    }
    
    .review-card:hover {
        transform: translateY(-10px);
    }
    
    .reviewer-photo {
        flex: 0 0 auto;
        width: 16vw;
    }
    
    .reviewer-photo img {
        width: 100%;
        height: 16vw;
        border-radius: 1vw;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    
    .review-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1vw;
    }
    
    .reviewer-details {
        margin-bottom: 0.5vw;
    }
    
    .reviewer-details h4 {
        font-size: 3.8vw;
        font-weight: 600;
        color: #fff;
        margin: 0;
        margin-bottom: 0.3vw;
        font-family: "Neutrif Pro";
    }
    
    .reviewer-details span {
        font-size: 2vw;
        color: rgba(255, 255, 255, 0.7);
        position: absolute;
        top: 21%;
    }
    
    .review-stars {
        color: #FFD700;
        font-size: 2.2vw;
        letter-spacing: 0.2vw;
        margin-top: 2vw;
    }
    
    .review-content p {
        font-size: 2.4vw;
        line-height: 1.6;
        color: #fff;
        font-family: "Inter";
        margin: 0;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 2));
        }
    }
    
    /* Pause animation on hover */
    .review-container:hover .review-track {
        animation-play-state: paused;
    }
    
    /* Video Grid Styles */
    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem;
        max-width: 1800px;
        margin: 0 auto;
    }

    .footer {
        display: flex;
        flex-direction: column;
        background: #1a0514;
        color: #fff;
        padding: 4vw 5vw 2vw 5vw;
        margin-top: 6vw;
        position: relative;
        overflow: hidden;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(235, 115, 153, 0.3), transparent);
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4vw;
        margin-bottom: 4vw;
    }
    
    .footer-section h4 {
        margin-top: 4vw;
        color: #fff;
        font-size: 4vw;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        margin-bottom: 2vw;
        position: relative;
    }
    
    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: -0.5vw;
        left: 0;
        width: 4vw;
        height: 1px;
        background: #eb7399;
        border-radius: 1px;
    }
    
    .footer-logo img {
        width: 18vw;
        height: auto;
        margin-bottom: 3vw;
    }
    
    .footer-logo p {
        color: #ccc;
        font-size: 3vw;
        font-family: 'Inter', sans-serif;
        line-height: 4vw;
        max-width: 100%;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 2vw;
    }
    
    .footer-section ul li a {
        color: #ccc;
        font-size: 3vw;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .footer-section ul li a::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: #eb7399;
        transition: width 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: #fff;
    }
    
    .footer-section ul li a:hover::before {
        width: 100%;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        gap: 2vw;
    }
    
    .social-link {
        color: #ccc;
        font-size: 3vw;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
        transition: all 0.3s ease;
        padding: 1vw 0;
        position: relative;
    }
    
    .social-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: #eb7399;
        transition: width 0.3s ease;
    }
    
    .social-link:hover {
        color: #fff;
    }
    
    .social-link:hover::before {
        width: 100%;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 3vw;
    }
    
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 2vw;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom-content p {
        color: #666;
        font-size: 2.5vw;
        font-family: 'Inter', sans-serif;
    }
    
    .footer-links {
        display: flex;
        gap: 4vw;
    }
    
    .footer-links a {
        color: #666;
        font-size: 2.5vw;
        font-family: 'Inter', sans-serif;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #eb7399;
    }
    
    /* Hide services and company sections on mobile */
    .footer-section:nth-child(3),
    .footer-section:nth-child(4) {
        display: none;
    }

    #about-Us {
        display: none;
    }
    
    #team {
        width: 100%;
        height: 60vw;
        /* background-color: pink; */
        padding: 0vw 2vw;
    }
    
    #team img {
        width: 100%;
        height: 50vw;
        object-fit: cover;
        object-position: 50% 75%;
        border-radius: 2vw;
    }
    
    #team h3 {
        color: #fff;
        font-size: 4vw;
        font-family: "Neutrif Pro";
        margin-left: 75vw;
        margin-top: 0.8vw;
    }
    
    #team p {
        font-size: 1.8vw;
        margin-top: 0.4vw;
        margin-left: 78vw;
        color: #dcd9df;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    #journey {
        padding: 2vw 4vw 0 4vw;
        margin-top: 3vw;
        /* background-color: #868686; */
    }
    
    #journey h2 {
        color: #fff;
        font-family: "Neutrif Pro";
        font-size: 5vw;
        margin-top: 2vw;
        letter-spacing: 0.2vw;
        /* background-color: red; */
    }
    
    #journey p {
        color: #dcd9df;
        font-size: 2.9vw;
        line-height: 1.5;
        max-width: 100%;
        font-family: "Inter", sans-serif;
        /* background-color: red; */
        margin-top: 4vw;
    }
    
    #studio-life {
        padding: 4vw;
        margin-top: 2vw;
    }
    
    #studio-life h2 {
        color: #fff;
        font-family: "Neutrif Pro";
        font-size: 5vw;
        margin-bottom: 3vw;
    }
    
    #studio-life h3 {
        color: #fff;
        font-family: "Neutrif Pro";
        font-size: 5vw;
        margin-bottom: 3vw;
        letter-spacing: 0.1vw;
    }
    
    .video-section {
        margin-bottom: 4vw;
    }
    
    .video-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        padding: 1rem;
        max-width: 1800px;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .video-item {
        position: relative;
        width: 100%;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .video-item:hover {
        transform: translateY(-5px);
    }
    
    .thumbnail-container {
        position: relative;
        width: 100%;
        border-radius: 1vw;
        overflow: hidden;
        background: #111;
    }
    
    .thumbnail-container img {
        width: 100%;
        aspect-ratio: 16/9;
        display: block;
        object-fit: cover;
    }
    
    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        transition: background 0.3s ease;
    }
    
    .play-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
        border-style: solid;
        border-width: 15px 0 15px 25px;
        border-color: transparent transparent transparent white;
    }
    .video-title {
        margin-top: 2vw;
        font-size: 4.5vw;
        padding: 1vw 2vw;
    }

    .video-item:hover .play-btn {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .video-item h4 {
        color: #fff;
        font-family: "Inter", sans-serif;
        font-size: 1.2vw;
        margin-top: 1vw;
        font-weight: 500;
    }
    
    
    
    .gallery-section {
        margin-top: 4vw;
    }
    
    .photo-grid {
        display: grid;
        height: 100vh;
        grid-template-columns: repeat(1, 1fr);
        gap: 3vw;
    }
    
    .photo-item {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 1vw;
        transition: transform 0.3s ease;
    }
    
    .photo-item:hover {
        transform: scale(1.02);
    }
    
    .photo-item img {
        width: 100%;
        height: 80vw;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease;
    }

    #view-details {
        width: 100%;
        height: fit-content;
        background-color: #c20101;
        padding: 0vw 4vw;
        background: url(./img/doodles.png);
        background-size: cover;
        background-position: center;
    }
    
    #view-details-heading {
        width: 100%;
        height: 17vh;
        margin-top: 2vw;
        margin-bottom: 1vw;
    }
    
    #view-details-heading h1 {
        color: #ec7299;
        text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                     0 0 20px rgba(236, 114, 153, 0.3),
                     0 0 30px rgba(236, 114, 153, 0.2);
        font-weight: 700;
        font-size: 11vw;
        font-family: "Neutrif Pro";
        text-align: center; 
        margin-bottom: 2vw;
    }
    
    #view-details-heading h3 {
        color: #dcd9df;
        font-size: 3.2vw;
        font-family: Inter;
        margin-top: 5.5vw;
        padding: 0vw 2vw;
        line-height: 4vw;
        font-weight: 100;
    }
    
    #view-details-videos {
        flex-direction: column;
        gap: 6vw;
        padding: 4vw 1vw;
        padding-bottom: 0;
        padding-top: 0;
    }
    
    #view-details-videos-2 {
        flex-direction: column;
        gap: 6vw;
        padding: 4vw 1vw;
    }
    
    .video-left, .video-right {
        width: 100%;
        border-radius: 2vw;
    }
    
    .video {
        position: relative;
        aspect-ratio: 16/9;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        border-radius: 2vw;
        width: 100%;
    }
    
    .video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-info h3 {
        font-size: 2vw;
        font-weight: 600;
        margin-bottom: 1.5vw;
        font-family: "Neutrif Pro";
        color: #fff;
        margin-top: 3vw;
    }
    
    .video-info p {
        font-size: 1.5vw;
        opacity: 0.9;
        font-family: "Inter";
        color: #dcd9df;
        line-height: 4.5vw;
    }
    
    #shorts-section {
        width: 100%;
        padding: 6vw 2vw;
        background: transparent;
    }
    
    .shorts-heading {
        text-align: center;
        margin-bottom: 6vw;
    }
    
    .shorts-heading h2 {
        font-size: 10vw;
        font-weight: 700;
        font-family: "Neutrif Pro";
        color: #ec7299;
        text-shadow: 0 0 10px rgba(236, 114, 153, 0.5),
                     0 0 20px rgba(236, 114, 153, 0.3),
                     0 0 30px rgba(236, 114, 153, 0.2);
    }
    
    .shorts-container {
        display: flex;
        flex-direction: column;
        gap: 6vw;
        height: auto;
    }
    
    .shorts-left, .shorts-right {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .shorts-video {
        width: 100%;
        height: auto;
        position: relative;
        padding-bottom: 177.78%; /* 9:16 Aspect Ratio */
        border-radius: 2vw;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .shorts-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 2vw;
    }    

    /* Hide desktop edit section on mobile */
    #edit {
        display: none;
    }

    #edit-6 {
        display: none;
    }

    #edit-section-mobile {
        display: block;
        height: fit-content;
    }

    #edit-heading  h2 {
        margin-top: 7vw;
        font-size: 8vw;
    }

    #edit-heading  p {
        font-size: 2.5vw;
        margin-top: 1vw;
        font-weight: 200;
    }

    /* Animated Card Styles */
    .container {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4vw;
        margin-top: 4vw;
    }

    .card {
        position: relative;
        background: rgba(26, 5, 20, 0.9);
        width: 90vw;
        height: 70vw;
        border-radius: 4vw;
        padding: 2vw;
        color: #fff;
        box-shadow: 
            0 2vw 8vw rgba(0,0,0,0.3),
            0 0 4vw rgba(0,0,0,0.2);
        overflow: hidden;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .card__image-container {
        margin: -4vw -4vw 3vw -4vw;
        border-radius: 3vw 3vw 0 0;
        overflow: hidden;
    }

    .card__line {
        opacity: 0;
        animation: LineFadeIn .8s .8s forwards ease-in;
    }

    .card__image {
        opacity: 0;
        animation: ImageFadeIn .8s 1.4s forwards;
        width: 100%;
        height: 40vw;
        object-fit: cover;
    }

    .card__title {
        color: #ec7299;
        margin-top: 0;
        font-weight: 700;
        letter-spacing: 0.01em;
        font-size: 5vw;
        font-family: 'Neutrif Pro', sans-serif;
        text-shadow: 0 0 10vw rgba(236, 114, 153, 0.3);
    }

    .card__content {
        margin-top: -1rem;
        opacity: 0;
        animation: ContentFadeIn .8s 1.6s forwards;
    }

    .card__content p {
        font-size: 3vw;
        line-height: 1.4;
        color: #ccc;
        margin-bottom: 4vw;
        font-family: 'Inter', sans-serif;
    }

    .card__button {
        display: inline-block;
        width: 100%;
        padding: 3vw 0;
        font-size: 3.5vw;
        font-family: 'Inter', sans-serif;
        color: #fff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.12);
        border: 1.5px solid rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(12px);
        border-radius: 2vw;
        transition: all 0.3s cubic-bezier(.4,0,.2,1);
        font-weight: 600;
        box-shadow: 0 2vw 8vw rgba(236, 114, 153, 0.13);
        position: relative;
        overflow: hidden;
        margin-top: 2vw;
    }

    .card-button:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.32);
        box-shadow: 0 4vw 12vw rgba(236, 114, 153, 0.18);
        transform: translateY(-1vw) scale(1.02);
    }

    .card-button:active {
        transform: scale(0.98);
    }

    .card-button span {
        display: inline-block;
        margin-left: 1vw;
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    }

    .card-button:hover span {
        transform: translateX(1vw);
    }

    .card__svg {
        position: absolute;
        left: 0;
        top: 45vw;
        width: 100%;
        height: auto;
    }

    #view-details-videos {
        margin-top: 4vw;
    }

    @keyframes LineFadeIn {
        0% {
            opacity: 0;
            d: path("M 0 300 Q 0 300 0 300 Q 0 300 0 300 C 0 300 0 300 0 300 Q 0 300 0 300 "); 
            stroke: #fff; 
        }
        50% {
            opacity: 1; 
            d: path("M 0 300 Q 50 300 100 300 Q 250 300 350 300 C 350 300 500 300 650 300 Q 750 300 800 300"); 
            stroke: #ec7299; 
        }
        100% {
            opacity: 1;
            d: path("M -2 100 Q 50 200 100 250 Q 250 400 350 300 C 400 250 550 150 650 300 Q 750 450 802 400"); 
            stroke: #ec7299; 
        }
    }

    @keyframes ContentFadeIn {
        0% { transform: translateY(-1rem); opacity: 0; }
        100% { transform: translateY(0); opacity: 1; }
    }

    @keyframes ImageFadeIn {
        0% { 
            transform: translate(-.5rem, -.5rem) scale(1.05); 
            opacity: 0; 
            filter: blur(2px); 
        }
        50% {
            opacity: 1; 
            filter: blur(2px); 
        }
        100% {
            transform: translateY(0) scale(1.0); 
            opacity: 1; 
            filter: blur(0); 
        }
    }

    /* Mobile Card Styles - Matching Studio Design */
    .mobile-card-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8vw;
        padding: 6vw 4vw;
        margin-top: 4vw;
    }

    .mobile-card {
        position: relative;
        width: 92vw;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 6vw;
        overflow: hidden;
        box-shadow: 
            0 8vw 30vw rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .card-image-section {
        position: relative;
        width: 100%;
        height: 50vw;
        overflow: hidden;
    }
    
    .card-main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1;
        z-index: 1;
    }

    .card-main-image.active {
        opacity: 1;
        z-index: 2;
    }
    
    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 2;
    }
    
    .play-icon {
        width: 12vw;
        height: 12vw;
        background: rgba(236, 114, 153, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 4vw;
        box-shadow: 0 4vw 15vw rgba(236, 114, 153, 0.4);
    }

    .card-content-section {
        padding: 6vw;
        position: relative;
        z-index: 2;
    }

    .card-title {
        font-size: 6vw;
        font-weight: 700;
        color: #ec7299;
        margin-bottom: 3vw;
        font-family: 'Neutrif Pro', sans-serif;
        text-shadow: 0 0 15vw rgba(236, 114, 153, 0.3);
    }

    .card-description {
        font-size: 3.5vw;
        line-height: 1.5;
        color: #fff;
        margin-bottom: 4vw;
        opacity: 0.9;
        font-family: 'Inter', sans-serif;
    }

    .card-features {
        display: flex;
        flex-direction: column;
        gap: 2vw;
        margin-bottom: 4vw;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 2vw;
        color: #fff;
        font-size: 3vw;
        opacity: 0.8;
        font-family: 'Inter', sans-serif;
    }

    .card-button {
        width: 100%;
        background: linear-gradient(45deg, #ec7299, #ff6b9d);
        color: white;
        border: none;
        padding: 3vw 6vw;
        border-radius: 4vw;
        font-size: 3.5vw;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2vw;
        box-shadow: 0 4vw 15vw rgba(236, 114, 153, 0.3);
        font-family: 'Inter', sans-serif;
    }

    .card-button:hover {
        transform: translateY(-1vw);
        box-shadow: 0 6vw 20vw rgba(236, 114, 153, 0.4);
        background: linear-gradient(45deg, #ff6b9d, #ec7299);
    }

    .arrow {
        font-size: 4vw;
        transition: transform 0.3s ease;
    }

    .card-button:hover .arrow {
        transform: translateX(1vw);
    }

    .card-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(236, 114, 153, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }


    /* Animation for card entrance */
    .mobile-card {
        animation: cardEntrance 0.8s ease-out;
    }

    @keyframes cardEntrance {
        0% {
            opacity: 0;
            transform: translateY(10vw) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

@media (max-width: 600px) {
    #full-scr {
        display: block;
        visibility: visible;
    }
    
    #full-div1 {
        visibility: visible;
    }

    #full-scr.active,
    #full-div1.active {
        top: 0;
        z-index: 99;
        opacity: 1;
        pointer-events: auto;
    }
}


