/* Global Visibility Classes */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 1024px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
}

body {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #731010;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 300;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left .separator {
    margin: 0 10px;
    opacity: 0.5;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: #fff;
    font-size: 14px;
    transition: opacity 0.3s;
}

.top-bar-right a:hover {
    opacity: 0.7;
}

.top-bar-left a {
    color: #fff;
    text-decoration: none;
}

.top-bar-left a:hover {
    opacity: 0.8;
}

/* HEADER */
.main-header {
    background: #fff;
    width: 100%;
    z-index: 1000;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header.sticky {
    padding: 2px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(115, 16, 16, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    transition: padding 0.4s ease;
}

.main-header.sticky .header-inner {
    padding: 2px 0;
}

.header-logo img {
    height: 70px;
    width: auto;
    transition: height 0.4s ease;
}

.main-header.sticky .header-logo img {
    height: 55px;
}

/* SEARCH BAR */
.header-search {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.search-container {
    display: flex;
    align-items: center;
    border: 1px solid #731010;
    border-radius: 40px;
    padding: 2px 15px;
    width: 100%;
    max-width: 550px;
    background: #fff;
    height: 48px;
}

.search-icon-circle {
    width: 32px;
    height: 32px;
    border: 1px solid #731010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.search-container input {
    border: none;
    outline: none;
    padding: 0 10px;
    flex: 1;
    font-size: 16px;
    color: #731010;
    text-align: center;
}

.search-container input::placeholder {
    color: #731010;
    opacity: 0.9;
}

.search-icon {
    color: #731010;
    font-size: 14px;
}

.filter-icon {
    color: #731010;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

/* NEW HAMBURGER */
.header-hamburger-new {
    cursor: pointer;
    padding: 10px;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 36px;
    /* Fixed width container to manage alignment */
}

.hamburger-lines span {
    display: block;
    height: 5px;
    background: #731010;
    border-radius: 10px;
}

.line-1 {
    width: 20px;
    align-self: flex-start;
}

.line-2 {
    width: 36px;
}

.line-3 {
    width: 20px;
    align-self: flex-end;
}


/* HERO */
.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-next-preview {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.hero-next-preview:hover {
    transform: scale(1.05);
}

.hero-next-preview span {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-img {
    width: 120px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    line-height: 1.1;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, transform 1s ease;
}

.slide-content.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-features {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.hero-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.hero-features li {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-features li i {
    color: #007bbd;
    font-size: 16px;
}

.hero-use-cases {
    font-size: 16px !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.btn-icon {
    background: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.primary {
    background: #a50000;
    color: #fff;
    border: 1px solid #a50000;
}

.primary .btn-icon i {
    color: #a50000;
}

.outline {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.outline .btn-icon i {
    color: #1b1b1b;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    right: 50px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #fff;
    width: 25px;
    border-radius: 10px;
}

/* ABOUT */
.about {
    padding: 60px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-badge {
    background: linear-gradient(90deg, #731010 0%, rgba(115, 16, 16, 0.4) 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.about-title-wrapper {
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
}

.about-title-indicator {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 6px;
    background: linear-gradient(180deg, #731010 0%, #000 100%);
    border-radius: 10px;
}

.about-title-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    font-family: 'Merriweather', serif;
}

.highlight-red {
    color: #731010;
}

.about-description {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 580px;
}

.about-stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: #888;
    line-height: 1.3;
    font-weight: 500;
}

.about-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.gallery-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-sub img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-actions {
    margin-top: 20px;
}

.about-actions .btn {
    background: transparent;
    border: 1px solid #d32f2f;
    color: #8b0000;
    padding: 6px 6px 6px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Merriweather', serif;
}

.about-actions .btn .btn-icon {
    background: #d32f2f;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.about-actions .btn:hover {
    background: #fff0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.2);
}

.about-actions .btn:hover .btn-icon {
    transform: rotate(-45deg);
}

/* Responsiveness */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats-grid {
        gap: 20px;
        flex-wrap: wrap;
    }

    .gallery-main img {
        height: 300px;
    }
}

/* SOLUTIONS SECTION */
.solutions {
    padding: 50px 0 70px 0;
    /* Adjusted space to 40px total with previous section */
    background: #fff;
    text-align: center;
}

.solutions-header {
    margin-bottom: 30px;
}

.solution-badge {
    background: linear-gradient(90deg, #d32f2f 0%, rgba(211, 47, 47, 0.4) 100%);
    color: #fff;
    padding: 8px 30px;
    border-radius: 50px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 25px;
}

.solutions-header h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    font-family: 'Merriweather', serif;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: #fff;
    border: 1px solid #d32f2f;
    border-radius: 25px;
    padding: 25px;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.1);
}

.card-icon-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #8b0000;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.card-icon-btn:hover {
    background: #d32f2f;
}

.card-icon-btn i {
    transform: rotate(-45deg);
}

.card-img-wrapper {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Merriweather', serif;
}

.solution-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding: 0 10px;
}

/* Card Points Overlay (Model B - Glassmorphism) */
.card-points-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px 20px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    color: #333;
    text-align: left;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.card-points-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}

.overlay-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid #8b0000;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.1);
}

.overlay-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #8b0000;
    margin: 0;
    line-height: 1.2;
    font-family: 'Merriweather', serif;
}

.close-points {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 0, 0, 0.1);
    border: none;
    color: #8b0000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 12px;
}

.close-points:hover {
    background: #8b0000;
    color: #fff;
    transform: rotate(90deg);
}

.card-points-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-points-overlay li {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #444;
}

.card-points-overlay li i {
    color: #8b0000;
    font-size: 13px;
}

.solutions-footer {
    display: flex;
    justify-content: center;
}

/* Responsiveness */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* PRODUCTS NEW DESIGN REFINED */
.products {
    padding: 60px 0 20px 0;
    /* Adjusted bottom space to 20px */
    background: #fff;
}

.products-header {
    margin-bottom: 30px;
}

.product-badge-new {
    background: linear-gradient(90deg, #e30613 0%, #e30613 40%, rgba(227, 6, 19, 0) 100%);
    color: #fff;
    padding: 8px 30px;
    border-radius: 50px 0 0 50px;
    /* Pillow left, flush right with gradient */
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.products-headline-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.headline-left {
    flex: 1;
    position: relative;
    padding-left: 25px;
}

.headline-indicator {
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 6px;
    background: linear-gradient(180deg, #731010 0%, #000 100%);
    border-radius: 10px;
}

.headline-left h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: #333;
}

.headline-right {
    flex: 1;
}

.headline-right p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.product-masonry-v3 {
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
    /* Minimized gap to footer */
}

.masonry-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.masonry-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 380px;
    /* Reduced from 450px */
}

.masonry-item.stagger-down {
    margin-top: 40px;
    /* Reduced from 60px to maintain proportion */
}

.product-card-v2 {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-v2:hover img {
    transform: scale(1.08);
}

.product-info-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: #7a0b0b;
    padding: 20px 25px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.info-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: #fff;
}

.btn-discover {
    background: #e98282;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background: #fff;
    transform: translateY(-2px);
}

.products-footer-v2 {
    display: flex;
    justify-content: flex-start;
    margin-top: 5px;
    /* Reduced top margin within column */
}

.btn-outline-red {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #731010;
    padding: 10px 10px 10px 35px;
    border-radius: 50px;
    color: #731010;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-outline-red i {
    background: #731010;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-outline-red:hover {
    background: #731010;
    color: #fff;
}

.btn-outline-red:hover i {
    background: #fff;
    color: #731010;
}

@media (max-width: 992px) {
    .product-masonry-v3 {
        flex-direction: column;
    }

    .masonry-item.stagger-down {
        margin-top: 0;
    }
}



/* REDUNDANT BLOCK REMOVED */

/* FOOTER REFINED */
.footer {
    background: #731010;
    /* Brand Maroon */
    color: #fff;
    padding: 40px 0 0;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    /* Force White */
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #fff;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 11px;
    color: #fff;
    opacity: 0.6;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
}

.footer-contact li,
.footer-contact li a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li i {
    color: #fff;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    background: #5a0b0b;
    /* Darker Red Bar */
    padding: 8px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* SLIDE MENU */
.slide-menu.slide-v7 {
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
}

.slide-menu.slide-v7.active {
    transform: translateX(0);
}

.v7-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Left Panel: Typography (40%) */
.v7-nav-panel {
    flex: 4;
    background: #fff;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.05);
}

.v7-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v7-logo {
    height: 80px;
}

.slide-v7 .slide-close-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #000;
    border-radius: 50%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.slide-v7 .slide-close-btn:hover {
    transform: rotate(180deg) scale(1.1);
}

.close-icon-wrap {
    width: 20px;
    height: 20px;
    position: relative;
}

.close-icon-wrap span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 0;
}

.close-icon-wrap span:first-child {
    transform: rotate(45deg);
}

.close-icon-wrap span:last-child {
    transform: rotate(-45deg);
}

.v7-nav ul {
    list-style: none;
    padding: 0;
}

.v7-nav li {
    margin-bottom: 15px;
}

.v7-nav-link {
    display: block;
    color: #000;
    font-size: 25px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.2;
    font-family: 'Merriweather', serif;
    letter-spacing: -1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateX(-50px);
}

.slide-menu.active .v7-nav-link {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.3s + (0.05s * var(--i)));
}

.v7-nav-link:hover {
    padding-left: 40px;
    color: #731010;
}

/* Right Panel: Image (60%) */
.v7-image-panel {
    flex: 6;
    background: #731010;
    position: relative;
    overflow: hidden;
}

.v7-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.v7-active-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
    filter: brightness(0.8) contrast(1.1);
}

.v7-desc-box {
    position: absolute;
    bottom: 80px;
    left: 80px;
    z-index: 3;
    max-width: 400px;
    color: #fff;
}

#v7-nav-desc {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-left: 3px solid #fff;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.v7-desc-box.active #v7-nav-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Footer & Credits */
.v7-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.v7-contact-row {
    display: flex;
    gap: 60px;
}

.v7-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 600;
}

.v7-contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
}

.v7-contact-item a:hover {
    color: #731010;
}

.v7-socials {
    display: flex;
    gap: 20px;
}

.desktop-only.v7-socials {
    margin-top: 0;
}

.v7-socials a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    opacity: 0.4;
    transition: all 0.3s;
}

