/* Reset and Base Styles - Enhanced with Smooth Animations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgb(255, 89, 0);
    --secondary-color: rgb(255, 140, 50);
    --accent-color: rgb(255, 170, 90);
    --light-color: #f8f9fa;
    --dark-color: #333;
    --gray-color: #666;
    --light-gray: #e9ecef;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    animation: pageLoad 0.8s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s infinite;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: slideInFromBottom 0.8s ease-out;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: lineExpand 0.8s ease-out 0.3s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 70px;
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
    animation: fadeIn 0.8s ease-out;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    animation: containerSlide 0.3s ease-out;
}

@keyframes containerSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

section {
    padding: 100px 0;
    animation: sectionFadeIn 0.8s ease-out;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.text-center {
    text-align: center;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 89, 0, 0.3);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 89, 0, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 89, 0, 0.5);
    }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 89, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: transparent;
}

.btn-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: headerPopIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes headerPopIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: textSlideUp 0.8s ease-out 0.5s both;
}

@keyframes textSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Navigation with Parallax Effect */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 110px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    animation: navbarSlideDown 0.6s ease-out;
}

@keyframes navbarSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar.scrolled {
    height: 90px;
    background: rgba(255, 246, 246, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    animation: containerSlide 0.8s ease-out;
}

.navbar {
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    display: block;
    object-fit: contain;
    height: 100px;
    width: auto;
}

.navbar {
    height: 130px;
    padding: 10px 0;
}

.logo-image {
    height: 100px;
    width: auto;
}

@keyframes logoSpin {
    from {
        transform: rotateY(90deg);
    }
    to {
        transform: rotateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before,
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    left: 50%;
}

.nav-menu a::after {
    right: 50%;
}

.nav-menu a:hover::before,
.nav-menu a:hover::after,
.nav-menu a.active::before,
.nav-menu a.active::after {
    width: 50%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Menu Toggle Button - HIDDEN ON DESKTOP */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Enhanced Hero Section with Parallax */
.hero {
    position: relative;
    height: 70vh;
    min-height: 800px;
    background: linear-gradient(rgba(91, 91, 91, 0.7), rgba(26, 26, 26, 0.8)), url("back.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 110%;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    max-width: 800px;
    animation: heroContentReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    animation: heroTitleFloat 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes heroTitleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 1s ease-out 1s both;
}

.slide-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.6s ease;
}

.dot.active {
    transform: scale(1.3);
}

.dot.active::before {
    left: 0;
}

.dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.5);
}

.prev-slide, .next-slide {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.prev-slide::before, .next-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: left 0.4s ease;
    z-index: 1;
}

.prev-slide i, .next-slide i {
    position: relative;
    z-index: 2;
}

.prev-slide:hover::before, .next-slide:hover::before {
    left: 0;
}

.prev-slide:hover, .next-slide:hover {
    border-color: var(--primary-color);
    transform: scale(1.1) translateY(-3px);
}

/* Enhanced Scrollable Images Section */
.scrollable-images {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.scrollable-images::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,89,0,0.03)"/></svg>');
    animation: backgroundFloat 20s linear infinite;
}

@keyframes backgroundFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.image-slideshow-container {
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    perspective: 1000px;
}

.image-slideshow-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    animation: containerFloat 6s ease-in-out infinite;
}

@keyframes containerFloat {
    0%, 100% {
        transform: translateY(0) rotateX(1deg);
    }
    50% {
        transform: translateY(-10px) rotateX(-1deg);
    }
}

.image-slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-slide {
    min-width: 100%;
    display: none;
    animation: slideZoomOut 0.8s ease-out;
}

@keyframes slideZoomOut {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-slide.active {
    display: block;
    animation: slideZoomIn 0.8s ease-out;
}

@keyframes slideZoomIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-slide .slide-content {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius-lg);
}

.scroll-image-card {
    flex: 0 0 auto;
    width: 320px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: cardAppear 0.6s ease-out;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(30px) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateY(0);
    }
}

.scroll-image-card:hover {
    transform: translateY(-15px) scale(1.03) rotateY(5deg);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.scroll-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

.scroll-image-card:hover::before {
    left: 100%;
}

.scroll-image-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-image-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.scroll-image-caption {
    padding: 25px;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(255, 89, 0, 0.05));
    transition: all 0.4s ease;
}

