/* ===================================
   ROOT VARIABLES & CORE DESIGN
   Vinayak Electro-Tech
   =================================== */

:root {
    /* Brand Colors - Orange / Industrial */
    --primary-color: #f87c2f;
    --primary-dark: #c36d0a;
    --primary-light: #faf5ef;
    --secondary-color: #0066cc;
    --accent-gold: #f0a500;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #4d4d4d;
    --black: #0d1b2a;

    /* Gradients */
    --gradient-secondary: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    --gradient-primary: linear-gradient(135deg, #f87c2f 0%, #FFA726 100%);


    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(248, 124, 47, 0.1);
    --shadow-lg: 0 8px 24px rgba(248, 124, 47, 0.15);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Raleway', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

/* UTILITIES */
.text-center {
    text-align: center;
}

.justify-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.mt-3rem {
    margin-top: 3rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

h3 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(248, 124, 47, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    position: relative;
}

.logo-img {
    height: 55px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(248, 124, 47, 0.3);
}

.nav-link.active::before {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(248, 124, 47, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(248, 124, 47, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(248, 124, 47, 0.1);
    border-color: rgba(248, 124, 47, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0c0c0e;
    padding: 150px 0 80px;
    color: var(--white);
}

/* Galaxy Grid Style from Jitender Chawla */
.galaxy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, #19191b 1px, transparent 0),
        linear-gradient(180deg, #19191b 1px, transparent 0);
    background-size: 130px 130px;
    z-index: 1;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.hero-premium-badge .badge-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.hero-premium-badge i {
    color: var(--primary-color);
}

.hero-premium-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.1;
    font-weight: 800;
}

.hero-premium-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-premium-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-premium-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Right Side - Visuals */
.hero-visual-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/0.85;
    z-index: 5;
}

.slider-container {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.box-decoration {
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    filter: blur(40px);
    opacity: 0.15;
}

.decoration-1 {
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
}

.decoration-2 {
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
}

.experience-floating {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.exp-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.exp-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.exp-text strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.exp-text span {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
}

/* PREMIUM CTA BUTTONS */
.cta-btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(248, 124, 47, 0.3);
}

.cta-crystal {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-crystal:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 124, 47, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ===================================
   SECTIONS & CONTAINER
   =================================== */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.section-subtitle img {
    height: 24px;
}

.justify-center {
    justify-content: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 3rem;
}

.mb-2rem {
    margin-bottom: 2rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon-wrapper {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    align-self: flex-start;
}

.about-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.about-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-btn:hover span.arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(248, 124, 47, 0.12);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.text-center .section-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: transparent;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(248, 124, 47, 0.1);
    background: var(--white);
    border-color: transparent;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--primary-color);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.why-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   FUNFACT / STATS SECTION
   =================================== */
.funfact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #0a2d55 50%, #05162a 100%);
    position: relative;
    overflow: hidden;
}

.funfact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(248, 124, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.funfact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.funfact-content {
    color: var(--white);
}

.funfact-content .section-header {
    margin-bottom: 0;
}

.funfact-content .section-title {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    font-family: var(--font-secondary);
}

.funfact-content .section-subtitle {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    /* display: flex;
    align-items: center; */
    gap: 10px;
    background: none;
}

.funfact-content .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.funfact-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.funfact-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.funfact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.funfact-card:hover::before {
    transform: scaleX(1);
}

.funfact-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(248, 124, 47, 0.3);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.2);
}

.funfact-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.funfact-icon i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(248, 124, 47, 0.3));
}

.funfact-card:hover .funfact-icon i {
    transform: scale(1.1) rotate(8deg);
    filter: drop-shadow(0 0 15px rgba(248, 124, 47, 0.6));
}

.funfact-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin: 0 0 0.75rem 0;
    font-family: var(--font-secondary);
}

.funfact-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-dark {
    background: #0d1b2a;
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--white);
    background: transparent;
}

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.work-step {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.work-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(248, 124, 47, 0.1);
    line-height: 1;
    font-family: var(--font-secondary);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.step-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.step-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .work-step {
        padding: 2.5rem 1.5rem;
    }
}

/* ===================================
   MOVING TEXT MARQUEE
   =================================== */
.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 40s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 22px;
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-primary);
    gap: 15px;
}