.v7-socials a:hover {
    opacity: 1;
    color: #731010;
    transform: translateY(-5px);
}

@media (max-width: 1400px) {
    .v7-nav-link {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .v7-container {
        flex-direction: column;
    }

    .v7-nav-panel {
        flex: none;
        height: 100%;
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .v7-nav {
        margin-top: 30px;
    }

    .v7-footer {
        margin-top: auto;
        padding-top: 40px;
    }

    .v7-image-panel {
        display: none;
    }

    .v7-nav-link {
        font-size: 22px;
    }

    .v7-header {
        margin-bottom: 20px;
    }

    .v7-mobile-contact {
        display: flex !important;
        /* Ensure visibility override */
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
        /* Space under menu items */
        padding-bottom: 40px;
        /* Buffer at bottom */
    }

    .v7-mobile-contact .v7-contact-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .v7-mobile-contact .v7-label {
        font-size: 10px;
        opacity: 0.6;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .v7-mobile-contact a {
        color: #000;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
    }

    .v7-mobile-contact .v7-socials {
        margin-top: 15px;
        display: flex;
        gap: 25px;
    }

    .v7-logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .v7-nav-panel {
        padding: 40px 20px;
    }

    .v7-nav-link {
        font-size: 20px;
    }

    .v7-mobile-contact {
        margin-top: 30px;
        gap: 18px;
    }
}

/* HEADER HOVER MENU */
.header-right {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-right: -120px;
}

.header-menu-wrapper {
    position: relative;
    padding: 10px 0;
    /* buffer for hover */
    z-index: 101;
}

.header-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 30px;
}

.header-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.header-menu-wrapper:hover .header-hamburger span {
    background: #007bbd;
}

/* Full Screen Menu Styles */
.header-fullscreen-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    /* Changed from 100vw to avoid scrollbar */
    height: 100vh;
    background: #0b1c2d;
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    overflow: hidden;
}

.header-fullscreen-menu.active {
    transform: translateY(0);
}

.menu-content-container {
    flex: 1;
    padding: 20px 100px;
    display: flex;
    /* align-items: center; REMOVED to prevent clipping */
    overflow-y: auto;
    /* Allow scrolling */
    height: 100%;
}

.menu-left-col {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    /* Safe vertical centering */
    width: 100%;
}

.menu-logo {
    order: 0;
    /* Move back to top */
    margin-bottom: 20px;
    /* Space below logo */
    margin-top: 0;
}

.menu-logo img {
    height: 50px;
    /* Removed filter to revert to original color */
}

.fullscreen-nav ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.fullscreen-nav li {
    margin-bottom: 20px;
}

.fullscreen-nav a {
    color: #fff;
    font-size: 37px;
    font-weight: 800;
    text-decoration: none;
    font-family: 'Merriweather', serif;
    text-transform: uppercase;
    transition: color 0.3s;
}

.fullscreen-nav a:hover {
    color: #007bbd;
}

.fullscreen-contact-info {
    margin-bottom: 10px;
}

.fullscreen-contact-info p {
    color: #889bb0;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: 'Merriweather', serif;
}

.fullscreen-contact-info i {
    color: #007bbd;
    width: 20px;
}

.fullscreen-social {
    display: flex;
    gap: 20px;
}

.fullscreen-social a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.fullscreen-social a:hover {
    background: #007bbd;
    border-color: #007bbd;
}

.menu-close-strip {
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: auto;
    /* Push to right */
}

.close-text {
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
}

.vertical-line {
    width: 1px;
    height: 60px;
    background: #fff;
}

/* Global Menu Toggle Visibility */
.menu-toggle {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(20px);
}

/* ================= CONTACT HIGHLIGHT SECTION NEW ================= */
.contact-highlight {
    position: relative;
    background: #000 url('../image/contact.webp') no-repeat center center/cover;
    padding: 80px 0 0 0;
    /* Padding top only, bottom handled by strip */
    overflow: hidden;
    min-height: 700px;
    display: flex;
    flex-direction: column;
}

.contact-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Black shadow that fades to the right */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    padding-left: 5%;
    /* Moves content to the left */
    padding-right: 5%;
}

