/* ==========================================================================
   1. Global Resets & Variables
   ========================================================================== */
:root {
    --primary-glow: rgba(144, 101, 255, 0.2);
    --dark-bg: #0f0e17;
    --card-bg: #1a1a2e;
    --text-light: #fffffe;
    --text-secondary: #a7a9be;
    --hover-bg: #f2f2f6;
    --hover-text: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(144, 101, 255, 0.25);
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container img {
    height: 50px;
    transition: height 0.3s ease;
    display: block;
}

header.scrolled .logo-container img {
    height: 40px;
}

/* --- Desktop Navigation --- */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.main-nav ul li:hover > a {
    color: #b58aff;
}

/* --- Submenu (Desktop) --- */
.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
}

.main-nav li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.main-nav .submenu li {
    width: 100%;
}

.main-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.main-nav .submenu li a:hover {
    background: #1f1f28;
    color: #b58aff;
}

/* --- Header Actions & Contact Button --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 179, 255, 0.6);
    border-radius: 50px;
    color: #b58aff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background: rgba(217, 179, 255, 0.08);
    border-color: #b58aff;
    box-shadow: 0 0 14px #b58aff, 0 0 30px #9065ff;
}

/* --- Mobile Navigation (Hamburger & Side Menu) --- */
#hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    background: none;
    border: none;
}

#hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #b58aff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

#side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
}

#side-menu.active {
    right: 0;
}

#side-menu .side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-glow);
}

#side-menu .side-menu-header h3 {
    color: #b58aff;
    font-size: 1.5rem;
}

#close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

#side-menu .side-nav-list,
#side-menu .submenu-mobile {
    list-style: none;
}

#side-menu .side-nav-list > li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#side-menu .side-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 12px 5px;
    text-transform: uppercase;
}

#side-menu .side-nav-list li a:hover {
    color: #b58aff;
}

#side-menu .submenu-mobile {
    padding-left: 20px;
    display: none;
    margin-top: 10px;
}

#side-menu li.active > .submenu-mobile {
    display: block;
}

#side-menu li.active > a {
    color: #d84dff;
}

/* ==========================================================================
   3. Page Sections
   ========================================================================== */

/* --- Banner Section --- */
.banner-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(214, 66, 244, 0.327), rgba(53, 199, 244, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.banner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.banner-image img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.8));
    animation: floatY 6s ease-in-out infinite;
}

.banner-text {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.banner-text h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 36px;
    font-weight: 650;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
}

.banner-text h1 .auto-typing {
    position: relative;
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 45px;
    background: linear-gradient(90deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.15);
    animation: text-glow 2s ease-in-out infinite alternate;
    padding-right: 12px;
    text-transform: uppercase;
}

.banner-text h1 .auto-typing.typing-active::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(220, 174, 253, 0.904);
    font-weight: normal;
    font-size: 45px;
    animation: blink 1s step-end infinite;
    opacity: 1;
    text-shadow: none;
    -webkit-text-fill-color: rgba(238, 143, 247, 0.71);
}