.tm-marquee-repeater .text i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* ===================================
   BRANDS / DISTRIBUTORS SECTION
   =================================== */
.brands-section {
    padding: 4rem 0;
    background: var(--white);
}

.brands-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.brands-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--medium-gray);
    margin: 0;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.brand-item img {
    height: 42px;
    object-fit: contain;
    max-width: 120px;
}

/* ===================================
   CLIENTS MARQUEE SLIDER
   =================================== */
.clients-marquee-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-title {
    text-align: center;
    margin-bottom: 40px;
}

.marquee-title span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.marquee-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    /* color: var(--secondary-color); */
}

.marquee-container {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.logo-item {
    padding: 0 40px;
    transition: all 0.3s ease;
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .clients-marquee-section {
        padding: 40px 0;
    }

    .logo-item {
        padding: 0 25px;
    }

    .logo-item img {
        height: 45px;
    }

    .brands-marquee-section .logo-item {
        margin: 0 10px;
        padding: 15px 25px;
        height: 90px;
        width: auto;
    }

    .brands-marquee-section .logo-item img {
        height: 50px;
    }

    .marquee-title h3 {
        font-size: 1.5rem;
    }
}

/* ===================================
   BRANDS MARQUEE SLIDER
   =================================== */
.brands-marquee-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.brands-marquee-section .marquee-content {
    animation: marquee-scroll 35s linear infinite;
    justify-content: flex-start;
}

.brands-marquee-section .logo-item {
    margin: 0 15px;
    padding: 20px 35px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 120px;
    width: auto;
    cursor: pointer;
}

.brands-marquee-section .logo-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.brands-marquee-section .logo-item img {
    height: 70px;
    filter: none;
    opacity: 0.85;
}

.brands-marquee-section .logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* ===================================
   PRODUCT SLIDER SECTION
   =================================== */
.product-slider-section {
    padding: 100px 0;
    background: var(--off-white);
}

.product-slider-container {
    position: relative;
    padding: 0 50px;
    margin-top: 50px;
}

.product-slider-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.product-slider-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.product-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.product-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--off-white);
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.product-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 0.8rem;
}

.product-link:hover {
    gap: 0.8rem;
}

/* Enquiry Card Styles */
.enquiry-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.enquiry-card .product-info {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.enquiry-card .enquiry-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enquiry-card .enquiry-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.enquiry-card .enquiry-btn {
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 20px rgba(248, 124, 47, 0.2);
    display: inline-block;
}

.enquiry-card .enquiry-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(248, 124, 47, 0.4);
    filter: brightness(1.1);
}

.brand-section .section-header {
    margin-bottom: 1rem;
}

.brand-section .section-title {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.brand-section .product-slider-container {
    margin-top: 1.5rem;
}

/* Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.slider-btn.prev {
    margin-left: -10px;
}

.slider-btn.next {
    margin-right: -10px;
}


.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.mt-5 {
    margin-top: 3rem;
}

/* ===================================
   TABS PRODUCT SECTION
   =================================== */
.products-tabs-section {
    padding-bottom: 2rem;
}

.tabs-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.tabs-nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-btn {
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary-color);
    background: var(--primary-light);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(248, 124, 47, 0.3);
}

.tab-btn.active:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.tabs-content-area {
    position: relative;
    min-height: 500px;
}

.product-tab-pane {
    display: none;
    width: 100%;
}

