/* ------------------ ROOT VARIABLES ------------------ */
:root {
    --primary-color: #800000;
    --secondary-color: #b22222;
    --accent-color: #ff6600;
    --text-light: #fff;
    --text-dark: #111;
    --text-gray: #6c757d;
    --transition: all 0.4s ease;
    --radius: 8px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --dark-bg: #0d0d10;
    --light-bg: #f7f7f7;
}

/* ------------------ GLOBAL STYLES ------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--light-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* ------------------ TOP BAR ------------------ */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-contact span {
    margin-right: 20px;
}

.top-bar-contact i {
    margin-right: 5px;
}

.top-bar-social a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent-color);
}

/* ------------------ NAVBAR ------------------ */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--text-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px;
    display: block;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--text-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    min-width: 200px;
    display: none;
    z-index: 100;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1000;
}

/* ------------------ HERO SECTION ------------------ */
.hero {
    margin-top: 60px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    /* padding: 40px 60px; */
    border-radius: var(--radius);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.hero-btn:hover {
    background: #a00000;
    transform: translateY(-3px);
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.hero-arrow:hover {
    background: var(--primary-color);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* ------------------ RIBBON ------------------ */
.ribbon-container {
    overflow: hidden;
    background: var(--primary-color);
    padding: 0;
}

.ribbon {
    display: flex;
    white-space: nowrap;
}

.ribbon p {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
    color: white;
}

.ribbon-dark {
    background: var(--primary-color);
}

.ribbon-light {
    background: var(--secondary-color);
}

/* Ribbon Animation */
@keyframes scroll-forward {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes scroll-backward {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.ribbon-dark p {
    animation: scroll-forward 10s linear infinite;
}

.ribbon-light p {
    animation: scroll-backward 10s linear infinite;
}

/* ------------------ FEATURED PRODUCTS ------------------ */
.featured-products {
    padding: 80px 20px;
}

.featured-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    min-height: 250px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-top: 5px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.section-tag {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 500;
}

.shop-link {
    display: inline-block;
    color: white;
    font-weight: bold;
    margin-top: 10px;
    transition: var(--transition);
    background: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.shop-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.card-content {
    position: relative;
    z-index: 2;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* ------------------ CATEGORIES ------------------ */
.category-selection {
    padding: 80px 20px;
    text-align: center;
    background-color: white;
}

.category-description {
    color: var(--text-gray);
    max-width: 600px;
    margin: 10px auto 40px;
    font-size: 1.1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
}

.category-item {
    display: block;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
    background: white;
    box-shadow: var(--shadow);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: #e9ecef;
    margin: 0 auto 15px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.category-name {
    font-weight: 600;
    margin-bottom: 3px;
    color: #333;
    font-size: 1.1rem;
}

.item-count {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ------------------ UXP PRODUCT SECTION ------------------ */
.uxp-product-section {
    padding: 70px 20px;
    background: #ffffff;
}

.uxp-section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 55px;
    color: #7a0000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.uxp-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.uxp-product-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 2px solid rgba(122, 0, 0, 0.18);
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    height: auto;
}

.uxp-product-card:hover {
    transform: translateY(-8px);
    border-color: #7a0000;
    box-shadow: 0px 10px 20px rgba(122, 0, 0, 0.35);
}

.uxp-product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
}

.uxp-product-name {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.uxp-product-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 18px;
}

.uxp-btn-read {
    display: inline-block;
    padding: 8px 22px;
    background: #7a0000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.uxp-btn-read:hover {
    background: #a00000;
}

/* ------------------ SALE BANNER ------------------ */
.shikaju-style-banner {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #800000);
    display: flex;
    justify-content: center;
}

.shikaju-banner-wrapper {
    width: 90%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 40px;
}

.shikaju-text-block {
    color: #fff;
}

.shikaju-headline {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shikaju-subline {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.8;
}

.shikaju-image-box img {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0px 10px 40px rgba(0, 0, 0, 0.4));
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.shikaju-image-box img:hover {
    transform: scale(1.05);
}

.shikaju-offer-panel {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shikaju-offer-tag {
    color: #facc15;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.shikaju-sale-title {
    font-size: 34px;
    margin: 10px 0;
    font-weight: 700;
}

.shikaju-details {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.shikaju-cta-btn {
    display: inline-block;
    background: #f43f5e;
    padding: 12px 28px;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.shikaju-cta-btn:hover {
    background: #e11d48;
    transform: translateY(-3px);
}

/* ------------------ SAFETY FOOTWEAR SECTION ------------------ */
.footwear-section {
    padding: 80px 0;
    text-align: center;
    background-image: url("images/banner.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}

.footwear-title,
.footwear-subtitle {
    /* color:maroon; */
    /* color:white;    */
    color:white;
}

.footwear-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footwear-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    color: #000000;
    text-align: center;
}

.feature-icon {
    font-size: 2.5em;
    color: rgb(212, 16, 16);
    margin-bottom: 15px;
    transition: 0.3s ease;  
    /* color:black; */
 background:black;
}

.feature-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #000000;
    transition: 0.3s ease;
}

.feature-card p {
    font-size: 1em;
    color: #333333;
    transition: 0.3s ease;
}

.feature-card:hover {
    background: #000000;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-icon,
.feature-card:hover p {
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f7193e;
    color: #ffffff;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #00bcd4;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #e91756;
    border-color: #0097a7;
}

/* ------------------ PRODUCT SLIDER ------------------ */
.product-slider-section {
    padding: 10px 20px;
}

.product-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: white;
    height: 560px;
}

.product-slide-image {
    flex: 1;
    text-align: center;
}

.product-slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-slide-info {
    flex: 1;
    padding: 0 40px;
}

.product-slide-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-slide-info p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

.product-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.product-slider-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.product-slider-dot.active {
    background: var(--primary-color);
}

.product-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.product-slider-arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-slider-arrow:hover {
    background: var(--primary-color);
}

/* ------------------ WHY CHOOSE US ------------------ */
.why-choose-us {
    padding: 80px 20px;
    background: url("images/gentsslider/14.jpeg") center/cover no-repeat;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(190, 100, 100, 0.1);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
}

/* ------------------ ABOUT US ------------------ */
.about-us {
    padding: 80px 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.company-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.fact {
    padding: 15px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.fact h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-image .image-content {
    width: 100%;
    height: 500px;
    border-top-right-radius: 50px;
    background-color: #222;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 50px;
}

/* ------------------ STATS COUNTER ------------------ */
.stats-counter {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-number::after {
    content: "+";
    font-weight: bold;
    margin-left: 3px;
}

.stat-label {
    font-size: 1.2rem;
}

/* ------------------ CUSTOMIZATION SECTION ------------------ */
.hetric-footwear-section {
    padding: 60px 20px;
    background-color: var(--light-bg);
    font-family: "Poppins", sans-serif;
}

.top-heading-area {
    text-align: center;
    margin-bottom: 50px;
}

.top-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.highlight-blue {
    color: var(--primary-color);
}

.top-subtitle {
    font-size: 1.1em;
    color: #666;
}

.content-and-media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.text-content-left,
.media-right {
    flex: 1 1 45%;
    min-width: 300px;
}

.main-heading {
    font-size: 3em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.outlined-text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-color);
    text-stroke: 1.5px var(--primary-color);
    display: inline-block;
}

.description-text {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.more-details-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.more-details-button:hover {
    background-color: #0056b3;
}

.product-graphic {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ------------------ CONTINUOUS SLIDER ------------------ */
.continuous-slider-section {
    padding: 50px 0;
    overflow: hidden;
    background-color: #ffffff;
    text-align: center;
}

.slider-heading {
    font-size: 2.8em;
    margin-bottom: 35px;
    color: #2c3e50;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

.slider-container {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.slider-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    margin: 0 20px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-8px);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ------------------ FAQ SECTION ------------------ */
.faq-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-answer {
    background: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-toggle.active {
    transform: rotate(180deg);
}

/* ------------------ MAP SECTION ------------------ */
.uni-map-section {
    position: relative;
    padding: 80px 6%;
    background: url("images/map.jpg") center/cover no-repeat;
    overflow: hidden;
}

.uni-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.uni-map-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.uni-map-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.uni-map-box {
    background: #ffffff;
    padding: 12px;
    border-radius: 18px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
}

.uni-map-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.uni-map-iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 14px;
}

/* ------------------ CONTACT SECTION ------------------ */
.uni-contact-section {
    padding: 80px 20px;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.uni-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.uni-contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: maroon;
    margin-bottom: 50px;
}

.uni-contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.uni-contact-info {
    flex: 1;
    background: #faf4f5;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid maroon;
    min-width: 300px;
}

.uni-info-heading {
    font-size: 22px;
    color: maroon;
    margin-bottom: 20px;
}

.uni-info-box {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
}

.uni-info-icon {
    font-size: 28px;
    color: maroon;
}

.uni-info-box h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.uni-info-box p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.uni-social-links {
    margin-top: 20px;
}

.uni-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: maroon;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.uni-social-links a:hover {
    background: #000;
}

.uni-contact-form {
    flex: 1.2;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 5px solid maroon;
    min-width: 300px;
}

.uni-contact-form h3 {
    font-size: 22px;
    color: maroon;
    margin-bottom: 25px;
}

.uni-form-row {
    margin-bottom: 18px;
}

.uni-form-row input,
.uni-form-row textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid maroon;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.uni-form-row textarea {
    height: 120px;
    resize: none;
}

.uni-submit-btn {
    width: 100%;
    background: maroon;
    color: #fff;
    padding: 14px 0;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.uni-submit-btn:hover {
    background: #000;
}

/* ------------------ FOOTER ------------------ */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section .logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .logo img {
    height: 60px;
    width: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* =============================== */
/* RESPONSIVE STYLES */
/* =============================== */

/* Tablet Devices (768px - 992px) */
@media screen and (max-width: 992px) {
.hero-slide{
    margin-top:30px;
}
    /* Hero Section */
    .hero {
        margin-top: 70px;
        height: 70vh;
    }

    .hero-content {
        padding: 30px;
        width: 95%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Navbar */
    .navbar {
        min-height: 70px;
        padding: 10px 20px;
    }

    .logo img {
        height: 60px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--text-light);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        padding: 0;
        z-index: 999;
    }
/* Navbar */
.navbar {
    min-height: 70px;
    padding: 10px 20px;
}

/* Logo */
.logo img {
    height: 60px;
}

/* Hamburger */
.menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu */
.nav-links {
    position: fixed;
    top: 70px;
    /* header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: var(--text-light);
    box-shadow: var(--shadow);

    display: flex;
    flex-direction: column;

    overflow-y: auto;
    /* ✅ SCROLL ENABLE */
    -webkit-overflow-scrolling: touch;

    transform: translateY(-100%);
    transition: transform 0.4s ease;

    padding: 0;
    z-index: 1000;
}

/* Menu Open */
.nav-links.active {
    transform: translateY(0);
}

/* Menu Items */
.nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-links li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: static;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
    transition: max-height 0.4s ease;
}

/* Dropdown Open */
.dropdown.open .dropdown-menu {
    max-height: 600px;
    /* enough for items */
}
    .nav-links.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.02);
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    /* Featured Products */
    .featured-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image .image-content {
        height: 400px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* UXP Products */
    .uxp-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Sale Banner */
    .shikaju-banner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .shikaju-headline {
        font-size: 36px;
    }

    .shikaju-sale-title {
        font-size: 28px;
    }

    .shikaju-image-box img {
        margin: auto;
    }

    /* Product Slider */
    .product-slide {
        flex-direction: column;
        /* padding: 20px; */
    }

    .product-slide-info {
        padding: 20px 0;
        text-align: center;
    }

    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-contact span {
        margin-right: 10px;
        display: inline-block;
        margin-bottom: 5px;
    }

    /* Contact Section */
    .uni-contact-wrapper {
        flex-direction: column;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (576px - 768px) */
@media screen and (max-width: 768px) {

    /* General */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    /* Hero */
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-arrow {
        display: none;
    }

    /* Featured Products */
    .featured-container {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 200px;
        padding: 20px;
    }

    /* Category Grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-image-wrapper {
        width: 100px;
        height: 100px;
    }

    /* About Section */
    .company-facts {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* UXP Products */
    .uxp-product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .uxp-product-card img {
        height: 200px;
    }

    .uxp-section-title {
        font-size: 28px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* Map */
    .uni-map-title {
        font-size: 28px;
    }

    .uni-map-iframe {
        height: 300px;
    }

    /* Continuous Slider */
    .slider-heading {
        font-size: 2em;
    }

    .slider-item {
        width: 280px;
        height: 200px;
        margin: 0 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section .logo {
        justify-content: center;
    }

    /* Ribbon */
    .ribbon p {
        font-size: 1rem;
    }
}

/* Small Mobile Devices (below 576px) */
@media screen and (max-width: 576px) {

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero {
        height: 50vh;
        margin-top:10px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Category Grid */
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-item {
        padding: 15px;
    }

    /* Featured Products */
    .product-card h3 {
        font-size: 1.3rem;
    }

    /* Navigation */
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        height: 50px;
    }

    /* Dropdown */
    .dropdown-menu li a {
        padding-left: 30px;
    }

    /* Sale Banner */
    .shikaju-style-banner {
        padding: 40px 20px;
    }

    .shikaju-headline {
        font-size: 1.6em;
    }

    .shikaju-sale-title {
        font-size: 1.4em;
    }

    .shikaju-offer-panel {
        padding: 20px;
    }

    /* Stats */
    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-answer.active {
        padding: 15px;
    }

    /* Contact */
    .uni-contact-info,
    .uni-contact-form {
        padding: 20px;
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.8rem;
        padding: 5px 0;
    }

    .top-bar-social a {
        margin-left: 10px;
    }

    /* Social Bar */
    .social-bar {
        bottom: 60px;
    }

    /* Chat Bot */
    .chat-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Extra Small Devices (below 400px) */
@media screen and (max-width: 400px) {

    /* Hero */
    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content {
        padding: 15px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
        color:maroon;
    }

    /* Category Items */
    .category-image-wrapper {
        width: 80px;
        height: 80px;
    }

    .category-name {
        font-size: 1rem;
    }

    /* UXP Products */
    .uxp-section-title {
        font-size: 24px;
    }

    .uxp-product-card {
        padding: 15px;
    }

    /* Stats */
    .stats-counter {
        padding: 40px 15px;
    }

    /* Footer */
    .footer {
        padding: 40px 15px 15px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Fix for landscape mode on mobile */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .navbar {
        min-height: 60px;
    }
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
        min-height: 500px;
    }
}

/* Prevent text size adjustment on iOS */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
    }
}

/* Improve touch targets */
@media (hover: none) and (pointer: coarse) {

    .nav-links a,
    .hero-btn,
    .shop-link,
    .uxp-btn-read,
    .shikaju-cta-btn,
    .btn-primary,
    .more-details-button,
    .uni-submit-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-dot,
    .product-slider-dot {
        width: 15px;
        height: 15px;
    }

    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}