.scroll-image-card:hover .scroll-image-caption {
    background: linear-gradient(to bottom, transparent, rgba(255, 89, 0, 0.1));
}

.scroll-image-caption h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.scroll-image-card:hover .scroll-image-caption h4 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Enhanced Slideshow Controls */
.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    padding: 20px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.slideshow-prev,
.slideshow-next {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.slideshow-prev::before,
.slideshow-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slideshow-prev i,
.slideshow-next i {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 89, 0, 0.3);
}

.slideshow-prev:hover::before,
.slideshow-next:hover::before {
    left: 0;
}

.slideshow-prev:hover i,
.slideshow-next:hover i {
    color: white;
}

.slideshow-dots {
    display: flex;
    gap: 15px;
}

.slideshow-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.slideshow-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideshow-dot.active {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 89, 0, 0.4);
}

.slideshow-dot.active::before {
    left: 0;
}

.slideshow-dot:hover {
    transform: scale(1.2);
    background: var(--primary-color);
}

/* Enhanced Intro Section */
.intro-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    animation: waveEffect 3s ease-in-out infinite;
}

@keyframes waveEffect {
    0%, 100% {
        height: 100px;
    }
    50% {
        height: 120px;
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.intro-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-card:hover::before {
    transform: scaleX(1);
}

.intro-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.intro-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 2.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.intro-card:hover .intro-icon {
    transform: scale(1.1) rotate(360deg);
    animation: none;
}

/* Enhanced Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: statsBgRotate 20s linear infinite;
}

@keyframes statsBgRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: statPopIn 0.6s ease-out;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes statPopIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-item i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.stat-item:hover i {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 500;
}

/* Enhanced Featured Products */
.featured-products {
    background: var(--white);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: productCardReveal 0.8s ease-out;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    height: 520px;
    position: relative;
    border: 2px solid transparent;
}

@keyframes productCardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray), var(--gray-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.product-card:hover .product-image::before {
    left: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
}

.product-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, rgba(255, 89, 0, 0.05));
    transition: all 0.4s ease;
}

.product-card:hover .product-info {
    background: linear-gradient(to bottom, transparent, rgba(255, 89, 0, 0.08));
}

.product-info h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.4rem;
    line-height: 1.4;
    min-height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: var(--primary-color);
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 5px 0;
    animation: priceGlow 2s infinite;
}

@keyframes priceGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 89, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 89, 0, 0.5);
    }
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom, rgba(255, 89, 0, 0), rgba(255, 89, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-details {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    opacity: 0;
}

.product-card:hover .view-details {
    transform: translateY(0);
    opacity: 1;
    animation: buttonBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes buttonBounce {
    0% {
        transform: translateY(20px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.view-details:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: serviceCardFloat 5s ease-in-out infinite;
}

@keyframes serviceCardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 89, 0, 0.1), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    animation: iconPulse 1.5s infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 89, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 89, 0, 0);
    }
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,0 50,100" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: ctaBgMove 20s linear infinite;
}