.product-tab-pane.active {
    display: block;
    animation: tabFadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.product-tab-pane .about-content {
    gap: 0;
}

.product-tab-pane .about-features {
    display: inline;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-chip {
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--dark-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.about-features li {
    font-size: 0.95rem;
    color: var(--medium-gray);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.feature-list-icon {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
    margin-top: 5px;
}

.mt-15 {
    margin-top: 0.75rem;
}

.align-start {
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .tabs-nav {
        gap: 0.5rem;
        padding: 0.4rem;
        border-radius: 40px;
    }

    .tab-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .tabs-container::-webkit-scrollbar {
        display: none;
    }

    .tabs-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0.35rem;
        border-radius: 50px;
    }

    .tab-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .about-wrapper {
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .product-item {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .product-slider-container {
        padding: 0;
    }

    .slider-controls {
        display: none;
    }

    .product-item {
        flex: 0 0 250px;
    }
}

/* ===================================
   TESTIMONIALS (SARAOGI STYLE)
   =================================== */
.st-wrapper {
    position: relative;
    padding-top: 20px;
}

.st-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.st-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.st-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.st-slide.active {
    display: block;
    opacity: 1;
}

.st-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.st-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(248, 124, 47, 0.08);
}

.st-quote {
    margin-bottom: 20px;
}

.st-quote i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
}

.st-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.st-stars i {
    font-size: 20px;
    color: var(--primary-color);
}

.st-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
    font-family: var(--font-primary);
}

.st-author {
    padding-top: 25px;
    border-top: 1px solid rgba(248, 124, 47, 0.1);
}

.st-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
}

.st-pos {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.st-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.st-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.st-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.st-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.st-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.st-dot.active {
    background: var(--primary-color);
    width: 16px;
    height: 16px;
}

.st-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===================================
   TESTIMONIALS PAGE GRID
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card-premium {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(248, 124, 47, 0.1);
}

.t-quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 15px;
}

.t-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.t-rating i {
    color: #ff9800;
    font-size: 14px;
}

.t-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.t-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.t-author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 4px 0;
}