/* Header */
.contact-header-left {
    margin-bottom: 40px;
    position: relative;
    text-align: left;
    /* Strict left align */
}

.contact-badge-pill {
    background: linear-gradient(90deg, #990000 0%, #3d0000 100%);
    color: #fff;
    padding: 6px 25px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-header-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    font-family: 'Merriweather', serif;
}

.contact-header-left h2 .highlight-red {
    color: #d32f2f;
}

/* Content Wrapper */
.contact-content-wrapper {
    display: flex;
    position: relative;
    gap: 40px;
    justify-content: flex-start;
    /* Strict start align */
}

/* White Card */
/* White Card */
.contact-white-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    /* Restored balanced padding as seen in image */
    width: 65%;
    /* Slightly wider */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    /* Stronger black shadow */
    position: relative;
    z-index: 5;
    text-align: left;
    /* Strict left align */
}

.contact-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    /* Increased column gap */
    margin-bottom: 0;
}

.check-list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 5px 0;
    /* margin-left removed to align left */
}

.check-box-red {
    width: 24px;
    height: 24px;
    background: #e30613;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
    /* Precise align with H4 */
}

.check-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    font-family: 'Merriweather', serif;
}

.check-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Call Box - Now inside grid */
.contact-call-box {
    background: linear-gradient(90deg, #b31217 0%, #8a0000 100%);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(138, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    /* Fill the grid cell height */
    min-height: 90px;
    /* margin-left removed to align left */
}

.contact-call-box .call-icon {
    font-size: 28px;
    opacity: 0.8;
}

.contact-call-box .call-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-call-box .call-text span {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 3px;
    line-height: 1;
}

.contact-call-box .call-text h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

/* Woman Image */
.contact-woman-wrapper {
    position: absolute;
    right: -50px;
    bottom: -80px;
    /* Pull down to overlap strip */
    z-index: 10;
    width: 45%;
    display: flex;
    justify-content: flex-end;
}

.woman-img {
    max-width: 100%;
    height: auto;
    /* Clean cut image assumed */
}

/* Bottom Logo Strip */
.contact-logo-strip {
    background: #8b0000;
    width: 100%;
    padding: 25px 0;
    margin-top: auto;
    /* Push to bottom */
    position: relative;
    z-index: 4;
    /* Below woman, above bg */
    border-top: 3px solid #660000;
    overflow: hidden;
}

.logo-strip-content {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-scroll-wrapper {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 0 50px;
    animation: logoScroll 20s linear infinite;
    flex-shrink: 0;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.strip-logo {
    /* Using cursive font if available, fallback to cursive */
    font-family: 'Merriweather', serif;
    font-size: 32px;
    color: #fff;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content-wrapper {
        flex-direction: column;
    }

    .contact-white-card {
        width: 100%;
    }

    .contact-woman-wrapper {
        position: relative;
        width: 100%;
        bottom: 0;
        right: 0;
        display: flex;
        justify-content: center;
        margin-top: -30px;
        z-index: 0;
    }

    .logo-scroll-wrapper {
        gap: 60px;
        animation-duration: 15s;
    }
}

/* ================= SITE-WIDE SCROLL REVEAL SYSTEM ================= */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Existing Specific Animations */
@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.contact-highlight.is-visible .woman-img {
    animation: contactFloat 4s ease-in-out infinite;
}

.contact-white-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 1s ease;
}

.contact-white-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.contact-call-box {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-call-box:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(138, 0, 0, 0.5);
    background: linear-gradient(90deg, #d30613 0%, #a00000 100%);
}

.check-box-red {
    transition: transform 0.3s ease;
}

.check-list-item:hover .check-box-red {
    transform: scale(1.2) rotate(5deg);
}


/* ================= TESTIMONIAL V2 DESIGN ================= */
.testimonial-v2 {
    padding: 80px 0 50px 0;
    /* Adjusted top space */
    background: #fff;
    overflow: hidden;
}

.testimonial-header-centered {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-badge-v2 {
    display: inline-block;
    padding: 8px 35px;
    background: linear-gradient(90deg, #8a0000 0%, #d32f2f 50%, rgba(211, 47, 47, 0) 100%);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.testimonial-header-centered h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-header-centered h2 .highlight-red {
    color: #d32f2f;
}

.testimonial-content-layout {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 450px;
}

.testimonial-arc-side {
    width: 50%;
    position: relative;
    height: 450px;
}

.arc-line-svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 400px;
    z-index: 1;
}

.arc-line-svg svg {
    width: 100%;
    height: 100%;
}

.user-arc-list {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.user-arc-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
}

/* Positioning items along the arc ( achieved ) shape) */
.user-arc-item.item-1 {
    top: 10%;
    left: 40px;
}

.user-arc-item.item-2 {
    top: 45%;
    left: 160px;
}

.user-arc-item.item-3 {
    top: 80%;
    left: 40px;
}

.user-arc-item.item-hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: scale(0.8);
}

.user-arc-item.active {
    z-index: 10;
}

.user-arc-item.active img {
    border-color: #d32f2f;
    transform: scale(1.1);
}

.user-arc-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.user-arc-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-family: 'Merriweather', serif;
}

.user-arc-info .rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-arc-info .rating i {
    color: #d32f2f;
    font-size: 18px;
}

.user-arc-info .rating span {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

/* Right Side Quote */
.testimonial-quote-side {
    width: 50%;
    padding-left: 50px;
}

.quote-mark {
    font-size: 120px;
    line-height: 1;
    color: rgba(211, 47, 47, 0.1);
    font-family: serif;
    margin-bottom: -40px;
}

.quote-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
}

@media (max-width: 992px) {
    .testimonial-content-layout {
        flex-direction: column;
        min-height: auto;
    }

    .testimonial-arc-side {
        width: 100%;
        height: 500px;
        margin-bottom: 50px;
    }

    .testimonial-quote-side {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .arc-line-svg {
        left: 50%;
        transform: translateX(-50%) translateY(-50%) rotate(90deg);
    }

    .user-arc-item.item-1 {
        top: 70px;
        left: 10%;
    }

    .user-arc-item.item-2 {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .user-arc-item.item-3 {
        top: 70px;
        left: 70%;
    }
}

/* Contact Section Link Styling */
.call-text a {
    color: #fff;
    text-decoration: none;
}

.call-text a:hover {
    opacity: 0.9;
}

/* SEARCH HIGHLIGHT */
@keyframes search-flash {
    0% {
        background-color: transparent;
        outline: 3px solid transparent;
        outline-offset: -10px;
    }

    50% {
        background-color: rgba(115, 16, 16, 0.05);
        outline: 3px solid rgba(115, 16, 16, 0.2);
        outline-offset: -2px;
    }

    100% {
        background-color: transparent;
        outline: 3px solid transparent;
        outline-offset: -10px;
    }
}

.search-highlight-flash {
    animation: search-flash 1.5s ease-out;
}

/* ================= MOBILE RESPONSIVENESS REFINEMENTS ================= */

@media (max-width: 1024px) {
    .contact-white-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    /* Header & Search */
    .header-search {
        display: none;
    }

    .header-inner {
        padding: 10px 0;
    }

    .header-logo img {
        height: 50px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 34px !important;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-next-preview {
        display: none;
    }

    /* About Section */
    .about-title-wrapper h2 {
        font-size: 26px;
    }

    .about-stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Products Section */
    .products-headline-row {
        flex-direction: column;
        gap: 25px;
    }

    .headline-left {
        padding-left: 25px;
    }

    .headline-left h2 {
        font-size: 28px;
    }

    .headline-right p {
        font-size: 16px;
    }

    .product-masonry-v3 {
        gap: 15px;
    }

    .masonry-item {
        height: 300px;
    }

    .product-info-overlay {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 15px;
    }

    .info-content h3 {
        font-size: 14px;
    }

    /* Solutions Section */
    .solutions-header h2 {
        font-size: 26px;
    }

    /* Contact Highlight Section */
    .contact-header-left h2 {
        font-size: 22px;
    }

    .contact-list-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-white-card {
        padding: 30px 20px;
    }

    .check-content h4 {
        font-size: 18px;
    }

    .contact-woman-wrapper {
        display: none;
    }
}

@media (max-width: 480px) {
    .search-container {
        height: 40px;
    }

    .search-container input {
        font-size: 14px;
    }

    .search-icon-circle {
        width: 28px;
        height: 28px;
    }

    .hero-content h1 {
        font-size: 28px !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* Search Highlight Animation */
.search-highlight-flash {
    animation: search-flash 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
}

@keyframes search-flash {
    0% {
        box-shadow: 0 0 0 0 rgba(115, 16, 16, 0.4);
        background-color: rgba(115, 16, 16, 0.05);
    }

    50% {
        box-shadow: 0 0 40px 10px rgba(115, 16, 16, 0.2);
        background-color: rgba(115, 16, 16, 0.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(115, 16, 16, 0);
        background-color: transparent;
    }
}