html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

@font-face {
    font-family: 'Helvetica Light';
    src: url('font/helvetica-light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Bold';
    src: url('font/helvetica-bold.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Regular';
    src: url('font/helvetica-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

section.panoromaview {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Regular', sans-serif;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-gif {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
}

body:not(.loaded) .main-content,
body:not(.loaded) header {
    opacity: 0;
}

body.loaded .main-content,
body.loaded header {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-modal.active {
    opacity: 1;
    visibility: visible;
}

.popup-form-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    background-image: url('assets/popup-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup-modal.active .popup-form-container {
    transform: scale(1);
}

/* Custom scrollbar for popup */
.popup-form-container::-webkit-scrollbar {
    width: 8px;
}

.popup-form-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.popup-form-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.popup-form-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Close button */
.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.popup-close:hover {
    opacity: 0.7;
}

.popup-form-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.popup-form-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

.popup-form-title {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.popup-form-subtitle {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.popup-form {
    max-width: 400px;
    margin: 0 auto;
}

.popup-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.popup-form-field {
    flex: 1;
    margin-bottom: 13px;
}

.popup-form input[type="text"],
.popup-form input[type="email"],
.popup-form input[type="tel"] {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.popup-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.popup-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.popup-checkbox-container {
    display: flex;
    align-items: center;
    margin: 30px 0;
    font-size: 14px;
}

.popup-checkbox-container input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.popup-checkbox-container label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.popup-checkbox-container a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.popup-submit-btn {
    width: 100%;
    padding: 15px;
    background: none;
    color: #b581cf;
    border: 1px solid #b581cf;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-submit-btn:hover {
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    border: 1px solid #b581cf;
    color: #fff;
}

.footprintdesk {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footprintdesk {
        display: block !important;
    }

    .footprintdesk img {
        width: 6rem;
    }

    span.gff-logo-inline {
        display: none;
    }

    .popup-form-container {
        width: 95%;
        max-width: 600px;
        max-height: 85vh;
        padding: 40px 30px;
    }

    .popup-form-title {
        font-size: 1.8rem;
    }

    .popup-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .popup-form input[type="text"],
    .popup-form input[type="email"],
    .popup-form input[type="tel"] {
        padding: 12px 18px;
        font-size: 14px;
    }

    .popup-submit-btn {
        font-size: 16px;
        padding: 12px;
    }
}

@media (max-width: 768px) {

    .popup-form-title,
    .popup-form-subtitle,
    .popup-form {
        max-width: 350px;
    }
}

@media (max-width: 480px) {

    .popup-form-title,
    .popup-form-subtitle,
    .popup-form {
        max-width: 100%;
    }
}

body {
    background: linear-gradient(#1a0426, #030303);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: white;
    overflow-x: hidden;
    position: relative;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    position: relative;
    z-index: 1000;
}

.logo img {
    width: 200px;
}

nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #b581cf;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.8;
}

.get-in-touch {
    position: relative;
    background: transparent;
    border: 1px solid #b581cf;
    color: #b581cf;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: visible;
}

.get-in-touch a {
    color: inherit;
    text-decoration: none;
}

.get-in-touch:hover {
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    border: 1px solid #b581cf;
    color: #fff;
}


/* Star animations - HIDDEN BY DEFAULT */
.star-1,
.star-2,
.star-3,
.star-4,
.star-5,
.star-6 {
    position: absolute;
    height: auto;
    opacity: 0;
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-1 {
    top: 20%;
    left: 20%;
    width: 25px;
}

.star-2 {
    top: 45%;
    left: 45%;
    width: 15px;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    top: 40%;
    left: 40%;
    width: 5px;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    top: 20%;
    left: 40%;
    width: 8px;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    top: 25%;
    left: 45%;
    width: 15px;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    top: 5%;
    left: 50%;
    width: 5px;
    transition: all 0.8s ease;
}

.get-in-touch:hover .star-1 {
    top: -80%;
    left: -30%;
    opacity: 1;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    color: #a81ddd;
}

.get-in-touch:hover .star-2 {
    top: -25%;
    left: 10%;
    opacity: 1;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    color: #a81ddd;
}

.get-in-touch:hover .star-3 {
    top: 55%;
    left: 25%;
    opacity: 1;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    color: #a81ddd;
}

.get-in-touch:hover .star-4 {
    top: 30%;
    left: 80%;
    opacity: 1;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    color: #a81ddd;
}

.get-in-touch:hover .star-5 {
    top: 25%;
    left: 115%;
    opacity: 1;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    color: #a81ddd;
}

.get-in-touch:hover .star-6 {
    top: 5%;
    left: 60%;
    opacity: 1;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
    color: #a81ddd;
}

.fil0 {
    fill: currentColor;
}

/* Desktop only class */
.desktop-only {
    display: inline-block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

.mobile-only {
    display: none;
}

.mobile-get-in-touch {
    margin-top: 20px;
    width: 100%;
    max-width: 200px;
}

.mobile-menu-button {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
    gap: 10px;
}

.menu-text {
    font-size: 1rem;
    letter-spacing: 1px;
}

.close-text {
    display: none;
    font-size: 1rem;
    letter-spacing: 1px;
}

.hamburger-icon {
    stroke: white;
}

.close-icon {
    display: none;
    stroke: white;
}

.mobile-nav-active .menu-text,
.mobile-nav-active .hamburger-icon {
    display: none;
}

.mobile-nav-active .close-text,
.mobile-nav-active .close-icon {
    display: block;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-grow: 1;
}

.headline-container {
    margin-bottom: 28px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.headline {
    font-size: 2.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateY(100%);
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
}

.first-brand-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 1rem auto 1rem;
    color: rgba(255, 255, 255, 0.9);
}

p.first-brand-desc {
    margin: 1rem auto 1rem;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 4.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.category-btn {
    background: none;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid #ffffff8c;
}

.category-btn:hover {
    background: #411e64;

}

.new-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    color: white;
    font-size: 0.7rem;
    padding: 3px 9px;
    border-radius: 10px;
    font-weight: bold;
}

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.8;
}

.blob-1 {
    top: -100px;
    right: 29%;
    width: 39%;
    height: 4%;
    background: linear-gradient(45deg, #380550, #380550);
    animation: blob-float 20s infinite alternate ease-in-out;
}

.search-container {
    background: transparent;
    /* Change from white to transparent */
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 1;
    overflow: visible;
}

.border-animation {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

/* Create the animated borders */
.border-animation::before,
.border-animation::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(from var(--angle), #6709a7, #b582cf, #5d1e96, #7325ba, #e6489169);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -1;
    padding: 3px;
    border-radius: 20px;
    animation: 10s spin linear infinite;
}

.border-animation::before {
    filter: blur(1.5rem);
}

@keyframes spin {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

.search-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.search-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}

.search-input {
    flex-grow: 1;
    border: none;
    font-size: 1.2rem;
    color: #aaa;
    outline: none;
    background: transparent;
    padding: 0;
}

.search-input::placeholder {
    color: #ccc;
}

.search-btn {
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.search-btn:hover {
    background: linear-gradient(45deg, #a81fcf, #610eb2);
}

.stars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stars-container img {
    width: 63px;
    margin-left: -12px;

}

.trending-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 15px 25px;
    background: #2b0251;
    border-radius: 0;
    justify-content: flex-start;
}

.trending-btn {
    background: transparent;
    border: 1px solid #666;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

.trending-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.brand-section {
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    max-width: 960px;
    margin-top: 10rem;
}

.brand-title {
    font-size: 2.5rem;
    margin-bottom: 0rem;
    font-weight: 400;
}

.introducing {
    font-size: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.bliss-gold {
    font-weight: normal;
    font-size: 6rem;
    font-family: 'Helvetica Bold', sans-serif;
    background: linear-gradient(91deg, #f0d561, #aa8223);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 162px;
}

.brand-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
}

.video-container {
    width: 60%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px 5px #862BDB;
    opacity: 0;
    transform: translateY(20px);
    transform-origin: center center;
    will-change: transform;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.play-button-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: #5e1d98;
}

.video-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-popup-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(134, 43, 219, 0.5);
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.video-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-popup-wrapper {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-popup-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offerings-section {
    padding: 200px 0 70px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.faq-section:before,
.faq-section:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 34%;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
    animation: blob-glow 4s ease-in-out infinite alternate;
}

.faq-section:before {
    left: -40%;
    top: 1%;
    background: linear-gradient(45deg, #601e9c85, #461571c4);
    animation-delay: 0s;
}

.faq-section:after {
    right: -42%;
    top: 65%;
    background: linear-gradient(45deg, #601e9c85, #461571c4);
    animation-delay: 2s;
}

.feedback-section:before,
.feedback-section:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
    animation: blob-glow 5s ease-in-out infinite alternate;
}

.feedback-section:before {
    left: -40%;
    top: 3%;
    background: linear-gradient(45deg, #601e9c85, #461571c4);
    animation-delay: 1s;
}

.feedback-section:after {
    right: -42%;
    top: 33%;
    background: linear-gradient(45deg, #601e9c85, #461571c4);
    animation-delay: 3s;
}

.offerings-section:before,
.offerings-section:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 60%;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.8;
    animation: blob-glow 6s ease-in-out infinite alternate;
}

.offerings-section:before {
    left: -40%;
    top: 6%;
    background: linear-gradient(45deg, #601e9c85, #461571c4);
    animation-delay: 0.5s;
}

.offerings-section:after {
    right: -42%;
    top: 33%;
    background: linear-gradient(45deg, #601e9c85, #461571c4);
    animation-delay: 2.5s;
}

@keyframes blob-glow {
    0% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0.6;
        filter: blur(60px) brightness(1);
        box-shadow: 0 0 60px rgb(98 31 159);
    }

    25% {
        transform: translate(10px, -15px) scale(0.9);
        opacity: 0.7;
        filter: blur(50px) brightness(1.2);
        box-shadow: 0 0 80px rgb(98 31 159);
    }

    50% {
        transform: translate(20px, 10px) scale(1);
        opacity: 0.9;
        filter: blur(40px) brightness(1.3);
        box-shadow: 0 0 100px rgb(98 31 159);
    }

    75% {
        transform: translate(-5px, 20px) scale(1.05);
        opacity: 0.8;
        filter: blur(45px) brightness(1.2);
        box-shadow: 0 0 90px rgb(98 31 159);
    }

    100% {
        transform: translate(-10px, -5px) scale(0.95);
        opacity: 0.7;
        filter: blur(55px) brightness(1.1);
        box-shadow: 0 0 70px rgb(98 31 159);
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 1rem;
    transform: translateY(20px);
}

.offerings-title {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: white;
    margin-top: 20px;
}

.offerings-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;

}

.carousel-container {
    position: relative;
    width: 100%;
    padding: 0 5%;
    margin-bottom: 50px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 73px 0;
}

.carousel-item {
    flex: 0 0 18rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-card {
    background: #300357;
    border-radius: 15px;
    overflow: hidden;
    height: 22rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 13px 0px #631462;
    background: #260246;
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 37%;
    transition: transform 0.5s ease;
    margin-top: 2rem;
}

.carousel-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}


.card-content h3 {
    margin: 0 0 14px;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.carousel-navigation {
    justify-content: center;
    bottom: -30px;
    right: 50px;
    display: flex;
    gap: 10px;
    margin-top: -55px;
}

.carousel-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
}


.feedback-section {
    padding: 50px 0 150px;
    width: 100%;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.feedback-title {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
}

.feedback-heading {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 70px;
    padding-top: 5.5rem;
    opacity: 0;
    transform: translateY(20px);

}

.testimonial-track {
    width: 100%;
    position: relative;
}

.testimonial-item {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.testimonial-card {
    background: #2b0251;
    border-radius: 20px;
    padding: 60px 73px 80px;
    color: white;
    text-align: left;
    position: relative;
    min-height: 250px;
    box-shadow: 0 0 20px 4px #862BDB;
    z-index: 1;
}

.testimonial-content,
.testimonial-author {
    transition: opacity 0.3s ease;
}

.quote-mark {
    position: absolute;
    right: 40px;
    bottom: -60px;
    width: 106px;
    height: 120px;
    background-image: url('assets/Vector.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400 !important;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
}

.pagination-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pagination-dot.active {
    background: white;
}

/* Instagram Video Carousel Styles */
.page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.instagram-video-carousel {
    position: relative;
    margin: 20px 0 40px;
}

.instagram-track {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.instagram-list {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0;
    padding: 0;
    list-style: none;
}

.instagram-slide {
    flex: 0 0 calc(24.800% - 20px);
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    background: #300357;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #631462;
}

.instagram-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.instagram-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-slide:hover .instagram-video-wrapper video {
    transform: scale(1.05);
}

.instagram-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.instagram-carousel-controls {
    display: none;
}

.instagram-nav {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: background 0.3s ease;
}

.instagram-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.instagram-section {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 40px;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 50px;
}

.instagram-profile {
    display: flex;
    align-items: center;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #29024e;
    box-shadow: 0 0 15px #631462;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: black;
}

.profile-info h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.instagram-follow-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 8px;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 14, 206, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .instagram-slide {
        flex: 0 0 calc(50% - 20px);
    }

    .instagram-carousel-controls {
        display: flex !important;
    }
}

@media (max-width: 768px) {

    .instagram-slide {
        flex: 0 0 calc(100% - 20px);
    }

    .brand-section {
        margin-top: 131px;
    }
}

@media (max-width: 480px) {
    .instagram-nav {
        width: 32px;
        height: 32px;
    }

    .brand-section {
        margin-top: 131px;
    }

    .video-popup-overlay {
        padding: 10px;
    }

    .video-popup-container {
        width: 100%;
        border-radius: 5px;
    }
}

.fintech-mobile {
    display: none;
}


@media (max-width: 992px) {
    .instagram-carousel-item {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 1.5rem;
    }

    .feedback-section {
        padding: 13px 0 150px;
    }

    .testimonial-slider {
        padding-bottom: 50px;
    }

    .testimonial-card {
        padding: 30px 30px 70px;
    }

    .testimonial-content p {
        font-size: 1.2rem;
    }

    .offerings-section {
        padding: 97px 0 70px 0;
    }

    .quote-mark {
        width: 80px;
        height: 80px;
        bottom: -40px;
        right: 20px;
    }

    .instagram-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .instagram-profile {
        text-align: center;
        gap: 14px;
        align-items: center;
    }

    .profile-picture {
        margin-right: 0;
    }

    .instagram-carousel-item {
        flex: 0 0 220px;
    }

    .instagram-section {
        padding: 5px 0;
    }

    .play-overlay {
        opacity: 1;
    }

    .play-overlay svg {
        width: 36px;
        height: 36px;
    }


    .fintech-section:after {
        content: "";
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }


    .fintech-section .fintech-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .fintech-mobile .title-row {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 4px;
        gap: 10px;
    }

    .fintech-mobile .title-row h1 {
        font-size: 2.5rem;
        color: white;
        font-weight: 500;
        margin: 0;
    }

    .fintech-mobile .title-row .small-logo {
        height: 51px;
    }

    .fintech-mobile .year-row {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .fintech-mobile .year-row .fest-text {
        font-size: 2.2rem;
        color: white;
        font-weight: 500;
    }

    .fintech-mobile .year-row .emoji-container {
        width: 50px;
        height: 50px;
        margin: 0 5px;
    }

    .fintech-mobile .year-row .year-text {
        font-size: 2.2rem;
        color: white;
        font-weight: 500;
    }

    .fintech-desc {
        margin-top: 20px;
    }

    span.emoji-container video {
        width: 100%;
    }

    .fintech-desc {
        display: none;
    }

    .fintech-container {
        display: block !important;
    }
}

.gff-logo-inline {
    align-items: center;
}

.gff-logo-inline img {
    height: 7rem;
    width: auto;
    vertical-align: middle;
}

@media (max-width: 480px) {
    .fintech-section:before {
        font-size: 1.8rem;
    }

    .fintech-mobile .title-row h1 {
        font-size: 2.5rem;
    }

    .fintech-mobile .title-row .small-logo {
        height: 51px;
    }

    .fintech-mobile .year-row .fest-text,
    .fintech-mobile .year-row .year-text {
        font-size: 2.3rem;
    }

    p.mobile-desc {
        padding-left: 10px;
        padding-right: 10px;
    }


    .fintech-mobile .year-row .emoji-container {
        width: 40px;
        height: 40px;
    }

    .feedback-section {
        padding-bottom: 100px;
    }

    .testimonial-slider {
        padding-bottom: 40px;
    }

    .testimonial-card {
        padding: 25px 20px 60px;
        margin: 11px;
    }

    .testimonial-content p {
        font-size: 1rem;
        text-align: justify;
    }

    .quote-mark {
        width: 60px;
        height: 60px;
        bottom: -31px;
        right: 15px;
    }

    .pagination-dot {
        width: 20px;
        height: 3px;
    }

    .instagram-carousel-container {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .instagram-carousel-track {
        gap: 0;
        scroll-snap-type: x mandatory;
    }

    .instagram-carousel-item {
        flex: 0 0 100%;
        margin: 0;
        scroll-snap-align: center;
    }

    .instagram-nav {
        width: 30px;
        height: 30px;
    }

    .instagram-nav.prev {
        left: 5px;
    }

    .instagram-nav.next {
        right: 5px;
    }

    .instagram-header {
        padding: 0 20px;
    }

    .instagram-carousel-container {
        padding: 0 40px;
    }

    .instagram-carousel-item {
        flex: 0 0 180px;
    }

    .instagram-nav {
        width: 32px;
        height: 32px;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-track {
        padding: 20px 0;
        justify-content: flex-start;
        gap: 0;
    }

    .carousel-item {
        flex: 0 0 90%;
        margin: 0 5%;
    }

    .carousel-navigation {
        bottom: -20px;
        right: 50%;
        margin-top: 0;
    }
}

.faq-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.faq-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    position: relative;
}

.faq-heading {
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.faq-accordion {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #300357;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px 11px #862BDB;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    margin: 0;
    font-family: 'Helvetica Light', sans-serif;
}

.toggle-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn .plus {
    display: block;
}

.toggle-btn .minus {
    display: none;
}

.faq-item.active .toggle-btn .plus {
    display: none;
}

.faq-item.active .toggle-btn .minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes reveal {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .main-nav,
    .desktop-only {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .mobile-nav-active .main-nav {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(85deg, #1b0427 0%, #2f0444 100%);
        z-index: 100;
        overflow-y: auto;
    }

    .mobile-nav-active .main-nav ul {
        flex-direction: column;
        padding: 30px 20px;
        align-items: center;
    }

    .mobile-nav-active .main-nav ul li {
        margin: 15px 0;
        text-align: center;
    }

    .mobile-nav-active .main-nav ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }

    .headline {
        font-size: 2rem;
    }

    .introducing {
        font-size: 2rem;
        gap: 10px;
        margin: -53px 0 -35px 0;
    }

    .bliss-gold {
        font-size: 3rem;
    }

    .search-box {
        flex-direction: column;
        gap: 46px;
        padding: 20px;
    }

    .sponsors-container {
        padding: 5px;
    }

    .search-input {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .search-btn {
        padding: 5px 19px;
        font-size: 1rem;
    }

    .stars-container img {
        width: 55px;
    }

    .trending-options {
        justify-content: center;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }

    .video-title {
        font-size: 1rem;
    }

    .offerings-title {
        font-size: 2.2rem;
    }

    .offerings-subtitle {
        font-size: 1.5rem;
    }

    .carousel-item {
        flex: 0 0 240px;
    }

    .carousel-card {
        height: 340px;
    }


    .faq-heading {
        font-size: 2.8rem;
        margin-bottom: 60px;
    }


    .contact-title h2 {
        font-size: 3rem;
    }

    .magnetic-btn-container {
        width: 280px;
        height: 280px;
    }

    .magnetic-btn {
        font-size: 2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 25px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-container {
        display: block !important;
    }

    .footer-nav {
        display: grid !important;
        gap: 30px;
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .footer-social {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .feedback-title {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .video-section {
        height: auto;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .video-container {
        width: 90%;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        box-shadow: 0 0 15px 3px #862BDB;
    }

    .video-container.gsap-animation-applied {
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .faq-question h3 {
        text-align: left;
        line-height: 1.5rem;
    }

    .faq-answer {
        padding: 0 35px;
    }

    .faq-answer p {
        text-align: left;
    }

}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .category-buttons {
        flex-direction: column;
        width: 80%;
    }

    .headline {
        font-size: 1.9rem;
    }

    .introducing {
        font-size: 2rem;
    }

    .bliss-gold {
        font-size: 2rem;
    }

    .brand-desc {
        font-size: 1rem;
        padding: 0 15px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 18px;
        height: 18px;
    }

    .video-title {
        font-size: 0.9rem;
        padding: 6px 15px;
    }

    .offerings-title {
        font-size: 2rem;
    }

    .feedback-heading {
        font-size: 2rem;
        margin-bottom: 19px;
    }

    .offerings-subtitle {
        font-size: 1.2rem;
    }

    .carousel-item {
        flex: 0 0 220px;
    }

    .carousel-card {
        height: 320px;
    }

    .card-content h3 {
        font-size: 1rem;
    }

    .card-content p {
        font-size: 0.8rem;
    }


    .faq-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .contact-title h2 {
        font-size: 2.5rem;
    }

    .magnetic-btn-container {
        width: 220px;
        height: 220px;
    }

    .magnetic-btn {
        font-size: 1.7rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 50px;
        padding: 10px;
    }

    .feedback-title {
        font-size: 1.2rem;
    }

    .instagram-carousel-container {
        padding: 0 15px;
    }

    .instagram-carousel-item {
        border-radius: 8px;
    }

    .instagram-media {
        aspect-ratio: 1 / 1.5;
    }

    .play-overlay {
        opacity: 1;
    }
}

.fintech-section {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fintech-logo {
    max-width: 180px;
    margin: 0;
}

.fintech-logo img {
    width: 100%;
    height: auto;
}

.fintech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
}

.fintech-header {
    text-align: left;
    margin-bottom: 20px;
}

.fintech-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: center;
}

.fintech-header h1 {
    font-size: 4rem;
    color: white;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0.2;
}

.emoji-container {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: sub;
}

#emoji-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-left: 24px;
}

#emoji-video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 0 !important;
}

#emoji-video::-webkit-media-controls {
    display: none !important;
}

#emoji-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
}

.fintech-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.sponsors-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 4rem;
}

.sponsor-logo {
    height: 32px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
}

.fintech-contact-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #6507a7;
    width: 100%;
    margin-top: 50px;
}

section.fintech-contact-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-us-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px 0 0;
}

.magnetic-btn-container {
    width: 450px;
    height: 450px;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.magnetic-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3.5rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 255, 255, 0.1);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.contact-form-container {
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    position: relative;
    flex: 1;
}

.form-bottom {
    display: flex;
    padding: 31px 0px;
}

.form-field label {
    display: block;
    color: #fff;
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 1px;
    font-size: 0.8rem;
    background: none;
    color: white;
    border-style: solid;
    border-top-width: 0px;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 1px;
    border-bottom-color: #b282d3;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #6507a7;
    outline: none;
}

.form-field textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-field {
    display: flex;
    align-items: center;
}

.checkbox-field input {
    margin-right: 10px;
}

.checkbox-field label {
    color: #333;
    font-size: 0.9rem;
}

.checkbox-field a {
    color: #6507a7;
    text-decoration: none;
}

.submit-button {
    background: #6507a7;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: block;
    margin-left: auto;
}

.submit-button:hover {
    background: #7d14cf;
}

.contact-form {
    padding: 40px;
    color: white;
    border-radius: 15px;
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .checkbox-field label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form .checkbox-field a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.contact-form .submit-button {
    background: white;
    color: #6507a7;
}

.contact-form .submit-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .contact-us-container {
        flex-direction: column;
        gap: 50px;
    }

    .magnetic-btn-container {
        width: 300px;
        height: 300px;
    }

    .contact-form-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .magnetic-btn-container {
        width: 220px;
        height: 220px;
    }

    .magnetic-btn {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

.modern-footer {
    background: #6507a7;
    color: white;
    padding: 60px 0 30px;
    margin-top: auto;
    position: relative;
    z-index: 10;
    width: 100%;
    font-family: 'Helvetica Light', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
    text-align: left;
}


.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 200px;
    height: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.94rem;
    margin-bottom: 25px;
    max-width: 350px;
    font-family: 'Helvetica Light', sans-serif;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6507a7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: rgb(101 7 167);
    transform: translateY(-2px);
    color: #fff;
}

/* Quick Links Section */
.footer-links-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-text a:hover {
    padding-left: 5px;
    color: #fff;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.94rem;
    transition: color 0.3s ease;
    padding: 5px 0;
    font-family: 'Helvetica Light', sans-serif;
    transition: 0.3s ease;
}

.footer-nav a:hover {
    color: white;
    padding-left: 5px;
}

/* Contact Section */
.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-icon {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #6507a7;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.4;
    font-family: 'Helvetica Light', sans-serif;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .footer-contact {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
        padding-top: 9px;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 15px;
        gap: 30px;
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .fintech-header h1 {
        font-size: 3.5rem;
        line-height: 4.5rem;
    }

    .fintech-header h2 {
        font-size: 2.5rem;
    }

    .contact-us-container {
        flex-direction: column;
        gap: 50px;
    }

    .magnetic-btn-container {
        width: 300px;
        height: 300px;
    }

    .contact-form-container {
        width: 90%;
    }
}

.privacy-container {
    max-width: 900px;
    margin: 100px auto 100px;
    padding: 40px;
    background: rgba(48, 3, 87, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 129, 207, 0.2);
    box-shadow: 0 0 30px rgba(134, 43, 219, 0.3);
}

.privacy-title {
    color: #b581cf;
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: 500;
}

.privacy-intro {
    background: rgba(181, 129, 207, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-left: 4px solid #b581cf;
}

.privacy-section-heading {
    color: #b581cf;
    border-bottom: 2px solid rgba(181, 129, 207, 0.5);
    padding-bottom: 15px;
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 2rem;
    font-weight: 500;
}

.privacy-subsection-heading {
    color: white;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 500;
    background: rgba(181, 129, 207, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    border-left: 3px solid #b581cf;
}

.privacy-paragraph {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-list {
    margin: 15px 0;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-list-item {
    margin-bottom: 12px;
}

.privacy-highlight {
    background: rgba(255, 193, 7, 0.15);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 25px 0;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.privacy-important {
    color: #b581cf;
    font-weight: 600;
}

.privacy-contact-box {
    background: rgba(101, 7, 167, 0.15);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(181, 129, 207, 0.4);
    margin: 30px 0;
    text-align: center;
}

.privacy-contact-link {
    color: #b581cf;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-contact-link:hover {
    color: #6f0ece;
    text-decoration: underline;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-container {
        margin: 50px 20px 30px;
        padding: 30px 20px;
    }

    .privacy-title {
        font-size: 2.2rem;
    }

    .privacy-section-heading {
        font-size: 1.6rem;
    }

    .privacy-subsection-heading {
        font-size: 1.1rem;
        padding: 8px 15px;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-list {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        margin: 30px 10px 20px;
        padding: 20px 15px;
    }

    .privacy-title {
        font-size: 1.8rem;
    }

    .privacy-section-heading {
        font-size: 1.4rem;
    }

    .privacy-paragraph {
        font-size: 0.9rem;
    }
}

.popup-content {
    position: relative;
    min-height: 400px;
    padding-bottom: 30px;
}

.popup-submit-btn {
    margin-bottom: 20px;
}

/* Style dropdowns to match input fields */
.popup-form select,
.form-field select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23ffffff" d="M6 8L0 2h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.popup-form select:focus,
.form-field select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.popup-form select option,
.form-field select option {
    background: #2a1a4a;
    color: white;
    padding: 10px;
}

.form-content,
.thank-you-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.form-content.active,
.thank-you-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Thank You Content Styles */
.thank-you-content {
    text-align: center;
    margin: 0 auto;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-message {
    max-width: 400px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.gift-gif {
    width: 80%;
}

.close-button {
    margin-top: 30px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183, 34, 225, 0.4);
}

@keyframes giftPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(181, 129, 207, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(181, 129, 207, 0.8);
    }
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1rem;
    }

    .gift-gif {
        width: 120px;
        height: 120px;
    }
}

.panoromaview {
    width: 100%;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.panoromaview .offerings-title {
    font-size: 3rem;
    margin-bottom: 7rem;
    color: white;
    margin-top: 20px;
}

#pano-container {
    width: 90%;
    height: 500px;
    max-width: 880px;
    margin: 20px auto;
    position: relative;
    cursor: grab;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.11), 0 2px 2px rgba(0, 0, 0, 0.11), 0 4px 4px rgba(0, 0, 0, 0.11), 0 6px 8px rgba(0, 0, 0, 0.11), 0 8px 16px rgba(0, 0, 0, 0.11);
    display: block;
}

#pano-container:active {
    cursor: grabbing;
}

#pano-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    z-index: 100;
    text-align: center;
}

.pano-spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: pano-spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes pano-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    #pano-container {
        width: 95%;
        height: 350px;
        margin: 15px auto;
        border-radius: 6px;
    }

    .footer-links-section {
        padding-top: 35px;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom div {
        display: block !important;
    }
}

@media (max-width: 480px) {
    #pano-container {
        width: 100%;
        height: 300px;
        margin: 10px auto;
        border-radius: 5px;
    }

    #pano-loading {
        font-size: 14px;
    }

    .pano-spinner {
        width: 30px;
        height: 30px;
        margin: 0 auto 10px;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    pointer-events: none;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    pointer-events: auto;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.get-quote-btn {
    background: linear-gradient(45deg, #b722e1, #6f0ece);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(183, 34, 225, 0.4);
    transition: all 0.3s ease;
    pointer-events: auto;
    animation: glow 2s ease-in-out infinite alternate;
}

.get-quote-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(183, 34, 225, 0.6);
}

.get-quote-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 4px 20px rgba(183, 34, 225, 0.4);
    }

    to {
        box-shadow: 0 4px 20px rgba(183, 34, 225, 0.8);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-buttons {
        padding: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .get-quote-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .get-quote-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        padding: 10px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }

    .get-quote-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .get-quote-btn span {
        display: none;
    }

    .get-quote-btn svg {
        width: 16px;
        height: 16px;
        margin: 0;
    }
}


/* DIWALI SECTION CSS */
.diwali-hampers-sec {
    padding: 60px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    margin-bottom: 60px;
}

/* Container */
.diwali-hampers-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading */
.diwali-hampers-heading {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.diwali-hampers-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Grid */
.diwali-hampers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Cards */
.diwali-hamper-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diwali-hamper-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.diwali-hamper-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trending Label */
.diwali-trending-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #862bdb;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    animation: pulseGlow 1.5s infinite;
    box-shadow: 0 0 10px rgba(134, 43, 219, 0.6);
}

/* Label Glow Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(134, 43, 219, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(134, 43, 219, 0.9);
    }

    100% {
        box-shadow: 0 0 10px rgba(134, 43, 219, 0.6);
    }
}

/* CTA */
.diwali-hampers-cta {
    margin-top: 20px;
}

.diwali-cta-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 12px;
}

.diwali-cta-btn {
    background: #862bdb;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diwali-cta-btn:hover {
    background: #5a2a82;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(134, 43, 219, 0.6);
}

/* ---------------------- */
/* RESPONSIVE DESIGN */
/* ---------------------- */

/* Tablets */
@media (max-width: 992px) {
    .diwali-hampers-heading {
        font-size: 1.9rem;
    }

    .diwali-hampers-subtext {
        font-size: 1rem;
    }

    .diwali-cta-text {
        font-size: 1.1rem;
    }

    .diwali-cta-btn {
        font-size: 0.95rem;
        padding: 10px 24px;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .diwali-hampers-sec {
        padding: 40px 15px;
    }

    .diwali-hampers-heading {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .diwali-hampers-subtext {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .diwali-hampers-grid {
        gap: 18px;
    }

    .diwali-trending-label {
        font-size: 0.75rem;
        padding: 4px 10px;
        top: 10px;
        left: 10px;
    }

    .diwali-cta-text {
        font-size: 1rem;
    }

    .diwali-cta-btn {
        font-size: 0.9rem;
        padding: 10px 22px;
    }
}