.t-author-info p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin: 0;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card-premium {
        padding: 30px;
    }
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, #0d1b2a 0%, #0a2d55 100%);
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.15) 0%, rgba(248, 124, 47, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 250px;
    background: var(--primary-color);
    color: var(--white);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .cta-wrapper {
        padding: 50px;
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {


    .cta-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer-new {
    position: relative;
    width: 100%;
    margin-top: 20px;
    z-index: 1;
}

.footer-main {
    position: relative;
    background: linear-gradient(135deg, #060f18 0%, #0d1b2a 40%, #0a1520 70%, #060f18 100%);
    border-radius: 60px 60px 0 0;
    padding: 60px 0 0;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(248, 124, 47, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 167, 38, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.footer-main .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 75px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    padding: 10px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    transition: all var(--transition-normal);
}

.footer-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(248, 124, 47, 0.3);
}

.footer-tagline {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 600px;
}

.footer-social h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(248, 124, 47, 0.3);
    border-color: var(--primary-color);
}

.social-icon i {
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
}

.footer-links-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links-col ul li a:hover::after {
    width: 100%;
}

.footer-contact .contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.contact-icon-svg i {
    font-size: 0.85rem;
}

.footer-contact .contact-list li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    word-break: break-word;
    display: inline-block;
    position: relative;
}

.footer-contact .contact-list li a:hover {
    color: var(--accent-gold);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 50px 0 30px 0;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.footer-copyright p span {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-credit a {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--white);
}



/* ===================================
   REVEAL ON SCROLL
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseWhatsApp 2s infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
}

.whatsapp-float i {
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(248, 124, 47, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(248, 124, 47, 0.5);
}

.scroll-top i {
    color: white;
}

/* ===================================
   PAGE HERO SECTION
   =================================== */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: #0c0c0e;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Galaxy grid specifically for page hero */
.page-hero .galaxy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, #19191b 1px, transparent 0),
        linear-gradient(180deg, #19191b 1px, transparent 0);
    background-size: 130px 130px;
    z-index: 0;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-secondary);
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(248, 124, 47, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-nav:hover {
    background: rgba(248, 124, 47, 0.1);
    transform: translateY(-2px);
    border-color: rgba(248, 124, 47, 0.4);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   CONTACT PAGE SPECIFIC
   =================================== */
.contact-page-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.contact-wrapper {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(248, 124, 47, 0.2);
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.contact-info-card p,
.contact-info-card a {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-social-section {
    margin: 4rem 0;
}

.contact-social-wrapper {
    background: var(--white);
    padding: 3.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-social-wrapper h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 15px;
    min-width: 120px;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-social-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-social-icon:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form-wrapper {
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h3 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fbfbfb;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(248, 124, 47, 0.1);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(248, 124, 47, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(248, 124, 47, 0.4);
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-actions {
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-wrapper {
        padding: 50px 40px;
        border-radius: 30px;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-action {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Hero Premium Tablet */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-content-left {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual-right {
        order: 1;
    }

    .hero-premium-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-premium-cta {
        justify-content: center;
    }

    .experience-floating {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    @keyframes badgeFloatCentric {

        0%,
        100% {
            transform: translateY(0) translateX(-50%);
        }

        50% {
            transform: translateY(-15px) translateX(-50%);
        }
    }

    .experience-floating {
        animation: badgeFloatCentric 4s ease-in-out infinite;
    }

    /* Contact Page Tablet */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: var(--transition-normal);
        overflow-y: auto;
        gap: 0.5rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
        border-radius: var(--radius-md);
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-premium {
        padding: 120px 0 60px;
    }

    .hero-premium-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-premium-subtitle {
        font-size: 1.05rem;
    }

    .hero-image-box {
        max-width: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .funfact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .funfact-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .funfact-card {
        padding: 2rem 1rem;
    }

    .funfact-number {
        font-size: 2.2rem;
    }

    .funfact-content .section-subtitle {
        justify-content: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .funfact-section {
        padding: 60px 0;
    }

    .tm-marquee-repeater .text {
        font-size: 16px;
        padding: 0 20px;
    }

    .brands-grid {
        gap: 1.5rem 2rem;
    }

    .brand-item img {
        height: 32px;
    }

    .client-item img {
        height: 38px;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 24px;
    }

    .cta-action {
        flex-direction: column;
        width: 100%;
    }

    .footer-main {
        border-radius: 40px 40px 0 0;
        padding: 50px 0 0;
    }

    .footer-company {
        padding-bottom: 35px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Contact Page Mobile */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .contact-social-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .contact-social-icons {
        gap: 1rem;
    }

    .contact-social-icon {
        min-width: 100px;
        padding: 1.25rem;
    }

    .contact-form-header h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .footer-main {
        border-radius: 30px 30px 0 0;
        padding: 40px 0 0;
    }

    .footer-company {
        padding-bottom: 30px;
        align-items: flex-start;
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 20px;
    }

    .footer-separator {
        margin: 35px 0 20px 0;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding-bottom: 30px;
    }

    .brands-grid {
        gap: 1rem 1.5rem;
    }

    .clients-grid {
        gap: 1rem 1.5rem;
    }

    .client-item {
        min-width: 90px;
        padding: 0.75rem 1rem;
    }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-anim.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.feature-icon-wrapper {
    font-size: 1.4rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 500;
    margin: 0;
}

/* --- MISSION & VISION --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
}

.mv-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.mv-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    line-height: 1;
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mv-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mv-card {
        padding: 2rem;
    }
}

/* --- OBJECTIVES & VALUES --- */
.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.objectives-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objective-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: rgba(248, 124, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.objective-card:hover .objective-card-icon {
    background: var(--primary-color);
    color: var(--white);
}

.objective-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.objective-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.objectives-content-block {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.objectives-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objectives-points-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.objectives-points-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* --- PHILOSOPHY SECTION --- */
.philosophy-wrapper {
    background: var(--white);
    padding: 5rem;
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.phi-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phi-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.phi-description p {
    font-size: 1.05rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.phi-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.phi-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.phi-icon {
    width: 28px;
    height: 28px;
    background: rgba(248, 124, 47, 0.1);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.phi-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.phi-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- PRODUCTS PAGE SPECIFIC --- */
.products-slider-container {
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-color) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 25px;
    border-radius: 5px;
}

/* Feature Product Card (Fluke Specific) */
.feature-product-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.feature-product-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.fp-image {
    height: 220px;
    background: #f8f9fa;
    /* Slightly off-white for product photos to pop */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.fp-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.feature-product-card:hover .fp-image img {
    transform: scale(1.08);
}

.fp-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fp-info h3 {
    color: var(--secondary-color);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.fp-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.fp-btn {
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    border: 1.5px solid rgba(0, 102, 204, 0.1);
    transition: all var(--transition-normal);
}

.fp-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

@media (max-width: 1024px) {

    .philosophy-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 3rem;
    }

    .objectives-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .phi-visual {
        min-height: 300px;
    }

    .phi-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .philosophy-wrapper {
        padding: 2rem;
    }

    .phi-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }
}