.banner-text h1 > span:nth-child(2) {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 650;
    font-size: 36px;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 15px 0 5px 0;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.banner-text h1 > span:last-child {
    font-family: 'Audiowide', cursive;
    font-weight: 700;
    font-size: 45px;
    display: inline-block;
    background: linear-gradient(90deg, #9065FF 0%, #B58AFF 50%, #D9B3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    cursor: pointer;
}

.scroll-mouse svg {
    width: 24px;
    height: 36px;
    fill: #edeaeac2;
    stroke: none;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(144, 101, 255, 0.5);
}

/* --- Logo Marquee --- */
.logo-marquee-container {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.marquee-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 10px 0;
    margin-bottom: 20px;
    text-shadow: none;
    letter-spacing: 2px;
    margin-left: 100px;
    text-align: left;
}

.logo-scroll-track {
    height: 60px;
    opacity: 0.9;
    display: flex;
    gap: 60px;
    padding: 20px 0;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
    width: fit-content;
}

.logo-scroll-track img {
    height: 60px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: none;
}

.logo-scroll-track img:hover {
    transform: scale(1.1);
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Discover Webverse Section --- */
section:nth-of-type(2) {
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
    background: #000;
}

section:nth-of-type(2)>div {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

section:nth-of-type(2)>div>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 900px;
    width: 100%;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 25px rgba(214, 101, 255, 0.3), 0 20px 40px rgba(144, 101, 255, 0.2);
}

section:nth-of-type(2)>div>div::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #9065FF 0%, #B58AFF 50%, #D9B3FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

section:nth-of-type(2)>div>div:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 15px 35px rgba(144, 101, 255, 0.5), 0 30px 60px rgba(144, 101, 255, 0.3);
}

section:nth-of-type(2)>div>div>div:first-child {
    flex: 1;
    padding-right: 30px;
    position: relative;
    z-index: 1;
}

.section-highlight {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Josefin Sans', sans-serif;
    background: linear-gradient(135deg, #9065FF 0%, #B58AFF 50%, #D9B3FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section:nth-of-type(2)>div>div>div:first-child>h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

section:nth-of-type(2)>div>div>div:first-child>h3>span {
    color: #ffffffeb;
    font-weight: 600;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
}

section:nth-of-type(2)>div>div>div:first-child>p {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.webverse-btn {
    display: inline-flex;
    width: 280px;
    height: 50px;
    background-color: #1d2129;
    border-radius: 40px;
    box-shadow: 0px 5px 10px rgba(190, 190, 190, 0.3);
    justify-content: space-between;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.webverse-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(181, 138, 255, 0.1) 0%, rgba(144, 101, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.webverse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(144, 101, 255, 0.3);
}

.webverse-btn:hover::before {
    opacity: 1;
}

.webverse-btn-icon {
    width: 50px;
    height: 50px;
    background-color: #f7f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #1d2129;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.webverse-btn:hover .webverse-btn-icon {
    background-color: #dccdf5;
    transform: scale(1.05);
}

.webverse-btn-text {
    width: calc(100% - 50px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.webverse-btn:hover .webverse-btn-text {
    color: #f0e6ff;
    letter-spacing: 1.2px;
}

.webverse-btn-icon svg {
    transition-duration: 1.5s;
    width: 16px;
    height: 19px;
}

.webverse-btn:hover .webverse-btn-icon svg {
    transition-duration: 1.5s;
    animation: arrow 1s linear infinite;
}

section:nth-of-type(2)>div>div>div:last-child {
    margin-left: 15px;
    flex-shrink: 0;
}

section:nth-of-type(2)>div>div>div:last-child img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

/* --- Webverse Demo Section --- */
section:nth-of-type(3) {
    background-color: #000000;
    padding: 80px 0;
}

section:nth-of-type(3)>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #7e22ce 0%, #3b82f6 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
}

section:nth-of-type(3)>div>div:first-child {
    text-align: center;
    margin-bottom: 30px;
}

section:nth-of-type(3)>div>div:first-child>h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: white;
    font-family: 'Poppins', sans-serif;
}

section:nth-of-type(3)>div>div:first-child>p {
    font-family: 'Jost', sans-serif;
    color: #94a3b8;
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.6;
}

section:nth-of-type(3)>div>div:nth-child(2) {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
}

section:nth-of-type(3)>div>div:nth-child(2)>iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
}

section:nth-of-type(3)>div>div:nth-child(2)>div {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

section:nth-of-type(3)>div>div:nth-child(2)>div>a {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid #6366f1;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

section:nth-of-type(3)>div>div:nth-child(2)>div>a.highlight {
    background: #6366f1;
    border: 1px solid #6366f1;
}

section:nth-of-type(3)>div>div:nth-child(2)>div>a.whatsapp-button {
    background: #25D366;
    border: 1px solid #25D366;
    display: flex;
    align-items: center;
    gap: 8px;
}

section:nth-of-type(3)>div>div:nth-child(2)>div>a:hover {
    background: rgba(99, 102, 241, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 117, 255, 0.848);
}

section:nth-of-type(3)>div>div:nth-child(2)>div>a.highlight:hover {
    background: #7b7ef7 !important;
    box-shadow: 0 4px 15px rgba(124, 126, 252, 0.879);
}

section:nth-of-type(3)>div>div:nth-child(2)>div>a.whatsapp-button:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 140, 126, 0.4);
}

/* ==========================================================================
   4. Digiverse Feature Cards
   ========================================================================== */
.digiverse-features-section {
    background: var(--dark-bg);
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.digiverse-features-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #ffffff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.digiverse-features-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.digiverse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    background: var(--hover-bg);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.feature-card:hover .card-content h3,
.feature-card:hover .card-content p {
    color: var(--hover-text);
}

.card-content {
    flex-grow: 1;
}

.card-image {
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card-image:hover img {
    transform: scale(1.05);
}

.image-hover-text {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image:hover .image-hover-text {
    opacity: 1;
}

.card-number {
    background-color: #d796ea;
    color: #000;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* ==========================================================================
   5. Home Page Section: Apartments, Villas, Plots
   ========================================================================== */
.home-property-section {
    padding: 80px 0;
    background: #000;
}

.home-property-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-property-section .section-heading {
    color: #dcdcdc;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
}

.home-property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.property-item {
    text-align: center;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s ease;
    text-decoration: none;
    border-radius: 12px;
}

.property-item:hover {
    transform: translateY(-5px);
}

.property-icon-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.property-item.active .property-icon-box {
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.property-icon-box img {
    width: 70px;
    height: 70px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.property-item.active .property-icon-box img {
    filter: none;
}

.property-item h3 {
    color: #94a3b8;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    margin: 0;
}

.property-item.active h3 {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   6. Image Modal
   ========================================================================== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease-in-out;
    padding-top: 50px;
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001; 
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* ==========================================================================
   7. Footer
   ========================================================================== */
.footer-section {
    background-color: #000;
    padding: 80px 0 40px;
    font-family: 'Poppins', sans-serif;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #fff !important;
}

.footer-col img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-col img:hover {
    opacity: 0.9;
}

.company-info {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.company-info p {
    margin: 0 0 10px;
}

.company-info strong {
    color: #fff;
}

/* --- Copyright Bar --- */
.glass-bottom-bar {
    background: rgba(0, 0, 0, 0.91);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-top: 1px solid rgba(181, 138, 255, 0.2);
    box-shadow: 0 -4px 12px rgba(181, 138, 255, 0.2);
    z-index: 99;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.glass-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.glass-copyright {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.glass-copyright a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
}

.glass-copyright a:hover {
    color: #FFFFFF;
}

.glass-icons {
    display: flex;
    gap: 16px;
}

.icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 15px;
    background-color: transparent;
    border: none;
}

.icon svg {
    height: 24px;
    width: 24px;
    fill: currentColor;
    transition: color 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}

.icon:hover svg {
    color: #FFFFFF;
}

/* ==========================================================================
   8. Floating Action Buttons
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px; /* Positioned above the back-to-top button */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 2px; /* Small adjustment for icon centering */
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(144, 101, 255, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-wrap:hover::after {
    opacity: 0.1;
}

.progress-wrap .progress-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    font-size: 18px;
    color: #9065ff;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 400ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-wrap:hover .progress-icon {
    color: #ffffff;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #9065ff;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* ==========================================================================
   9. Animations & Keyframes
   ========================================================================== */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes scrollWheel {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes text-glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(255, 255, 255, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3), 0 0 35px rgba(255, 255, 255, 0.2);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        margin-left: 0px;
    }
    100% {
        opacity: 1;
        margin-left: 10px;
    }
}

/* ==========================================================================
   10. Webverse Interactive Demo Section
   ========================================================================== */
.webverse-interactive-selector {
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
}

.features-grid-interactive {
    display: flex;
    justify-content: center;
    gap: 200px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-item {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item h3 {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: #ffffff;
}

.feature-item.active h3 {
    color: #ffffff;
    font-weight: 600;
}

.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.icon-box.active {
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-box img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.icon-box.active img {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   11. Stats Section (with Glow and Hover Fx)
   ========================================================================== */
.stats-section {
    padding: 80px 0;
    background: #000000;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    position: relative; 
    overflow: hidden;   
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(214, 66, 244, 0.25), rgba(53, 199, 244, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative; 
    z-index: 1;
}

.stat-item {
    text-align: center;
    max-width: 200px;
    padding: 20px;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 5px 0;
    transition: color 0.4s ease;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: #dcdcdc;
    transition: color 0.4s ease;
}

.stat-description {
    font-size: 14px;
    color: #a7a9be;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 150px;
    transition: color 0.4s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.stat-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label,
.stat-item:hover .stat-description {
    color: #000000;
}


/* ==========================================================================
   12. Testimonials Section
   ========================================================================== */
.testimonial-section {
    background: #000;
    padding: 100px 0 70px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(214, 66, 244, 0.25), rgba(53, 199, 244, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonial-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-section .section-heading__subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #c7d2fe;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonial-section .section-heading__title {
    color: #ffffff;
    font-weight: 600;
    font-size: 42px;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.testimonial-scroller {
    width: 100%;
    display: flex;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    position: relative;
    z-index: 1;
}

.testimonial-track {
    display: flex;
    animation: scroll-testimonials 40s linear infinite;
}

.testimonial-card {
    background: rgba(31, 32, 66, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 380px; 
    flex-shrink: 0;
}

.testimonial-text {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 5px;
}

.author-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-info .author-name {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.author-info .author-location {
    color: #da6efb;
    font-size: 14px;
}


/* ==========================================================================
   13. Featured VR Immersions Section
   ========================================================================== */
.vr-immersion-section {
    background: #000;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.vr-immersion-section .section-heading {
    text-align: center;
    margin-bottom: 50px;
}

/* Using a similar style to the testimonial subtitle for consistency */
.vr-immersion-section .section-heading__subtitle {
    display: inline-block;
    color: #c7d2fe;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px; /* As requested */
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
}

/* Using a similar style to the testimonial title for consistency */
.vr-immersion-section .section-heading__title {
    color: #ffffff;
    font-weight: 600;
    font-size: 42px;
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.3;
}

.vr-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.vr-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(144, 101, 255, 0.2);
}

.vr-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.vr-card:hover img {
    transform: scale(1.05);
}

.vr-card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    transition: opacity 0.3s ease;
}

.vr-card-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.vr-card-content p {
    color: var(--text-secondary, #a7a9be);
    font-size: 1rem;
    margin: 0;
}

.vr-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 14, 23, 0.7); /* Using --dark-bg with alpha */
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.vr-card:hover .vr-card-overlay {
    opacity: 1;
}

.vr-card:hover .vr-card-content {
    opacity: 0; /* Hide the bottom text on hover for a cleaner look */
}

.vr-view-btn {
    padding: 12px 28px;
    background: linear-gradient(90deg, #9065FF, #a78bfa);
    color: #fff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s, box-shadow 0.3s ease;
}

.vr-card:hover .vr-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.vr-view-btn:hover {
    box-shadow: 0 5px 15px rgba(144, 101, 255, 0.4);
}

/* Responsive adjustments for the VR section */
@media (max-width: 768px) {
    .vr-immersion-section .section-heading__title {
        font-size: 32px;
    }
    .vr-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   14. Tools Section
   ========================================================================== */
.tools-section {
    padding: 100px 0;
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.tools-section .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.tools-section .section-heading__subtitle {
    display: inline-block;
    color: #c7d2fe;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px; /* As requested */
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: rgba(144, 101, 255, 0.1);
    border: 1px solid rgba(144, 101, 255, 0.2);
}

.tools-section .section-heading__title {
    color: #ffffff;
    font-weight: 600;
    font-size: 42px;
}

.tools-container {
    display: flex;
    gap: 40px;
    background: rgba(26, 26, 46, 0.4);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--primary-glow);
    min-height: 450px;
}

.tools-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 0 0 250px; /* Fixed width for the left list */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-left-color 0.3s ease;
    border-left: 4px solid transparent;
}

.tool-item i {
    font-size: 20px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tool-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.tool-item:hover {
    background-color: rgba(144, 101, 255, 0.08);
}

.tool-item.active {
    background-color: rgba(144, 101, 255, 0.15);
    border-left-color: #9065FF;
}

.tool-item.active i,
.tool-item.active h3 {
    color: var(--text-light);
}

.tools-content {
    flex-grow: 1;
    position: relative;
}

.tool-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    transform: translateY(10px);
    display: flex;
    flex-direction: column;
}

.tool-pane.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tool-pane img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.tool-pane p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex-grow: 1;
    margin: 0 0 20px 0;
}

.tool-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 10px 22px;
    background: #9065FF;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tool-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.tool-btn:hover {
    background: #a78bfa;
    transform: translateY(-2px);
}

.tool-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Styles for Tools Section */
@media (max-width: 992px) {
    .tools-container {
        flex-direction: column;
    }
    .tools-list {
        flex-direction: row;
        flex-wrap: wrap;
        flex: 1 1 auto;
        justify-content: center;
    }
    .tool-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        border-left: none;
        border-bottom: 4px solid transparent;
        padding: 15px;
    }
    .tool-item h3 {
        font-size: 14px;
    }
    .tool-item.active {
        border-left-color: transparent;
        border-bottom-color: #9065FF;
    }
    .tools-content {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .tools-section .section-heading__title {
        font-size: 32px;
    }
}

/* ==========================================================================
   16. Solutions Focus Section
   ========================================================================== */

.solutions-focus-section {
    background-color: #0F0E17; /* Dark background from your theme */
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.sf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sf-header {
    text-align: left;
    margin-bottom: 40px;
}

.sf-subtitle {
    display: block;
    color: #a7a9be; /* Secondary text color */
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.sf-title {
    color: #fffffe; /* Primary text color */
    font-size: 42px;
    font-weight: 600;
}

.sf-interactive-wrapper {
    background-color: #2a2d38; /* Muted dark gray from image */
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sf-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sf-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #a7a9be;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sf-tab:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sf-tab.active {
    background-color: #fff;
    color: #16151E;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sf-content-panes {
    position: relative;
    min-height: 320px;
}

.sf-pane {
    display: none; /* Hidden by default */
    align-items: center;
    gap: 40px;
    animation: sf-fadeIn 0.5s ease-in-out forwards;
}

.sf-pane.active {
    display: flex; /* Show active pane */
}

.sf-pane-text {
    flex: 1;
    color: #fffffe;
}

.sf-pane-text h3 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 600;
}

.sf-pane-text p {
    font-size: 18px;
    color: #a7a9be;
    line-height: 1.7;
    max-width: 400px;
}

.sf-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 10px 20px;
    color: #c0b0ff;
    background-color: transparent;
    border: 1px solid #c0b0ff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sf-explore-link i {
    transition: transform 0.3s ease;
}

.sf-explore-link:hover {
    background-color: #c0b0ff;
    color: #16151E;
}

.sf-explore-link:hover i {
    transform: translateX(5px);
}

.sf-pane-visual {
    flex: 1.2;
}

.sf-pane-visual img {
    width: 100%;
    height: 320px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Fade-in animation */
@keyframes sf-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .sf-pane {
        flex-direction: column;
        text-align: center;
    }
    .sf-pane-text {
        order: 2;
    }
    .sf-pane-visual {
        order: 1;
        width: 100%;
        max-width: 500px;
    }
    .sf-pane-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .sf-title {
        font-size: 32px;
    }
    .sf-tabs {
        flex-wrap: wrap; /* Allow tabs to wrap on small screens */
    }
    .sf-tab {
        padding: 10px 18px;
        font-size: 14px;
    }
    .sf-pane-text h3 {
        font-size: 28px;
    }
    .sf-pane-text p {
        font-size: 16px;
    }
}
/* ==========================================================================
   17. Responsive Media Queries
   ========================================================================== */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 25px;
    }
    .main-nav ul li > a {
        font-size: 0.9rem;
    }
    .contact-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Navigation */
    .main-nav, .contact-btn {
        display: none;
    }
    #hamburger-menu {
        display: flex;
    }

    /* Banner */
    .banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 80px;
    }
    .banner-image {
        justify-content: center;
        order: 1;
    }
    .banner-text {
        align-items: center;
        max-width: 100%;
        order: 2;
    }
    .banner-image img {
        max-height: 40vh;
    }
    .banner-text h1 .auto-typing {
        font-size: 32px;
    }
    .banner-text h1,
    .banner-text h1 > span:nth-child(2) {
        font-size: 22px;
    }
    .banner-text h1 > span:last-child {
        font-size: 32px;
    }
    .banner-text h1 .auto-typing.typing-active::after {
        font-size: 32px;
    }

    /* Floating Buttons */
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float {
        right: 20px;
        bottom: 80px; 
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Logo Marquee */
    .marquee-text {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    /* Discover Section */
    section:nth-of-type(2)>div>div {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    section:nth-of-type(2)>div>div>div:first-child {
        padding-right: 0;
        margin-bottom: 25px;
    }
    .webverse-btn {
        margin: 10px auto 0;
    }
    section:nth-of-type(2)>div>div>div:last-child {
        margin-left: 0;
    }
    section:nth-of-type(2)>div>div>div:last-child img {
        width: 140px;
        height: 140px;
    }

    /* Demo Section */
    section:nth-of-type(3)>div>div:first-child>h2 {
        font-size: 32px;
    }
    section:nth-of-type(3)>div>div:nth-child(2)>iframe {
        height: 400px;
    }
    section:nth-of-type(3)>div>div:nth-child(2)>div>a {
        padding: 10px 15px;
        font-size: 14px;
        flex: 1 1 45%;
        text-align: center;
    }
    
    /* Interactive Demo Section */
    .features-grid-interactive {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
        width: 100%;
        max-width: 350px;
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: #1a1a2e;
    }
    .feature-item:hover {
        background: #252538;
    }
    .feature-item h3 {
        margin-top: 0;
        font-size: 16px;
    }
    .icon-box {
        margin: 0;
        width: 60px;
        height: 60px;
    }
    .icon-box img {
        width: 35px;
        height: 35px;
    }
    
    /* Digiverse Feature Cards */
    .digiverse-grid {
        grid-template-columns: 1fr;
    }

    /* Home Property Section */
    .home-property-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    .property-icon-box {
        width: 100px;
        height: 100px;
    }
    .property-icon-box img {
        width: 60px;
        height: 60px;
    }
    .property-item h3 {
        font-size: 15px;
    }

    /* Footer */
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col {
        min-width: 100%;
    }

    /* Stats Section */
    .stats-grid {
        flex-direction: column;
        gap: 50px;
    }
    .stat-item {
        text-align: center;
    }
    .stat-item::before {
        width: 200px;
        height: 200px;
    }
    .stat-number {
        font-size: 42px;
    }

    /* Testimonials Section */
    .testimonial-section .section-heading__title {
        font-size: 32px;
    }
    .testimonial-card {
        width: 300px; /* Smaller cards on mobile */
    }
}

/* --- Small Mobile (max-width: 600px) --- */
@media (max-width: 600px) {
    .glass-content-wrap {
        flex-direction: column;
        gap: 15px;
    }
    .glass-icons {
        justify-content: center;
    }
}

/* --- Extra Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    /* Banner */
    .banner-text h1 .auto-typing {
        font-size: 26px;
    }
    .banner-text h1,
    .banner-text h1 > span:nth-child(2) {
        font-size: 18px;
    }
    .banner-text h1 > span:last-child {
        font-size: 26px;
    }
    .banner-text h1 .auto-typing.typing-active::after {
        font-size: 26px;
    }
    .scroll-text {
        font-size: 10px;
    }
    
    /* Discover Section */
    section:nth-of-type(2)>div>div>div:last-child img {
        width: 120px;
        height: 120px;
    }
    
    /* Demo Section */
    section:nth-of-type(3)>div>div:nth-child(2)>div>a {
        flex: 1 1 100%;
    }
    
    /* Home Property Section */
    .home-property-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .property-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
    }
    .property-icon-box {
        margin: 0;
    }
}

/* ==========================================================================
   18. Keyframes for Testimonial Scroll
   ========================================================================== */
@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scroll the length of the original set of cards */
    }
}
