:root {
    --main-red: #ff1a1a;
}

body {
    background: black;
    color: white;
    font-family: Segoe UI;
    animation: fadeIn 2s ease 0.1ms;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

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

/* NAVBAR */

.navbar {
    border-bottom: 2px solid var(--main-red);
    background: linear-gradient(to right, black, #cc0000)
}

.nav-link {
    color: white !important
}

/* HERO */

.carousel-item img {
    height: 85vh;
    object-fit: cover;
    filter: brightness(40%)
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.hero-text h1 {
    font-size: 60px;
    color: var(--main-red)
}

/* CARDS */

.product-card {
    background: #111;
    border: 1px solid black;
    transition: .4s;
    overflow: hidden
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    border: 1px solid var(--main-red);
    box-shadow: 0 0 25px var(--main-red)
}

.product-card img {
    height: 200px;
    object-fit: cover
}

.product-card h5 {
    color: white
}

.btn-red {
    background: var(--main-red);
    color: white;
    border: none
}

.rating span {
    font-size: 20px;
    cursor: pointer;
    color: gray
}

.rating span.active {
    color: var(--main-red)
}

/* TEAM */

.team-card {
    background: #111;
    border: 1px solid var(--main-red);
    padding: 20px
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--main-red)
}

body {
    font-family: Arial, sans-serif;
}

.stats-section {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}

.stats-section h2 {
    color: #2c7be5;
    margin-bottom: 40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box h3 {
    font-size: 40px;
    color: #c98a2e;
    margin: 0;
}

.stat-box p {
    margin-top: 10px;
    color: #333;
}

/* MODALS */

.modal-content {
    background: #111;
    color: white;
    border: 1px solid var(--main-red)
}

.success {
    font-size: 70px;
    color: var(--main-red)
}

:root {
    --main-red: #ff1a1a;
}

body {
    background: black;
    color: white;
    font-family: Segoe UI;
}

/* PRODUCT CARDS UPDATED */

.product-card {
    background: #111;
    border: 1px solid black;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* RED BLINK EFFECT */

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 0, 0, 0.7), transparent);
    transition: 0.6s;
}

/* HOVER EFFECT */

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.04);
    border: 1px solid var(--main-red);
    box-shadow: 0 0 20px var(--main-red), 0 0 40px rgba(255, 0, 0, 0.6);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.product-card p {
    color: white;
    font-size: 14px;
}

body {
    background: linear-gradient(135deg, #000000, #3b0000);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

/* SECTION */
.contact-section {
    padding: 80px 0;
}

/* HEADING */
.section-title h2 {
    font-weight: bold;
    color: #ff2b2b;
    font-size: 36px;
}

.section-title p {
    color: #bfbfbf;
    font-size: 16px;
}

/* CARDS */
.contact-card {
    background: #0d0d0d;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: 0.4s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.5);
    border: 1px solid #ff2b2b;
}

/* BUTTON */
.contact-btn {
    border: 2px solid #ff2b2b;
    border-radius: 40px;
    padding: 12px 28px;
    display: inline-block;
    text-decoration: none;
    color: white;
    margin-top: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #ff2b2b;
    color: white;
    box-shadow: 0 0 15px #ff2b2b;
}

/* FORM */
.form-control {
    background: #141414;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 12px 18px;
    color: white;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    border-color: #ff2b2b;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    background: #141414;
    color: white;
}

/* SEND BUTTON */

.btn-dark {
    background: #ff2b2b;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #cc0000;
    box-shadow: 0 0 15px #ff2b2b;
}

/* MAP */

.map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9);
}

/* LOCATION TITLE */

.location-title {
    color: #ff2b2b;
    font-weight: bold;
    font-size: 28px;
}

.map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9);
    border: 2px solid #ff2b2b;
    position: relative;
}

/* DARK MAP EFFECT */

.map iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #eee;
}

.fashion-footer {
    background-color: #000000;
    padding: 60px 20px 30px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 50px rgba(255, 0, 0, 0.5);
}

.footer-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.brand {
    color: #ff1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    user-select: none;
}

.footer-box h3 {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ff1a1a;
    border-bottom: 2px solid #ff1a1a;
    padding-bottom: 6px;
    user-select: none;
}

.footer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
    user-select: text;
}

.footer-box ul {
    list-style: none;
    padding-left: 0;
}

.footer-box ul li {
    margin-bottom: 14px;
    font-size: 15px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.footer-box ul li:hover {
    color: #ff1a1a;
}

.footer-box i {
    color: #ff1a1a;
    margin-right: 10px;
    min-width: 18px;
    user-select: none;
}

.footer-box p i {
    vertical-align: middle;
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #330000;
    text-align: center;
    padding: 20px 10px 10px;
    color: #999;
    user-select: none;
}

.social {
    margin-bottom: 15px;
}

.social i {
    margin: 0 12px;
    background: #220000;
    color: #ff1a1a;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 18px;
    user-select: none;
}

.social i:hover {
    background: #ff1a1a;
    color: #fff;
    transform: scale(1.15);
}

@media (max-width: 600px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fashion-footer {
        padding: 40px 15px 20px;
    }
}

/* BRAND LOGO */
.brand-logo {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}

.brand-logo span {
    color: #cc0000;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(90deg, #111, #1c1c1c);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, black, #cc0000)
}

/* NAV LINKS */
.nav-link {
    position: relative;
    margin: 0 10px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #cc0000 !important;
}

/* UNDERLINE EFFECT */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #cc0000;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* SEARCH BAR */
.input-group-text {
    background: #cc0000;
    border: none;
}

#searchInput {
    border: none;
}

#searchInput:focus {
    box-shadow: none;
}

/* BUTTON STYLE */
.btn-red {
    background: #cc0000;
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-red:hover {
    background: #cc0000;
}

/* HERO TEXT */
.hero-text h1 {
    font-size: 48px;
    font-weight: bold;
}

.hero-text p {
    font-size: 20px;
}


body {
    background-color: black;
    font-family: Arial, sans-serif;
}

.stats-section {
    text-align: center;
    padding: 50px 20px;

}


.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box h3 {
    font-size: 40px;
    color: #1f0303;
    margin: 0;
}

.stat-box p {
    margin-top: 10px;
    color: white;
}

.stats-container {
    background-color: rgba(41, 3, 3);
}

.stat-box {
    background-color: rgba(48, 0, 0);
}

.stats-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #330000, #330101);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    background: #0d0d0d;
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
    border: 1px solid #ff1a1a;
}

.stat-box h3 {
    font-size: 40px;
    color: #ff1a1a;
    margin: 0;
}

.stat-box p {
    margin-top: 10px;
    color: #ccc;
}