/* ===== CSS Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #F8D210;
    --secondary-color: #111111;
    --dark-color: #000000;
    --light-color: #f8f9fa;
    --text-color: #222;
    --gray-color: #6c757d;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #111 0%, #333 100%);
    --gradient-2: linear-gradient(135deg, #F8D210 0%, #FFB700 100%);
    --gradient-3: linear-gradient(135deg, #000 0%, #222 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-2);
    z-index: 9999;
    box-shadow: 0 0 10px var(--primary-color);
    transition: width 0.1s ease-out;
}

/* ===== Advanced Fast Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    transition: transform 0.8s cubic-bezier(1, 0, 0, 1), opacity 0.5s ease;
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(248, 210, 16, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: 1;
}

.preloader.fade-out {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 350px;
}

.RAITO-logo-loader {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.RAITO-logo-loader img {
    height: 100px;
    filter: drop-shadow(0 0 15px rgba(248, 210, 16, 0.4));
    animation: logoEntrance 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes logoEntrance {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.laser-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color);
    animation: scanVertical 1.2s ease-in-out infinite;
    z-index: 10;
}

@keyframes scanVertical {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    50% {
        top: 100%;
    }
}

.loader-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-2);
    box-shadow: 0 0 15px var(--primary-color);
    animation: progressFill 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    30% {
        width: 40%;
    }

    60% {
        width: 65%;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    opacity: 0.8;
    animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 10000;
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(248, 210, 16, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-service {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===== Advanced Language Selector ===== */
.language-selector {
    position: relative;
    list-style: none;
}

.lang-trigger {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 22px !important;
    background: #FFF9E5;
    /* Light cream/beige from image */
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    color: #111111 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lang-trigger:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.lang-trigger .fa-globe {
    font-size: 1.2rem;
    color: #111111;
}

.lang-trigger:hover .fa-globe {
    animation: rotateGlobeFast 2s linear infinite;
}

@keyframes rotateGlobeFast {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.current-lang {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #111111;
}

.lang-trigger .fa-chevron-down {
    font-size: 0.85rem;
    color: #111111;
    transition: transform 0.3s ease;
}

.language-selector:hover .lang-trigger .fa-chevron-down {
    transform: rotate(180deg);
}

.lang-menu {
    min-width: 220px !important;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

.lang-menu::-webkit-scrollbar {
    width: 6px;
}

.lang-menu::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.lang-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.lang-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.lang-option {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 20px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), rgba(248, 210, 16, 0.3));
    transition: width 0.3s ease;
    z-index: -1;
}

.lang-option:hover::before {
    width: 100%;
}

.lang-option:hover {
    background: transparent !important;
    color: var(--secondary-color) !important;
    padding-left: 25px !important;
    transform: translateX(5px);
}

.lang-option.active {
    background: rgba(248, 210, 16, 0.15) !important;
    color: var(--secondary-color) !important;
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
}

.flag-icon {
    font-size: 1.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.lang-option:hover .flag-icon {
    transform: scale(1.2) rotate(10deg);
}

.lang-option.active .flag-icon {
    animation: flagWave 1s ease-in-out infinite;
}

@keyframes flagWave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}


/* ===== Language Selector Mobile Responsive ===== */
@media (max-width: 1024px) {
    .language-selector {
        order: 10;
        margin-left: auto;
    }

    .lang-trigger {
        padding: 8px 16px !important;
        background: #FFF9E5;
        border-radius: 50px;
    }

    .lang-trigger .fa-globe {
        font-size: 1rem;
    }

    .current-lang {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .language-selector {
        width: 100%;
        margin: 15px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lang-trigger {
        width: auto;
        min-width: 140px;
        justify-content: center;
        padding: 12px 30px !important;
        background: #FFF9E5;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 50px;
        font-size: 1rem;
    }

    .lang-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 300px !important;
        min-width: 100% !important;
        max-height: 0;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(248, 210, 16, 0.1);
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: block;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) transparent;
    }

    .lang-menu::-webkit-scrollbar {
        width: 4px;
    }

    .lang-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    .language-selector:hover .lang-menu,
    .language-selector.active .lang-menu {
        max-height: 700px;
        overflow-y: auto;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 10px 0;
    }

    .lang-option {
        padding: 15px 25px !important;
        justify-content: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .lang-option:last-child {
        border-bottom: none;
    }

    .flag-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .lang-trigger {
        padding: 10px 20px !important;
        min-width: 160px;
    }

    .lang-menu {
        max-height: 0;
    }

    .language-selector:hover .lang-menu,
    .language-selector.active .lang-menu {
        max-height: 550px;
    }
}


/* Custom Cursor */
.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor-blur {
    width: 40px;
    height: 40px;
    background: rgba(248, 210, 16, 0.2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(2px);
}

.cursor-active {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(248, 210, 16, 0.6);
}

@media (max-width: 1024px) {

    .custom-cursor,
    .custom-cursor-blur {
        display: none;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Standard industrial photography ratio */
    min-height: 400px;
    margin-top: 85px;
    /* Offset for the fixed header */
    overflow: hidden;
    background: #000;
}



.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(248, 210, 16, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 210, 16, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-abs-deco {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 210, 16, 0.1) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    animation: pulseDeco 8s ease-in-out infinite alternate;
}

@keyframes pulseDeco {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.5) translate(50px, 50px);
        opacity: 0.6;
    }
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
}

/* Ken Burns Effect */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-2%, -1%);
    }
}