@keyframes ctaBgMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    animation: ctaReveal 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ctaReveal {
    from {
        opacity: 0;
        transform: scale(0.9) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

.cta-content h2, .cta-content p {
    color: white;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.animate-pulse {
    animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.btn-large {
    animation: ctaButtonGlow 2s infinite;
}

@keyframes ctaButtonGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(rgba(29, 29, 126, 0.95), rgba(29, 29, 126, 0.9)), url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-attachment: fixed;
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="4" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: starsTwinkle 3s infinite;
}

@keyframes starsTwinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}


.footer-col h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    animation: lineWidth 2s ease-in-out infinite;
}

@keyframes lineWidth {
    0%, 100% {
        width: 50px;
    }
    50% {
        width: 80px;
    }
}

.footer-col ul li {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-col ul li a {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
    transform: scale(1.05);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    transform: translateX(10px);
}

.contact-info i {
    color: var(--accent-color);
    margin-top: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-info li:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transition: left 0.4s ease;
    z-index: 1;
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.social-links a:hover::before {
    left: 0;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-links a:hover i {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.footer-bottom a {
    color: var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom a:hover {
    color: white;
}

/* Enhanced Animations */
.animate-fade-in {
    animation: enhancedFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes enhancedFadeIn {
    from {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

.animate-slide-up {
    animation: enhancedSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes enhancedSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-slide-left {
    animation: enhancedSlideLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes enhancedSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-60px) rotateY(-20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.animate-slide-right {
    animation: enhancedSlideRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes enhancedSlideRight {
    from {
        opacity: 0;
        transform: translateX(60px) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .image-slide .slide-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .scroll-image-card {
        flex: 0 1 calc(50% - 30px);
        min-width: 280px;
    }
}

@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .hero h1 { font-size: 3.2rem; }
    .hero { height: 90vh; min-height: 700px; }
    
    .intro-grid,
    .stats-grid,
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

/* MOBILE VIEW ONLY (768px and below) */
@media (max-width: 768px) {
    /* Menu Toggle Button - SHOWS ONLY ON MOBILE */
    .menu-toggle {
        display: block;
        animation: fadeIn 0.5s ease-out;
    }
    
    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        background: rgba(255, 246, 246, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: var(--shadow);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 25px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInRight {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 89, 0, 0.1);
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        padding-left: 20px;
        border-bottom-color: var(--primary-color);
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    section { padding: 80px 0; }
    
    .logo-image {
        height: 55px;
    }
    
    .image-slide .slide-content {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }
    
    .scroll-image-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }
    
    .slideshow-controls {
        margin-top: 30px;
        padding: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .product-card {
        height: 480px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .container { padding: 0 15px; }
    .btn-primary, .btn-secondary { padding: 14px 30px; }
    .hero h1 { font-size: 2.2rem; }
    .hero { height: 80vh; min-height: 600px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .image-slide .slide-content {
        padding: 20px;
    }
    
    .scroll-image-card {
        width: 100%;
        max-width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-card {
        height: auto;
        min-height: 480px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .slider-controls {
        bottom: 40px;
        gap: 20px;
    }
    
    .prev-slide, .next-slide {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.8rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .intro-card {
        padding: 40px 25px;
    }
}

@media (max-width: 400px) {
    .product-card {
        height: auto;
        min-height: 450px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-overlay {
        height: 200px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Enhanced Product Card Animations */
.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.6s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.7s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.8s; }
.products-grid .product-card:nth-child(9) { animation-delay: 0.9s; }
.products-grid .product-card:nth-child(10) { animation-delay: 1s; }

/* Enhanced Loading Animation */
.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loading-spinner.active {
    display: block;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(255, 89, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
   
}

/* Tabs */
.tab-container {
    text-align: center;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #ddd;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.tab-btn.active {
    background: #2c3e50;
    color: #fff;
}

/* Slider */
.slider-wrapper {
    width: 900px;              /* 3 images x 300px */
    overflow: hidden;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    gap: 15px;
    animation: scrollLeft 15s linear infinite;
}

.slider-track img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}


.footer-bottom-bar {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
}

.footer-brand p {
    max-width: 400px;
    margin: 0;
}

/* Animation */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Enhanced Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: 9999;
    transform: translateX(-100%);
    animation: pageTransitionOut 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pageTransitionOut {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

p {
    line-height: 1.5;
    text-align: center;
}

/* Enhanced Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Focus States */
*:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 5px;
}

/* Enhanced Image Loading Animation */
img {
    opacity: 0;
    animation: imageLoad 0.6s ease-out forwards;
}

@keyframes imageLoad {
    to {
        opacity: 1;
    }
}

/* Enhanced Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--accent-color));
    border-radius: 10px;
    border: 3px solid var(--light-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-color), var(--primary-color));
}
@media(max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-brand{
    flex-direction:column;
    text-align:center;
  }
}

.footer,
.footer p,
.footer li,
.footer a {
    color: rgba(255,255,255,0.9);
}

.footer h3 {
    color: #ffffff;
}

.footer a:hover {
    color: #ff9800;
}

.footer-bottom {
    color: rgba(255,255,255,0.85);
}

.footer {
    position: relative;
    z-index: 5;
}

.footer * {
    position: relative;
    z-index: 10;
}

.footer::before,
.footer::after {
    pointer-events: none;
}

.nav-links a {
    position: relative;
    padding-bottom: 6px;
}

.nav-links a.active {
    color: #ff7a00;
    font-weight: 600;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #ff7a00;
    border-radius: 2px;
}

.nav-links a.active {
  background:#fff2e6;
  border-radius:20px;
  padding:6px 14px;
}
.no-products {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-slider {
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}