.slide.active .slide-main-img {
    animation: kenBurns 10s ease-out forwards;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.2rem;
    }
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.5s;
}

.slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) 0.7s;
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background: #e0be0e;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--secondary-color);
}

.btn-secondary:hover::before {
    left: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}

/* ===== Animations ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 210, 16, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(248, 210, 16, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 210, 16, 0);
    }
}

@keyframes blurEntrance {
    from {
        filter: blur(20px);
        opacity: 0;
    }

    to {
        filter: blur(0);
        opacity: 1;
    }
}

.blur-entrance {
    animation: blurEntrance 1.5s ease-out;
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), #fff, var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

/* Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Button Shimmer */
.btn-shimmer {
    background: linear-gradient(90deg, var(--primary-color) 0%, #fff 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    color: #000;
    border: none;
    animation: shimmer 3s infinite linear;
}

.btn-shimmer:hover {
    animation: shimmer 1s infinite linear;
}

/* Float Element */
.float-element {
    animation: float 4s ease-in-out infinite;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
}

/* ===== About Section ===== */
.about-section {
    padding: 80px 0;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--gray-color);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(248, 210, 16, 0.2);
    border-bottom: 3px solid var(--primary-color);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== Advanced Features Section ===== */
.features-section {
    padding: 100px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.05;
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 210, 16, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(248, 210, 16, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 20px rgba(248, 210, 16, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 210, 16, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.feature-icon i {
    filter: drop-shadow(0 0 10px rgba(248, 210, 16, 0.4));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px rgba(248, 210, 16, 0.5);
}

.feature-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

/* Add a subtle technical line under active cards */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.6s ease;
}

.feature-card:hover::after {
    width: 100%;
}

/* ===== Advanced Why Choose Us Section ===== */
.why-choose-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(248, 210, 16, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    transform: translate(-50%, -50%) rotate(15deg);
    pointer-events: none;
    z-index: 1;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 210, 16, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(248, 210, 16, 0.15);
    border-color: rgba(248, 210, 16, 0.3);
    background: #fff;
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--secondary-color);
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.why-card:hover .why-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.why-card p {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
}

/* staggered animation delay */
.why-grid .why-card:nth-child(1) {
    transition-delay: 0.1s;
}

.why-grid .why-card:nth-child(2) {
    transition-delay: 0.2s;
}

.why-grid .why-card:nth-child(3) {
    transition-delay: 0.3s;
}

.why-grid .why-card:nth-child(4) {
    transition-delay: 0.4s;
}

.why-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.why-card:hover .why-number {
    color: rgba(248, 210, 16, 0.1);
    transform: scale(1.2);
}

/* ===== Advanced Product Snapshot Section ===== */
.snapshot-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.snapshot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .snapshot-grid {
        grid-template-columns: 1fr;
    }
}

.snapshot-card {
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.snapshot-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(248, 210, 16, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.snapshot-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(248, 210, 16, 0.3);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.snapshot-card:hover::after {
    opacity: 1;
}

.snapshot-card h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.snapshot-list {
    list-style: none;
    margin-bottom: 30px;
}

.snapshot-list li {
    color: var(--gray-color);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.snapshot-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.power-indicator {
    height: 6px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.power-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 100px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

.snapshot-card.active .power-bar.p-low {
    width: 33%;
}

.snapshot-card.active .power-bar.p-med {
    width: 66%;
}

.snapshot-card.active .power-bar.p-high {
    width: 100%;
}

.kW-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* ===== Vision Section ===== */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.vision-section .section-header h2 {
    color: var(--white);
}

.vision-section .divider {
    background: var(--primary-color);
}

.vision-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.vision-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== Statistics Section ===== */
.stats-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
}

/* ===== Why RAITO Strip ===== */
.why-RAITO-strip {
    padding: 60px 0;
    background: #000;
    position: relative;
    border-top: 1px solid rgba(248, 210, 16, 0.2);
    border-bottom: 1px solid rgba(248, 210, 16, 0.2);
}

.why-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.why-strip-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.why-strip-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(248, 210, 16, 0.3));
}

.why-strip-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-strip-item p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-strip-item:hover {
    transform: translateY(-5px);
}

.why-strip-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(248, 210, 16, 0.6));
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-wrapper {
    margin-top: 50px;
}

.contact-info-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-content p {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Google Reviews Section ===== */
.google-reviews-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(248, 210, 16, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(66, 133, 244, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.google-rating-card {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.google-rating-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    z-index: -1;
    border-radius: 26px;
    opacity: 0.1;
    transition: opacity 0.5s ease;
}

.google-rating-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.google-rating-card:hover::after {
    opacity: 0.3;
}

.rating-big-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    background: linear-gradient(45deg, #111, #444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rating-stars-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stars {
    color: #fbbc04;
    font-size: 1.3rem;
    display: flex;
    gap: 3px;
}

.stars i {
    text-shadow: 0 2px 4px rgba(251, 188, 4, 0.2);
}

.rating-text {
    font-size: 0.95rem;
    color: var(--gray-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #4285F4;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.review-item {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(248, 210, 16, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.review-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-15px);
    border-color: rgba(248, 210, 16, 0.3);
}

.review-item:hover::before {
    opacity: 1;
}

.reviewer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reviewer-name h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.reviewer-name span {
    font-size: 0.85rem;
    color: #4285F4;
    font-weight: 600;
}

.google-icon-small {
    font-size: 1.4rem;
    color: #4285F4;
    opacity: 0.8;
}

.review-content {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: rgba(248, 210, 16, 0.2);
    font-family: serif;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-date {
    font-size: 0.85rem;
    color: var(--gray-color);
    font-weight: 500;
}

.google-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.google-link-btn:hover {
    background: #4285F4;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.4);
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
}

/* ===== Premium Footer Redesign ===== */
.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(248, 210, 16, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 0;
}

.footer-links li a:hover::before {
    width: 15px;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-newsletter input:focus {
    border-color: var(--primary-color);
    outline: none;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.newsletter-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* ===== Footer Ecosystem Logos ===== */
.footer-ecosystem {
    margin: 40px 0 60px;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 40px;
}

.ecosystem-header h4 {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 700;
}

.ecosystem-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ecosystem-logo-card {
    background: rgba(255, 255, 255, 0.02);
    width: 260px;
    height: 130px;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ecosystem-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(248, 210, 16, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ecosystem-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    opacity: 0.4;
    transition: all 0.5s ease;
}

.ecosystem-logo-card:hover {
    transform: translateY(-10px);
    border-color: rgba(248, 210, 16, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.ecosystem-logo-card:hover::before {
    opacity: 1;
}

.ecosystem-logo-card:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .ecosystem-logo-card {
        width: 220px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .ecosystem-logo-card {
        width: 100%;
        height: 120px;
    }
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 10002;
        width: 30px;
        height: 25px;
        justify-content: center;
        align-items: center;
    }

    .menu-toggle span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--secondary-color);
        transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .menu-toggle span:nth-child(1) {
        transform: translateY(-8px);
        width: 100%;
    }

    .menu-toggle span:nth-child(2) {
        transform: translateY(0);
        width: 80%;
        margin-left: auto;
    }

    .menu-toggle span:nth-child(3) {
        transform: translateY(8px);
        width: 100%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(0) rotate(45deg);
        width: 100%;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
        width: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 110px 2rem 60px;
        transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 10001;
        gap: 0;
        overflow-y: auto;
        scrollbar-width: none;
        /* Hide scrollbar for cleaner look */
        -webkit-overflow-scrolling: touch;
        backdrop-filter: blur(15px);
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered entry for menu items */
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu li a {
        color: var(--secondary-color);
        font-size: 1.25rem;
        font-weight: 700;
        display: block;
        padding: 12px 0;
        width: 100%;
        transition: color 0.3s ease;
    }

    .nav-menu li a:active {
        color: var(--primary-color);
        background: rgba(248, 210, 16, 0.05);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        width: 100%;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        padding: 0;
        border-radius: 12px;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
    }

    .logo {
        position: relative;
        z-index: 10002;
        font-size: 1.1rem;
        gap: 10px;
    }

    .logo img {
        height: 40px;
    }

    .slide-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }

    .slide-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 2rem;
        max-width: 100%;
        line-height: 1.5;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        align-items: center;
    }

    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .slide-content {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.8) 100%);
        text-align: center;
        padding-top: 60px;
    }

    .hero-slider {
        height: 600px;
        margin-top: 70px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 0.9rem;
    }

    .logo img {
        height: 40px;
    }

    .hero-slider {
        margin-top: 60px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* ===== Page Header ===== */
.page-header {
    padding: 150px 0 80px;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===== Products Section ===== */
.products-section {
    padding: 80px 0;
    background: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.product-card>p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-color);
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.product-card .btn {
    margin-top: 15px;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== Applications Grid ===== */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.application-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
}

.application-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--white);
}

.application-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.application-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ===== Content Section ===== */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.content-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-text ul {
    list-style: none;
    margin: 20px 0;
}

.content-text ul li {
    padding: 10px 0;
    color: var(--text-color);
}

.content-text ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.content-image {
    width: 100%;
    height: 400px;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
}

/* ===== Ecosystem Section ===== */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.ecosystem-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.ecosystem-card:hover {
    transform: translateY(-10px);
}

.ecosystem-logo {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: var(--white);
    font-weight: 800;
}

.ecosystem-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.ecosystem-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ecosystem-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* ===== Form Styles ===== */
.form-section {
    padding: 80px 0;
    background: var(--light-color);
}

.form-container {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

/* ===== Blog/Resources ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 220px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.blog-card p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .applications-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Why RAITO Comparison Table ===== */
.comparison-section {
    padding: 80px 0;
    background: var(--light-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: var(--dark-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table th.RAITO-col {
    background: var(--primary-color);
    position: relative;
}

.comparison-table td.RAITO-col {
    background: rgba(255, 107, 53, 0.05);
    font-weight: 600;
    color: var(--secondary-color);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-icon {
    color: #2ecc71;
    margin-right: 8px;
}

.cross-icon {
    color: #e74c3c;
    margin-right: 8px;
}

/* ===== Advantage Cards ===== */
.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-top-width: 10px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--gray-color);
    line-height: 1.6;
}


/* ===== Ecosystem Triangle Graphic ===== */
.ecosystem-graphic-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.triangle-container {
    position: relative;
    width: 600px;
    height: 500px;
    margin: 50px auto;
    max-width: 100%;
}

.triangle-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(79, 172, 254, 0.4);
    border: 5px solid rgba(255, 255, 255, 0.5);
}

.triangle-node {
    position: absolute;
    width: 220px;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-color);
    z-index: 3;
    transition: var(--transition);
}

.triangle-node:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.triangle-node h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.triangle-node p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

/* Positions for Triangle Nodes */
.node-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-bottom-left {
    bottom: 0;
    left: 0;
}

.node-bottom-right {
    bottom: 0;
    right: 0;
}

/* Connecting Lines */
.connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connector-line {
    stroke: #e0e0e0;
    stroke-width: 3;
    stroke-dasharray: 10;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 1000;
    }
}

@media (max-width: 768px) {
    .triangle-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .triangle-center,
    .triangle-node,
    .connector-svg {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 300px;
    }

    .triangle-node:hover {
        transform: translateY(-5px);
    }

    .node-top,
    .node-bottom-left,
    .node-bottom-right {
        left: auto;
        right: auto;
        bottom: auto;
    }

    .connector-svg {
        display: none;
    }
}


/* ===== Leadership Section ===== */
.leadership-section {
    padding: 80px 0;
    background: var(--light-color);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 5px solid var(--primary-color);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.leader-img-wrapper {
    height: 300px;
    background: var(--gray-color);
    overflow: hidden;
    position: relative;
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-img-wrapper img {
    transform: scale(1.05);
}

.leader-info {
    padding: 30px;
}

.leader-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.leader-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-quote {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #e0e0e0;
}

/* ===== Brand Promise Section ===== */
.brand-promise-section {
    padding: 60px 0;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-promise-text {
    font-size: 2rem;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.brand-promise-label {
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== Culture & Ethics ===== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.culture-box {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--gradient-2);
}

.culture-box.ethics {
    border-left-color: var(--primary-color);
}

.culture-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.culture-list {
    list-style: none;
}

.culture-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: var(--gray-color);
    line-height: 1.6;
}

.culture-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}


/* ===== Google Translate Widget Styles ===== */
#google_translate_li {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

#google_translate_element {
    line-height: 0;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.goog-te-gadget-simple:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--light-color) !important;
}

.goog-te-gadget-simple img {
    display: none !important;
    /* Hide Google icon if desired, or keep it */
}

.goog-te-menu-value {
    color: var(--text-color) !important;
}

.goog-te-menu-value span {
    color: var(--text-color) !important;
    font-weight: 500 !important;
}

.goog-te-menu-value span:last-child {
    display: none !important;
    /* Hide the arrow if redundant or ugly */
}

/* Hide the top banner frame */
body {
    top: 0px !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

@media (max-width: 768px) {
    #google_translate_li {
        margin-left: 0;
        margin-top: 10px;
        order: -1;
        /* Move to top on mobile if needed */
    }
}


/* ===== Product Cards ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-header {
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.product-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-header span {
    font-size: 0.9rem;
    opacity: 0.8;
    background: var(--primary-color);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    color: var(--white);
    font-weight: 600;
}

.product-body {
    padding: 25px;
    flex-grow: 1;
}

.product-specs {
    list-style: none;
    margin-top: 15px;
}

.product-specs li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs strong {
    color: var(--secondary-color);
    min-width: 100px;
}

.product-footer {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: center;
}

.datasheet-btn {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.datasheet-btn:hover {
    color: var(--primary-color);
}

.datasheet-btn i {
    margin-right: 8px;
}


/* ===== Why RAITO Formatting Strip ===== */
.why-RAITO-strip {
    padding: 50px 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    z-index: 10;
}

.why-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.why-strip-item {
    text-align: center;
    padding: 0 10px;
}

.why-strip-item i {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.why-strip-item:hover i {
    transform: rotateY(180deg);
}

.why-strip-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-strip-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 1;
    font-weight: 500;
}


/* ===== Home Product Snapshot Section ===== */
.snapshot-section {
    padding: 80px 0;
    background: var(--light-color);
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.snapshot-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
    text-align: center;
}

.snapshot-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}

.snapshot-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.snapshot-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.snapshot-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.snapshot-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}


/* ===== Brand Intro Section ===== */
.brand-intro-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
    overflow: hidden;
    /* For animations */
}

.brand-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.brand-badge {
    display: inline-block;
    background: rgba(22, 172, 89, 0.1);
    color: #16ac59;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.brand-headline {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.brand-subhead {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.brand-promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.brand-promise-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.brand-promise-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.brand-promise-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.brand-promise-item span {
    color: var(--secondary-color);
    font-weight: 500;
}

.brand-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .brand-headline {
        font-size: 2rem;
    }

    .brand-actions {
        flex-direction: column;
    }
}


/* ===== Brand Intro Section (Enhanced Visuals) ===== */
.brand-intro-section {
    padding: 120px 0;
    background: linear-gradient(rgba(10, 20, 40, 0.85), rgba(10, 20, 40, 0.7)), url('../images/brand_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
    position: relative;
    color: var(--white);
}

.brand-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brand-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #4cd137;
    border: 1px solid rgba(76, 209, 55, 0.3);
}

.brand-headline {
    font-size: 3rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.brand-subhead {
    color: rgba(255, 255, 255, 0.9);
}

.brand-promises {
    gap: 25px;
}

.brand-promise-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.brand-promise-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.brand-promise-item i {
    color: #fca311;
    text-shadow: 0 0 10px rgba(252, 163, 17, 0.5);
}

.brand-promise-item span {
    color: var(--white);
    font-size: 1.05rem;
}

/* ===== Global Animations & Premium Effects ===== */

/* Scroll Animation Base Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Premium Hover Glow Effects */
.info-card,
.snapshot-card,
.product-card,
.advantage-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover,
.snapshot-card:hover,
.product-card:hover,
.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Button Pulse Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}


/* ===== Vision Section Premium Upgrade ===== */
.vision-section {
    position: relative;
    background: url('../images/brand_bg.png') no-repeat center center/cover;
    background-color: var(--secondary-color);
    /* Fallback */
    padding: 100px 0;
    overflow: hidden;
}

.vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    z-index: 1;
}

.vision-section .container {
    position: relative;
    z-index: 2;
}

.vision-content h3.gradient-text {
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Glassmorphic Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.glass-card h4 {
    color: var(--white);
}

.glass-card p {
    color: rgba(255, 255, 255, 0.7);
}

.glass-card .service-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(248, 210, 16, 0.4);
}


/* ===== Contact Section Split Layout ===== */
.contact-section {
    padding: 100px 0 60px;
    background: var(--light-color);
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 50px;
    align-items: stretch;
}

/* Left Side: Info Tiles */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-tile {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-tile:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.info-tile .tile-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-tile h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-tile p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

/* Mini Map Preview */
.mini-map-preview {
    margin-top: auto;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.mini-map-preview:hover {
    background: #000;
}

.mini-map-preview i {
    font-size: 2rem;
    color: var(--primary-color);
}


/* Right Side: Premium Form */
.contact-form-side {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-floating {
    position: relative;
}

.form-floating input,
.form-floating textarea {
    width: 100%;
    padding: 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: transparent;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-floating textarea {
    min-height: 150px;
    resize: none;
}

.form-floating label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 0 5px;
    color: var(--gray-color);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-floating textarea+label {
    top: 25px;
    transform: none;
}

/* Focus States */
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating input:not(:placeholder-shown),
.form-floating textarea:not(:placeholder-shown) {
    border-color: var(--primary-color);
}

.form-floating input:focus+label,
.form-floating textarea:focus+label,
.form-floating input:not(:placeholder-shown)+label,
.form-floating textarea:not(:placeholder-shown)+label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    transform: translateY(-50%);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
    }
}

/* ===== Advanced Hero Animations (3D & Ken Burns) ===== */

/* Ken Burns Effect for Slide Images */
.slide img {
    animation: kenBurns 20s infinite alternate;
    transform-origin: center center;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15) rotate(0.1deg);
    }
}

/* 3D Text Reveal Animation */
.slide.active .slide-title {
    animation: textReveal3D 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes textReveal3D {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(20deg) scale(0.9);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}

/* Glowing Text Shadow */
.slide-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(248, 210, 16, 0.3);
}

.slide-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation-delay: 0.3s !important;
    /* Staggered */
}

/* 3D Tilt Container Base */
.slide-content {
    perspective: 1000px;
}

.hero-text-wrapper {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    /* Smooth follow */
}


/* ===== Leadership Section Premium Upgrade ===== */
.leadership-section {
    padding: 100px 0;
    background: var(--light-color);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.leader-img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(100%);
    /* Elegant B&W start */
}

.leader-card:hover .leader-img-wrapper img {
    transform: scale(1.1);
    filter: grayscale(0%);
    /* Color reveal on hover */
}

.leader-info {
    padding: 30px;
    text-align: center;
    position: relative;
    background: var(--white);
    z-index: 10;
}

.leader-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.leader-role {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.leader-quote {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Optional: Add a decorative element */
.leader-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.leader-card:hover::after {
    transform: scaleX(1);
}


/* Leader Social Icons */
.leader-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-social a {
    width: 35px;
    height: 35px;
    background: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}


/* ===== Interactive Testimonial Hub (Visionary Voices) ===== */
.testimonial-hub {
    padding: 100px 0;
    background: var(--light-color);
}

.testimonial-hub-container {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

/* Visionary Stage (Left) */
.visionary-stage {
    background: var(--white);
    padding: 60px;
    /* Large padding for breathing room */
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    min-height: 400px;
    /* Prevent layout shift */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Quote Animation */
.vision-quote {
    position: absolute;
    top: 50%;
    left: 60px;
    right: 60px;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-quote.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.3;
}

.quote-text {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

.quote-author h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.quote-author span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Leader Navigation (Right) */
.leader-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leader-thumb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid transparent;
    /* Reserve space for border */
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(100%);
    position: relative;
}

.leader-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-thumb:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.leader-thumb.active {
    opacity: 1;
    filter: grayscale(0%);
    border-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(248, 210, 16, 0.4);
}

@media (max-width: 900px) {
    .testimonial-hub-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leader-nav {
        flex-direction: row;
        justify-content: center;
    }

    .visionary-stage {
        padding: 40px;
        min-height: auto;
    }

    .vision-quote {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none !important;
    }

    .quote-text {
        font-size: 1.2rem;
    }
}


/* ===== Ultimate Leadership Showcase (Futuristic) ===== */
.leadership-showcase {
    position: relative;
    padding: 140px 0;
    background: #020202;
    overflow: hidden;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.leadership-showcase::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(248, 210, 16, 0.08) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.leadership-showcase::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image:
        linear-gradient(rgba(248, 210, 16, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 210, 16, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(45deg);
    animation: gridMove 30s linear infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 210, 16, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: orbPulse 8s ease-in-out infinite;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.leadership-showcase .container {
    position: relative;
    z-index: 2;
}

.leadership-showcase .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.sub-title {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.leadership-showcase h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 30px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    position: relative;
}

.header-line::before,
.header-line::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    top: -3px;
    border-radius: 50%;
}

.header-line::before {
    left: -15px;
}

.header-line::after {
    right: -15px;
}

/* Carousel Track */
.card-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.carousel-item {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    opacity: 0.2;
    transform: scale(0.9);
    filter: blur(5px);
    transition: all 0.8s ease;
}

.carousel-item.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Leader Visual */
.leader-visual {
    position: relative;
}

.image-frame {
    position: relative;
    border: 1px solid rgba(248, 210, 16, 0.2);
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    filter: grayscale(1);
    transition: all 0.5s ease;
}

.carousel-item.active .image-frame img {
    filter: grayscale(0);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    z-index: 3;
    animation: scanMove 3s linear infinite;
}

@keyframes scanMove {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.tech-tags {
    position: absolute;
    bottom: -15px;
    right: -15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tech-tags span {
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: skewX(-15deg);
}

/* Leader Details */
.name-box h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.name-box h3::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    text-shadow: -1px 0 var(--primary-color);
    top: 0;
    color: #fff;
    background: transparent;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim-2 3s infinite linear alternate-reverse;
}

.name-box h3::after {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    text-shadow: -1px 0 #00f3ff;
    top: 0;
    color: #fff;
    background: transparent;
    overflow: hidden;
    clip: rect(0, 900px, 0, 0);
    animation: noise-anim 2s infinite linear alternate-reverse;
}

@keyframes noise-anim {
    0% {
        clip: rect(42px, 9999px, 44px, 0);
    }

    5% {
        clip: rect(12px, 9999px, 59px, 0);
    }

    10% {
        clip: rect(48px, 9999px, 29px, 0);
    }

    15% {
        clip: rect(42px, 9999px, 73px, 0);
    }

    20% {
        clip: rect(63px, 9999px, 27px, 0);
    }

    100% {
        clip: rect(63px, 9999px, 27px, 0);
    }
}

@keyframes noise-anim-2 {
    0% {
        clip: rect(12px, 9999px, 59px, 0);
    }

    100% {
        clip: rect(42px, 9999px, 44px, 0);
    }
}

.name-box p {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0.9;
}

.quote-box {
    margin: 40px 0;
    position: relative;
    padding-left: 30px;
}

.quote-box i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.quote-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.skills-grid {
    display: grid;
    gap: 20px;
}

.skill label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #fff);
    width: 0;
    border-radius: 100px;
    transition: width 2s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Carousel Nav */
.carousel-nav-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.nav-indicators {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}


/* Leader Details Animations */
.carousel-item .name-box,
.carousel-item .quote-box,
.carousel-item .skills-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-item.active .name-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.carousel-item.active .quote-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.carousel-item.active .skills-grid {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Responsive Fixes */
@media (max-width: 900px) {
    .leadership-showcase {
        padding: 100px 0;
    }

    .carousel-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 20px;
    }

    .leader-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .quote-box {
        padding-left: 0;
        margin: 30px 0;
    }

    .quote-box i {
        display: none;
    }

    .tech-tags {
        position: relative;
        bottom: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .tech-tags span {
        transform: skewX(-10deg);
    }

    .name-box h3 {
        font-size: 2.8rem;
    }

    .leadership-showcase h2 {
        font-size: 2.5rem;
    }

    .quote-box p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .name-box h3 {
        font-size: 2.2rem;
    }

    .name-box p {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-nav-outer {
        gap: 20px;
    }
}

/* ===== Resources & Blog Page (Light Version) ===== */
.resources-hero {
    background: var(--white);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.resources-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 1500px;
    background: radial-gradient(circle at center, rgba(248, 210, 16, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.resources-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.category-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(248, 210, 16, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(248, 210, 16, 0.2);
}

.resources-hero h1 {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.resources-hero p {
    color: var(--gray-color);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.search-bar {
    display: flex;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(248, 210, 16, 0.15);
}

.search-bar input {
    background: transparent;
    border: none;
    flex: 1;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-size: 1rem;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    background: var(--primary-color);
    border: none;
    width: 60px;
    height: 50px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.05);
    background: var(--white);
}

/* Floating Blobs Animation */
.floating-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: float 20s infinite alternate ease-in-out;
}

.blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: rgba(248, 210, 16, 0.1);
    top: -100px;
    left: -200px;
}

.blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: rgba(66, 133, 244, 0.1);
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(100px, 50px) scale(1.1);
    }
}

/* Filter Tabs */
.filter-section {
    padding: 40px 0;
    background: #fcfcfc;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Blog Grid & Cards */
.blog-grid-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.featured-post-card {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
    transition: all 0.4s ease;
}

.featured-post-card:hover {
    border-color: rgba(248, 210, 16, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.featured-image {
    flex: 1.2;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post-card:hover .featured-image img {
    transform: scale(1.05);
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #0a0a0a);
    z-index: 1;
}

.featured-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.post-date {
    color: rgba(255, 255, 255, 0.5);
}

.post-category {
    color: var(--primary-color);
    font-weight: 700;
}

.featured-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.author span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 15px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(248, 210, 16, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.blog-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-info {
    padding: 30px;
}

.blog-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.load-more-btn {
    text-align: center;
    margin-top: 60px;
}

/* Newsletter Resources */
.resources-newsletter {
    padding: 100px 0;
    background: #050505;
}

.newsletter-highlight-card {
    background: linear-gradient(135deg, rgba(248, 210, 16, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(248, 210, 16, 0.2);
    border-radius: 40px;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.newsletter-highlight-card h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-highlight-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.resources-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.resources-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--white);
}

.resources-form button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resources-form button:hover {
    background: var(--white);
    transform: scale(1.05);
}

.spam-text {
    display: block;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Responsive Resources */
@media (max-width: 992px) {
    .featured-post-card {
        flex-direction: column;
    }

    .tech-overlay {
        background: linear-gradient(0deg, #0a0a0a, transparent);
    }

    .resources-hero h1 {
        font-size: 3rem;
    }

    .featured-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .resources-hero {
        padding: 120px 0 80px;
    }

    .resources-form {
        flex-direction: column;
    }

    .newsletter-highlight-card {
        padding: 60px 30px;
    }

    .resources-hero h1 {
        font-size: 2.5rem;
    }
}

/* ===== Advanced Contact Page (Light Version) ===== */
.contact-hero {
    background: var(--white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-hub {
    margin-top: -80px;
    padding-bottom: 100px;
    background: #f9f9f9;
}

.contact-hub-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: flex-start;
}

/* Contact Info Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card-premium {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.contact-card-premium:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(248, 210, 16, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-card-premium:hover .card-icon-box {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.card-details h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-details p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.card-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Glassmorphism Form */
.contact-form-premium {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.form-header-premium {
    margin-bottom: 40px;
}

.form-header-premium h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-header-premium p {
    color: var(--gray-color);
}

.input-group-premium {
    margin-bottom: 25px;
    position: relative;
}

.input-group-premium label {
    display: block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group-premium input,
.input-group-premium textarea,
.input-group-premium select {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--secondary-color);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.input-group-premium input:focus,
.input-group-premium textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 15px rgba(248, 210, 16, 0.1);
}

.btn-premium {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-premium:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Map Section Premium */
.map-container-premium {
    margin: 80px 0;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.map-overlay-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-overlay-info h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.map-overlay-info p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .contact-hub-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }

    .contact-form-premium {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 0 80px;
    }
}

/* ===== Advanced Products Page (Light Version) ===== */
.products-hero {
    background: var(--white);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.products-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(248, 210, 16, 0.07) 0%, transparent 70%);
}

.products-hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.product-series {
    padding: 80px 0;
    background: #f8f8f8;
}

.series-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.product-blueprint-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.product-blueprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(rgba(0, 0, 0, 0.01) 0px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.01) 0px, transparent 1px, transparent 20px);
    opacity: 1;
}

.product-blueprint-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(248, 210, 16, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.product-power-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(248, 210, 16, 0.2);
    z-index: 2;
}

.product-blueprint-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    z-index: 2;
}

.product-tagline {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: block;
    z-index: 2;
}

.spec-list-premium {
    list-style: none;
    margin-bottom: 35px;
    z-index: 2;
}

.spec-list-premium li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.spec-list-premium li span:first-child {
    color: var(--gray-color);
}

.spec-list-premium li span:last-child {
    color: var(--secondary-color);
    font-weight: 600;
}

.product-action-btn {
    margin-top: auto;
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    z-index: 2;
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Gauge Meter for Power */
.power-gauge {
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.power-fill {
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(248, 210, 16, 0.4);
    transition: width 1.5s ease-out;
}

/* Comparison Section */
.comparison-premium {
    padding: 100px 0;
    background: var(--white);
}

.spec-matrix {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.spec-matrix th,
.spec-matrix td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-matrix th {
    background: #fdfdfd;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.spec-matrix td {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .products-hero h1 {
        font-size: 2.8rem;
    }

    .series-container {
        grid-template-columns: 1fr;
    }
}

/* ===== WhatsApp Chatbot (Advanced Mascot) ===== */
.whatsapp-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mascot-container {
    position: relative;
    width: 70px;
    height: 70px;
    animation: mascotFloat 4s ease-in-out infinite;
}

@keyframes mascotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-btn {
    width: 70px;
    height: 70px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    z-index: 2;
    overflow: hidden;
}

/* Character Ears/Details */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 15px;
    width: 15px;
    height: 15px;
    background: #128c7e;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 25px 0 0 #128c7e;
}

.whatsapp-btn i {
    z-index: 3;
    animation: iconWave 5s ease-in-out infinite;
}

@keyframes iconWave {

    0%,
    90%,
    100% {
        transform: rotate(0);
    }

    92% {
        transform: rotate(-15deg);
    }

    94% {
        transform: rotate(15deg);
    }

    96% {
        transform: rotate(-15deg);
    }

    98% {
        transform: rotate(15deg);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #20ba5a;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #00ff00;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    z-index: 4;
}

/* Chat Bubble Enhancements */
.chat-bubble {
    background: white;
    padding: 20px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
    max-width: 280px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bubble-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.avatar-mini {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.avatar-info h5 {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
}

.avatar-info span {
    font-size: 0.7rem;
    color: #2ecc71;
    font-weight: 600;
}

.close-bubble {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.close-bubble:hover {
    color: #ff4757;
}

.chat-bubble p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.bubble-arrow {
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 0 solid transparent;
    border-top: 15px solid white;
}

@media (max-width: 768px) {
    .whatsapp-chatbot {
        bottom: 20px;
        right: 20px;
    }

    .mascot-container,
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .chat-bubble {
        max-width: 220px;
        padding: 15px;
    }
}
/* ===== Applications Page Enhancements ===== */
.apps-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/apps-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    max-width: 800px;
    z-index: 2;
    transform: translateY(30px);
    animation: heroFadeUp 1.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-box h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero-box p {
    font-size: 1.4rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

.app-detail-section {
    padding: 100px 0;
    position: relative;
}

.app-detail-section:nth-child(even) {
    background: #f8f9fa;
}

.app-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-header h2::after {
    content: '';
    height: 4px;
    flex: 1;
    background: linear-gradient(to right, var(--primary-color), transparent);
    border-radius: 2px;
}

.app-box {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    height: 100%;
}

.app-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.app-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.app-list li {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Material Chips */
.material-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.chip {
    padding: 8px 20px;
    background: #eee;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.chip:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .apps-hero {
        height: 60vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .hero-box h1 {
        font-size: 3rem;
    }
    
    .hero-box {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .app-header h2 {
        font-size: 2.2rem;
    }
}
